     /* variables */
      :root {
        --bg-color:white;
        --primary-color: white;
        --secondary-color: #79b33b; /* Changed to green */
        --accent-color: #3c448d; /* Added blue as accent */
        --black: #2E2E2E;
        --heading-font: "Outfit", sans-serif;
      }

      /* global properties */
      * {
        padding: 0;
        margin: 0;
        box-sizing: border-box;
      }

      body {
        background-color: var(--bg-color);
        color: var(--primary-color);
        font-family: "DM Sans", sans-serif;
        font-size: 18px;
        line-height: 1.5;
      }

      .btn {
        color: #fff;
        padding: 8px 20px;
        font-weight: 500;
        background-color: var(--accent-color); /* Changed to blue */
      }

      .radius {
        border-radius: 10px;
      }

      a {
        text-decoration: none;
        display: inline-block;
      }

      img {
        width: 100%;
      }

      /* for all headings */
      .heading {
        font-family: var(--heading-font);
        font-weight: 700;
        font-size: 6.5vw;
        color: var(--primary-color);
        text-transform: uppercase;
        line-height: 0.95;
        margin-bottom: 1.4rem;
      }

      /* Header with Bootstrap integration */
      header {
        padding: 1rem 0;
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        z-index: 1000;
        width: 100%;
        background: none;
      }
      
      .navbar-brand img {
        height: 100px;
        width: 80px;
        margin-left: 40px;
      }
      
      .navbar-toggler {
        border: none;
        padding: 0.25rem;
        color: white;
      }
      
      .navbar-toggler:focus {
        box-shadow: none;
      }
      
      .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
      }
      
      .navbar-nav .nav-link {
        color: white;
        font-size: 1rem;
        font-weight: 500;
        letter-spacing: 1px;
        text-transform: uppercase;
        position: relative;
        padding: 0.5rem 1rem;
        transition: all 0.3s ease;
      }
      
      .navbar-nav .nav-link::before {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        background-color: var(--secondary-color); /* Green underline */
        bottom: 0;
        left: 1rem;
        right: 1rem;
        transition: width 0.3s ease;
      }
      
      .navbar-nav .nav-link:hover {
        color: var(--secondary-color); /* Green hover */
      }
      
      .navbar-nav .nav-link:hover::before {
        width: calc(100% - 2rem);
      }
      
      .navbar-nav .nav-link.active {
        color: var(--secondary-color); /* Green active */
      }
      
      .navbar-nav .nav-link.active::before {
        width: calc(100% - 2rem);
      }

      /* Hide ju7 image on desktop by default */
      .mobile-only-juice {
        display: none;
      }
      
      /* Hide watch image on desktop by default */
      .mobile-only-watch {
        display: none;
      }

      #main {
        overflow: hidden;
      }

      #headphone {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: -1%;
        width: 80vw;
        max-width: 800px;
        filter: drop-shadow(8px 35px 6px #00000025);
        will-change: transform;
        z-index: 9;
      }

      /* section 1 */
      #section1 {
        position: relative;
        height: 100vh;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
        padding-top: 0px; /* Space for fixed header */
      }

      #section1 .hero-background {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
      }

     #section1 h1 {
        position: relative;
        z-index: 1;
        font-size: 7.5vw;
        line-height: 1;
        margin-bottom: -250px;
        margin-top: 90px;
        color: white;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
      }

      #section1 .right-image {
        position: absolute;
        right: 0%;
        top: 30%;
        transform: translateY(-50%);
        width: 15vw;
        max-width: 500px;
        z-index: 1;
        opacity: 0;
        filter: drop-shadow(0 0 20px rgba(255,255,255,0.3));
      }
      #section1 .left-image {
        position: absolute;
        left: 36%;
        top: 30%;
        transform: translateY(-50%);
        width: 28vw;
        max-width: 500px;
        z-index: 1;
        opacity: 0;
        filter: drop-shadow(0 0 20px rgba(255,255,255,0.3));
      }
      /* section 2 - About Section */
      #section2 {
        min-height: 100vh;
        padding: 8vw 0;
        display: flex;
        align-items: center;
        background: url('../images/bg65.jpg') no-repeat center center;
        background-size: cover;
        position: relative;
        overflow: hidden;
      }

      #section2::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('../images/crime-scene-tape-pattern.png') repeat;
        opacity: 0.03;
        pointer-events: none;
      }

      .about-container {
        display: flex;
        align-items: center;
        gap: 5vw;
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 5vw;
        position: relative;
        z-index: 1;
      }

      .about-content {
        flex: 1;
        padding-right: 3vw;
        background-color: none;
        padding: 2rem;
        border-radius: 15px;
      }

      .about-image {
        flex: 1;
        position: relative;
        min-height: 60vh;
      }

      #section2 .heading {
        font-size: 4vw;
        margin-bottom: 2rem;
        position: relative;
        display: inline-block;
      }

      #section2 .heading span {
        color: var(--secondary-color); /* Green */
        font-size: 55px;
      }

      #section2 .heading::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 80px;
        height: 4px;
        background-color: var(--accent-color); /* Green underline */
      }

      .about-text {
        margin-bottom: 3rem;
      }

      .about-text p {
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
        line-height: 1.7;
        border-radius: 15px;
        padding: 1.5rem;
      }
      .view-more-btn {
        display: inline-block;
        background-color: var(--secondary-color); /* Green */
        color: white;
        padding: 12px 30px;
        border-radius: 8px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        border: 2px solid var(--secondary-color);
        margin-top: 1rem;
      }

      .view-more-btn:hover {
        background-color: transparent;
        color: var(--secondary-color);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(121, 179, 59, 0.3);
      }

      .about-text {
        margin-bottom: 3rem;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(60px);
        border-radius: 15px;
        padding: 1.5rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      }

      .about-subheading {
        font-family: var(--heading-font);
        font-size: 1.8rem;
        color: var(--secondary-color);
        margin-bottom: 1rem;
        position: relative;
        padding-bottom: 10px;
      }

      .about-subheading::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background-color: var(--secondary-color);
      }

      .about-text p {
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 0;
        font-size: 1.1rem;
        line-height: 1.7;
      }
      .explore-btn {
        background-color: var(--accent-color); /* Blue button */
        padding: 12px 30px;
        font-size: 1.1rem;
        font-weight: 600;
        letter-spacing: 1px;
        transition: all 0.3s;
        border: 2px solid var(--accent-color);
        margin-top: -20px;
      }

      .explore-btn:hover {
        background-color: transparent;
        color: var(--accent-color); /* Blue hover */
      }

      .character-img {
        width: 100%;
        max-width: 500px;
        position: absolute;
        bottom: 0;
        right: 0;
        filter: drop-shadow(0 0 20px rgba(121, 179, 59, 0.3)); /* Green shadow */
        animation: float 6s ease-in-out infinite;
      }

      .floating-elements {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
      }

      .floating-element {
        position: absolute;
        opacity: 0.7;
      }

      .floating-element-1 {
        width: 80px;
        top: 20%;
        left: 10%;
        animation: float-rotate 8s ease-in-out infinite;
      }

      .floating-element-2 {
        width: 120px;
        bottom: 20%;
        left: 20%;
        animation: float 7s ease-in-out infinite;
        animation-delay: 1s;
      }

      @keyframes float {
        0% { transform: translateY(0) rotate(0deg); }
        50% { transform: translateY(-20px) rotate(5deg); }
        100% { transform: translateY(0) rotate(0deg); }
      }

      @keyframes float-rotate {
        0% { transform: translateY(0) rotate(0deg); }
        50% { transform: translateY(-15px) rotate(180deg); }
        100% { transform: translateY(0) rotate(360deg); }
      }

      /* section 3 */
      #section3 {
        min-height: 100vh;
        padding-top: 4vw;
        padding-bottom: 4vw;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: url('../images/bg71.jpg') no-repeat center center;
        background-size: cover;
      }

      #section3::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgb(0 0 0 / 28%);
      }

      #section3 .heading {
        font-size: 50px;
        text-align: right;
        text-wrap: balance;
        margin-bottom: 2vw;
        position: relative;
        z-index: 2;
        margin-right: 230px;
      }

      #section3 .content-wrapper {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 5vw;
        position: relative;
        z-index: 1;
        gap: 8vw;
      }

      #section3 .services-image {
        position: relative;
        flex: 0 1 50%;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 25px 50px rgba(121, 179, 59, 0.3);
        transform: perspective(1000px) rotateY(5deg);
        order: 1;
      }

      #section3 .services-content {
        flex: 0 1 50%;
        order: 2;
        text-align: right;
      }

      #section3 .image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, rgba(121, 179, 59, 0.1) 0%, rgba(0,0,0,0.5) 100%);
        z-index: 1;
      }

      #section3 .content-inner {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        padding: 3rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      }

      .service-item {
        margin-bottom: 2.5rem;
      }

      .service-item h3 {
          font-family: var(--heading-font);
          font-size: 1.8rem;
          color: var(--secondary-color);
          margin-bottom: 1rem;
          position: relative;
          padding-bottom: 10px;
          text-align: left;
      }

      .service-item h3::after {
          content: '';
          position: absolute;
          bottom: 0;
          left: 0;
          width: 50px;
          height: 3px;
          background-color: var(--secondary-color);
      }

      .service-item p {
          color: rgba(255, 255, 255, 0.8);
          font-size: 1.1rem;
          line-height: 1.7;
          text-align: left;
      }

      /* Responsive adjustments */
      @media (max-width: 992px) {
        #section3 .content-wrapper {
          flex-direction: column;
        }
        
        #section3 .services-image {
          max-width: 600px;
          margin-bottom: 3rem;
          transform: none;
        }
        
        #section3 .services-content {
          width: 100%;
          text-align: left;
        }
        
        .service-item h3::after {
          left: 0;
          right: auto;
        }
        
        #section3 .heading {
          text-align: center;
          margin-right: 0;
        }
      }

      @media (max-width: 768px) {
        #section3 .content-inner {
          padding: 2rem;
        }
        
        .service-item h3 {
          font-size: 1.5rem;
        }
        
        .service-item p {
          font-size: 1rem;
        }
      }

      /* section 4 */
      #section4 {
        min-height: 100vh;
        padding: 5vw;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        overflow: hidden;
      }

      #section4::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('../images/bg64.jpg') no-repeat center center;
        background-size: cover;
        z-index: -1;
      }

      #section4 img {
        width: 35vw;
        height: 45vw;
        max-width: 800px;
        max-height: 1000px;
        object-fit: cover;
        margin-left: 150px;
        margin-right: 150px;
      }

      #section4 .heading {
          position: absolute;
          top: 5vw;
          left: 50%;
          transform: translateX(-50%);
          font-size: 4vw;
          text-align: center;
          width: 100%;
          z-index: 1;
          color: white;
          text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
        }
         .view-all-btn {
          display: inline-block;
          background-color: var(--secondary-color); /* Green */
          color: white;
          padding: 12px 30px;
          border-radius: 8px;
          font-weight: 600;
          text-transform: uppercase;
          letter-spacing: 1px;
          transition: all 0.3s ease;
          border: 2px solid var(--secondary-color);
          margin: 2rem auto;
          position: relative;
          z-index: 2;
          margin-bottom: -100px;
        }

        .view-all-btn:hover {
          background-color: transparent;
          color: var(--secondary-color);
          transform: translateY(-3px);
          box-shadow: 0 10px 20px rgba(121, 179, 59, 0.3);
        }

        .gallery-btn-container {
          width: 100%;
          text-align: center;
          position: absolute;
          bottom: 5vw;
          left: 0;
          z-index: 2;
        }
      /* Responsive adjustments */
      @media (max-width: 1200px) {
        #section4 img {
          width: 40vw;
          height: 50vw;
        }
      }

      @media (max-width: 768px) {
        #section4 {
          flex-direction: column;
          min-height: auto;
          padding: 10vw 5vw;
        }
        
        #section4 img {
          width: 90vw;
          height: 110vw;
          max-width: none;
          max-height: none;
          margin: 20px 0;
        }
        

        @media (max-width: 768px) {
          #section4 .heading {
            font-size: 8vw;
            top: 8vw;
          }
        }
        /* Show ju7 image only on mobile */
        .mobile-only-juice {
          display: block;
        }
      }

      /* section 5 */
      #section5 {
        min-height: 100vh;
        padding: 8vw 5vw;
        position: relative;
        background: url('../images/bg72.jpg') no-repeat center center;
        background-size: cover;
        text-align: center;
      }

      #section5::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
      }

      #section5 .heading {
        position: relative;
        z-index: 1;
        color: white;
        margin-bottom: 4rem;
        font-size: 4rem;
      }
      #contact .heading {
        position: relative;
        z-index: 1;
        color: white;
        margin-bottom: 4rem;
        font-size: 5rem;
      }
      .product-section {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 3rem;
        max-width: 1100px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
      }

      .product {
        background: rgba(121, 179, 59, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        padding: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.2);
      }

      .product:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(121, 179, 59, 0.3);
        border: 1px solid var(--secondary-color);
      }

      .product-image-container {
        width: 200px;
        height: 200px;
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .product-image-container img {
          max-width: 100%;
          max-height: 100%;
          width: 150%;
          height: auto;
          object-fit: contain;
          filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
      }

      .product-name {
        font-size: 2rem;
        font-weight: 700;
        color: white;
        margin-bottom: 1.5rem;
        text-transform: uppercase;
      }

      .buy-now-btn {
        display: inline-block;
        background-color: #3c448d;
        color: white;
        padding: 12px 30px;
        border-radius: 8px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        border: 2px solid var(--secondary-color);
        font-size: 1.1rem;
      }

      .buy-now-btn:hover {
        background-color: transparent;
        color: var(--secondary-color);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(121, 179, 59, 0.3);
      }

      /* Responsive adjustments */
      @media (max-width: 768px) {
        .product-section {
          grid-template-columns: 1fr;
          max-width: 400px;
        }
        
        #section5 .heading {
          font-size: 2.5rem;
        }
        
        .product-name {
          font-size: 1.8rem;
        }
      }
      /* Show watch image only on mobile */
      @media (max-width: 768px) {
        .mobile-only-watch {
          display: block;
          width: 100%;
          max-width: 200px;
          height: auto;
          margin: 0 auto 1.5rem auto;
          filter: drop-shadow(6px 15px 5px #00000018);
        }
        
        /* Adjust product section layout for mobile */
        #section5 .product-section {
          grid-template-columns: 1fr;
          gap: 3rem;
        }
        
        .product {
          text-align: center;
        }
      }

  /* Contact Us Section */

/* ==================== */
#contact {
  min-height: 100vh;
  padding: 8vw 5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url('../images/bg62.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
}

#contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 34%);
  z-index: 0;
}

#contact .heading {
  position: relative;
  z-index: 1;
  color: white;
  margin-bottom: 4rem;
  font-size: 4rem;
  text-align: center;
  text-transform: uppercase;
}

.contact-container {
  display: flex;
  width: 100%;
  max-width: 1400px;
  gap: 3rem;
  position: relative;
  z-index: 1;
  margin-bottom: 4rem;
}

.contact-cards {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(30px);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(121, 179, 59, 0.3);
  border: 1px solid var(--secondary-color);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: rgba(121, 179, 59, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.card-icon svg {
  width: 30px;
  height: 30px;
}

.contact-card h3 {
  font-family: var(--heading-font);
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary-color);
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.contact-link:hover {
  border-bottom: 1px solid var(--secondary-color);
  gap: 12px;
}

.branches-section {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(30px);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.branches-title {
  font-family: var(--heading-font);
  color: var(--secondary-color);
  margin-bottom: 2rem;
  font-size: 1.8rem;
  position: relative;
  padding-bottom: 10px;
}

.branches-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

.branch-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.branch-card {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.branch-card:hover {
  border: 1px solid var(--secondary-color);
  transform: translateY(-5px);
}

.branch-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.branch-header h4 {
  color: white;
  font-size: 1.2rem;
}

.branch-header svg {
  width: 20px;
  height: 20px;
}

.branch-details p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.branch-details strong {
  color: var(--secondary-color);
  font-weight: 600;
}

.map-container {
  width: 100%;
  max-width: 1400px;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  z-index: 1;
}

.map-overlay h3 {
  font-family: var(--heading-font);
  color: white;
  font-size: 2rem;
  margin-bottom: 1rem;
  max-width: 500px;
}

.map-overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 500px;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .contact-container {
    flex-direction: column;
  }
  
  .branches-section {
    width: 100%;
  }
}

@media (max-width: 768px) {
  #contact .heading {
    font-size: 2.5rem;
  }
  
  .contact-card {
    padding: 1.5rem;
  }
  
  .map-overlay {
    padding: 2rem;
  }
  
  .map-overlay h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  #contact {
    padding: 15vw 5vw;
  }
  
  #contact .heading {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .contact-cards {
    grid-template-columns: 1fr;
  }
  
  .map-overlay {
    padding: 1.5rem;
  }
  
  .map-overlay h3 {
    font-size: 1.3rem;
  }
  
  .map-overlay p {
    font-size: 1rem;
  }
}

/* ==================== */
/* FOOTER SECTION CSS */
/* ==================== */
 /* Footer */
      footer {
        background: url('../images/bg91.png') no-repeat center center;
        background-size: cover;
        position: relative;
        padding: 2rem 0;
        text-align: center;
      }

      footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0);
        z-index: 0;
      }

      .footer-content {
        position: relative;
        z-index: 1;
      }

      .copyright {
        color: white;
        font-size: 0.9rem;
      }
.social-links {
  display: flex;
  gap: 1rem;
}

/* ==================== */
/* RESPONSIVE ADJUSTMENTS */
/* ==================== */
@media (max-width: 992px) {
  #contact .heading {
    font-size: 3.5rem;
  }
  
  .contact-container {
    flex-direction: column;
    gap: 2rem;
  }
  
  .contact-map img {
    transform: none;
    margin-right: 0;
    margin-top: 2rem;
  }
  
  .branch-row {
    flex-direction: column;
    gap: 1rem;
  }
  
  .copyright {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  #contact {
    min-height: auto;
    padding: 15vw 5vw;
  }
  
  #contact .heading {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  
  .contact-info {
    padding: 1.5rem;
  }
  
  .contact-info h3 {
    font-size: 1.5rem;
  }
  
  .contact-info h4,
  .branch-info h5 {
    font-size: 1.1rem;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .copyright {
    order: 2;
  }
  
  .social-links {
    order: 1;
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  #contact .heading {
    font-size: 2rem;
  }
  
  .contact-info {
    padding: 1rem;
  }
  
  .branch-info {
    padding: 1rem;
  }
  
  .copyright {
    font-size: 0.8rem;
  }
}
      
      /* Responsive adjustments */
      @media (max-width: 992px) {
        .about-container {
          flex-direction: column;
          padding: 0 8vw;
        }
        
        .about-content {
          padding-right: 0;
          margin-bottom: 3rem;
        }
        
        .about-image {
          min-height: 400px;
          width: 100%;
        }
        
        #section2 .heading {
          font-size: 3rem;
        }
        
        .stats-grid {
          grid-template-columns: 1fr;
        }

        .contact-container {
          flex-direction: column;
        }
      }

      @media (max-width: 768px) {
        header nav {
          flex-direction: column;
          gap: 1rem;
        }
        
        .logo-text {
          font-size: 1.5rem;
        }
      }

      /* Responsive Adjustments */
      @media (max-width: 1200px) {
        #section1 h1 {
          font-size: 13vw;
          margin-bottom: -100px;
        }
        
        .about-container {
          gap: 3rem;
        }
      }

      @media (max-width: 992px) {
        /* Sections */
        #section1 {
          padding-top: 0px;
        }
        
        #section1 h1 {
          font-size: 15vw;
          margin-bottom: -100px;
        }
        
        #section1 .right-image {
          position: relative;
          right: auto;
          top: auto;
          transform: none;
          width: 60vw;
          margin-top: 2rem;
        }
        
        .about-container {
          flex-direction: column;
          padding: 0 2rem;
        }
        
        .about-content {
          padding-right: 0;
          margin-bottom: 3rem;
        }
        
        .about-image {
          min-height: 400px;
          width: 100%;
        }
        
        #section2 .heading {
          font-size: 3rem;
        }
        
        .stats-grid {
          grid-template-columns: 1fr;
        }
        
        #section3 .content-wrapper {
          flex-direction: column;
        }
        
        #section3 .video-container {
          margin-bottom: 3rem;
        }
        
        #section4 {
          padding: 4rem 0;
          height: auto;
          min-height: auto;
        }
        
        #section4 img {
          position: relative;
          top: auto !important;
          left: auto !important;
          right: auto !important;
          bottom: auto !important;
          transform: none !important;
          margin: 2rem auto;
          display: block;
          max-width: 80%;
        }
        
        #section5 .product-section {
          grid-template-columns: 1fr;
          gap: 3rem;
        }
        
        .contact-container {
          flex-direction: column;
          padding: 0 2rem;
        }
        
        .contact-info {
          margin-bottom: 3rem;
        }
      }

      @media (max-width: 768px) {
        #headphone {
          width: 100vw !important;
          top: 5% !important;
        }
        
        #section1 h1 {
          font-size: 18vw;
          margin-bottom: -35px;
        }
        
        #section3 .heading {
          font-size: 3rem;
        }
        
        #section3 .content-inner {
          padding: 2rem;
        }
        
        .tech-specs {
          grid-template-columns: 1fr;
        }
        
        .product .name,
        .product .price {
          font-size: 1.2rem;
        }
        
        #section1 {
          padding-top: 0px; /* Adjust for smaller header */
        }
      }

      @media (max-width: 576px) {
        :root {
          font-size: 14px;
        }
        
        .heading {
          font-size: 2.5rem !important;
        }
        
        #section1 h1 {
          font-size: 22vw;
          margin-bottom: -35px;
        }
        
        #section2 .heading {
          font-size: 2rem;
        }
        
        .about-text p {
          font-size: 1rem;
        }
        
        .stat-item {
          padding: 1rem;
        }
        
        .stat-number {
          font-size: 2rem;
        }
        
        .explore-btn {
          padding: 10px 20px;
          font-size: 1rem;
        }
        
        .spec-item {
          padding: 1rem;
        }
        
        .spec-value {
          font-size: 1.5rem;
        }
      }
      @media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        display: flex !important
;
        flex-basis: auto;
        margin-right: 70px;
        margin-top: -30px;

    }
}
/* Phones (up to 767px) */
@media (max-width: 767.98px) {
    .navbar-toggler-icon {
        margin-top: -40px;
    }
}

/* Tablets (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .navbar-toggler-icon {
        margin-top: -30px; /* Different adjustment for tablets */
    }
}
@media (max-width: 768px) {
    .navbar-brand img {
        height: 80px; /* Adjust height for tablets */
        width: 64px;  /* Adjust width for tablets */
         margin-top: -10px;
    }
}

@media (max-width: 480px) {
    .navbar-brand img {
        height: 60px; /* Adjust height for mobile */
        width: 48px;  /* Adjust width for mobile */
    }
}
  /* Custom styles for the dropdown */
      .dropdown-menu {
        background-color: #fff;
        border: none;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        border-radius: 8px;
        padding: 10px 0;
      }
      
      .dropdown-item {
        padding: 8px 20px;
        font-family: "DM Sans", sans-serif;
        color: #333;
        transition: all 0.3s ease;
      }
      
      .dropdown-item:hover {
        background-color: #f8f9fa;
        color: #007bff;
      }
      
      .nav-link.dropdown-toggle::after {
        margin-left: 5px;
        vertical-align: middle;
      }
      
      .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
        display: block;
      }