   /* Global Styles */
   body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    background-color: #f4f6f9;
    overflow-x: hidden;
  }

    /* Header Styles */
    header {
        background-color: #fff;
        padding: 10px 40px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        position: sticky;
        top: 0;
        z-index: 1000;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 60px;
      }
  
      .logo img{
        width: 270px;
        height: auto;
        background:  no-repeat center center;
        background-size: contain;
      }
  
      /* Navbar */
      .navbar {
        list-style: none;
        display: flex;
        gap: 30px;
        align-items: center;
      }
  
      .navbar li {
        position: relative;
      }
  
      .navbar a {
        font-size: 1.1rem;
        color: #333;
        text-decoration: none;
        text-transform: uppercase;
        font-weight: 500;
        letter-spacing: 1.5px;
        transition: color 0.3s ease, transform 0.3s ease, padding 0.3s ease;
      }
  
      .navbar a:hover {
        color: #00bcd4;
        transform: translateY(-4px);
      }
  
      .navbar a:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #00bcd4;
        transform: scaleX(0);
        transition: transform 0.3s ease-in-out;
      }
  
      .navbar a:hover:after {
        transform: scaleX(1);
      }
  
      /* Hamburger Menu */
      .hamburger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        width: 30px;
        height: 30px;
        z-index: 1500;
      }
  
      .hamburger span {
        background: #333;
        width: 100%;
        height: 3px;
        margin: 4px 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
      }
  
      .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
      }
  
      .hamburger.active span:nth-child(2) {
        opacity: 0;
      }
  
      .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
      }
  
      /* Mobile Styles */
      @media (max-width: 768px) {
        .navbar {
          flex-direction: column;
          position: fixed;
          top: 48px;
          right: 0;
          background: #fff;
          width: 100%;
          height: calc(100vh - 125px);
          transform: translateX(100%);
          transition: transform 0.3s ease-in-out;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          z-index: 1000;
        }
  
        .navbar.active {
          transform: translateX(0);
        }
  
        .hamburger {
          display: flex;
        }
  
        .navbar li {
          margin: 15px 0;
        }
        .logo img{
            margin-left: -48px;
        }
        .mission-values{
            flex-direction: column;
            margin-left: -23px;
        }
        div.vision-value {
          width: 250px !important;
          }
        .vision-values{
            flex-direction: column;
            margin-left: -25px;
        }
        .testimonial-card{
            width: 600px !important;
            height: 280px !important;
        }
      }

  /* Hero Section Styles */
  .hero {
    position: relative;
    height: 600px; /* Adjust the height as needed */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
  }

  /* Video Background */
  .hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* Ensure the video stays in the background */
  }

  /* Overlay Effect */
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Dark overlay */
    z-index: 1;
  }

  .hero-content {
    position: relative;
    z-index: 2;
  }

  .hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
  }

  .hero p {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px;
  }

  .hero button {
    font-size: 1.2rem;
    padding: 12px 30px;
    background-color: #00bcd4;
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .hero button:hover {
    background-color: #0077b6;
  }

  /* Mission Section */
  .mission-section {
    background: white;
    color: #333;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .mission-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
  }

  .mission-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .mission-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #0077b6;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInDown 1.5s ease;
    line-height: 1.2;
  }

  .mission-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto 50px auto;
    animation: fadeInUp 2s ease;
    font-style: italic;
  }

  .mission-values {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
  }

  .mission-value {
    background-color: #f0f8ff;
    padding: 40px;
    border-radius: 15px;
    width: 250px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: #0077b6;
    animation: fadeInUp 2.5s ease;
    overflow: hidden;
  }

  .mission-value:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }

  .mission-value h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #0077b6;
    text-transform: uppercase;
  }

  .mission-value p {
    font-size: 1rem;
    line-height: 1.5;
    color: #555;
  }

  .mission-icon {
    font-size: 50px;
    color: #0077b6;
    margin-bottom: 15px;
    transition: transform 0.3s;
  }

  .mission-icon:hover {
    transform: scale(1.2);
  }

  /* Our Vision Section */
  .vision-section {
    background: linear-gradient(135deg, #00b4d8, #0077b6); /* Gradient background for elegance */
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .vision-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25); /* Subtle dark overlay for contrast */
    z-index: 1;
  }

  .vision-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .vision-heading {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: fadeInDown 1.5s ease;
    line-height: 1.2;
  }

  .vision-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #f1f5f9;
    max-width: 800px;
    margin: 0 auto 50px auto;
    animation: fadeInUp 2s ease;
  }

  .vision-values {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
  }

  .vision-value {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    width: 250px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: #0077b6;
    animation: fadeInUp 2.5s ease;
  }

  .vision-value:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }

  .vision-value h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #0077b6;
    text-transform: uppercase;
  }

  .vision-value p {
    font-size: 1rem;
    line-height: 1.5;
    color: #555;
  }

  .vision-icon {
    font-size: 50px;
    color: #0077b6;
    margin-bottom: 15px;
    transition: transform 0.3s;
  }

  .vision-icon:hover {
    transform: scale(1.2);
  }

  /* Our Products Section */
  .products-section {
  padding: 100px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.products-section h2 {
  font-size: 2.5rem;
  color: #0077b6;
  font-family: 'Arial', sans-serif;
  margin-bottom: 40px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: 1px solid #e0e0e0;
  transform: scale(1);
  padding: 20px;
}

.product-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.product-card:hover img {
  transform: scale(1.1);
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  font-size: 1.7rem;
  color: #2c3e50;
  font-family: 'Arial', sans-serif;
  margin-bottom: 15px;
  font-weight: 500;
  text-transform: capitalize;
}

.product-info p {
  font-size: 1.1rem;
  color: #7f8c8d;
  margin-bottom: 20px;
  font-weight: 300;
  line-height: 1.5;
}

.learn-more {
  padding: 12px 30px;
  background-color: #f39c12;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.learn-more:hover {
  background-color: #e67e22;
  transform: translateY(-4px);
}

/* Hover Effects for Card Images */
.product-card:hover .product-info {
  color: #34495e;
}

/* Add subtle background gradient to the section */
.products-section {
  background: linear-gradient(to right, #f9f9f9, #f0f0f0);
}
/* Testimonial Section */
.testimonial-section {
  
  background: linear-gradient(135deg, #00b4d8, #0077b6); /* Blue gradient */
    
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-heading {
 font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: fadeInDown 1.5s ease;
    line-height: 1.2;
}

.testimonial-subheading {
  font-size: 1.1rem;
  color: whitesmoke;
  margin-bottom: 30px;
  font-family: 'Arial', sans-serif;
}

.testimonial-carousel {
  display: flex;
  justify-content: center;
  overflow: hidden;
  gap: 30px;
}

.testimonial-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  width: 300px;
  height: 400px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateZ(20px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.testimonial-card:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-text {
  font-size: 1rem;
  color: #555;
  font-style: italic;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.testimonial-avatar {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin-right: 15px;
}

.author-name {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 5px;
  font-weight: bold;
}

.author-role {
  font-size: 0.9rem;
  color: #777;
}

/* Navigation Arrows */
.carousel-nav {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.nav-btn {
  background-color: #333;
  color: #fff;
  border: none;
  padding: 10px 15px;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 5px;
  margin: 0 10px;
}

.nav-btn:hover {
  background-color: #f39c12;
}

/* Background Particles */
.particle {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 165, 0, 0.4);
  width: 15px;
  height: 15px;
  animation: float 5s ease-in-out infinite;
}

.particle:nth-child(1) {
  top: 10%;
  left: 30%;
  animation-duration: 6s;
}

.particle:nth-child(2) {
  top: 30%;
  left: 50%;
  animation-duration: 7s;
}

.particle:nth-child(3) {
  top: 50%;
  left: 70%;
  animation-duration: 8s;
}

/* Particle Animation */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0);
  }
}
/* Footer Section */
.footer-section {
background-color: whitesmoke;
color: black;
padding: 50px 20px 20px;
position: relative;
box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
font-family: 'Arial', sans-serif;
}

.footer-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
max-width: 1200px;
margin: 0 auto;
}

.footer-about,
.footer-links,
.footer-contact,
.footer-social {
padding: 20px;
}

.footer-about h4,
.footer-links h4,
.footer-contact h4,
.footer-social h4 {

font-size: 1.5rem;
margin-bottom: 15px;
text-transform: uppercase;
letter-spacing: 2px;
}

.footer-about p,
.footer-contact p {
font-size: 1rem;
line-height: 1.8;
}

.footer-links ul {
list-style: none;
padding: 0;
}

.footer-links ul li {
margin-bottom: 10px;
}

.footer-links ul li a {
color: black;
text-decoration: none;
transition: color 0.3s ease;
}

.footer-links ul li a:hover {
color: #00bcd4;
}

.footer-contact p {
margin-bottom: 10px;
}

.footer-social .social-icons {
display: flex;
gap: 15px;
}

.footer-social .social-icons a {
color:#00bcd4;
font-size: 1.5rem;
transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social .social-icons a:hover {
color: #005f87;
transform: scale(1.2);
}

/* Footer Bottom */
.footer-bottom {
text-align: center;
padding: 20px 0;
background: linear-gradient(135deg, #00b4d8, #0077b6); /* Blue gradient */
margin-top: 20px;
color: black;
font-size: 0.9rem;
}

.footer-bottom p {
margin: 0;
}

.distributors-section {
    background: linear-gradient(to right, #f4f6f9, #e0e7ff);
    padding: 60px 20px;
    text-align: center;
  }

  .distributors-heading {
    font-size: 2.5rem;
    color: #0077b6;
    margin-bottom: 10px;
  }

  .distributors-subheading {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
  }

  .distributors-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .distributor-logo {
    width: 150px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    background: #fff;
  }

  .distributor-logo:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }

  .distributor-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: difference;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .distributor-logo {
      width: 85px;
      height: 80px;
    }
  }

  body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: #f4f6f9;
    color: #333;
  }

  a {
    text-decoration: none;
    color: inherit;
  }

 

  /* Gallery Section */
  .gallery-section {
    padding: 80px 20px;
    text-align: center;
    background: #e0efff;
  }

  .gallery-heading {
    font-size: 3rem;
    color: #0077b6;
    margin-bottom: 10px;
  }

  .gallery-subheading {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
  }

  .gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
  }

  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  }

  .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
  }

  .gallery-item:hover img {
    transform: scale(1.1);
  }

  .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .gallery-item:hover .gallery-overlay {
    opacity: 1;
  }

  .gallery-overlay-text {
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
  }

  /* Footer */
  footer {
    background: #004aad;
    color: white;
    text-align: center;
    padding: 20px 10px;
    font-size: 0.9rem;
  }

  footer a {
    color: white;
    margin: 0 10px;
    font-weight: 500;
  }

  footer a:hover {
    text-decoration: underline;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .gallery-heading {
      font-size: 2rem;
    }
  }




  
    /* Team Section */
    .team-section {
        padding: 80px 20px;
        text-align: center;
        background: linear-gradient(to bottom, #f5f5f5, #ffffff);
      }
  
      .team-heading {
        font-size: 3rem;
        color: #0077b6;
        margin-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
      }
  
      .team-subheading {
        font-size: 1.3rem;
        color: #555;
        margin-bottom: 50px;
      }
  
      .team-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
      }
  
      .team-card {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
        position: relative;
        transform: translateY(0);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }
  
      .team-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
      }
  
      .team-photo {
        width: 100%;
        height: 350px;
        object-fit: cover;
      }
  
      .team-info {
        padding: 20px;
        text-align: center;
        position: relative;
      }
  
      .team-name {
        font-size: 1.8rem;
        font-weight: bold;
        color: #0077b6;
        margin-bottom: 8px;
      }
  
      .team-role {
        font-size: 1rem;
        color: #777;
        margin-bottom: 15px;
      }
  
      .team-social {
        display: flex;
        justify-content: center;
        gap: 15px;
      }
  
      .team-social a {
        background: #0077b6;
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.2rem;
        transition: all 0.3s ease;
      }
  
      .team-social a:hover {
        background: #ff6f61;
        color: white;
        transform: scale(1.1);
      }
  
      /* Decorative Hover Effects */
      .team-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        opacity: 0;
        z-index: 1;
        transition: opacity 0.3s ease;
      }
  
      .team-card:hover::before {
        opacity: 1;
      }
  
      .team-card:hover .team-info {
        z-index: 2;
      }


      
    /* Management Section */
    .management-section {
        padding: 80px 20px;
        text-align: center;
      }
  
      .management-heading {
        font-size: 2rem;
        color: #0077b6;
        margin-bottom: 10px;
      }
  
      .management-subheading {
        font-size: 1.2rem;
        color: #555;
        margin-bottom: 50px;
      }
  
      .management-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
      }
  
      .management-card {
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }
  
      .management-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
      }
  
      .management-photo {
        width: 81%;
        height: 300px;
        object-fit: cover;
      }
  
      .management-info {
        padding: 20px;
        background: #f9f9f9;
      }
  
      .management-name {
        font-size: 1.5rem;
        font-weight: 600;
        color: #0077b6;
        margin-bottom: 5px;
      }
  
      .management-designation {
        font-size: 1rem;
        color: #777;
      }

      .logo {
        font-size: 1.5rem;
        font-weight: bold;
      }
  
      nav a {
        margin: 0 15px;
        color: white;
        font-weight: 500;
      }
  
      /* Distributors Section */
      .distributors-section {
        padding: 80px 20px;
        text-align: center;
        background: linear-gradient(to bottom, #ffffff, #f5f5f5);
      }
  
      .distributors-heading {
        font-size: 3rem;
        color: #004aad;
        margin-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
      }
  
      .distributors-subheading {
        font-size: 1.3rem;
        color: #555;
        margin-bottom: 50px;
      }
  
      .distributors-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
      }
  
      .distributor-card {
        position: relative;
        overflow: hidden;
        border-radius: 15px;
        background: white;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
        transform: scale(1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }
  
      .distributor-card:hover {
        transform: scale(1.1);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
      }
  
      .distributor-logo {
        width: 85%;
        height: 150px;
        object-fit: contain;
        padding: 20px;
        background-color: #f0f8ff;
      }
  
      .distributor-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: opacity 0.3s ease;
        font-size: 1.2rem;
        font-weight: bold;
      }
  
      .distributor-card:hover .distributor-overlay {
        opacity: 1;
      }
  
     
  
      /* Animations */
      @keyframes fadeIn {
        0% {
          opacity: 0;
          transform: translateY(20px);
        }
        100% {
          opacity: 1;
          transform: translateY(0);
        }
      }
  
      .distributor-card {
        animation: fadeIn 0.6s ease forwards;
        opacity: 0;
      }
  
      .distributor-card:nth-child(odd) {
        animation-delay: 0.3s;
      }
  
      .distributor-card:nth-child(even) {
        animation-delay: 0.6s;
      }
  
      /* Responsive Design */
      @media (max-width: 768px) {
        .distributors-heading {
          font-size: 2rem;
        }
  
        .distributor-logo {
          height: 120px;
        }
      }


          /* Contact Section */
    .contact-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 80px 20px;
        background: linear-gradient(135deg, #e0efff, #f5f5f5);
      }
  
      .contact-heading {
        font-size: 3rem;
        color: #0077b6;
        margin-bottom: 10px;
      }
  
      .contact-subheading {
        font-size: 1.2rem;
        color: black;
        margin-bottom: 40px;
      }
  
      .contact-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
      }
  
      .contact-info, .contact-form {
        flex: 1 1 400px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        padding: 30px;
        animation: fadeInUp 0.8s ease forwards;
        opacity: 0;
      }
  
      .contact-info {
        background: linear-gradient(135deg, #004aad, #002b63);
        color: white;
      }
  
      .contact-info h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
      }
  
      .info-item {
        margin-bottom: 15px;
        display: flex;
        align-items: center;
      }
  
      .info-icon {
        font-size: 1.5rem;
        margin-right: 10px;
      }
  
      .contact-form h3 {
        font-size: 1.5rem;
        color: #0077b6;
        margin-bottom: 20px;
      }
  
      .form-group {
        margin-bottom: 20px;
      }
  
      .form-group label {
        display: block;
        font-weight: bold;
        color: #333;
        margin-bottom: 5px;
      }
  
      .form-group input, .form-group textarea {
        width: 94%;
        padding: 10px 15px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 1rem;
      }
  
      .form-group textarea {
        resize: none;
        height: 100px;
      }
  
      .form-btn {
        display: inline-block;
        background: #0077b6;
        color: white;
        padding: 12px 25px;
        font-size: 1rem;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background 0.3s ease;
      }
  
      .form-btn:hover {
        background: #00337a;
      }
  
      /* Animations */
      @keyframes fadeInUp {
        0% {
          opacity: 0;
          transform: translateY(20px);
        }
        100% {
          opacity: 1;
          transform: translateY(0);
        }
      }
  
      
      /* Responsive Design */
      @media (max-width: 768px) {
        .contact-heading {
          font-size: 2rem;
        }
  
        .contact-info, .contact-form {
          flex: 1 1 100%;
        }
        .management-photo {
          width: 64%;
        }
      }
          /* Global Styles */
    body {
        margin: 0;
        font-family:'Arial', sans-serif;
        color: #333;
        line-height: 1.6;
      }
  
      h1, h2, h3 {
        font-family:'Arial', sans-serif;
        margin: 0;
      }
  
      a {
        text-decoration: none;
        color: inherit;
      }
   header {
    background-color: #fff;
    padding: 10px 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Enhanced shadow for depth */
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 45px; /* Static height for the navbar */
    overflow: hidden; /* Prevent logo overflow */
  }
  
  
   .logo {
    width: 400px; /* Adjust as per your logo size */
    height: 250px; /* Adjust as per your logo size */
    background: url('logo.png') no-repeat center center;
    background-size: contain;
  }
  
      .logo:hover {
        color: #00bcd4; /* Light blue on hover */
      }
  
      /* Navbar Container */
      .navbar {
        list-style: none;
        display: flex;
        justify-content: space-around;
        gap: 30px;
        align-items: center;
      }
  
      /* Navbar Item Styles */
      .navbar li {
        position: relative;
      }
  
      .navbar a {
        font-size: 1.1rem;
        color: #333; /* Dark color for text */
        text-decoration: none;
        padding: 10px;
        text-transform: uppercase;
        font-weight: 500;
        letter-spacing: 1.5px;
        transition: color 0.3s ease, transform 0.3s ease, padding 0.3s ease;
        border: none;
      }
  
      /* Hover effects for links */
      .navbar a:hover {
        color: #00bcd4; /* Light blue on hover */
        transform: translateY(-4px); /* Slight lift effect */
        padding-bottom: 15px; /* Add some space at the bottom on hover */
      }
  
      .navbar a:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #00bcd4;
        transform: scaleX(0);
        transition: transform 0.3s ease-in-out;
      }
  
      .navbar a:hover:after {
        transform: scaleX(1);
      }
  
      /* Hero Section */
      .about-hero {
        background: linear-gradient(to right, #0077b6, #0096c7);
        color: #fff;
        text-align: center;
        padding: 100px 20px;
        position: relative;
      }
  
      .about-hero h1 {
        font-size: 3rem;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 2px;
      }
  
      .about-hero p {
        font-size: 1.2rem;
        max-width: 800px;
        margin: 0 auto;
        opacity: 0.9;
      }
  
      .about-hero::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: #fff;
      }
  
      /* Company Info Section */
      .about-info {
        display: flex;
        flex-wrap: wrap;
        padding: 60px 20px;
        max-width: 1200px;
        margin: 0 auto;
        gap: 30px;
      }
  
      .info-content {
        flex: 1;
        min-width: 300px;
      }
  
      .info-content h2 {
        font-size: 2.5rem;
        color: #0077b6;
        margin-bottom: 20px;
      }
  
      .info-content p {
        font-size: 1.1rem;
        margin-bottom: 20px;
      }
  
      .info-image img {
        max-width: 100%;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      }
  
      /* Mission & Vision Section */
      .mission-vision {
        background: #f4f6f9;
        padding: 60px 20px;
        text-align: center;
      }
  
      .mv-container {
        max-width: 1000px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
      }
  
      .mv-item {
        flex: 1;
        min-width: 250px;
        padding: 20px;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s, box-shadow 0.3s;
      }
  
      .mv-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
      }
  
      .mv-item h3 {
        font-size: 1.8rem;
        color: #0077b6;
        margin-bottom: 15px;
      }
  
      /* CEO Section */
      .about-ceo {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 30px;
        padding: 60px 20px;
        max-width: 1200px;
        margin: 0 auto;
      }
  
      .ceo-image img {
        width: 226px;
        height: 300px;
        object-fit: cover;
        border-radius: 5%;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      }
  
      .ceo-content {
        flex: 1;
      }
  
      .ceo-content h2 {
        font-size: 2rem;
        color: #0077b6;
        margin-bottom: 10px;
      }
  
      .ceo-content h3 {
        font-size: 1.5rem;
        color: #0096c7;
        margin-bottom: 20px;
      }
  
      .ceo-content p {
        font-size: 1.1rem;
        margin-bottom: 20px;
      }
  
      .ceo-content blockquote {
        font-style: italic;
        color: #555;
        margin: 20px 0;
        border-left: 4px solid #0077b6;
        padding-left: 15px;
      }
  
      /* Responsive Styles */
      @media (max-width: 768px) {
        .about-info, .about-ceo {
          flex-direction: column;
        }
  
        .info-content, .ceo-content {
          text-align: center;
        }
  
        .info-image img, .ceo-image img {
          margin: 0 auto;
        }
      }
    /* Footer Section */
  .footer-section {
    background-color: whitesmoke;
    color: black;
    padding: 50px 20px 20px;
    position: relative;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-about,
  .footer-links,
  .footer-contact,
  .footer-social {
    padding: 20px;
  }
  
  .footer-about h4,
  .footer-links h4,
  .footer-contact h4,
  .footer-social h4 {
  
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .footer-about p,
  .footer-contact p {
    font-size: 1rem;
    line-height: 1.8;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links ul li {
    margin-bottom: 10px;
  }
  
  .footer-links ul li a {
    color: black;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links ul li a:hover {
    color: #00bcd4;
  }
  
  .footer-contact p {
    margin-bottom: 10px;
  }
  
  .footer-social .social-icons {
    display: flex;
    gap: 15px;
  }
  
  .footer-social .social-icons a {
    color:#00bcd4;
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  .footer-social .social-icons a:hover {
    color: #005f87;
    transform: scale(1.2);
  }
  
  /* Footer Bottom */
  .footer-bottom {
    text-align: center;
    padding: 20px 0;
    background: linear-gradient(135deg, #00b4d8, #0077b6); /* Blue gradient */
    margin-top: 20px;
    color: black;
    font-size: 0.9rem;
  }
  
  .footer-bottom p {
    margin: 0;
  }


  /* product-page */

  .product-container {
    width: 90%;
    max-width: 1400px;
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    gap: 20px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.image-gallery {
    width: 100%;
    max-width: 600px;
    margin: auto;
    position: relative;
}

.main-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.thumbnail-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.thumbnail {
    width: 50px;
    height: 50px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

.thumbnail.active {
    border-color: #3b82f6;
}

.product-details {
    width: 100%;
    max-width: 600px;
    margin: auto;
    text-align: center;
}

.tabs {
    display: flex;
    justify-content: center;
    border-bottom: 2px solid #e5e7eb;
    margin: 30px auto 0 auto;
    flex-wrap: wrap;
    max-width: 100%;
}

.tab {
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    color: #6b7280;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
}

.tab.active {
    color: #3b82f6;
    border-bottom-color: #3b82f6;
}

.tab-content {
    display: none;
    padding: 20px;
    background-color: white;
    border-radius: 0 0 10px 10px;
    width: 100%;
    max-width: 1400px;
    margin: auto;
}

.tab-content.active {
    display: block;
}

.review {
    border-bottom: 1px solid #e5e7eb;
    padding: 15px 0;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-rating {
    display: flex;
    color: #fbbf24;
}

.star {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Media Queries for Responsiveness */

@media (max-width: 1024px) {
    .product-container {
        gap: 20px;
    }
    .tabs {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .product-container {
        flex-direction: column;
        padding: 15px;
    }
    .image-gallery, .product-details {
        width: 100%;
    }
    .tabs {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .thumbnail {
        width: 40px;
        height: 40px;
    }
    .tab {
        padding: 8px 15px;
        font-size: 12px;
    }
    .main-image {
        max-height: 300px;
    }
}




/* Product Card  */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.image-container {
    position: relative;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #3b82f6;
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
}

.rating {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.star, .star-half, .star-empty {
    color: #fbbf24;
    width: 1rem;
    height: 1rem;
}

.star-empty {
    color: #d1d5db;
}

.rating-text {
    margin-left: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.product-description {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.price-cart {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
}

.add-to-cart {
    display: flex;
    align-items: center;
    background-color: #3b82f6;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.add-to-cart:hover {
    background-color: #2563eb;
}

.cart-icon {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

