html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
   font-family: Arial, sans-serif;
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.3rem;
}

 .topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; 
    background-color: #2F3B4D;
    color: #fff;
    font-size: 15px;
    z-index: 1050; 
  }

  @media (max-width: 768px) {
  .topbar {
    position: relative !important; /* overrides fixed */
    z-index: auto !important;      /* removes stacking */
  }
}

  .topbar a {
    color: #f1f1f1;
    text-decoration: none;
    margin-right: 18px;
    font-size: 18px; /* Bigger font size for readability */
    transition: color 0.3s ease;
  }

  .topbar a:hover {
    color: #4DA8DA; /* Professional light blue hover */
  }

  .topbar .social-icons a {
    margin-left: 10px;
    font-size: 21px;
    color: #ddd;
    transition: transform 0.3s ease, color 0.3s ease;
  }

  .topbar .social-icons a:hover {
    color: #4DA8DA; /* Light blue on hover */
    transform: scale(1.15);
  }

  .topbar i {
    margin-right: 6px;
    color: #4DA8DA; /* Icon color changed from yellow to blue */
  }

    @media (max-width: 768px) {
      .topbar .container {
        flex-direction: column;
        text-align: center;
      }
      .topbar a {
        display: block;
        margin: 6px 0;
      }
      .topbar .social-icons {
        margin-top: 10px;
      }
    }
    .navbar-brand img {
      height: 50px;
    }
    .apply-btn {
      margin-left: 15px;
    }

   /* Base Sidebar */
 .sidebar {
    position: fixed;
    top: 0px;
    left: 0;
    height: calc(100vh - 28px);
    width: 230px;
    background-color: #086f91;
    /* background-color: #6c757d; */
    color: #fff;
    /* padding: 20px 15px; */
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transition: transform 0.3s ease;
  }

  /* Circle Logo */
  .sidebar .navbar-brand img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    margin-top: 35px;;
    margin-bottom: 5px;
    border: 3px solid #4DA8DA;
  }

  .sidebar .nav-link {
    color: #ddd;
    font-size: 16px;
    font-weight: 500;
    /* padding: 10px 0; */
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 6px;
  }
  .sidebar .nav-link:hover {
    background-color: #2F3B4D;
    color: #4DA8DA;
  }
  /* .sidebar .nav-link.active {
    background-color: #4DA8DA;
    color: #fff;
  } */

  /* Buttons */
  .sidebar .apply-btn {
    margin-top: 5px;
    width: 65%;
    border-radius: 25px;
    padding: 8px 20px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
  }

  .btn-outline-primary {
    border-color: #4DA8DA;
    color: #4DA8DA;
    background: transparent;
  }
  .btn-outline-primary:hover {
    background-color: #4DA8DA;
    color: #fff;
  }

  .btn-primary {
    background-color: #4DA8DA;
    border-color: #4DA8DA;
  }
  .btn-primary:hover {
    background-color: #3a90bd;
    border-color: #3a90bd;
  }

  /* Main content */
  .menu-toggle {
  display: none; /* default hidden */
  position: fixed;
  top: 10px; /* slightly lower for visibility */
  left: 10px;
  background: #4DA8DA;
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 22px;
  cursor: pointer;
  z-index: 2000; /* higher than topbar */
}

/* Show hamburger only on mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
}

/* Default hidden on mobile */
.sidebar {
  transform: translateX(-100%);
}

/* When active, show sidebar */
.sidebar.active {
  transform: translateX(0);
}

/* Content shift when sidebar opens */
.content.shifted {
  margin-left: 230px;
}

/* On desktop, sidebar should always be visible */
@media (min-width: 769px) {
  .sidebar {
    transform: translateX(0);
  }
  .content {
    margin-left: 230px;
  }
}

@media (max-width: 768px) {
  .sidebar {
    overflow-y: auto;   /* enable vertical scroll */
    overflow-x: hidden; /* no horizontal scroll */
  }

  /* Optional custom scrollbar */
  .sidebar::-webkit-scrollbar {
    width: 6px;
  }
  .sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 3px;
  }
  .sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.6);
  }
}

/* ===== Home Page Layout ===== */
.content {
  flex: 1;
  /* display: flex; */
  justify-content: center;
  align-items: center;
}

/* Default image style */
.content img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Disable scrolling only for Home */
body.no-scroll {
  overflow: hidden;
}

/* ===== Carousel / Home Fullscreen Section ===== */
:root {
  --header-height: 50px; /* adjust as per your topbar height */
  --footer-height: 35px; /* adjust as per your footer height */
}

/* Fit between header and footer */
.carousel.fullscreen {
  margin-top: var(--header-height);
}

.carousel.fullscreen img {
  height: calc(100vh - (var(--header-height) + var(--footer-height)));
  width: 100%;
  object-fit: cover;
  display: block;
}

/* Optional: Responsive adjustment */
@media (max-width: 768px) {
  :root {
    --header-height: 60px;
    --footer-height: 50px;
  }
}

 /* ===== About Section ===== */
.about-section {
  padding: 80px 5px;
  background: #f8f9fc;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.about-content {
  flex: 1;
  min-width: 320px;
}

.about-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1c335f;
  margin-bottom: 20px;
  position: relative;
}

.about-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60px;
  height: 3px;
  /* background-color: #007bff; */
  border-radius: 2px;
}

.about-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
  text-align: justify;
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .about-image img {
    max-width: 100%;
  }
}

.tab-titles {
  display: flex;
  justify-content: center;
  gap: 30px;
  border-bottom: 2px solid #eee;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.tab-titles a {
  text-decoration: none;
  color: #003366;
  font-weight: 600;
  padding-bottom: 10px;
  transition: color 0.3s, border-bottom 0.3s;
}

.tab-titles a.tab-active,
.tab-titles a:hover {
  color: #007bff;
  border-bottom: 3px solid #007bff;
}

.vision-section,
.mission-section,
.values-section {
  background-color: #fff;
  padding: 60px 20px;
}

.section-content {
  flex: 1 1 500px;
}

.section-image {
  flex: 1 1 400px;
  text-align: center;
}

.section-text {
  line-height: 1.8;
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .tab-titles {
    gap: 15px;
  }

  .about-title::after {
    margin: 10px auto 0;
  }
}

/* Footer styling */
/* .laffan-footer {
  background-color: #0d6efd;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  width: 100%;
} */

/*industries section*/

/* Container */
.industries-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
  font-family: Arial, sans-serif;
  color: #333;
}

/* Header */
.industries-header {
  text-align: center;
  margin-bottom: 50px;
}
.industries-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 15px;
}
.industries-description {
  font-size: 16px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Cards Section */
.industries-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Single Card */
.industries-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 25px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.industries-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Icon */
.industries-icon {
  font-size: 40px;
  color: #007BFF;
  margin-bottom: 15px;
}

/* Card Title */
.industries-card-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Card Paragraph */
.industries-card p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 10px;
}

/* Card List */
.industries-card ul {
  padding-left: 20px;
  margin: 0;
}
.industries-card ul li {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .industries-title {
    font-size: 28px;
  }
  .industries-card {
    padding: 20px 15px;
  }
}

/*our services*/

.services-section ul {
  text-align: left;
  max-width: 850px;
  margin: 0 auto;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.services-section {
      background-color: #f8f9fa;
      padding: 80px 5px;
      text-align: center;
      /* max-width: 1200px; */
    }

    .services-section h2 {
      font-weight: 700;
      /* color: #222; */
      margin-bottom: 10px;
      display: block;
    }

    .services-section p.section-subtitle {
      color: #6c757d;
      font-size: 16px;
      max-width: 1050px;
      margin: 0 auto 20px;
      display: block;
    }

    .service-card {
      background: #fff;
      border: none;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      border-radius: 15px;
      transition: transform 0.3s, box-shadow 0.3s;
      text-align: center;
      padding: 40px 25px;
    }

    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .service-icon {
      font-size: 50px;
      color: #007bff;
      margin-bottom: 20px;
    }

    .service-card h5 {
      font-weight: 600;
      margin-bottom: 15px;
      color: #333;
    }

    .service-card p {
      color: #666;
      font-size: 15px;
    }

    .content img {
      width: 100%;
      height: auto;
      display: block;
    }

    @media (max-width: 768px) {
      .service-card {
        margin-bottom: 30px;
      }
    }

/*jobs option*/

.jobs-section {
      padding: 80px 5px;
      background-color: #f8f9fa;
    }

    .jobs-section h2 {
      text-align: center;
      font-weight: 700;
      /* color: #222; */
      margin-bottom: 15px;
    }

    .jobs-section p.section-subtitle {
      text-align: center;
      color: #6c757d;
      font-size: 16px;
      max-width: 850px;
      margin: 0 auto 15px;
    }

    .job-card {
      background: #fff;
      border: none;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      padding: 25px;
    }

    .job-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    }

    .job-title {
      font-size: 18px;
      font-weight: 600;
      color: #007bff;
      margin-bottom: 5px;
    }

    .job-location {
      font-size: 14px;
      color: #6c757d;
      margin-bottom: 10px;
    }

    .job-desc {
      color: #555;
      font-size: 15px;
      margin-bottom: 20px;
    }

    .apply-btn {
      background-color: #007bff;
      color: #fff;
      border: none;
      border-radius: 6px;
      padding: 8px 20px;
      font-size: 14px;
      transition: background-color 0.3s ease;
    }

    .apply-btn:hover {
      background-color: #0056b3;
    }

    @media (max-width: 768px) {
      .job-card {
        margin-bottom: 25px;
      }
    }

    /* Contact Section */
.contact-section {
  padding: 60px 5px;
}

.contact-section .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

/* Contact Info */
.contact-info {
  flex: 1;
  min-width: 320px;
}

.contact-info h2 {
  font-size: 28px;
  color: #0a4d68;
  margin-bottom: 15px;
}

.contact-info .subtitle {
  color: #555;
  font-size: 15px;
  margin-bottom: 30px;
}

.contact-box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-box i {
  font-size: 22px;
  color: #007bff;
  margin-right: 15px;
  margin-top: 5px;
}

.contact-box h5 {
  margin: 0 0 5px;
  font-size: 16px;
  color: #111;
}

.contact-box p a {
  color: #007bff;
  text-decoration: none;
}

.contact-box p a:hover {
  text-decoration: underline;
}

/* Contact Form */
.contact-form {
  flex: 1;
  min-width: 320px;
  background: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
  color: #0a4d68;
  margin-bottom: 20px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
}

.contact-form button {
  background-color: #007bff;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #0056b3;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group select {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

/* Map */
.map-container {
  margin-top: 50px;
}

iframe {
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-section .container {
    flex-direction: column;
  }
}

/* Gallery Section */
.gallery-section {
  padding: 60px 5px;
  background-color: #f9f9f9;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.gallery-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.gallery-title {
  font-size: 32px;
  color: #0a4d68;
  margin-bottom: 10px;
  font-weight: 600;
}

.gallery-subtitle {
  color: #666;
  font-size: 16px;
  margin-bottom: 40px;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

/* Gallery Item */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
  border-radius: 10px;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 77, 104, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 10px;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .gallery-title {
    font-size: 26px;
  }
  .gallery-subtitle {
    font-size: 14px;
  }
}

.toast-message {
  visibility: hidden;
  min-width: 250px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 12px;
  position: fixed;
  z-index: 9999;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.5s, bottom 0.5s;
}

.toast-message.show {
  visibility: visible;
  opacity: 1;
  bottom: 50px;
}

/*workshop Gallery Grid */
.work-shopgallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.work-shopgallery-item {
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s;
}

.work-shopgallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.work-shopgallery-item:hover img {
  transform: scale(1.1);
}