* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: white;
    height: 100vh;
    width: 100vw;
}
body::-webkit-scrollbar{
    display: none;
}
.tcl{
    display: none;
}
.topnav{
    display: none;
}
/* Container for both WhatsApp and Call buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  /* WhatsApp floating button styles */
  .whatsapp-icon, .call-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
  }
  
  /* WhatsApp icon styles */
  .whatsapp-icon {
    background: linear-gradient(135deg, #25D366, #128C7E); /* WhatsApp gradient */
  }
  
  /* Call icon styles */
  .call-icon {
    background: linear-gradient(135deg, #1f6bcf, #1965bd); /* Orange gradient for the call button */
  }
  
  /* Icon size */
  .whatsapp-icon i, .call-icon i {
    font-size: 36px;
  }
  
  /* Hover effect - glowing and growing effect for both icons */
  .whatsapp-icon:hover, .call-icon:hover {
    transform: scale(1.2);
    box-shadow: 0 8px 20px rgba(0, 255, 100, 0.5), 0 0 20px rgba(0, 255, 100, 0.7);
    animation: pulse 1s infinite, glow 1s infinite alternate;
  }
  
  /* Call button hover effect with orange glow */
  .call-icon:hover {
    box-shadow: 0 8px 20px rgba(255, 87, 34, 0.5), 0 0 20px rgba(255, 87, 34, 0.7);
  }
  
  /* Pulse animation for the hover state */
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }
  
  /* Glow effect animation */
  @keyframes glow {
    0% {
      box-shadow: 0 0 15px rgba(0, 255, 100, 0.2);
    }
    100% {
      box-shadow: 0 0 30px rgba(0, 255, 100, 0.5);
    }
  }
  
  /* Glow effect animation for call button */
  @keyframes glow-call {
    0% {
      box-shadow: 0 0 15px rgba(255, 87, 34, 0.2);
    }
    100% {
      box-shadow: 0 0 30px rgba(25, 110, 208, 0.5);
    }
  }
  
  /* Add animated wave effect around the WhatsApp button */
  .whatsapp-icon::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    width: 110px;
    height: 110px;
    border: 2px solid rgba(0, 255, 100, 0.5);
    border-radius: 50%;
    opacity: 0;
    animation: wave 2.5s infinite;
  }
  
  /* Wave effect around the call button */
  .call-icon::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    width: 110px;
    height: 110px;
    border: 2px solid rgba(36, 123, 199, 0.877);
    border-radius: 50%;
    opacity: 0;
    animation: wave-call 2.5s infinite;
  }
  
  /* WhatsApp wave animation */
  @keyframes wave {
    0% {
      transform: scale(0.6);
      opacity: 1;
    }
    100% {
      transform: scale(1.8);
      opacity: 0;
    }
  }
  
  /* Call wave animation */
  @keyframes wave-call {
    0% {
      transform: scale(0.6);
      opacity: 1;
    }
    100% {
      transform: scale(1.8);
      opacity: 0;
    }
  }
/* Fixed Contact Bar */
.fixed-contact-bar {
   
    width: 100%;
    background-color: rgb(0, 191, 99);
    padding: 10px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

/* Phone number on the left */
.contact-phone {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.contact-phone i {
    margin-right: 10px;
    font-size: 22px;
}

/* Phone Text */
.phone-text {
    color: #fff;
    transition: color 0.3s ease;
}

/* Social icons on the right */
.social-icons {
    display: flex;
    gap: 20px;  /* Space between icons */
}

/* Contact item (social media icons) */
.contact-item {
    color: #fff;
    font-size: 24px;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover Effects */
.contact-item:hover {
    transform: scale(1.1) rotate(10deg);
    color: #f1f1f1;
}

.contact-phone:hover .phone-text {
    color: #f1f1f1;
}



.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;  /* Increased padding */
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 100px;  /* Increased height */
    width: 100%;
}
.logo{
    height: 100%;
    width: 20%;
    margin-bottom: 25px;
}
.logo img {
    width:100px;
    height: 90px;
    object-fit: contain;
}

.nav-links {
    height: 100%;
    width: 60%;
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-links li {
    margin: 0 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a i {
    margin-right: 10px;
    font-size: 22px;
}

.nav-links a:hover {
    color: #28a745;
}

.nav-links a::before {
    content: '';
    position: absolute;
    width: 0%;
    height: 3px;
    background-color: #28a745;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-links a:hover::before {
    width: 100%;
}

.order-btn {
    background-color: rgb(0, 191, 99);
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.order-btn:hover {
    background-color: #218838;
    transform: scale(1.05);
}
.topban{
    height: 700px;
    width: 100%;
}
.topban img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Headings Container */
.headings-container {
    text-align: center;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
   height: 200px;
   display: flex;
   align-items: center;
   justify-content: center;
    width: 100%;
}

/* Main Heading */
.main-heading {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    position: relative;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 3px solid transparent;
    transition: border-color 0.5s ease;
}

.main-heading::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #28a745;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.5s ease;
}

.main-heading:hover::before {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.main-heading:hover {
    border-color: #28a745;
}
.big{
    height: 600px;
    width: 100%;
    background-color: white;
    padding: 20px;
}
.subbig{
    height: 100%;
    width: 100%;
    background-color:white;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-column-gap:20px;
    place-items: center;
}
.product-card {
    position: relative;
    width: 300px;
    height: 460px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.offer-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: red;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-weight: bold;
}

.product-image {
    width: 100%;
    height: auto;
}

.product-info {
    padding: 15px;
    text-align: center;
}
.product-info i{
    margin-right: 5px;
}
.product-title {
    margin: 0;
    font-size: 18px;
}

.product-mrp {
    margin: 10px 0;
    font-size: 16px;
}

.strike-through {
    text-decoration: line-through;
    color: #888;
}

.product-price {
    font-size: 20px;
    color: #22ba82;
    font-weight: bold;
    margin: 10px 0;
}

.view-more-button {
    background-color: #22ba82;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.view-more-button:hover {
    background-color: #1a9b6a;
}
.ben{
    height: 500px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ben img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.about-container {
    display: flex;
    align-items: center;
    background-color:white;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    padding: 20px;
}
.sub-about-container{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-image {
    height: 100%;
    width: 55%;
    overflow: hidden;
    /* flex: 1; */
    /* position: relative; */
}
.about-image img {
    width: 100%;
    height:100%;
    border-radius: 10px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}
.about-image img:hover {
    transform: scale(1.05);
}
.about-content {
    padding: 20px;
    width: 45%;
    height: 100%;
}
.about-content h1 {
    font-size: 2.5rem;
    color: #22BA82;
    margin-bottom: 15px;
}
.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}
.download-btn {
    display: inline-block;
    background-color: #FF0000;
    color: #fff;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.download-btn:hover {
    background-color: #cc0000;
    transform: translateY(-5px);
}
.choose-us-section {
    text-align: center;
    padding: 70px 20px;
    background: linear-gradient(135deg, #22BA82, #149669);
    color: white;
}
.choose-us-section h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.choose-us-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.choose-item {
    flex: 1;
    max-width: 280px;
    padding: 40px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    color: #333;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.choose-item:hover {
    background-color: #22BA82;
    transform: translateY(-10px) scale(1.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    color: white;
}
.choose-item img {
    width: 70px;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}
.choose-item:hover img {
    transform: scale(1.15);
}
.choose-item h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}
.choose-item p {
    font-size: 1rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}
/* Accent Lines */
.choose-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #ffb400, #ff5656);
    transition: height 0.3s ease;
}
.choose-item:hover::before {
    height: 100%;
}
.empty{
    height: 100px;
    width: 100%;
}
.down{
    height: 400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.down img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
 /* Footer Styling */
 .footer {
    background-color: #222;
    color: white;
    padding: 50px 20px;
    height: 450px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items:flex-start;
}

/* Footer Logo Section */
.footer-logo {
    height:100%;
    width:20%;
    margin-bottom: 30px;
}

.footer-logo img {
    
    width: 150px;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Footer Contact Section */
.footer-contact {
    height:100%;
    width:20%;
    margin-bottom: 30px;
    
}

.footer-contact h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #22BA82;
}

.footer-contact p {
    display: flex;
    align-items: center;
    font-size: 1rem;
    line-height: 1.6;
    margin: 10px 0;
}

.footer-contact p i {
    margin-right: 10px;
    color: #22BA82;
}

.footer-contact a {
    color: #22BA82;
    text-decoration: none;
    font-weight: bold;
}

/* Footer Quick Links Section */
.footer-links {
    
    height:100%;
    width:10%;
    overflow: hidden;
    margin-bottom: 30px;
}

.footer-links h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #22BA82;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #22BA82;
}

/* Footer Social Media Section */
.footer-social {
    height:100%;
    width:20%;
    margin-bottom: 30px;
    text-align: center;
}

.footer-social h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #22BA82;
}

.footer-social .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-social .social-icons a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.footer-social .social-icons a:hover {
    color: #22BA82;
}

/* Footer Map Section */
.footer-map {
    height:100%;
    width:20%;
    margin-bottom: 30px;
}

.footer-map iframe {
    width: 100%;
    height: 250px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Footer Bottom Section */
.footer-bottom {
    text-align: center;
    padding: 20px;
    background-color: #111;
    color: #777;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #22BA82;
    text-decoration: none;
}

/* Icons */
.footer-contact p i, .footer-social a {
    font-size: 1.2rem;
}
@media screen and (max-width:600px) {




    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        font-family: 'Arial', sans-serif;
        background-color: white;
        height: 100vh;
        width: 100vw;
    }
    body::-webkit-scrollbar{
        display: none;
    }
    .tcl{
        height: 100px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
       
    }
    .tcl img{
        height: 100%;
        width: 100%;
        object-fit: contain;
    }
    .topnav {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        overflow: hidden;
        padding-top: 0px;
        background-color:rgb(0, 191, 99);
        margin-bottom: 15px;
      }
      
      .topnav #myLinks {
       
        display: none;
      }
      
      .topnav a {
        color:white;
        /* padding: 16px 6px; */
        margin-bottom:20px;
        text-decoration: none;
        font-size: 20px;
        display: flex;
        align-items: center;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-weight:400;
        justify-content: center;
       
      }
      #cc{
        margin: 0;
        padding: 0;
        color: #222;    
      }
      .topnav a.icon {
        border: 0.5px rgba(49, 49, 49, 0.756) solid;
        border-radius: 13px;
        width: 70px;
        height: 40px;
        margin-top: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        background:white;
        color: black;
        /* display: block; */
        /* position: absolute; */
        /* right: 10px; */
        /* top: 0; */
        
      }
      
      .topnav a:hover {
        
        background-color: #ddd;
        color: black;
       
      }
    /* Container for both WhatsApp and Call buttons */
    .floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        gap: 15px;
      }
      
      /* WhatsApp floating button styles */
      .whatsapp-icon, .call-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 70px;
        height: 70px;
        color: white;
        border-radius: 50%;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        text-decoration: none;
        transition: all 0.3s ease-in-out;
        position: relative;
        overflow: hidden;
      }
      
      /* WhatsApp icon styles */
      .whatsapp-icon {
        background: linear-gradient(135deg, #25D366, #128C7E); /* WhatsApp gradient */
      }
      
      /* Call icon styles */
      .call-icon {
        background: linear-gradient(135deg, #1f6bcf, #1965bd); /* Orange gradient for the call button */
      }
      
      /* Icon size */
      .whatsapp-icon i, .call-icon i {
        font-size: 36px;
      }
      
      /* Hover effect - glowing and growing effect for both icons */
      .whatsapp-icon:hover, .call-icon:hover {
        transform: scale(1.2);
        box-shadow: 0 8px 20px rgba(0, 255, 100, 0.5), 0 0 20px rgba(0, 255, 100, 0.7);
        animation: pulse 1s infinite, glow 1s infinite alternate;
      }
      
      /* Call button hover effect with orange glow */
      .call-icon:hover {
        box-shadow: 0 8px 20px rgba(255, 87, 34, 0.5), 0 0 20px rgba(255, 87, 34, 0.7);
      }
      
      /* Pulse animation for the hover state */
      @keyframes pulse {
        0% {
          transform: scale(1);
        }
        50% {
          transform: scale(1.1);
        }
        100% {
          transform: scale(1);
        }
      }
      
      /* Glow effect animation */
      @keyframes glow {
        0% {
          box-shadow: 0 0 15px rgba(0, 255, 100, 0.2);
        }
        100% {
          box-shadow: 0 0 30px rgba(0, 255, 100, 0.5);
        }
      }
      
      /* Glow effect animation for call button */
      @keyframes glow-call {
        0% {
          box-shadow: 0 0 15px rgba(255, 87, 34, 0.2);
        }
        100% {
          box-shadow: 0 0 30px rgba(25, 110, 208, 0.5);
        }
      }
      
      /* Add animated wave effect around the WhatsApp button */
      .whatsapp-icon::before {
        content: "";
        position: absolute;
        top: -20px;
        left: -20px;
        width: 110px;
        height: 110px;
        border: 2px solid rgba(0, 255, 100, 0.5);
        border-radius: 50%;
        opacity: 0;
        animation: wave 2.5s infinite;
      }
      
      /* Wave effect around the call button */
      .call-icon::before {
        content: "";
        position: absolute;
        top: -20px;
        left: -20px;
        width: 110px;
        height: 110px;
        border: 2px solid rgba(36, 123, 199, 0.877);
        border-radius: 50%;
        opacity: 0;
        animation: wave-call 2.5s infinite;
      }
      
      /* WhatsApp wave animation */
      @keyframes wave {
        0% {
          transform: scale(0.6);
          opacity: 1;
        }
        100% {
          transform: scale(1.8);
          opacity: 0;
        }
      }
      
      /* Call wave animation */
      @keyframes wave-call {
        0% {
          transform: scale(0.6);
          opacity: 1;
        }
        100% {
          transform: scale(1.8);
          opacity: 0;
        }
      }
    /* Fixed Contact Bar */
    .fixed-contact-bar {
        height: 50px;
        width: 100%;
        background-color: rgb(0, 191, 99);
        padding: 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 1000;
        box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
    }
    
    /* Phone number on the left */
    .contact-phone {
        width: 100%;
        color: #fff;
        font-size: 15px;
        font-weight: 500;
        display: flex;
        align-items: center;
    }
    
    .contact-phone i {
        margin-right: 10px;
        font-size: 16px;
    }
    
    /* Phone Text */
    .phone-text {
        color: #fff;
        transition: color 0.3s ease;
    }
    
    /* Social icons on the right */
    .social-icons {
        display: none;
        /* display: flex; */
        gap: 20px;  /* Space between icons */
    }
    
    /* Contact item (social media icons) */
    .contact-item {
        color: #fff;
        font-size: 24px;
        transition: transform 0.3s ease, color 0.3s ease;
    }
    
    /* Hover Effects */
    .contact-item:hover {
        transform: scale(1.1) rotate(10deg);
        color: #f1f1f1;
    }
    
    .contact-phone:hover .phone-text {
        color: #f1f1f1;
    }
    
    
    
    .navbar {
        display: none;
        /* display: flex; */
        justify-content: space-between;
        align-items: center;
        padding: 20px 30px;  /* Increased padding */
        background-color: #fff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        height: 100px;  /* Increased height */
        width: 100%;
    }
    .logo{
        height: 100%;
        width: 20%;
        margin-bottom: 25px;
    }
    .logo img {
        width:100px;
        height: 90px;
        object-fit: contain;
    }
    
    .nav-links {
        height: 100%;
        width: 60%;
        list-style: none;
        display: flex;
        align-items: center;
    }
    
    .nav-links li {
        margin: 0 20px;
    }
    
    .nav-links a {
        text-decoration: none;
        color: #333;
        font-size: 18px;
        font-weight: 500;
        display: flex;
        align-items: center;
        position: relative;
        padding-bottom: 5px;
    }
    
    .nav-links a i {
        margin-right: 10px;
        font-size: 22px;
    }
    
    .nav-links a:hover {
        color: #28a745;
    }
    
    .nav-links a::before {
        content: '';
        position: absolute;
        width: 0%;
        height: 3px;
        background-color: #28a745;
        bottom: 0;
        left: 0;
        transition: width 0.3s ease;
    }
    
    .nav-links a:hover::before {
        width: 100%;
    }
    
    .order-btn {
        background-color: rgb(0, 191, 99);
        color: #fff;
        padding: 12px 25px;
        text-decoration: none;
        border-radius: 10px;
        font-size: 18px;
        font-weight: 600;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: background-color 0.3s ease, transform 0.3s ease;
    }
    
    .order-btn:hover {
        background-color: #218838;
        transform: scale(1.05);
    }
    .topban{
        height:auto;
        width: 100%;
    }
    .topban img{
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    
    /* Headings Container */
    .headings-container {
        text-align: center;
        background-color: #fff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
       height: auto;
       display: flex;
       align-items: center;
       justify-content: center;
        width: 100%;
    }
    
    /* Main Heading */
    .main-heading {
        font-size:26px;
        font-weight: 700;
        margin: 0;
        font-family:Verdana, Geneva, Tahoma, sans-serif;
        position: relative;
        color: #333;
        padding-bottom: 10px;
        border-bottom: 3px solid transparent;
        transition: border-color 0.5s ease;
    }
    
    .main-heading::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: #28a745;
        transform: scaleX(0);
        transform-origin: bottom right;
        transition: transform 0.5s ease;
    }
    
    .main-heading:hover::before {
        transform: scaleX(1);
        transform-origin: bottom left;
    }
    
    .main-heading:hover {
        border-color: #28a745;
    }
    .big{
        overflow: hidden;
        height: auto;
        width: 100%;
        background-color: white;
        padding: 20px;
    }
    .subbig{
        height: 100%;
        width: 100%;
        background-color:white;
        display: grid;
        grid-template-columns: repeat(2,1fr);
        grid-column-gap:20px;
        grid-row-gap: 20px;
        place-items: center;
    }
    .product-card {
        position: relative;
        width: 100%;
        height: auto;
        border: 1px solid #ddd;
        border-radius: 8px;
        overflow: hidden;
        background-color: #fff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .product-card:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }
    
    .offer-tag {
        position: absolute;
        top: 10px;
        left: 10px;
        background-color: red;
        color: white;
        padding: 2px 6px;
        border-radius: 3px;
        font-weight: bold;
    }
    
    .product-image {
        width: 100%;
        height: auto;
    }
    
    .product-info {
        padding: 15px;
        text-align: center;
    }
    .product-info i{
        margin-right: 5px;
    }
    .product-title {
        margin: 0;
        font-size: 18px;
    }
    
    .product-mrp {
        margin: 10px 0;
        font-size: 16px;
    }
    
    .strike-through {
        text-decoration: line-through;
        color: #888;
    }
    
    .product-price {
        font-size: 20px;
        color: #22ba82;
        font-weight: bold;
        margin: 10px 0;
    }
    
    .view-more-button {
        background-color: #22ba82;
        color: white;
        border: none;
        border-radius: 5px;
        padding: 10px 15px;
        font-size: 16px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    
    .view-more-button:hover {
        background-color: #1a9b6a;
    }
    .ben{
        height:auto;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .ben img{
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    .about-container {
        overflow: hidden;
        display: flex;
        align-items: center;
        flex-direction: column;
        background-color:white;
        height: auto;
        border-radius: 10px;
        overflow: hidden;
        padding: 20px;
    }
    .sub-about-container{
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .about-image {
        height: 100%;
        width: 100%;
        overflow: hidden;
        /* flex: 1; */
        /* position: relative; */
    }
    .about-image img {
        width: 100%;
        height:100%;
        border-radius: 10px;
        object-fit: cover;
        transition: transform 0.3s ease-in-out;
    }
    .about-image img:hover {
        transform: scale(1.05);
    }
    .about-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0px;
        width: 100%;
        height: 100%;
    }
    .about-content h1 {
        font-size: 26px;
        margin-top: 20px;
        color: #22BA82;
        margin-bottom: 15px;
    }
    .about-content p {
        font-size: 16px;
        line-height: 1.8;
        text-align: justify;
        margin-bottom: 25px;
    }
    .download-btn {
        display: inline-block;
        background-color: #FF0000;
        color: #fff;
        padding: 15px 30px;
        font-size: 1.1rem;
        font-weight: bold;
        text-decoration: none;
        border-radius: 5px;
        box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
        transition: background-color 0.3s ease, transform 0.3s ease;
    }
    .download-btn:hover {
        background-color: #cc0000;
        transform: translateY(-5px);
    }
    .choose-us-section {
        height: auto;
        width: 100%;
        text-align: center;
        padding: 70px 20px;
        background: linear-gradient(135deg, #22BA82, #149669);
        color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .choose-us-section h2 {
        font-size: 26px;
        margin-bottom: 40px;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 2px;
    }
    .choose-us-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
    }
    .choose-item {
        flex: 1;
        max-width: 280px;
        padding: 40px;
        background-color: white;
        border-radius: 15px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
        color: #333;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    .choose-item:hover {
        background-color: #22BA82;
        transform: translateY(-10px) scale(1.08);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
        color: white;
    }
    .choose-item img {
        width: 70px;
        margin-bottom: 25px;
        transition: transform 0.3s ease;
    }
    .choose-item:hover img {
        transform: scale(1.15);
    }
    .choose-item h3 {
        font-size: 1.8rem;
        margin-bottom: 15px;
        transition: color 0.3s ease;
    }
    .choose-item p {
        font-size: 1rem;
        line-height: 1.6;
        transition: color 0.3s ease;
    }
    /* Accent Lines */
    .choose-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 8px;
        background: linear-gradient(90deg, #ffb400, #ff5656);
        transition: height 0.3s ease;
    }
    .choose-item:hover::before {
        height: 100%;
    }
    .empty{
        height: 50px;
        width: 100%;
    }
    .down{
        overflow: hidden;
        height:auto;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .down img{
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
     /* Footer Styling */
     .footer {
        background-color: #222;
        color: white;
        padding: 20px;
        height: auto;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items:flex-start;
    }
    
    /* Footer Logo Section */
    .footer-logo {
        height:100%;
        width:100%;
        margin-bottom: 30px;
    }
    
    .footer-logo img {
        height: auto;
        width: 150px;
        margin-bottom: 15px;
    }
    
    .footer-logo p {
        font-size: 1rem;
        line-height: 1.6;
        text-align: justify;
    }
    
    /* Footer Contact Section */
    .footer-contact {
        height:100%;
        width:100%;
        margin-bottom: 30px;
        
    }
    
    .footer-contact h4 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: #22BA82;
    }
    
    .footer-contact p {
        display: flex;
        align-items: center;
        font-size: 1rem;
        line-height: 1.6;
        margin: 10px 0;
    }
    
    .footer-contact p i {
        margin-right: 10px;
        color: #22BA82;
    }
    
    .footer-contact a {
        color: #22BA82;
        text-decoration: none;
        font-weight: bold;
    }
    
    /* Footer Quick Links Section */
    .footer-links {
        
        height:100%;
        width:100%;
        overflow: hidden;
        margin-bottom: 30px;
    }
    
    .footer-links h4 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: #22BA82;
    }
    
    .footer-links ul {
        list-style: none;
        padding: 0;
    }
    
    .footer-links ul li {
        margin-bottom: 10px;
    }
    
    .footer-links ul li a {
        color: white;
        text-decoration: none;
        transition: color 0.3s;
    }
    
    .footer-links ul li a:hover {
        color: #22BA82;
    }
    
    /* Footer Social Media Section */
    .footer-social {
        height:100%;
        width: 100%;
        margin-bottom: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content:center;
       
    }
    
    .footer-social h4 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: #22BA82;
    }
    
    .footer-social .social-icons {
        display: flex;
        justify-content: center;
        gap: 20px;
    }
    
    .footer-social .social-icons a {
        color: white;
        font-size: 1.5rem;
        transition: color 0.3s;
    }
    
    .footer-social .social-icons a:hover {
        color: #22BA82;
    }
    
    /* Footer Map Section */
    .footer-map {
        height:100%;
        width:100%;
        margin-bottom: 30px;
    }
    
    .footer-map iframe {
        width: 100%;
        height: 250px;
        border: none;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
    
    /* Footer Bottom Section */
    .footer-bottom {
        text-align: center;
        padding: 20px;
        background-color: #111;
        color: #777;
        font-size: 0.9rem;
    }
    
    .footer-bottom a {
        color: #22BA82;
        text-decoration: none;
    }
    
    /* Icons */
    .footer-contact p i, .footer-social a {
        font-size: 1.2rem;
    }











}
