@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Spartan", sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* Global Styles */

h1 {
  font-size: 50px;
  line-height: 64px;
  color: #222;
}

h2 {
  font-size: 46px;
  line-height: 54px;
  color: #222;
}

h4 {
  font-size: 20px;
  color: #222;
}

h6 {
  font-weight: 700;
  font-size: 12px;
}

p {
  font-size: 16px;
  color: #465b52;
  margin: 15px 0 20px 0;
}

.section-p1 {
  padding: 40px 80px;
}

.section-m1 {
  margin: 40px 0;
}

button.normal{
  font-size: 14px;
  font-weight: 600;
  padding: 15px 30px;
  color: #000;
  background-color: #fff;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: 0.2s; 
}

button.white{
  font-size: 13px;
  font-weight: 600;
  padding: 11px 18px;
  color: #fff;
  background-color: transparent;
  cursor: pointer;
  border: 1px solid #fff;
  outline: none;
  transition: 0.2s; 
}

body {
  width: 100%;
}

/*Header*/

#header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 80px;
  background: #d9d9d9;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  z-index: 999;
  position: sticky;
  top: 0;
  left: 0;

}

#navbar {
  display: flex;
  align-items: center;
  justify-content: center;
}


#navbar li{
  list-style: none;
  padding: 0 20px;
  position: relative;
}

#navbar li a{
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  transition: 0.3s ease;
}

#navbar li a:hover,
#navbar li a.active {
  color: #4b4b4c;

}

#navbar li a.active::after,
#navbar li a:hover::after {
  content: "";
  width: 30%;
  height: 2px;
  background: #4b4b4c;
  position: absolute;
  bottom: -4px;
  left: 20px;
}

#lg-bag {
  display: none;
}

#mobile{
  display:none;
  align-items: center;
}

.icon {
  width: 2rem; /* Default width for all icons */
  height: 2rem; /* Default height for all icons */
  cursor: pointer; /* Make icons interactive */
}

#close{
  display: none;
}

/* Intro Image */

#intro {
  display: flex;
  align-items: center;
  justify-content: center; 
  padding: 0px;
  background: #ffffff;
  
}

#intro img {
  max-width: 100%; 
  height: auto;
}



/*Home Page*/

#hero {
  background-image: url(img/hero.jpg);
  height: 80vh;
  width: 100%;
  background-size: cover;
  background-position: top 25% right 0;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

#hero h4 {
  padding-bottom: 15px;
}

#hero h3 {
  color: #4b4b4c;
}

#hero button {
  background-image: url("img/button.png");
  background-color: transparent;
  color:#4b4b4c;
  border: 0;
  padding: 14px 80px 14px 65px;
  background-repeat: no-repeat;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
}

#content1 {
  
  padding: 40px 120px;
  background-color: #d9d9d9;
  line-height: 1;
  border-radius: 4px;
}

#feature {
  display:flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

#feature .fe-box{
  width: 180px;
  text-align: center;
  padding: 25px 15px;
  box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.03);
  border: 1px solid #cce7d0;
  border-radius: 10px;
  margin: 15px 0;
}

#feature .fe-box:hover{
  box-shadow: 10px 10px 54px rgba(22, 15, 155, 0.1);
  border-radius: 4px;
}

#feature .fe-box img{
  width: 100%;
  margin-bottom: 10px;
}

#feature .fe-box h6 {
  display: inline-block;
  padding: 9px 8px 6px 8px;
  line-height: 1;
  border-radius: 4px;
  color: #4b4b4c;
  background-color: #fddde4;
}

#feature .fe-box:nth-child(2) h6 {
  background-color: #cdebbc;
}
#feature .fe-box:nth-child(3) h6 {
  background-color: #d1e8f2;
}
#feature .fe-box:nth-child(4) h6 {
  background-color: #cdd4f8;
}
#feature .fe-box:nth-child(5) h6 {
  background-color: #f6dbf6;
}
#feature .fe-box:nth-child(6) h6 {
  background-color: #fddde4;
}
#feature .fe-box:nth-child(7) h6 {
  background-color: #cdebbc;
}
#feature .fe-box:nth-child(8) h6 {
  background-color: #d1e8f2;
}
#feature .fe-box:nth-child(9) h6 {
  background-color: #cdd4f8;
}
#feature .fe-box:nth-child(10) h6 {
  background-color: #f6dbf6;
}
#feature .fe-box:nth-child(11) h6 {
  background-color: #fddde4;
}
#feature .fe-box:nth-child(12) h6 {
  background-color: #cdebbc;
}
#feature .fe-box:nth-child(13) h6 {
  background-color: #d1e8f2;
}
#feature .fe-box:nth-child(14) h6 {
  background-color: #cdd4f8;
}
#feature .fe-box:nth-child(15) h6 {
  background-color: #f6dbf6;
}
#feature .fe-box:nth-child(16) h6 {
  background-color: #fddde4;
}
#feature .fe-box:nth-child(17) h6 {
  background-color: #cdebbc;
}
#feature .fe-box:nth-child(18) h6 {
  background-color: #d1e8f2;
}
#feature .fe-box:nth-child(19) h6 {
  background-color: #cdd4f8;
}
#feature .fe-box:nth-child(20) h6 {
  background-color: #f6dbf6;
}
#feature .fe-box:nth-child(21) h6 {
  background-color: #fddde4;
}

#product1{
  text-align: center;
}
#product1 .pro-container{
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  flex-wrap: wrap;
}
#product1 .pro {
  width: 23%;
  min-width: 250px;
  padding: 10px 12px;
  border: 1px solid #cce7d0;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
  margin: 15px 0;
  transition: 0.2s ease;
  position: relative;
}
#product1 .pro .pro-link {
  text-decoration: none; /* Removes underline */
  color: inherit; /* Keeps text color consistent */
  display: inline-block;
}
#product1 .pro:hover {
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.06);
}
#product1 .pro img{
  width: 100%;
  border-radius: 20px;
}

#product1 .pro .des span {
  color: #606063;
  font-size: 12px;
}
#product1 .pro .des h5 {
  padding-top: 7px;
  color: #1a1a1a;
  font-size: 14px;
}
#product1 .pro .des i{
  font-size: 12px;
  color:rgb(243,181,25);
}
#product1 .pro .des h4{
  padding-top: 7px;
  font-size: 15px;
  font-weight: 700;
  color: #4b4b4c;
}
#product1 .pro .cart {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: #e8f6ea;
  font-weight: 500;
  color: #4b4b4c;
  border: 1px solid #cce7d0;
  position: absolute;
  bottom: 10px;
  right: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

#product1 .pro .cart i {
  font-size: 18px;
}

#product1 .pro .des {
  text-align: start;
  padding: 10px 0;
  padding-bottom: 50px; /* Extra padding to prevent overlap with .cart */
}

#product1 .pro .cart:hover {
  background-color: #4CAF50; /* Change to green */
  color: white; /* Change icon color to white */
  border-color: #4CAF50; /* Match border with green background */
}

#product1 .pro .discontinued-tag {
  display: inline-block;
  margin-top: 10px; /* Space from the text above */
  padding: 10px 10px;
  font-size: 15px;
  color: white !important;
  background-color: rgb(250, 53, 53);
  border-radius: 15px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.5px;
}

#product1 .pro .bestseller {
  display: inline-block;
  margin-top: 10px; /* Space from the text above */
  padding: 10px 10px;
  font-size: 15px;
  color: white !important;
  background-color: rgb(32, 173, 13);
  border-radius: 15px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.5px;
}

#banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url(img/banner/hantek.jpg);
  width: 100%;
  height: 40vh;
  background-size: cover;
  background-position: center;
}
#banner h4{
  color: #fff;
  font-size: 16px;
}
#banner h2{
  color: #fff;
  font-size: 30px;
  padding: 10px 0;
}
#banner h2 span{
  color: #ffffff;
}

#banner button:hover{
  background: #4b4b4c;
  color: #fff;
}

#sm-banner{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#sm-banner .banner-box{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-image: url(img/banner/b17.jpg);
  min-width: 580px;
  height: 50vh;
  background-size: cover;
  background-position: center;
  padding: 30px;
}

#sm-banner .banner-box2{
  background-image: url(img/banner/b10.jpg);
}

#sm-banner h4{
  color: #fff;
  font-size: 20px;
  font-weight: 300;
}

#sm-banner h2{
  color: #fff;
  font-size: 28px;
  font-weight: 800;
}

#sm-banner span{
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 15px;
}

#sm-banner .banner-box:hover button{
  background: #088178;
  border: 1px solid #088178;
}

#banner3 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 80px;
}

#banner3 .banner-box{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-image: url(img/banner/b7.jpg);
  min-width: 30%;
  height: 30vh;
  background-size: cover;
  background-position: center;
  padding: 20px;
  margin-bottom: 20px;
}

#banner3 .banner-box2{
  background-image: url(img/banner/b4.jpg);
}

#banner3 .banner-box3{
  background-image: url(img/banner/b18.jpg);
}

#banner3 h2{
  color: #fff;
  font-weight: 900;
  font-size: 22px;
}

#banner3 h3{
  color: #ec544e;
  font-weight: 800;
  font-size: 15px;
}

#content2 {
  background-color: #d9d9d9;
  padding: 30px;
  border-radius: 8px;
  color: #333;
  line-height: 1.6;
  font-family: Arial, sans-serif;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 1000px;
  margin: 0 auto; /* Center-align the content */
}

#content2 p {
  line-height: 1.2;
  font-size: 16px;
  color: #555;
}

#content2 h2 {
  font-size: 24px;
  color: #333;
  text-align: center;
  margin-bottom: 20px;
}

#content2 .highlight {
  color: #0066cc; /* A soft blue color for emphasis */
  font-weight: bold;
}

#content2 .note {
  color: #d9534f; /* A soft red color for important notes */
  font-style: italic;
}


#newsletter{
  display:flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  background-image: url(img/banner/b14.png);
  background-repeat: no-repeat;
  background-position: 20% 30%;
  background-color: #041e24;
}

#newsletter h4{
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

#newsletter p{
  font-size: 14px;
  font-weight: 600;
  color: #818ea0;
}

#newsletter p span{
  color: #ffbd27;
}

#newsletter .form{
  display: flex;
  width: 40%;
}

#newsletter input{
  height: 3.125rem;
  padding: 0 1.25em;
  font-size: 14px;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 4px;
  outline: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

#newsletter button{
    background-color: #088178;
    color: #fff;
    white-space: nowrap ;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

footer .col{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  margin-top: 20px;
}

footer .whatsapp-icon {
  width: 20px; /* Set width to fit the layout */
  height: 20px; /* Ensure proper aspect ratio */
  margin-right: 8px; /* Add spacing between icon and text */
  vertical-align: middle; /* Align icon with text vertically */
  display: inline-block; /* Ensures it's treated as an inline element */
}

footer .logo{
  margin-bottom: 30px;
}

footer h4{
  font-size: 14px;
  padding-bottom: 20px;
}

footer p{
  font-size: 13px;
  margin: 0 0 8px 0;
}

footer .icons {
  width: 1.5em; /* Match the text size dynamically */
  height: 1.5em; /* Maintain aspect ratio */
  margin-right: 5px; /* Add spacing between the icon and text */
  vertical-align: middle; /* Align with text baseline */
}

footer a{
  font-size: 13px;
  text-decoration: none;
  color: #222;
  margin-bottom: 10px;
}

footer .follow{
  margin-top: 20px;
}

/* Styling for the follow section icons */
.follow .icon {
  display: flex; /* Align icons in a single row */
  gap: 25px; /* Spacing between icons */
  justify-content: flex-start; /* Align icons to the left */
  margin-top: 10px; /* Add some space above the icons */
}

.follow .icon img {
  width: 25px; /* Base size for the icons */
  height: 25px; /* Maintain aspect ratio */
  transition: transform 0.3s ease, filter 0.3s ease; /* Smooth transition for hover effects */
}

.follow .icon img:hover {
  transform: scale(1.2); /* Enlarge the icon slightly on hover */
  filter: brightness(1.2); /* Make the icon slightly brighter on hover */
}

footer .follow i{
  color: #465b52;
  padding-right: 20px;
  cursor:pointer;
  font-size: 20px;
}

footer .install .gateway img{
  /* border: 1px solid #088178;
  border-radius: 6px; */
  margin: 10px 0 15px 0;
}

footer .follow i:hover, footer a:hover{
  color: #088178;
}

footer .copyright{
  margin-top: 20px;
  width: 100%;
  text-align: center;
}

.whatsapp-button {
  position: fixed;
  bottom: 30px;
  right: 35px;
  background-color: rgba(255, 255, 255, 0.6); /* Semi-transparent white */
  color: #25D366; /* WhatsApp green for text */
  padding: 10px 20px; /* Balanced padding for a clean look */
  border-radius: 30px; /* Fully rounded rectangle */
  font-size: 18px;
  font-weight: bold;
  text-decoration: none; /* Removes underline */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px; /* Spacing between text and icon */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Subtle shadow */
  transition: background-color 0.3s, transform 0.2s;
  z-index: 1000;
  border: 2px solid #25D366; 
}

.whatsapp-button:hover {
  background-color: rgba(255, 255, 255, 0.9); /* Slightly less transparent on hover */
  transform: scale(1.1); /* Enlarge slightly on hover */
}

/* Default visibility for icons */
.whatsapp-button .large-icon {
  display: block; /* Show the large icon by default */
}

.whatsapp-button .small-icon {
  display: none; /* Hide the small icon by default */
}

.whatsapp-button img.whatsapp {
  max-width: 24px; /* Ensure the icon size fits within the button */
  max-height: 24px; /* Maintain the icon's aspect ratio */
  
}


/* Products page */

#page-header{
  background-image: url(img/introbg.jpg);
  width: 100%;
  height: 50vh;
  background-size: cover;
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 14px;
}

/* Single Products page */

#prodetails {
  display: flex;
  margin-top: 20px;
}

#prodetails .single-pro-image{
  width: 40%;
  margin-right: 50px;
}

.small-img-group{
  display: flex;
  justify-content: space-between;
}

.small-img-col{
  flex-basis: 24%;
  cursor: pointer;
}

#prodetails .single-pro-details{
  width: 50%;
  padding-top: 30px;
}

#prodetails .single-pro-details ul {
  margin: 0;
  padding: 0;
  list-style: none; /* Removes bullet points */
}

#prodetails .single-pro-details h4{
  padding: 40px 0 20px 0;
}

#prodetails .single-pro-details h2{
  font-size: 26px;
}

#prodetails .single-pro-details button{
  background-color: #464646;
  color: #fff;
}
.single-pro-details h6 a {
  text-decoration: none; /* Removes underline */
  color: black;          /* Sets default text color */
  cursor: default;       /* Default cursor */
}
.single-pro-details h6 a:hover {
  color: grey;           /* Changes color on hover */
  cursor: pointer;       /* Changes cursor to pointer */
}
.single-pro-details h4 a:hover {
  color: grey;           /* Changes color on hover */
  cursor: pointer;       /* Changes cursor to pointer */
}
.single-pro-details h4 a {
  text-decoration: none; /* Removes underline */
  color: black;          /* Sets default text color */
  cursor: default;       /* Default cursor */
}
.single-pro-details h2 a:hover {
  color: grey;           /* Changes color on hover */
  cursor: pointer;       /* Changes cursor to pointer */
}
.single-pro-details h2 a {
  text-decoration: none; /* Removes underline */
  color: black;          /* Sets default text color */
  cursor: default;       /* Default cursor */
}
#buynow{
  text-align: center;
}
#buynow .buy-container{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 20px;
}
#buynow .buy {
  display: flex; /* Align content horizontally */
  flex-direction: row; /* Image and text side-by-side */
  width: 49.5%; /* Adjust width as needed */
  min-width: 300px;
  padding: 20px 20px;
  border: 1px solid #cce7d0;
  border-radius: 25px;
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
  margin: 15px 0;
  transition: 0.2s ease;
}

#buynow .buy:hover {
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.06);
}
#buynow .buy img {
  width: 60%; /* Adjust size of the image */
  height: auto;
  border-radius: 20px;
}

#buynow .buy-content {
  display: flex;
  flex-direction: row; /* Align items horizontally */
  
  align-items: center;
  gap: 30px; /* Add space between image and text */
}

#buynow .buy .des {
  flex: 1; /* Ensures the text takes up remaining space */
  text-align: left;
}

#buynow .buy .des span {
  color: #606063;
  font-size: 12px;
}

#buynow .buy .des h4 {
  font-size: 15px;
  font-weight: 700;
  color: #4b4b4c;
}

#buynow .buy .des {
  text-align: start;
  padding: 10px 0;
  padding-bottom: 50px; /* Extra padding to prevent overlap with .cart */
}
#buynow .buy .discontinued-tag {
  display: inline-block;
  margin-top: 10px; /* Space from the text above */
  padding: 10px 10px;
  font-size: 15px;
  color: white !important;
  background-color: rgb(250, 53, 53);
  border-radius: 15px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.5px;
}

#buynow .buy .bestseller {
  display: inline-block;
  margin-top: 10px; /* Space from the text above */
  padding: 10px 10px;
  font-size: 12px;
  cursor: pointer;
  border: none;
  color: white !important;
  background-color: rgb(32, 173, 13);
  border-radius: 15px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.5px;
}
#buynow .buy .bestseller:hover{
  background-color: rgb(128, 128, 128);
}
.buy-container a {
  color: grey; /* Set the default link color to grey */
  text-decoration: none; /* Remove underline */
  transition: all 0.3s ease; /* Smooth transition effect for hover */
}

.buy-container a:hover {
  font-size: 1.1em; /* Slightly enlarge the font on hover */
  font-weight: bold; /* Make the text bold on hover */
  color: grey; /* Ensure the color remains grey on hover */
}
#content2 .tech-info p{
  line-height: 1.5;
}

/*About us*/
#about-head h2{
text-align: center;
}
#content1 h3{
  color: #464646;
}

/*Contact us*/
#contact-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#contact-details .details{
  width: 40%;
}

#contact-details .details span{
  font-size: 12px;
}

#contact-details .details h2{
  font-size: 26px;
  line-height: 35px;
  padding: 20px 0;
}

#contact-details .details h3{
  font-size: 16px;
  padding: 15px;
}

#contact-details .details li{
  list-style: none;
  display: flex;
  padding: 10px 0;
}

#contact-details .details li i{
  font-size: 14px;
  padding-right: 22px;
}

#contact-details .details li p{
  font-size: 14px;
  margin: 0;
}
#contact-details .details li img.icon {
  width: 1.2em; /* Match the icon size with the text */
  height: 1.2em; /* Maintain the aspect ratio */
  margin-right: 10px; /* Add spacing between the icon and text */
  vertical-align: middle; /* Align with text baseline */
}
#contact-details .map{
  width: 55%;
  height: 400px;
}

#contact-details .map iframe{
  width: 100%;
  height: 100%;
}



/* Media Query */
@media (max-width:799px){
  .section-p1{
    padding: 40px 40px;
  }
  #navbar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    right: -300px;
    height: 100vh;
    width: 300px;
    background-color: #e3e6f3;
    box-shadow: 0 40px 60px rgba(0,0,0,0.1);
    padding: 80px 0 0 10px;
    transition: 0.3s;
  }

  #navbar.active {
    right: 0px;
  }

  #navbar li {
    margin-top: 0px;
    margin-bottom: 25px;
  }

  #mobile {
    display: flex;
    align-items: center;
  }

  #mobile i {
    color: #1a1a1a;
    font-size: 24px;
  }

  #close {
    display: initial;
    position: absolute;
    top: 30px;
    left: 30px;
    color: #222;
    font-size: 18px;
  }

  #lg-bag {
    display: none;
  }

  #page-header {
    
    width: 100%;
    height: 40vh;
    
}

  #hero {
    height: 70vh;
    padding: 0 80px;
    background-position: top 30% right 30%;
  }
  #hero h4 {
    font-size: 18px;
    padding-bottom: 15px; 
  }
  #hero h2 {
    font-size: 33px;
    line-height: 1;
    color: #465b52;
  }

  #content1 {
    padding: 20px 50px;
}

#content2 {
  max-width: 600px;
}

  #feature {
    justify-content: center; 
  }

  #feature .fe-box{
    margin: 15px 15px;
  }

  #product1 .pro-container {
    justify-content: center;
  }

  #product1 .pro{
    margin: 15px;
  }

  #banner {
    height: 20vh;
  }

  #banner h4{
    font-size: 15px;
  }

  #banner h2{
    font-size: 25px;
  }

  button.normal {
    font-size: 12px;
    font-weight: 600;
    padding: 10px 20px;
    
}

  #sm-banner .banner-box{
    min-width: 100%;
    height: 35vh;
  }

  #banner3 {
    padding: 0 40px;
  }

  #banner3 .banner-box{
    width: 28%;
  }

  #newsletter .form {
    width: 70%;
  }
  #prodetails{
    display: flex;
    flex-direction: column;
  }
  #prodetails .single-pro-image{
    width: 100%;
    margin-right: 50px;
  }
  #prodetails .single-pro-details{
    width: 100%;
  }

  #buynow {
    text-align: center;
}
#buynow .buy-container {
  display: flex;
  justify-content: center;
  padding-top: 20px;
  flex-wrap: wrap;
}
#buynow .buy {
  width: 45%;
  min-width: 250px;
  padding: 10px 12px;
  border: 1px solid #cce7d0;
  border-radius: 25px;
  
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
  margin: 15px;
  transition: 0.2s ease;
  position: relative;
}

#buynow .buy-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px;
    gap: 30px;
}
#buynow .buy img {
  width: 100%;
}
#buynow .buy .des {
  text-align: start;
  padding: 10px 0;
  padding-bottom: 30px;
}
#buynow .buy .des h4 {
  padding: 10px 0px;
}

}

@media (max-width:477px){
  .section-p1{
    padding: 20px;
  }
#header{
  padding: 15px 30px;
}
#header .logo {
  width: 150px;
  height: auto; /* Maintains the aspect ratio */
}
h1 {
  font-size: 38px;
}
h2 {
  font-size: 32px;
}
#page-header p{
  color: #fff;
}
#page-header {
    
    width: 100%;
    height: auto;
    
}
#hero{
padding: 0 20px;
background-position: 75%;
}

#hero h4 {
  font-size: 15px;
  padding-bottom: 10px;
}
#hero h2 {
  font-size: 20px;
  color: #464646;
}
#hero h3 {
  font-size: 11px;
}
#hero p {
  font-size: 10px;
}
#hero button {
  font-size: 10px;
}
#feature{
justify-content: space-between;
}
#feature .fe-box {
  width: 155px;
  margin: 0 0 15px 0;
}
#feature .fe-box h6 {
  font-size: 10px;
  line-height: 1.2;
}
#product .pro{
  width: 100%;
}
#banner {
  height: 16vh;
}
#banner h4{
 
  font-size: 9px;
  
}
#banner h2{
  font-size: 15px;
  line-height: 1;
}

#banner button.normal {
  font-size: 8px;
  font-weight: 600;
  padding: 5px 10px;
}

#content1 {
  padding: 20px 30px;
}
p{
  font-size: 12px;
  line-height: 1.2;
}
#content2 {
  max-width: 300px;
}
#content2 p{
  font-size: 13px;
}
#sm-banner .banner-box{
  height: 40vh;
}
#sm-banner .banner-box2{
  margin-top: 20px;
}
#banner3{
  padding: 0 20px;
}
#banner3 .banner-box {
  width: 100%;
}
#newsletter{
  padding: 40px 20px;
}
#newsletter .form{
  width: 100%;
}
footer .copyright {
  text-align: start;
}
#prodetails{
  display: flex;
  flex-direction: column;
}
#prodetails .single-pro-image{
  width: 100%;
  margin-right: 50px;
}
#prodetails .single-pro-details{
  width: 100%;
}
#buynow .buy-container{
  
  justify-content: center;
  
}
#contact-details{
  flex-direction: column;
}
#contact-details .details {
  width: 100%;
  margin-bottom: 30px;
}
#contact-details .map {
  width: 100%;
}
/* Whatsapp */
.whatsapp-button {
  
  background-color: #25D366 !important;
  
  padding: 10px 15px; /* Balanced padding for a clean look */
  border-radius: 60px; /* Fully rounded rectangle */
  font-size: 18px;
  align-items: center;
  justify-content: center;
  
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s, transform 0.2s;
  z-index: 1000;
}

.whatsapp-button span {
  display: none; /* Hide the text (Message us) on mobile */
}
.whatsapp-button i {
  font-size: 25px; /* Icon size */
  color: white
}
.whatsapp-button .large-icon {
  display: none; /* Hide the large icon */
}

.whatsapp-button .small-icon {
  display: block; /* Show the small icon */
}
}

