* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Segoe UI', sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden; /* Prevent horizontal scroll on mobile */
  width: 100%;
}

/* Prevent horizontal overflow on all elements */
* {
  max-width: 100%;
}

/* Container constraint for all sections */
.container {
  max-width: 100%;
  padding: 0 15px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 30px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 60px;
  }
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background-color: transparent;
  transition: background-color 0.4s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background-color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: white;
  font-family: 'Playfair Display', serif;
  letter-spacing: 1px;
  text-align: center;
  line-height: 1.2;
}

.navbar.scrolled .logo {
  color: black;
}

.logo span {
  font-weight: 400;
  display: block;
  font-size: 12px;
  letter-spacing: 1.5px;
  margin-top: 2px;
  font-family: 'Segoe UI', sans-serif;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

/* Hide nav-links on mobile by default */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

.navbar.scrolled .nav-links li a {
  color: black;
}

.contact-btn {
  padding: 8px 16px;
  border: 1px solid white;
  color: white;
  text-decoration: none;
  transition: 0.3s ease;
}

.navbar.scrolled .contact-btn {
  border: 1px solid black;
  color: black;
}

/* Navbar Responsive Styles */
@media (max-width: 1024px) {
  .navbar {
    padding: 15px 30px;
  }
  
  .nav-links {
    gap: 25px;
  }
  
  .nav-links li a {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 15px 20px;
    position: relative;
  }
  
  /* Hamburger menu positioning - Left corner */
  .hamburger-menu {
    order: -1; /* Move to the very left */
    margin-right: auto;
  }
  
  .logo {
    font-size: 20px;
    order: 0; /* Center position */
    margin: 0 auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    letter-spacing: 0.8px;
  }
  
  .logo span {
    font-size: 10px;
    letter-spacing: 1.2px;
    margin-top: 1px;
  }
  
  /* Hamburger menu always visible on mobile */
  .hamburger-menu {
    display: flex !important;
  }
  
  /* Hide desktop nav links on mobile */
  .nav-links {
    display: none;
  }
  
  /* Show mobile menu when open */
  .nav-links.mobile-menu-open {
    display: flex !important;
  }
  
  /* Hide contact button on mobile */
  .contact-btn {
    display: none;
  }
  
  .navbar.scrolled .logo {
    margin: 0; /* Reset center margin when scrolled */
    position: static;
    transform: none;
    font-size: 16px;
    letter-spacing: 0.8px;
  }
  
  .navbar.scrolled .nav-links {
    display: none !important; /* Keep hidden on mobile even when scrolled */
  }
  
  .navbar.scrolled .nav-links.mobile-menu-open {
    display: flex !important; /* Show when manually opened */
  }
  
  .navbar.scrolled .nav-links li {
    width: auto;
    text-align: left;
  }
  
  .navbar.scrolled .nav-links li a {
    font-size: 13px !important;
    padding: 4px 6px !important;
    color: black !important;
    background: transparent !important;
    border-radius: 0 !important;
    display: inline !important;
    width: auto !important;
  }
  
  .navbar.scrolled .nav-links li a:hover {
    background: transparent !important;
    transform: none !important;
  }
  
  .navbar.scrolled .nav-links .mobile-contact-info {
    display: none !important;
  }
  
  .navbar.scrolled .contact-btn {
    display: block;
    padding: 5px 10px;
    font-size: 12px;
    border: 1px solid black;
    color: black;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 12px 15px;
    position: relative;
  }
  
  /* Hamburger menu positioning - Left corner */
  .hamburger-menu {
    order: -1;
    margin-right: auto;
  }
  
  .logo {
    font-size: 18px;
    order: 0;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    letter-spacing: 0.6px;
  }
  
  .logo span {
    font-size: 9px;
    letter-spacing: 1px;
    margin-top: 1px;
  }
  
  /* Hamburger menu for very small screens */
  .hamburger-menu {
    display: flex !important;
  }
  
  .nav-links {
    display: none;
  }
  
  .nav-links.mobile-menu-open {
    display: flex !important;
  }
  
  .contact-btn {
    display: none;
  }
  
  .navbar.scrolled .logo {
    position: static;
    transform: none;
    margin: 0;
    font-size: 15px;
    letter-spacing: 0.6px;
  }
  
  .navbar.scrolled .nav-links {
    display: none !important; /* Keep hidden on mobile even when scrolled */
  }
  
  .navbar.scrolled .nav-links.mobile-menu-open {
    display: flex !important; /* Show when manually opened */
  }
  
  .navbar.scrolled .nav-links li {
    width: auto;
    text-align: left;
  }
  
  .navbar.scrolled .nav-links li a {
    font-size: 12px !important;
    padding: 3px 5px !important;
    color: black !important;
    background: transparent !important;
    border-radius: 0 !important;
    display: inline !important;
    width: auto !important;
  }
  
  .navbar.scrolled .nav-links .mobile-contact-info {
    display: none !important;
  }
  
  .navbar.scrolled .contact-btn {
    display: block;
    padding: 4px 8px;
    font-size: 11px;
    border: 1px solid black;
    color: black;
  }
}

/* --- Mobile Menu Overlay: Black Background, White Text --- */
@media (max-width: 768px) {
  .nav-links.mobile-menu-open {
    background: #111 !important;
  }
  .nav-links.mobile-menu-open li a {
    color: #fff !important;
    border-bottom: 1px solid #222;
  }
  .nav-links.mobile-menu-open .mobile-contact-info {
    color: #fff;
  }
}

/* --- Navbar Always Visible, Black Background, White Logo/Hamburger on Mobile --- */
@media (max-width: 768px) {
  .navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw;
    background: #111 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    z-index: 3000;
  }
  .navbar .logo,
  .navbar .logo span {
    color: #fff !important;
  }
  .hamburger-menu .hamburger-line {
    background: #fff !important;
  }
}

/* --- Ensure Hamburger is Visible on Black Navbar --- */
@media (max-width: 768px) {
  .navbar .hamburger-menu {
    display: flex !important;
  }
}

/* Hero Section */
.video-slider {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.video-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  opacity: 0;
  transition: opacity 1s ease;
}
.video-slide.active {
  display: block;
  z-index: 1;
  opacity: 1;
}

/* Hero Content */
.hero-content {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  color: white;
  z-index: 2;
  max-width: 800px;
  width: 100%;
  margin: 120px;
}
.hero-content h1 {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}
.hero-content p {
  font-size: 18px;
  line-height: 1.5;
}
/* Slide Title - Force single line display */
#slide-title {
  white-space: nowrap;
}

/* Hero Section Responsive Styles */
@media (max-width: 1024px) {
  .hero-content {
    max-width: 600px;
    margin: 80px;
    left: 50%;
  }
  
  .hero-content h1 {
    font-size: 42px;
  }
  
  .hero-content p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    max-width: 500px;
    margin: 40px 20px;
    left: 50%;
  }
  
  .hero-content h1 {
    font-size: 36px;
    margin-bottom: 15px;
  }
  
  .hero-content p {
    font-size: 15px;
  }
  
  .controls {
    bottom: 20px;
    right: 20px;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .video-slider {
    position: relative !important;
    z-index: 1 !important;
  }
  .hero-content {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100vw;
    max-width: 100vw;
    z-index: 9999 !important;
    margin: 0;
    padding: 22px 10px 12px 10px;
    text-align: center;
    color: #fff;
    word-break: break-word;
    box-sizing: border-box;
    background: rgba(0,0,0,0.85) !important;
    border-radius: 0 0 18px 18px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .hero-content h1, .hero-content p {
    pointer-events: auto;
  }
  .hero-content h1 {
    font-size: 22px;
    line-height: 1.25;
    margin-bottom: 8px;
    color: #fff !important;
    word-break: break-word;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
    font-weight: 700;
  }
  .hero-content p {
    font-size: 14px;
    line-height: 1.3;
    color: #fff !important;
    word-break: break-word;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
    margin-bottom: 0;
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .controls {
    bottom: 15px;
    right: 15px;
    gap: 10px;
  }
  
  .control-btn {
    width: 35px;
    height: 35px;
  }
  
  .control-btn img {
    width: 14px;
    height: 14px;
  }
}
/* Controls */
.controls {
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: flex;
  gap: 20px;
  z-index: 3;
}
.arrow, .volume-btn {
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
}
.arrow img, .volume-btn img {
  width: 20px;
  height: 20px;
}

/* About Section */
.about-section {
  padding: 80px 60px;
  font-family: 'Inter', sans-serif;
  background: #fff;
}
.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
}
.about-image img {
  width: 100%;
  max-width: 650px;
  height: auto;
  display: block;
}
.about-content {
  flex: 1;
  padding: 40px;
  text-align: left;
}
.about-content h2 {
  font-size: 48px;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 40px;
  color: #000;
}
.about-btn {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid #000;
  text-decoration: none;
  font-size: 18px;
  margin-bottom: 50px;
  color: #000;
  transition: 0.3s ease;
}
.about-btn:hover {
  background-color: #000;
  color: #fff;
}
.about-btn .arrow {
  margin-left: 10px;
}
.stats {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
}
.stat .number {
  font-size: 56px;
  font-weight: 400;
  font-family: 'Playfair Display', serif;
  display: block;
}
.stat .label {
  font-size: 16px;
  margin-top: 5px;
  display: block;
}

/* Stats Section Responsive Styles */
@media (max-width: 768px) {
  .stats {
    gap: 40px;
    justify-content: center;
  }
  
  .stat .number {
    font-size: 42px;
  }
  
  .stat .label {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .stats {
    gap: 30px;
    flex-direction: column;
    align-items: center;
  }
  
  .stat .number {
    font-size: 36px;
  }
  
  .stat .label {
    font-size: 13px;
  }
}

/*collection section */
 .collection-section {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 80px;
      gap: 50px;
    }

    .left-content {
      flex: 1;
    }

    .left-content h1 {
      font-size: 48px;
      line-height: 1.2;
      margin-bottom: 40px;
    }

    .left-content button {
      padding: 15px 30px;
      font-size: 18px;
      font-family: 'Playfair Display', serif;
      background: transparent;
      border: 2px solid #000;
      cursor: pointer;
      transition: 0.3s;
    }

    .left-content button:hover {
      background-color: #000;
      color: #fff;
    }

    .right-content {
      flex: 2;
      display: flex;
      overflow: hidden;
      position: relative;
    }

    .product-slider {
      display: flex;
      gap: 60px;
      animation: slide 12s infinite linear;
    }

    .product-item {
      text-align: center;
      flex-shrink: 0;
      width: 200px;
    }

    .product-item img {
      width: 100%;
      height: auto;
    }

    .product-item p {
      font-size: 22px;
      margin-top: 20px;
    }

    @keyframes slide {
      0% { transform: translateX(0); }
      16% { transform: translateX(0); }
      33% { transform: translateX(-260px); }
      49% { transform: translateX(-520px); }
      66% { transform: translateX(-780px); }
      83% { transform: translateX(-1040px); }
      100% { transform: translateX(0); }
    }

    /* Collection Section Responsive Styles */
    @media (max-width: 1024px) {
      .collection-section {
        padding: 60px;
        gap: 40px;
      }
      
      .left-content h1 {
        font-size: 42px;
      }
      
      .left-content button {
        padding: 12px 25px;
        font-size: 16px;
      }
      
      .product-slider {
        gap: 40px;
      }
      
      .product-item {
        width: 180px;
      }
    }

    @media (max-width: 768px) {
      .collection-section {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
      }

      .left-content h1 {
        font-size: 36px;
        margin-bottom: 30px;
      }
      
      .left-content button {
        padding: 10px 20px;
        font-size: 15px;
      }

      .right-content {
        justify-content: center;
      }

      .product-item {
        width: 150px;
      }
      
      .product-item p {
        font-size: 18px;
        margin-top: 15px;
      }
    }
    
    @media (max-width: 480px) {
      .collection-section {
        padding: 30px 15px;
      }
      
      .left-content h1 {
        font-size: 28px;
        line-height: 1.3;
      }
      
      .product-slider {
        gap: 20px;
      }
      
      .product-item {
        width: 120px;
      }
      
      .product-item p {
        font-size: 16px;
        margin-top: 10px;
      }
    }

     /*step section */
      .container {
  display: flex;
  height: 100vh;
}

/* Left Side */
.left-side {
  position: relative;
  width: 50%;
  overflow: hidden;
}

.background-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-content {
  position: absolute;
  bottom: 10%;
  left: 10%;
  color: #fff;
}

.overlay-content h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.discover-btn {
  padding: 10px 20px;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
}

/* Right Side */
.right-side {
  width: 50%;
  background: #f9f9f9;
  padding: 40px 60px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
}

#processVideo {
  width: 100%;
  height: 300px;
  object-fit: contain;
  border-radius: 10px;
 
}

/* Step Text */
.step-content {
  margin-top: 30px;
  text-align: center;
}

.step-number {
  color: gray;
  font-size: 1rem;
  margin-bottom: 5px;
}

#stepTitle {
  font-size: 2rem;
  margin-bottom: 15px;
}

#stepDesc {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
  max-width: 500px;
  margin: 0 auto;
}

/* Dots */
.dots {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #aaa;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: #000;
}

/* Step Section Responsive Styles */
@media (max-width: 1024px) {
  .right-side {
    padding: 30px 40px;
  }
  
  .overlay-content h1 {
    font-size: 2.5rem;
  }
  
  #stepTitle {
    font-size: 1.8rem;
  }
  
  #processVideo {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    height: auto;
  }
  
  .left-side {
    width: 100%;
    height: 50vh;
  }
  
  .right-side {
    width: 100%;
    padding: 30px 20px;
  }
  
  .overlay-content {
    bottom: 15%;
    left: 5%;
  }
  
  .overlay-content h1 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .discover-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
  
  #stepTitle {
    font-size: 1.6rem;
  }
  
  #stepDesc {
    font-size: 0.9rem;
  }
  
  #processVideo {
    height: 200px;
  }
  
  .dots {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .left-side {
    height: 40vh;
  }
  
  .right-side {
    padding: 20px 15px;
  }
  
  .overlay-content {
    bottom: 10%;
    left: 5%;
  }
  
  .overlay-content h1 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .discover-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  
  #stepTitle {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  
  #stepDesc {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  
  #processVideo {
    height: 180px;
  }
  
  .step-content {
    margin-top: 20px;
  }
}


/* Infrastructure Section */
.infrastructure-section {
  padding: 80px 40px;
  background-color: #f8f8f8;
}

.infrastructure-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  color: #333;
  margin-bottom: 40px;
  max-width: 600px;
}

.carousel-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.arrow-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.arrow-buttons button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #333;
  background-color: transparent;
  color: #333;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-buttons button:hover {
  background-color: #333;
  color: white;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  flex: 1;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 20px;
  padding: 0;
  width: 100%;
}

.slide {
  flex: 0 0 calc(33.333% - 13.33px); /* 3 slides with gaps */
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  text-align: center;
}

.slide img {
  width: 100%;
  height: 280px; /* Fixed height */
  object-fit: cover; /* Makes all images fill the same frame proportionally */
  display: block;
}

.slide p {
  margin: 15px 0;
  padding: 0 10px 15px 10px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #333;
  background: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .infrastructure-section {
    padding: 60px 20px;
    background-color: #f8f8f8 !important;
  }
  
  .infrastructure-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
  }
  
  .carousel-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  
  .arrow-buttons {
    flex-direction: row;
    justify-content: center;
    margin-top: 0;
    order: 2;
  }
  
  .carousel-container {
    order: 1;
    width: 100%;
    overflow: hidden;
  }
  
  .carousel-track {
    display: flex !important;
    gap: 15px;
    width: 100%;
    transition: transform 0.5s ease-in-out;
  }
  
  .slide {
    flex: 0 0 calc(50% - 7.5px) !important;
    width: calc(50% - 7.5px) !important;
    background: #fff !important;
    min-height: 280px;
    max-height: 280px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
  }
  
  .slide img {
    width: 100% !important;
    height: 180px !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    background: #fff;
  }
  
  .slide p {
    padding: 15px 10px !important;
    font-size: 12px !important;
    line-height: 1.3 !important;
    background: #fff !important;
    margin: 0 !important;
    height: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #333 !important;
  }
}

@media (max-width: 480px) {
  .infrastructure-section {
    padding: 40px 15px;
    background-color: #f8f8f8 !important;
  }
  
  .infrastructure-section h2 {
    font-size: 28px;
    line-height: 1.3;
    text-align: center;
  }
  
  .carousel-wrapper {
    flex-direction: column;
    gap: 15px;
  }
  
  .carousel-container {
    width: 100%;
    overflow: hidden;
  }
  
  .carousel-track {
    display: flex !important;
    gap: 10px;
    width: 100%;
    transition: transform 0.5s ease-in-out;
  }
  
  .slide {
    flex: 0 0 100% !important;
    width: 100% !important;
    background: #fff !important;
    min-height: 260px;
    max-height: 260px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
  }
  
  .slide img {
    width: 100% !important;
    height: 160px !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    background: #fff;
  }
  
  .slide p {
    padding: 15px 10px !important;
    font-size: 11px !important;
    background: #fff !important;
    margin: 0 !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    color: #333 !important;
  }
  
  .arrow-buttons button {
    width: 40px !important;
    height: 40px !important;
    font-size: 16px !important;
  }
}

/* ========================================= */
/* INFRASTRUCTURE SECTION MOBILE FIXES      */
/* ========================================= */

/* Ensure consistent background and layout for infrastructure */
@media (max-width: 768px) {
  .infrastructure {
    padding: 40px 10px !important;
    overflow: hidden !important;
    background-color: #f8f8f8 !important;
  }
  
  .infrastructure h2 {
    font-size: 24px !important;
    margin-bottom: 20px !important;
    text-align: center !important;
  }
  
  .carousel-container {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    position: relative !important;
    border-radius: 10px !important;
    background: #f8f9fa !important;
  }
  
  .carousel-track {
    display: flex !important;
    transition: transform 0.5s ease-in-out !important;
    will-change: transform !important;
    gap: 15px !important;
    width: 100% !important;
  }
  
  .slide {
    flex: 0 0 calc(50% - 7.5px) !important;
    width: calc(50% - 7.5px) !important;
    min-height: 280px !important;
    max-height: 280px !important;
    padding: 15px !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    background: #fff !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    position: relative !important;
  }
  
  .slide img {
    width: 100% !important;
    height: 180px !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 6px !important;
    margin-bottom: 10px !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: #fff !important;
  }
  
  .slide p {
    height: 60px !important;
    min-height: 60px !important;
    max-height: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px !important;
    background: #fff !important;
    margin: 0 !important;
    color: #333 !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
  }
  
  .arrow {
    /* display: flex !important;
    position: absolute !important; */
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: rgba(0, 0, 0, 0.7) !important;
    color: white !important;
    border: none !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    z-index: 10 !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    transition: all 0.3s ease !important;
  }
  
  .arrow:hover {
    background: rgba(0, 0, 0, 0.9) !important;
  }
  
  .prev {
    left: 10px !important;
  }
  
  .next {
    right: 10px !important;
  }
}

@media (max-width: 480px) {
  .infrastructure {
    padding: 30px 5px !important;
  }
  
  .infrastructure h2 {
    font-size: 20px !important;
    margin-bottom: 15px !important;
  }
  
  .carousel-container {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
  }
  
  .carousel-track {
    gap: 10px !important;
  }
  
  .slide {
    flex: 0 0 100% !important;
    width: 100% !important;
    min-height: 260px !important;
    max-height: 260px !important;
    padding: 20px 10px !important;
    margin: 0 !important;
  }
  
  .slide img {
    width: 100% !important;
    height: 160px !important;
    margin-bottom: 15px !important;
  }
  
  .slide p {
    height: 50px !important;
    min-height: 50px !important;
    max-height: 50px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
  }
  
  .arrow {
    width: 35px !important;
    height: 35px !important;
    font-size: 16px !important;
  }
  
  .prev {
    left: 5px !important;
  }
  
  .next {
    right: 5px !important;
  }
}

/* Build Your Own Diamond Jewellery Section */
.build-jewellery-section {
  padding: 80px 40px;
  background-color: #f5f5f5;
}

.build-content {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 80px;
}

.build-text {
  flex: 1;
  max-width: 500px;
}

.build-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  color: #333;
  margin-bottom: 30px;
}

.build-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 40px;
}

.enquiry-btn {
  background-color: #000;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.enquiry-btn:hover {
  background-color: #333;
  transform: translateY(-2px);
}

.build-image {
  flex: 1;
  text-align: center;
}

.build-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
}

/* Responsive Design for Build Section */
@media (max-width: 768px) {
  .build-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  
  .build-text h2 {
    font-size: 36px;
  }
  
  .build-image img {
    max-width: 350px;
  }
}

@media (max-width: 480px) {
  .build-jewellery-section {
    padding: 60px 20px;
  }
  
  .build-text h2 {
    font-size: 28px;
  }
  
  .build-text p {
    font-size: 16px;
  }
}

/* Diamond Quality Guaranteed Section */
.diamond-quality-section {
  padding: 80px 40px;
  background-color: #fff;
}

.quality-container {
  max-width: 1200px;
  margin: 0 auto;
}

.quality-layout {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  margin-bottom: 60px;
}

.quality-left {
  flex: 0 0 400px;
}

.quality-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.2;
  color: #333;
  margin-bottom: 30px;
}

.quality-left p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}

.quality-right {
  flex: 1;
}

.quality-accordion {
  border-top: 1px solid #ddd;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
  transition: all 0.3s ease;
}

.accordion-header {
  display: flex;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background-color: #f9f9f9;
  padding-left: 15px;
}

.accordion-header .number {
  font-size: 14px;
  color: #999;
  margin-right: 15px;
  min-width: 25px;
}

.accordion-header h3 {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  flex: 1;
  margin: 0;
}

.accordion-header .icon {
  font-size: 20px;
  color: #333;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header .icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 300px;
  padding-bottom: 20px;
}

.content-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0 30px;
}

.content-image {
  flex: 0 0 150px;
}

.content-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.content-text {
  flex: 1;
}

.content-text p {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  margin: 0;
}

.learn-more-section {
  text-align: center;
}

.learn-more-btn {
  background-color: transparent;
  color: #333;
  border: 1px solid #333;
  padding: 12px 30px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.learn-more-btn:hover {
  background-color: #333;
  color: white;
}

/* Responsive Design for Diamond Quality Section */
@media (max-width: 768px) {
  .diamond-quality-section {
    padding: 60px 20px;
  }
  
  .quality-layout {
    flex-direction: column;
    gap: 40px;
  }
  
  .quality-left {
    flex: none;
  }
  
  .quality-left h2 {
    font-size: 32px;
  }
  
  .content-wrapper {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  
  .content-image {
    flex: none;
  }
  
  .accordion-header h3 {
    font-size: 16px;
  }
  
  .accordion-header {
    padding: 15px 0;
  }
}

@media (max-width: 480px) {
  .quality-left h2 {
    font-size: 28px;
  }
  
  .accordion-header h3 {
    font-size: 14px;
  }
}

/* Our Clients Section */
.clients-section {
  padding: 80px 40px;
  background-color: #f8f8f8;
}

.clients-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.clients-container h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 400;
  color: #333;
  margin-bottom: 60px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 40px;
  align-items: center;
  justify-items: center;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 80px;
}

.client-logo img {
  max-width: 180px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: all 0.3s ease;
}

.client-logo:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

/* Responsive Design for Clients Section */
@media (max-width: 1024px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
  }
  
  .client-logo img {
    max-width: 150px;
    max-height: 70px;
  }
}

@media (max-width: 768px) {
  .clients-section {
    padding: 60px 20px;
  }
  
  .clients-container h2 {
    font-size: 36px;
    margin-bottom: 40px;
  }
  
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
  
  .client-logo img {
    max-width: 120px;
    max-height: 60px;
  }
}

@media (max-width: 480px) {
  .clients-container h2 {
    font-size: 28px;
  }
  
  .clients-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .client-logo img {
    max-width: 150px;
    max-height: 70px;
  }
}

/* Client Testimonials Section */
.testimonials-section {
  padding: 50px 40px;
  background-color: #fff;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-container h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 400;
  color: #333;
  margin-bottom: 40px;
  text-align: left;
}

.testimonials-layout {
  display: flex;
  gap: 30px;
  align-items: center;
  min-height: 280px;
}

/* Left Client with Image */
.testimonial-client-left {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.testimonial-client-left .client-image {
  position: relative;
  width: 220px;
  height: 160px;
  border-radius: 8px;
  overflow: hidden;
}

.testimonial-client-left .client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-client-left .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-client-left .play-button:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translate(-50%, -50%) scale(1.1);
}

.testimonial-client-left .client-details {
  text-align: left;
}

.testimonial-client-left .company-name {
  font-size: 12px;
  color: #999;
  margin-bottom: 5px;
}

.testimonial-client-left .person-name {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0 0 3px 0;
}

.testimonial-client-left .person-title {
  font-size: 12px;
  color: #666;
  margin: 0;
}

/* Center Testimonial Content (Text Only) */
.testimonial-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 15px;
  text-align: center;
}

.testimonial-center .quote-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.testimonial-center .quote-icon svg {
  width: 40px;
  height: 30px;
}

.testimonial-center .testimonial-content {
  margin-bottom: 25px;
}

.testimonial-center .testimonial-content p {
  font-size: 15px;
  line-height: 1.5;
  color: #333;
  margin: 0;
}

.testimonial-center .read-more {
  color: #666;
  cursor: pointer;
  text-decoration: underline;
  font-weight: 500;
}

.testimonial-center .read-more:hover {
  color: #333;
}

.testimonial-center .testimonial-attribution {
  text-align: center;
}

.testimonial-center .company-name {
  font-size: 13px;
  color: #999;
  margin-bottom: 5px;
}

.testimonial-center .person-name {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0 0 3px 0;
}

.testimonial-center .person-title {
  font-size: 13px;
  color: #666;
  margin: 0;
}

/* Right Client with Image */
.testimonial-client-right {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.testimonial-client-right .client-image {
  position: relative;
  width: 220px;
  height: 160px;
  border-radius: 8px;
  overflow: hidden;
}

.testimonial-client-right .client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-client-right .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-client-right .play-button:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translate(-50%, -50%) scale(1.1);
}

.testimonial-client-right .client-details {
  text-align: left;
}

.testimonial-client-right .person-name {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0 0 3px 0;
}

.testimonial-client-right .person-title {
  font-size: 12px;
  color: #666;
  margin: 0;
}

/* Responsive Design for Testimonials Section */
@media (max-width: 1024px) {
  .testimonials-layout {
    gap: 25px;
  }
  
  .testimonial-client-left,
  .testimonial-client-right {
    flex: 0 0 200px;
  }
  
  .testimonial-client-left .client-image,
  .testimonial-client-right .client-image {
    width: 200px;
    height: 140px;
  }
  
  .testimonial-center .testimonial-content p {
    font-size: 14px;
  }
  
  .testimonial-center .person-name {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 40px 20px;
  }
  
  .testimonials-container h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .testimonials-layout {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    min-height: auto;
  }
  
  .testimonial-client-left,
  .testimonial-client-right {
    flex: none;
    align-items: center;
  }
  
  .testimonial-client-left .client-details,
  .testimonial-client-right .client-details {
    text-align: center;
  }
  
  .testimonial-center {
    order: -1;
    padding: 0;
  }
  
  .testimonial-client-left .client-image,
  .testimonial-client-right .client-image {
    width: 250px;
    height: 180px;
  }
}

@media (max-width: 480px) {
  .testimonials-container h2 {
    font-size: 24px;
  }
  
  .testimonial-client-left .client-image,
  .testimonial-client-right .client-image {
    width: 280px;
    height: 200px;
  }
  
  .testimonial-center .testimonial-content p {
    font-size: 13px;
  }
  
  .testimonial-center .person-name {
    font-size: 16px;
  }
}

/* Testimonial Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 40px;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #999;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1;
}

.close-btn:hover,
.close-btn:focus {
  color: #333;
}

.modal-quote-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.modal-text {
  margin-bottom: 30px;
  text-align: center;
}

.modal-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

.modal-attribution {
  text-align: center;
  border-top: 1px solid #eee;
  padding-top: 25px;
}

.modal-company {
  font-size: 14px;
  color: #999;
  margin-bottom: 8px;
}

.modal-person {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 0 0 5px 0;
}

.modal-position {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* Modal Responsive Design */
@media (max-width: 768px) {
  .modal-content {
    margin: 10% auto;
    padding: 30px 25px;
    max-width: 95%;
  }
  
  .modal-text p {
    font-size: 15px;
  }
  
  .close-btn {
    top: 12px;
    right: 15px;
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .modal-content {
    margin: 15% auto;
    padding: 25px 20px;
  }
  
  .modal-text p {
    font-size: 14px;
  }
  
  .modal-person {
    font-size: 18px;
  }
}

/* Be a Part of Our Team Section */
.careers-section {
  padding: 0;
  background-color: #fff;
  margin: 0;
}

.careers-container {
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.careers-content {
  display: flex;
  align-items: stretch;
  min-height: 500px;
  margin: 0;
}

.careers-text {
  flex: 1;
  padding: 80px 100px 80px 120px;
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 500px;
}

.careers-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 400;
  color: #333;
  line-height: 1.1;
  margin-bottom: 30px;
  margin-top: 0;
}

.careers-text p {
  font-size: 18px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 45px;
  margin-top: 0;
}

.careers-btn {
  background-color: #000;
  color: white;
  border: none;
  padding: 18px 35px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  text-decoration: none;
  border-radius: 0;
}

.careers-btn:hover {
  background-color: #333;
  transform: translateX(3px);
}

.careers-btn .arrow {
  font-size: 16px;
  transition: transform 0.3s ease;
  font-weight: normal;
}

.careers-btn:hover .arrow {
  transform: translateX(3px);
}

.careers-image {
  flex: 1;
  min-height: 500px;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.careers-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Responsive Design for Careers Section */
@media (max-width: 1200px) {
  .careers-text {
    padding: 70px 80px 70px 100px;
  }
  
  .careers-text h2 {
    font-size: 44px;
  }
}

@media (max-width: 1024px) {
  .careers-text {
    padding: 60px 60px 60px 80px;
  }
  
  .careers-text h2 {
    font-size: 40px;
  }
  
  .careers-text p {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .careers-content {
    flex-direction: column;
    min-height: auto;
  }
  
  .careers-text {
    padding: 60px 40px;
    min-height: auto;
    text-align: center;
    background-color: #f5f5f5;
  }
  
  .careers-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
  }
  
  .careers-text p {
    font-size: 16px;
    margin-bottom: 35px;
  }
  
  .careers-image {
    min-height: 350px;
  }
  
  .careers-btn {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .careers-text {
    padding: 50px 30px;
  }
  
  .careers-text h2 {
    font-size: 32px;
  }
  
  .careers-text p {
    font-size: 15px;
  }
  
  .careers-btn {
    padding: 15px 30px;
    font-size: 15px;
  }
  
  .careers-image {
    min-height: 300px;
  }
}

/* Footer Section */
.footer {
  background-color: #000;
  color: #fff;
  padding: 60px 0 0 0;
  margin-top: 80px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  padding-bottom: 40px;
}

.footer-column h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 25px;
  color: #fff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #999;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #fff;
}

.contact-info p {
  color: #999;
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.4;
}

.contact-info p:first-child {
  color: #fff;
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  width: 35px;
  height: 35px;
  background-color: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}

.social-icons a:hover {
  background-color: #555;
  color: #fff;
  transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #333;
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-left p {
  color: #666;
  font-size: 13px;
  margin: 0;
  line-height: 1.4;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-bottom-right a {
  color: #999;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-bottom-right a:hover {
  color: #fff;
}

.footer-bottom-right span {
  color: #666;
  font-size: 13px;
}

/* Responsive Design for Footer */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .footer-container {
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 0 0;
  }
  
  .footer-container {
    padding: 0 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .footer-bottom-right {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-content {
    gap: 25px;
  }
  
  .footer-column h3 {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .social-icons {
    justify-content: center;
  }
}

/* ========================================= */
/* COMPREHENSIVE MOBILE RESPONSIVE FIXES    */
/* ========================================= */

/* Global Mobile Optimizations */
@media (max-width: 768px) {
  /* Ensure all containers are properly constrained */
  .about-container,
  .collections-container,
  .manufacturing-container,
  .infrastructure-container,
  .build-jewelry-container,
  .diamond-quality-container,
  .clients-container,
  .testimonials-container,
  .careers-container {
    max-width: 100% !important;
    padding: 0 15px !important;
    margin: 0 auto !important;
    overflow: hidden;
  }
  
  /* Fix any element that might cause horizontal overflow */
  .about-section,
  .collections-section,
  .manufacturing-section,
  .infrastructure-section,
  .build-jewelry-section,
  .diamond-quality-section,
  .clients-section,
  .testimonials-section,
  .careers-section {
    padding: 40px 15px !important;
    max-width: 100vw;
    overflow-x: hidden;
  }
  
  /* Flex containers should wrap properly */
  .about-container,
  .collections-container,
  .manufacturing-container {
    flex-direction: column !important;
    gap: 30px !important;
  }
  
  /* Images should be responsive */
  .about-image img,
  .collections-item img,
  .manufacturing-image img {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    object-fit: cover;
  }
  
  /* Text content should have proper spacing */
  .about-content,
  .collections-content,
  .manufacturing-content {
    width: 100% !important;
    padding: 0 !important;
    text-align: center;
  }
  
  /* Grid layouts should become single column */
  .collections-grid,
  .clients-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  
  /* Infrastructure carousel should be properly contained */
  .infrastructure-carousel,
  .carousel-container {
    width: 100% !important;
    overflow: hidden;
  }
  
  .carousel-track {
    width: 100% !important;
    overflow: hidden;
  }
  
  .infrastructure-slide,
  .slide {
    width: 100% !important;
    padding: 0;
    background: #fff !important;
    min-height: 280px;
  }
  
  .infrastructure-slide img,
  .slide img {
    width: 100% !important;
    height: 180px !important;
    max-width: 100% !important;
    object-fit: cover;
    object-position: center;
  }
  
  .slide p {
    background: #fff !important;
    color: #333 !important;
    padding: 15px 10px !important;
    margin: 0 !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  /* Build jewelry section adjustments */
  .build-jewelry-content {
    flex-direction: column !important;
    gap: 30px !important;
  }
  
  .build-jewelry-left,
  .build-jewelry-right {
    width: 100% !important;
  }
  
  /* Diamond quality accordion adjustments */
  .diamond-accordion-item {
    margin-bottom: 15px;
  }
  
  .diamond-accordion-header {
    padding: 15px 20px;
    font-size: 16px !important;
  }
  
  .diamond-accordion-content {
    padding: 20px;
  }
  
  /* Testimonials modal adjustments */
  .modal-content {
    width: 95% !important;
    max-width: 500px !important;
    margin: 20px !important;
    padding: 20px !important;
  }
  
  .testimonial-card {
    padding: 20px !important;
  }
  
  /* Careers section adjustments */
  .careers-content {
    flex-direction: column !important;
    gap: 30px !important;
  }
  
  .careers-left,
  .careers-right {
    width: 100% !important;
  }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
  /* Reduce padding further on very small screens */
  .about-section,
  .collections-section,
  .manufacturing-section,
  .infrastructure-section,
  .build-jewelry-section,
  .diamond-quality-section,
  .clients-section,
  .testimonials-section,
  .careers-section {
    padding: 30px 10px !important;
  }
  
  /* Typography adjustments for very small screens */
  h1 {
    font-size: 24px !important;
    line-height: 1.3 !important;
  }
  
  h2 {
    font-size: 20px !important;
    line-height: 1.3 !important;
  }
  
  h3 {
    font-size: 18px !important;
    line-height: 1.3 !important;
  }
  
  p {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }
  
  /* Button adjustments */
  .btn,
  .read-more-btn,
  .accordion-header {
    padding: 10px 20px !important;
    font-size: 14px !important;
  }
  
  /* Modal adjustments for very small screens */
  .modal-content {
    width: 98% !important;
    margin: 10px !important;
    padding: 15px !important;
  }
  
  /* Infrastructure carousel navigation */
  .infrastructure-nav {
    gap: 10px !important;
  }
  
  .infrastructure-nav button {
    width: 35px !important;
    height: 35px !important;
    font-size: 14px !important;
  }
}

/* Horizontal scroll prevention for all elements */
@media (max-width: 768px) {
  * {
    max-width: 100vw;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  /* Prevent any fixed widths from causing overflow */
  .container,
  .about-container,
  .collections-container,
  .manufacturing-container,
  .infrastructure-container,
  .build-jewelry-container,
  .diamond-quality-container,
  .clients-container,
  .testimonials-container,
  .careers-container {
    max-width: calc(100vw - 30px) !important;
    box-sizing: border-box;
  }
  
  /* Ensure images don't overflow */
  img {
    max-width: 100% !important;
    height: auto !important;
    display: block;
  }
  
  /* Fix any potential overflow from flex or grid items */
  .collections-item,
  .manufacturing-step,
  .client-item,
  .testimonial-card {
    min-width: 0 !important;
    flex-shrink: 1 !important;
  }
}

/* Touch-friendly improvements */
@media (max-width: 768px) {
  /* Increase touch targets */
  button,
  .btn,
  .accordion-header,
  .nav-links a {
    min-height: 44px !important;
    min-width: 44px !important;
  }
  
  /* Improve spacing for touch */
  .nav-links {
    gap: 20px !important;
  }
  
  .diamond-accordion-header {
    min-height: 50px !important;
  }
  
  /* Ensure proper scroll behavior */
  .infrastructure-carousel,
  .testimonials-container {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
}

/* Hamburger Menu - Mobile Only */
.hamburger-menu {
  display: none; /* Hidden by default (desktop) */
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  transition: all 0.3s ease;
}

/* Show hamburger on mobile screens - always visible */
@media (max-width: 768px) {
  .hamburger-menu {
    display: flex !important;
  }
}

@media (max-width: 480px) {
  .hamburger-menu {
    display: flex !important;
  }
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: white;
  transition: all 0.3s ease;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .hamburger-line {
  background-color: black;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Hamburger Animation */
.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Dropdown Menu */
.nav-links.mobile-menu-open {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(10px);
  flex-direction: column !important;
  padding: 25px 20px !important;
  gap: 25px !important;
  align-items: flex-start !important;
  z-index: 2000 !important;
  display: flex !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s ease-out;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: rgba(0, 0, 0, 0.3) transparent; /* Firefox */
}

/* Custom scrollbar for webkit browsers */
.nav-links.mobile-menu-open::-webkit-scrollbar {
  width: 4px;
}

.nav-links.mobile-menu-open::-webkit-scrollbar-track {
  background: transparent;
}

.nav-links.mobile-menu-open::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 2px;
}

.nav-links.mobile-menu-open::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.5);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-links.mobile-menu-open li {
  width: 100%;
  text-align: left;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 15px;
}

.nav-links.mobile-menu-open li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Mobile menu header with close button */
.mobile-menu-header {
  display: none;
  justify-content: flex-end;
  padding: 0 !important;
  border-bottom: none !important;
  margin-bottom: 20px;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 10;
  padding: 10px 0 !important;
}

.nav-links.mobile-menu-open .mobile-menu-header {
  display: flex !important;
}

.mobile-close-btn {
  background: none;
  border: none;
  font-size: 32px;
  color: #333;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-close-btn:hover {
  background-color: rgba(0, 0, 0, 0.1);
  color: #000;
  transform: scale(1.05);
}

.nav-links.mobile-menu-open li a {
  color: #333 !important;
  font-size: 16px !important;
  padding: 10px 0 !important;
  border-radius: 0 !important;
  transition: all 0.3s ease !important;
  display: block !important;
  width: 100% !important;
  font-weight: 400 !important;
}

.nav-links.mobile-menu-open li a:hover {
  background: transparent !important;
  color: #666 !important;
  transform: none !important;
}

.nav-links .mobile-contact-info {
  display: none; /* Hidden on desktop */
}

.nav-links.mobile-menu-open .mobile-contact-info {
  display: block !important;
  width: 100%;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
  background: rgba(0, 0, 0, 0.02);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.nav-links.mobile-menu-open .phone-number,
.nav-links.mobile-menu-open .email {
  color: #333 !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  margin-bottom: 15px;
  line-height: 1.4;
}

.nav-links.mobile-menu-open .follow-us {
  color: #333 !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  margin-top: 15px;
}

.nav-links.mobile-menu-open li a {
  color: white !important;
  font-size: 18px !important;
  padding: 12px 20px !important;
  border-radius: 8px !important;
  transition: all 0.3s ease !important;
  display: block !important;
  width: 100% !important;
}

.nav-links.mobile-menu-open li a:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
  transform: translateY(-2px);
}

.nav-links.mobile-menu-open .contact-btn {
  border: 1px solid white !important;
  color: white !important;
  background: transparent !important;
  margin-top: 10px !important;
}

/* --- 1. Navbar & Hamburger Consistency on Mobile --- */
@media (max-width: 768px) {
  .navbar.scrolled .hamburger-menu {
    display: flex !important; /* Keep hamburger visible after scroll */
  }
  .navbar.scrolled .nav-links {
    display: none !important; /* Hide desktop nav after scroll on mobile */
  }
  .navbar.scrolled .logo {
    color: #222; /* Keep logo dark for white bg */
  }
  .navbar .logo {
    color: #222; /* Always dark on mobile for clarity */
  }
}

/* --- 2. Mobile Menu Overlay --- */
@media (max-width: 768px) {
  .nav-links.mobile-menu-open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 2000;
    padding: 80px 20px 20px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    align-items: flex-start;
    gap: 0;
    animation: slideDown 0.3s ease-out;
    overflow-y: auto;
    box-sizing: border-box;
  }
  
  .nav-links.mobile-menu-open li {
    width: 100%;
    margin-bottom: 0;
  }
  
  .nav-links.mobile-menu-open li a {
    color: #222 !important;
    font-size: 18px !important;
    padding: 16px 0 !important;
    width: 100%;
    display: block;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .nav-links.mobile-menu-open li a:hover {
    color: #666 !important;
    background-color: rgba(0, 0, 0, 0.05);
    padding-left: 10px;
  }
  
  .nav-links.mobile-menu-open .mobile-contact-info {
    display: block !important;
    padding: 20px 0;
    color: #222;
    font-size: 14px;
    border-top: 2px solid #eee;
    margin-top: 10px;
  }
  
  .nav-links.mobile-menu-open .phone-number,
  .nav-links.mobile-menu-open .email {
    margin-bottom: 12px;
    line-height: 1.4;
    display: block;
    word-break: break-word;
  }
  
  .nav-links.mobile-menu-open .follow-us {
    margin-top: 15px;
    font-weight: 600;
    color: #333;
  }
  
  /* Ensure all content is visible and properly spaced */
  .nav-links.mobile-menu-open > * {
    min-height: 44px; /* Minimum touch target size */
    display: flex;
    align-items: center;
  }
  
  /* Add some breathing room at the bottom */
  .nav-links.mobile-menu-open::after {
    content: '';
    height: 20px;
    flex-shrink: 0;
  }
}

/* --- 3. Slider Arrows Positioning on Mobile --- */
@media (max-width: 768px) {
  /* Hide all arrows by default */
  .video-slider .arrow {
    display: none !important;
  }
  /* Show only arrows and volume in .controls */
  .controls > .arrow,
  .controls > .volume-btn {
    display: flex !important;
  }
  .controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    padding: 0 24px;
    gap: 0;
    pointer-events: none;
  }
  .controls > .arrow,
  .controls > .volume-btn {
    pointer-events: auto;
  }
  .controls > .arrow {
    position: relative;
    margin: 0;
    background: rgba(0,0,0,0.15);
    border: 1.5px solid #bbb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    flex: 0 0 auto;
  }
  .controls > .volume-btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    flex: 0 0 auto;
  }
}

@media (max-width: 480px) {
  .controls {
    padding: 0 10px;
    bottom: 5px;
  }
  .controls > .arrow {
    padding: 7px;
  }
  
  /* Mobile menu adjustments for very small screens */
  .nav-links.mobile-menu-open {
    padding: 70px 15px 15px 15px;
  }
  
  .nav-links.mobile-menu-open li a {
    font-size: 16px !important;
    padding: 14px 0 !important;
  }
  
  .nav-links.mobile-menu-open .mobile-contact-info {
    font-size: 13px;
    padding: 15px 0;
  }
  
  .mobile-close-btn {
    font-size: 28px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .carousel-container {
    width: 100vw !important;
    max-width: 100vw !important;
    overflow: hidden !important;
    min-height: 180px !important;
    background: #fff !important;
  }
  .carousel-track {
    display: flex !important;
    width: 100vw !important;
    gap: 0 !important;
    transition: transform 0.5s ease-in-out !important;
  }
  .slide {
    flex: 0 0 100vw !important;
    width: 100vw !important;
    min-height: 180px !important;
    max-height: 260px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    background: #fff !important;
    border-radius: 10px !important;
    overflow: hidden !important;
  }
  .slide img {
    width: 100vw !important;
    height: 160px !important;
    object-fit: cover !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}

/* --- Infrastructure Carousel: Mobile Responsive --- */
@media (max-width: 768px) {
  .carousel-container {
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
    min-height: 180px;
    background: #fff;
  }
  .carousel-track {
    display: flex;
    width: 100vw;
    gap: 0;
    transition: transform 0.5s ease-in-out;
  }
  .slide {
    flex: 0 0 100vw;
    width: 100vw;
    min-height: 180px;
    max-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
  }
  .slide img {
    width: 100vw;
    height: 160px;
    object-fit: cover;
    display: block;
    opacity: 1;
    visibility: visible;
    background: #fff;
  }
}

@media (max-width: 480px) {
  .carousel-container {
    min-height: 140px;
  }
  .slide {
    min-height: 140px;
    max-height: 200px;
  }
  .slide img {
    height: 120px;
  }
}

@media (max-width: 768px) {
  .infrastructure-section {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .navbar .logo img {
    height: 24px !important;
    max-width: 80px !important;
    margin-right: 6px !important;
    vertical-align: middle !important;
    border-radius: 0 !important;
    object-fit: contain !important;
  }
  .navbar .logo {
    font-size: 16px !important;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 auto !important;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    padding: 0;
  }
  .navbar .logo span {
    font-size: 12px !important;
    letter-spacing: 1.2px;
    margin-top: 0 !important;
    font-weight: 600;
    color: #fff !important;
    display: block;
  }
}
