html {
  scroll-behavior: smooth;
}

/* Hide scrollbar but keep scrolling */
::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

body {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;     /* Firefox */
}

/* Splash Screen */
#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999; /* Always on top */
}

#splash-screen video {
  max-width: 300px; /* Adjust logo size */
  width: 80%;
  height: auto;
}

.fade-out {
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

/* === Reset & Base === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #fff;
  background-color: #111;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

/* === Navbar === */
.main-navbar {
  background-color: #111;
  position: relative;
  top: 0;
  z-index: 1000;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
}

.logo img {
  height: 42px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-btn {
  background: none;
  border: none;
  color: #ccc;
  font-size: 16px;
  cursor: pointer;
  transition: color 0.3s;
}

.nav-btn:hover {
  color: #fff;
  border-bottom: 2px solid #fff;
}


/* === Mega Dropdown === */
.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100vw;
  display: none;
  background: #1a1a1a;
  padding: 60px 80px;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  border-top: 1px solid #333;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.mega-left {
  width: 30%;
}

.mega-left ul {
  list-style: none;
}

.mega-left li {
  padding: 12px 10px;
  color: #ccc;
  cursor: pointer;
  border-bottom: 1px solid #333;
}

.mega-left li:hover,
.mega-left li.active {
  color: #fff;
  background-color: #2a2a2a;
}

.mega-right {
  width: 65%;
  color: #fff;
}

.mega-right h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.mega-right p {
  font-size: 16px;
  margin-bottom: 20px;
}

.mega-btn {
  padding: 8px 20px;
  font-size: 14px;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  border-radius: 30px;
  transition: 0.3s ease;
}

.mega-btn:hover {
  background: #fff;
  color: #000;
}

/* === Hero Section === */
.hero-carousel-wrapper {
  position: relative;
  overflow: hidden;
  height: 100vh;
  display: flex;
  width: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Dark by default */
.hero-slide img,
.hero-slide video {
  filter: brightness(90%);
}

.hero-caption {
  position: absolute;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
  color: white;
  max-width: 600px;
}

.hero-caption h1 {
  font-size: 40px;
  margin-bottom: 20px;
}

.hero-caption p {
  font-size: 18px;
  margin-bottom: 20px;
}

.hero-btn {
  padding: 8px 20px;
  font-size: 14px;
  border: 2px solid white;
  background: transparent;
  color: white;
  border-radius: 30px;
  text-decoration: none;
}

.hero-btn:hover {
  background: white;
  color: black;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  font-size: 28px;
  padding: 10px 14px;
  cursor: pointer;
  z-index: 2;
}

.hero-prev {
  left: 20px;
}

.hero-next {
  right: 20px;
}


/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}
/* Section 2 */
.second-section {
  width: 100vw;
  height: 100vh;
  background-image: url('assets/section2-BG.jpg'); /* Update path if needed */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  text-align: center;
}

.second-content {
  max-width: 800px;
  font-family: 'Inter', sans-serif;
  font-size: large;
  color: rgb(255, 255, 255);
}

.second-content p {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.2px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.second-section {
  position: relative;
}

.second-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6); /* Adjust darkness */
  z-index: 1;
}

.second-content {
  position: relative;
  z-index: 2; /* Keep text above overlay */
}

.second-content .hero-button {
  display: inline-block;
  background-color: #8a73ff;
  color: white;
  padding: 12px 24px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.3px;
  transition: background-color 0.3s;
}

.second-content .hero-button:hover {
  background-color: #6a5cd4;
}

/* Responsive: Tablet/Desktop */
@media (min-width: 768px) {
  .second-content p {
    font-size: 1.5rem;
  }

  .second-content .hero-button {
    padding: 14px 32px;
    font-size: 1.1rem;
  }
}
/* === Watch Video Button === */
.watch {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  background: #6a5cd4;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.watch:hover {
  background: #594db3;
  transform: scale(1.05);
}

/* === Video Popup Overlay === */
.video-popup {
  display: none; /* hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
/* Popup Box */
.video-popup-content {
  position: relative;
  background: #000;
  border-radius: 10px;
  max-width: 90%;
  width: 800px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Video inside popup */
/* Video Styling */
.video-popup video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* === Close Button === */
.video-popup .close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  background: rgba(0,0,0,0.6);
  border: none;
  cursor: pointer;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  z-index: 1100; /* keeps it above video */
}

.video-popup .close-btn:hover {
  background: rgba(255,0,0,0.7);
}
/* === Responsive Fix === */
@media (max-width: 768px) {
  .video-popup-content {
    width: 95%;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 480px) {
  .video-popup-content {
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
  .video-popup video {
    border-radius: 0;
  }
}




@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');



.stories-section {
  padding: 40px 20px;
  position: relative;
}

.section-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.section-heading {
  color: #000;
  font-size: 2rem;
  font-weight: 600;
}

.carousel-controls {
  display: flex;
  gap: 10px;
}

.carousel-btn {
  background-color: white;
  color: black;
  font-size: 1.2rem;
  border: 1px solid #ccc;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
}

.carousel-wrapper {
  overflow-x: auto;       /* enable horizontal scroll */
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch; /* smooth iOS scroll */
  scroll-behavior: smooth;
  width: 100%;
}


.carousel {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  will-change: transform;
}

.story-card {
  min-width: calc(33.3333% - 13.33px);
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  background-color: #000;
  color: white;
  height: auto;
}

.story-card a {
  color: white;
  text-decoration: none;
  display: block;
  height: 100%;
}

.card-image {
  width: 100%;
  height: 420px; /* Increased height */
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.story-card:hover .card-image {
  transform: scale(1.05);
}

.card-content {
  padding: 15px;
}

.card-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.card-content p {
  font-size: 0.95rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.read-more {
  font-weight: 500;
  font-size: 0.9rem;
  position: relative;
  display: inline-block;
}

.read-more::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #0091ff;
  transition: width 0.3s;
  margin-top: 2px;
}

.read-more:hover::after {
  width: 100%;
}
/* Mobile adjustments */
@media (max-width: 480px) {
  .stories-section .carousel-wrapper {
    overflow-x: hidden;  /* prevent horizontal scroll */
    width: 100%;
  }

  .stories-section .carousel {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
  }

  .stories-section .story-card {
    flex: 0 0 100%;  /* each card takes full width on mobile */
    max-width: 100%;
    margin-right: 0;  /* remove side spacing */
  }
}




/* Section 2 */
body {
  margin: 0;
  font-family: 'inter',sans-serif;
  background-color: #ffffff;
}

/* === Services Section Styled like Customer Growth === */
.services-section {
  background-color: #000; /* Black background */
  color: #fff;
  padding: 80px 0;
}

.services-section h4.services-subheading {
  font-size: 14px;
  color: #bbb;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.services-section h2.services-heading {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  max-width: 700px;
}

/* Slider container */
.slider-container {
  position: relative;
  overflow-x: auto;       /* allow horizontal scroll */
  overflow-y: hidden;
  width: 100%;
  scroll-snap-type: x mandatory;  /* snap effect */
  -webkit-overflow-scrolling: touch; /* smooth scroll on iOS */
}

.services-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.service-card {
  position: relative;
  flex: 0 0 calc(33.333% - 13.33px);
  height: 350px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease; /* smooth movement */
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
   background: rgba(0, 0, 0, 0.55); /* increased from 0.55 */
  transition: background 0.35s ease; /* smooth overlay fade */
}

.container {
  max-width: 1850px;
  margin: 0 auto;
  padding: 0 28px;
}


.service-card span {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: white;
  font-size: 18px;
  font-weight: 600;
  z-index: 2;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4); /* soft shadow while lifting */
}

.service-card:hover::before {
  background: rgba(0, 0, 0, 0.1);
}

/* Slider Buttons (matching hero carousel style) */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  font-size: 28px;
  padding: 10px 14px;
  cursor: pointer;
  z-index: 5;
  transition: background 0.3s ease;
}

.slider-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .service-card {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  .service-card {
    flex: 0 0 100%;
  }
}


/* Offer Section */
.offer-sections {
  background: #f4f4f4;
  padding: 62px 0 80px 0;
  text-align: center;
}

.offer-sections h2 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 56px;
  color: #191c21;
}

.offer-sections h2 span {
  font-size: 1.18rem;
  font-weight: 400;
  display: block;
  margin-top: 7px;
  color: #363636;
}

.offer-cars {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 36px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Client Favourite Card Design */
.cars {
  display: block;
  position: relative;
  max-width: 300px;
  max-height: 320px;
  background-color: #f2f8f9;
  border-radius: 12px;
  padding: 2em 1.2em;
  margin: 12px;
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
  background: black;
  font-family: Arial, Helvetica, sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cars:before {
  content: '';
  position: absolute;
  z-index: -1;
  top: -30px;
  right: -16px;
  background: white;
  height: 32px;
  width: 32px;
  border-radius: 32px;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.35s ease-out;
}

.cars:hover:before {
  transform: scale(28);
}

.cars-title {
  color: white;
  font-size: 1.3em;
  font-weight: 700;
  margin-bottom: 0.6em;
}

.smal-desc {
  font-size: 0.95em;
  font-weight: 400;
  line-height: 1.5em;
  color: white;
}

.cars:hover .smal-desc {
  transition: all 0.5s ease-out;
  color:black;
}

.cars:hover .cars-title {
  transition: all 0.5s ease-out;
  color:black;
}

/* Responsive */
@media (max-width: 900px) {
  .offer-cards {
    flex-direction: column;
    align-items: center;
    gap: 23px;
  }
  .card {
    max-width: 95%;
  }
}
.contact-section {
  background: 
    linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2)), 
    url("assets/contact.jpg") no-repeat center center;
  background-size: cover;
  /* show full image without cropping */
  background-repeat: no-repeat;
  background-position: center;
  background-color: #000;
  /* optional fallback color */
  color: #fff;
  padding: 60px 20;
}


.contact-container {
 width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: right;
  /* push content to the right */
}

.contact-form {
  background: rgba(0, 0, 0, 0.7);
  /* keep dark overlay if you want */
  padding: 30px 40px;
  border-radius: 2px;
  width: 50%;
  max-width: 800px; /* take half screen (adjust if needed) */
  text-align: left; /* keep form labels aligned properly */
}


.contact-form h2 {
  font-size: 60px;
  font-weight: 300;
}

.contact-form h2 span {
  color: #fff;
}

.contact-form p {
  font-size: 20px;
  margin: 10px 0 20px;
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.form-row input {
  flex: 1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 3px;
  margin-bottom: 15px;
   font-family: 'inter', sans-serif;  /* change font */
}

input::placeholder,
textarea::placeholder {
  font-family: 'inter', sans-serif;  /* change font */
}


.contact-form textarea {
  height: 100px;
  resize: none;
}

.checkbox-container {
  display: flex;
  align-items: center;   /* aligns checkbox with top of text */
  gap: 10px;                 /* space between checkbox and text */
  margin: 10px 0;
  text-align: left;
}

.checkbox-container input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #8a73ff; /* gives it your brand color */
  flex-shrink: 0;
}

.checkbox-container label {
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
}


.btn-submit {
  background: #8a73ff;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  border-radius: 3px;
  transition: 0.3s ease;
  width: 100%;
}

.btn-submit:hover {
  background: #ffffff;
}

/* Large Tablet / Small Laptop (<=1024px) */
@media (max-width: 1024px) {
  .contact-form {
    width: 60%; /* form takes more space */
  }
  .contact-form h2 {
    font-size: 48px;
  }
  .contact-form p {
    font-size: 18px;
  }
}

/* Tablet (<=768px) */
@media (max-width: 768px) {
  .contact-container {
    justify-content: center; /* center form */
  }
  .contact-form {
    width: 80%;
    padding: 25px 30px;
  }
  .contact-form h2 {
    font-size: 36px;
    line-height: 1.3;
  }
  .contact-form p {
    font-size: 16px;
  }
  .form-row {
    flex-direction: column; /* stack inputs */
  }
}

/* Mobile (<=480px) */
@media (max-width: 480px) {
  .contact-form {
    width: 100%;
    padding: 20px;
  }
  .contact-form h2 {
    font-size: 28px;
    line-height: 1.2;
  }
  .contact-form p {
    font-size: 14px;
  }
  .btn-submit {
    font-size: 15px;
    padding: 12px; /* clean compact button */
  }
}

/* Footer */
/* Footer */
/* Join Our Team Section */
/* Footer */
/* Footer */
/* Join Our Team Section */
.join-team-section {
  background: #191919;
  color: #fff;
  text-align: center;
  padding: 70px 0 56px 0;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

.join-team-section h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: 0.03em;
}

.explore-btn {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 1.5px solid #888;
  padding: 13px 36px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 18px;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, border 0.18s;
  margin-top: 10px;
}
.explore-btn:hover {
  background: #000000;
  color: #ffffff;
  border: 1.5px solid #9b31cc;
}




.footer {
  background: #111;
  color: #eee;
  padding: 24px 0 14px 0;
  font-size: 15px;
}

.footer-container {
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 28px;
}

.footer-left {
  display: flex;
  align-items: center;
}

.footer-logo {
  height: 28px;
  margin-bottom: 8px;
}

.footer-center {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
  font-size: 18px;
  letter-spacing: 0.4px;
  font-weight: 600;
  margin-bottom: 8px;
}

.footer-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
}

.footer-right a {
  color: #eee;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-right a:hover {
  color: #6d6d6d;
}

.footer-right span {
  color: #555;
  font-size: 14px;
}/* === Join Our Team + Certificates Section === */
.join-cert-section {
  background: #191919;
  color: #fff;
  display: flex;
  justify-content: center; /* Changed from space-between */
  align-items: center;
  padding: 80px 20%;
  flex-wrap: nowrap;
  gap: 150px; /* Added space between left and right sections */
}

.join-left {
  max-width: 40%;
}

.cert-right {
  text-align: center;
}


.join-left h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: 0.03em;
  color: #fff;
}

.explore-btn {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 1.5px solid #888;
  padding: 13px 36px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 18px;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, border 0.18s;
}
.explore-btn:hover {
  background: #000000;
  color: #ffffff;
  border: 1.5px solid #9b31cc;
}

.cert-right {
  flex: 1 1 50%;
  min-width: 300px;
}

.cert-right h3 {
  font-size: 20px;
  margin-bottom: 10px;
  text-align: center;
}

.certificates {
  display: flex;
  gap: 15px;
  flex-wrap: nowrap;
  justify-content: center;
}

.certificates img {
  width: 120px;
  height: auto;
  flex-shrink: 0;
  border-radius: 8px;
  background: #fff;
  padding: 5px;
}

.cert-row {
  display: flex;
  justify-content: center;  /* centers all logos */
  align-items: center;
  gap: 15px;
  flex-wrap: nowrap;        /* ❌ prevent stacking */
  overflow-x: auto;         /* ✅ allow scrolling if too small */
}

.cert-row img {
  width: 90px;             /* base size */
  height: auto;
  flex-shrink: 0;           /* ✅ prevents squishing */
  border-radius: 8px;
  transition: transform 0.3s ease;
  border: 1px solid #333;
}

.cert-row img:hover {
  transform: scale(1.05);
}
/* Fix certificates overlap on mobile */
.certificates,
.cert-row {
  display: flex;
  flex-wrap: wrap;         /* ✅ allow wrapping to next line */
  justify-content: center; /* ✅ center align logos */
  gap: 12px;               /* spacing between logos */
}

.certificates img,
.cert-row img {
  height: auto;
  max-height: 50px;        /* uniform height */
  max-width: 100px;        /* prevent extra-wide logos */
  object-fit: contain;     /* maintain aspect ratio */
  flex: 0 1 auto;          /* ✅ avoid forced stretching */
}

/* === Footer === */
.footer {
  background: #111;
  color: #eee;
  padding: 24px 0 14px 0;
  font-size: 15px;
}

.footer-container {
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 28px;
}

.footer-left img {
  height: 28px;
  margin-bottom: 8px;
}

.footer-center {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
  font-size: 18px;
  letter-spacing: 0.4px;
  font-weight: 600;
  margin-bottom: 8px;
}

.footer-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
}

.footer-right a {
  color: #eee;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-right a:hover {
  color: #6d6d6d;
}

.footer-right span {
  color: #555;
  font-size: 14px;
}


@media (max-width: 1500px) {

  /* Join Our Team + Certificates */
  .join-cert-section {
    padding: 80px 10%;       /* more side padding */
    gap: 100px;              /* generous gap between left & right */
  }

  .join-left {
    max-width: 40%;
  }

  .join-left h2 {
    font-size: 52px;         /* larger heading */
    margin-bottom: 30px;
  }

  .explore-btn {
    padding: 15px 40px;
    font-size: 20px;
  }

  .cert-right h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .cert-row img {
    width: 100px;            /* bigger certificates */
  }

  /* Join Team CTA Section */
  .join-team-section {
    padding: 80px 40px;
  }

  .join-team-section h2 {
    font-size: 52px;
  }

  /* Footer */
  .footer-container {
    padding: 0 40px;
    gap: 30px;
  }

  .footer-center {
    font-size: 20px;
  }
}
/* ================= Responsive for 1200px ================= */
@media (max-width: 1200px) {

  .join-cert-section {
    padding: 70px 8%;
    gap: 90px;               /* slightly reduced gap */
  }

  .join-left {
    max-width: 43%;
  }

  .join-left h2 {
    font-size: 44px;
    margin-bottom: 25px;
  }

  .explore-btn {
    padding: 12px 32px;
    font-size: 18px;
  }

  .cert-right h3 {
    font-size: 20px;
    margin-bottom: 18px;
  }

  .cert-row img {
    width: 100px;
  }

  .join-team-section {
    padding: 70px 30px;
  }

  .join-team-section h2 {
    font-size: 44px;
  }

  .footer-container {
    padding: 0 30px;
    gap: 25px;
  }

  .footer-center {
    font-size: 18px;
  }
}
/* ================= Responsive for 1024px ================= */
@media (max-width: 1024px) {

  /* Join Our Team + Certificates */
  .join-cert-section {
    padding: 60px 8%;       /* reduce side padding */
    gap: 80px;              /* less gap between left & right */
  }

  .join-left {
    max-width: 45%;         /* narrower left column */
  }

  .join-left h2 {
    font-size: 38px;        /* smaller heading */
    margin-bottom: 20px;
  }

  .explore-btn {
    padding: 10px 28px;
    font-size: 16px;
  }

  .cert-right {
    flex: 1 1 55%;          /* take rest of space */
    text-align: center;
  }

  .cert-right h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .cert-row img {
    width: 73px;            /* smaller certificates */
  }

  /* Join Team CTA Section */
  .join-team-section {
    padding: 50px 20px;
  }

  .join-team-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
  }

  /* Footer */
  .footer-container {
    padding: 0 20px;
    gap: 20px;
  }

  .footer-center {
    font-size: 16px;
  }
}


/* === Responsive Adjustments === */
@media (max-width: 800px) {
  .join-cert-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 50px 20px;
  }

  .join-left,
  .cert-right {
    max-width: 100%;
  }

  .join-left h2 {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .explore-btn {
    padding: 10px 24px;
    font-size: 16px;
  }

  .cert-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;      /* ✅ force all logos in one line */
    overflow-x: auto;       /* ✅ enable horizontal scroll if too many */
    -webkit-overflow-scrolling: touch; /* smooth scroll on mobile */
  }

  .cert-row img {
    width: 20px;           /* keep them visible */
    height: auto;
    flex-shrink: 0;        /* ✅ prevent shrinking */
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .footer-center {
    order: 2;
  }

  .footer-right {
    justify-content: center;
    gap: 10px;
    order: 3;
  }

  .footer-left {
    order: 1;
  }
}


/* ================= Responsive for 768px ================= */
@media (max-width: 768px) {

  /* Join Our Team + Certificates */
  .join-cert-section {
    flex-direction: column;   /* stack text & certs vertically */
    align-items: center;
    text-align: center;
    gap: 40px;                /* reduce big gap */
    padding: 50px 30px;
  }

  .join-left {
    max-width: 100%;
  }

  .join-left h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .explore-btn {
    padding: 10px 24px;
    font-size: 16px;
  }

  .cert-right {
    flex: 1 1 100%;
    min-width: auto;
  }

  .cert-right h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .cert-row {
    justify-content: center;
    gap: 12px;
    overflow-x: auto;   /* allows horizontal scroll if needed */
  }

  .cert-row img {
    width: 50px;        /* smaller certificates */
    height: auto;
  }

  /* Footer adjustments */
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .footer-center {
    order: 2;
    font-size: 16px;
  }

  .footer-right {
    justify-content: center;
    order: 3;
  }

  .footer-left {
    order: 1;
  }
}

/* Special rule only for 769px–799px */
@media (min-width: 769px) and (max-width: 800px) {
  .join-cert-section {
    flex-direction: row;       /* side by side */
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }

  .join-left {
    flex: 1 1 45%;
    max-width: 45%;
    text-align: left;
  }

  .cert-right {
    flex: 1 1 55%;
    max-width: 55%;
    text-align: center;
  }

  .cert-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;   /* ✅ keep all in one line */
    overflow-x: auto;    /* ✅ if too many, allow horizontal scroll */
  }

  .cert-row img {
    width: 70px;   /* keep consistent size */
    height: auto;
    flex-shrink: 0;  /* ✅ prevents shrinking */
  }
}


/* === Responsive (max-width: 480px) === */
@media (max-width: 480px) {
  .cert-row {
    gap: 8px;
  }
  .cert-row img {
    width: 50px;            /* smaller but still visible */
  }
}

/* === Responsive (max-width: 360px) === */
/* Join + Certificates Section (<=360px) */
@media (max-width: 360px) {
  .certificates,
  .cert-row {
    justify-content: center;
    flex-wrap: wrap;   /* allow wrapping */
    gap: 10px;
  }

  .cert-row img {
    width: 70px;       /* consistent size */
    height: auto;      /* auto keeps aspect ratio */
    object-fit: contain;
  }
}


@media (max-width: 800px) and (min-width: 769px) {
  .certificates img {
    width: 80px;   /* ✅ not too small */
  }
}

/* === Responsive === */
@media (max-width: 768px) {
  .navbar-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .nav-links {
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
  }

  .hero-caption {
    left: 20px;
    right: 20px;
    max-width: 90%;
  }

  .hero-caption h1 {
    font-size: 28px;
  }

  .hero-caption p {
    font-size: 16px;
  }

  .section-heading,
  .services-heading {
    font-size: 24px;
  }

  .story-card {
    min-width: 240px;
  }

  .carousel-btn,
  .slider-btn {
    font-size: 16px;
    padding: 8px;
  }
}








/* === Mobile Menu === */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 24px;
  z-index: 1100;
}

.hamburger span {
  height: 3px;
  width: 24px;
  background-color: #fff;
  border-radius: 2px;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: #000;
  z-index: 9999;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mobile-menu-overlay.active {
  display: flex;
}

.mobile-menu-links {
  list-style: none;
  text-align: center;
  padding: 0;
}

.mobile-menu-links li {
  margin: 20px 0;
}

.mobile-menu-links a {
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  background: none;
  color: white;
  border: none;
  cursor: pointer;
}

/* Show hamburger and hide nav on mobile */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
  }
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 28px;
  z-index: 1100;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background-color: #fff;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
  }
}

/* Mobile menu overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  background: #000;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mobile-menu-overlay.active {
  display: flex;
}

.mobile-menu-links {
  list-style: none;
  padding: 0;
  text-align: center;
  width: 100%;
}

.mobile-menu-links li {
  margin: 20px 0;
}

.mobile-menu-links a,
.mobile-menu-links button {
  font-size: 1.3rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.submenu {
  list-style: none;
  padding: 10px 0;
  display: none;
  font-size: 1rem;
}

.submenu li {
  margin: 8px 0;
}

.submenu li a {
  font-size: 1rem;
  color: #aaa;
}

.dropdown-toggle:after {
  content: " ▾";
  font-size: 0.9rem;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  background: none;
  color: white;
  border: none;
  cursor: pointer;
}
