
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;   
   }
   body{
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
    font-family: "Assistant", sans-serif;
   
    /* place-content: center; */
   }
   body::-webkit-scrollbar{
       display: none;
   }
   .tcl{
    display: none;
}
.topnav{
    display: none;
}
   /* Fixed Contact Bar */
.fixed-contact-bar {
   
  width: 100%;
  background-color: #00bf63;
  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: #00bf63;
  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);
} 
.big{
  height: 590px;
  /* height: 690px; */
  width: 100%;
}
.big img{
  height: 100%;
  width: 100%;
  object-fit:cover;
}
.container {
    width: 100%;
    /* margin: 50px auto; */
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 10px;
  }
  
  h1 {
    text-align: center;
    margin-bottom: 30px;
    text-transform: capitalize;
    /* font-weight: 400; */
    /* font-family: "Poppins", sans-serif; */
    color:#218838;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
  }
  
  table, th, td {
    border: 1px solid #ddd;
  }
  
  th, td {
    padding: 10px;
    /* background-color: #102770; */
    text-align: center;
    color: #070707;
    font-weight: 500;
    font-size: 18px;
  }
  .product-category td{
    padding: 10px;
    text-transform: uppercase;
    background-color: #15d247;
    text-align: center;
    color: white;
  }
  th {
    background-color:rgb(200, 45, 45);
    color:white;
  }
  
  .product-img {
    width: 60px;
    cursor: pointer;
    transition: transform 0.2s;
  }
  
  .product-img:hover {
    transform: scale(1.2);
  }
  
  .modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
  }
  
  .modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
  }
  
  #caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
  }
  
  .close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .close:hover,
  .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
  }
  .product-category {
    background-color: #ececec;
    font-weight: bold;
    text-align: left;
    font-size: 1.2em;
  }
  #cartSummary {
    /* position: fixed; */
    /* top: 400px; */
    /* right: 300px; */
    margin-bottom: 100px;
    width: 100%;
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 10px;
    z-index: 1000;
  }
  #cartSummary th{
    background-color: rgb(247, 214, 27);
    color: rgba(0, 0, 0, 0.753);
  }
  #cartSummary h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #121111;
  }
  
  #cartTable {
    margin-bottom: 20px;
  }
  
  #checkoutButton {
    display: block;
    width: 100%;
    padding: 10px;
    background: #28a745;
    color: white;
    border: none;
    cursor: pointer;
    text-align: center;
    border-radius: 5px;
    transition: background 0.3s;
  }
  
  #checkoutButton:hover {
    background: #218838;
  }
  
  /* Cart icon styles */
  #cartIconContainer {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 1000;
  }
  
  #cartIcon {
    width: 100%;
    height: 100%;
  }
  
  #cartQuantity {
    position: absolute;
    top: 0;
    right: 0;
    background: red;
    color: white;
    border-radius: 50%;
    padding: 5px 10px;
    font-size: 14px;
  }
  
/* 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);
  }
 .big{
  height: auto;
  width: 100%;
 }
 .big img{
  height: 100%;
  width: 100%;
  object-fit: cover;
 }
  .container {
    height: auto;
    width: 100%;
    margin:0;
    padding: 10px;
  }
  .quantity{
    height: auto;
    width: 25px;
  }
  h1 {
    font-size: 1.2em;
  }
  
  table, th{
    font-size: 12px;
    padding: 3px;
  }
  td{
    font-size: 15px;
    height: 60px;
    padding: 3px;
    text-transform: uppercase;
    color: black;
    font-weight: 500;
  }
  .product-category td{
    padding: 10px;
    background-color: #2350e5b3;
    text-align: center;
    color: white;
  }
  .product-img {
    height: 100%;
    width: 100%;
  }
  
  #cartSummary {
    width: 100%;
    padding: 5px;
    z-index: 1;
  }
  
  #checkoutButton {
    height: 40px;
    width: 100%;
    padding: 6px;
  }
  
  #cartIconContainer {
    width: 40px;
    height: 40px;
  }
  
  #cartQuantity {
    padding: 2px 5px;
    font-size: 10px;
  }
  
  #imageModal{
    z-index:9999;
  }
  
   








































   /* 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;
  }











}
































































