*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.container{
    width: 100%;
    max-width: 1290px;
    margin: 0 auto;
}

html{
    scroll-behavior: smooth;
}

a{
    text-decoration: none;
}

a.primary-btn > button {
    width: auto;
    background-color: #138d42;
    padding: 12px 10px 12px 28px;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    color: #ffffff;
    text-align: center;
    font-family: "Rubik", sans-serif;
    border: 0px;
    outline: 0px;
    border-radius: 100px;
    margin-top: 20px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
}

a.primary-btn > button > img{
    width: 36px;
    height: 36px;
}


span.title-span {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: "Rubik", sans-serif;
    color: #727089;
    display: flex;
    align-items: center;
    gap: 6px;
    padding-bottom: 10px;
}

span.title-span > img{
    width: 34px;
    height: 34px;
    display: block;
}

h2.title-heading{
    font-family: "Boldonse", system-ui;   
    font-size: 44px;
    font-style: normal;
    font-weight: 400;
    line-height: 80px;
    color: #29235c;
    text-align: left;
    text-transform: capitalize;
}

h2.title-heading > span{
    color: #138d42;
}
/* ------------------------
        Header Start
    --------------------------- */
    .header-section {
      background-color: #ffffff;
      padding: 12px 0px;
      position: relative;
      z-index: 1000;
    }

    .header-flex {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .header-logo > img {
      width: 100%;
      height: auto;
      display: block;
      max-width: 170px;
    }

    nav > ul {
      display: flex;
      align-items: center;
      gap: 24px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    nav > ul > li > a {
      color: #4D4D4D;
      font-family: "Rubik", sans-serif;
      font-size: 16px;
      font-weight: 500;
      text-decoration: none;
      text-transform: uppercase;
    }

    a.active {
      color: #138d42;
    }

    .header-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 60px;
    }

    .helpline {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      background: #138d42;
      padding: 8px 28px 8px 12px;
      border-radius: 100px;
    }

    .helpline-text {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .helpline-img > img {
      width: 48px;
      height: 48px;
      display: block;
    }

    .helpline-text > span {
      font-size: 13px;
      font-weight: 500;
      font-family: "Rubik", sans-serif;
      color: #ffffff;
      text-align: left;
    }

    .helpline-text > a {
      font-size: 20px;
      font-weight: 600;
      font-family: "Rubik", sans-serif;
      color: #ffffff;
      text-align: left;
      text-decoration: none;
    }

    .menu-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      z-index: 1001;
    }

    .menu-toggle span {
      width: 25px;
      height: 3px;
      background: #333;
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    .menu-toggle.open span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.open span:nth-child(2) {
      opacity: 0;
    }

    .menu-toggle.open span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }

@media (max-width: 991px) {
    .header-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;  
    width: 250px;
    height: 100vh;
    background: #ffffff;
    padding: 40px 20px;
    z-index: 999;
    transition: right 0.3s ease;
    }

    .header-nav.active {
    right: 0; 
    }

    .menu-toggle {
    display: flex;
    }

    nav > ul {
    flex-direction: column;
    gap: 16px;
    }

    .helpline {
    margin-top: 20px;
    align-self: flex-start;
    }
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: none;
    z-index: 998;
}

.overlay.active {
    display: block;
}


/* ------------------------
    Hero Start
--------------------------- */
.hero-section{
    background-image: url('../images/hero-image.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 680px;
    margin-bottom: 60px;
}

.hero-context{
    padding: 150px 0px;
}

.hero-context > h1{
    font-family: "Boldonse", system-ui;
    font-size: 54px;
    font-style: normal;
    font-weight: 400;
    line-height: 110px;
    color: #ffffff;
    text-align: left;
    width: 950px;
    text-transform: capitalize;
}

.hero-context > h1 > span{
    color: #19b154;
}

.hero-context > p{
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    color: #ececec;
    text-align: left;
    font-family: "Poppins", sans-serif;
    width: 600px;
    padding: 15px 0px 15px 0px;
}

.hero-context > a{
    text-decoration: none;
}

.hero-context > a > button {
    width: 218px;
    background-color: #138d42;
    padding: 12px 8px 12px 28px;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    color: #ffffff;
    text-align: center;
    font-family: "Rubik", sans-serif;
    border: 0px;
    outline: 0px;
    border-radius: 100px;
    margin-top: 20px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
}

.hero-context > a > button > img{
    width: 36px;
    height: 36px;
}


/* ------------------------
    About Start
--------------------------- */
.about-section{
    padding: 60px 0px;
}

.about-flex{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-img > img {
    width: 100%;
    height: auto;
    display: block;
}

.about-context{
    padding-top: 15px;
}

.about-context > p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    color: #727089;
    text-align: left;
    font-family: "Poppins", sans-serif;
    padding: 25px 0px;
}

.choose-us{
    padding: 15px 0px 20px 0px;
}

.choose-us > h3{
    font-size: 19px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: "Rubik", sans-serif;
    color: #29235c;
    display: flex;
    align-items: center;
    gap: 6px;
}

.choose-us > ul {
    list-style: none;
    padding-top: 15px;
}

.choose-us > ul > li{
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    color: #727089;
    text-align: left;
    font-family: "Poppins", sans-serif;
    display: flex;
    align-items: center;
    gap: 6px;
}

.choose-us > ul > li > img{
    width: 20px;
    height: 20px;
    display: block;
}


/* ------------------------
    Service Start
--------------------------- */
.service-section{
    padding: 60px 0px;
}

.service-title span {
    text-align: center;
    justify-content: center;
}

.service-title > h2 {
    text-align: center;
}

.service-title {
    text-align: center;
    width: 850px;
    margin: 0 auto;
}

.service-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-top: 60px;
    gap: 20px;
}

.service-card{
    width: 100%;
    background:#fff;
    border-radius:20px;
    box-shadow:0 12px 28px rgba(16,24,40,.08);
    overflow:hidden;
    border-bottom: 4px solid transparent;
    transition: border-color 0.3s ease;
    cursor: pointer;
}

.service-card__media{
    display:block;
    width:100%;
    height:auto;
    aspect-ratio: 16/11;
    object-fit: cover;
    border-radius:20px 20px 0 0;
    transform: scale(1);
    transition: transform 0.4s ease; 
}

.service-card__body{
    padding:22px 26px 26px;
}

.eyebrow{
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: Rubik, sans-serif;
    color: #138d42;
    padding-bottom: 12px;
}

.service-clean-flex{
    margin-top:8px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
}

.title{
    font-size: 19px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: "Rubik", sans-serif;
    color: #29235c;
}

.icon{
    width:40px;
    height:40px;
    flex:0 0 auto;
    color:#9aa7b5;
}

.rule{
    position:relative;
    margin: 20px 0 14px;
    height:12px;
}

.rule::before{
    content:"";
    position:absolute;
    left:0; right:0;
    top:50%;
    transform:translateY(-50%);
    border-top:2px dashed #d2d9e1;
    transition: border-color 0.3s ease;
}

.rule::after{
    content:"";
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%) skewX(-20deg);
    width: 78px;
    height: 11px;
    background:#dcdfe8;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.service-card-text{
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    color: #727089;
    text-align: left;
    font-family: "Poppins", sans-serif;
}

.service-card:hover{
    border-color: #138d42; 
}

.service-card:hover .service-card__media{
    transform: scale(1.05); 
}

.service-card:hover .rule::before{
    border-color: #138d42;
}

.service-card:hover .rule::after{
    background-color: #138d42; 
    border-color: #138d42;
}


/* ------------------------
    Solution Start
--------------------------- */
.solution-section{
    padding: 60px 0px;
}

.solution-bg{
    background-image: url('../images/solution-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    padding: 120px 0px 100px 0px;
}

.solution-title{
    width: 900px;
    padding-bottom: 60px;
}

.solution-title > span{
    color: #ffffff;
}

.solution-title > h2{
    color: #ffffff;
    padding: 10px 0px;
}

.solution-title > h2 > span{
    color: #19b154;
}

.solution-title > p{
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    color: rgb(236, 236, 236);
    text-align: left;
    font-family: "Poppins", sans-serif;
}

.solution-part-one{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-between;
    gap: 30px;
    align-items: center;
}

.solution-img > img {
    width: 580px;
    height: 780px;
    display: block;
}

.solution-details > h3 {
    font-size: 32px;
    font-weight: 400;
    font-family: "Boldonse", system-ui;
    color: #19b154;
}

.solution-details > p{
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    color: rgb(236, 236, 236);
    text-align: left;
    font-family: "Poppins", sans-serif;
}

.solution-points{
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 50px;
}

.solution-icon-img > img{
    width: 100px;
    height: 100px;
    display: block;
}

.solution-icon-tips > h4 {
    font-size: 24px;
    font-weight: 600;
    font-family: "Rubik", sans-serif;
    color: #ffffff;
    padding-bottom: 10px;
}

.solution-icon-tips > p{
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    color: rgb(236, 236, 236);
    text-align: left;
    font-family: "Poppins", sans-serif;
    padding-right: 15px;
}



/* ------------------------
    Product Start
--------------------------- */
.product-section{
    padding: 60px 0px;
}

.product-title span {
    text-align: center;
    justify-content: center;
}

.product-title > h2 {
    text-align: center;
}

.product-title {
    text-align: center;
    width: 850px;
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
}

.product-card{           
  background: #f3f3f3;
  border-radius: 16px;
  padding: 0px 15px 25px 15px;
}

.thumb{
  position:relative;
  border-radius:20px;
  overflow:hidden;
}

.thumb img{
  display:block;
  width:100%;
  height:auto;
  object-fit:contain;
  transform:scale(1);
  transition:transform .35s ease;
  max-width: 294px;
  margin: 0 auto;
}

.actions{
  position:absolute;
  right: 0px;
  top:14px;
  display:flex;
  flex-direction:column;
  gap:10px;
  list-style:none;
  margin:0;
  padding:0;
}

.icon-btn{
  width:30px;
  height:30px;
  border:none;
  outline:0;
  border-radius:50%;
  background:#fff;
  display:grid;
  place-items:center;
  box-shadow:0 2px 6px rgba(0,0,0,.08);
  cursor:pointer;
  transition:transform .15s ease;
}

.icon-btn:hover{ 
    transform:translateY(-2px); 
    background: #138d42;
}

.icon-btn:hover img{
  filter: brightness(0) invert(1);
}
.icon-btn > img{
    width: 16px;
    height: 16px;
}

.product-details-title{
    font-size: 19px;
    font-weight: 600;
    font-family: "Rubik", sans-serif;
    color: #29235c;
    padding: 20px 0px 5px 0px;
    line-height: 30px;
    text-align: center;
}

.product-rating > ul{
  display:flex;
  align-items:center;
  gap: 1px;
  margin-bottom:12px;
  list-style: none;
  justify-content: center;
}

.product-rating > ul > li > img {
    width: 20px;
}

.product-price{
  margin-top:2px;
  display:flex;
  gap:10px;
  align-items:baseline;
  justify-content: center;
}

.product-price .current{
  font-weight:600;
  color:#000000;
  font-size:22px;
    font-family: "Rubik", sans-serif;
}

.product-price .old{
  color:#9aa0a6;
  text-decoration:line-through;
  font-size:14px;
    font-family: "Rubik", sans-serif;
}

.thumb:hover img{ transform:scale(1.05); }

.product-details-title {
    height: 70px;
}



/* ------------------------
    Footer Start
--------------------------- */
.footer-bg {
    background-image: url('../images/footer-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    padding: 100px 0px 50px 0px;
    margin-top: 60px;
    position: relative;
    top: 1px;
    height: 100%;
    bottom: 0;
}

.footer-subscribe-part{
    border-bottom: 1px solid rgba(128, 128, 128, 0.384);
}

.footer-title > h2{
    color: #ffffff;
    width: 850px;
    text-align: center;
    margin: 0 auto;
}

.form-flex{
    padding: 60px 0px 80px 0px;
}

.form {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 750px;
    margin: 0 auto;
    gap: 10px;
    border-radius: 100px;
    padding: 10px 12px;
}

.form > input#email {
    width: 450px;
    border: 0px;
    outline: 0px;
    padding: 10px 15px;
    background: transparent;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    color: #727089;
    font-family: "Poppins", sans-serif;
}

.form > button{
    background-color: #138d42;
    padding: 10px 10px 10px 28px;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    color: #ffffff;
    text-align: center;
    font-family: "Rubik", sans-serif;
    border: 0px;
    outline: 0px;
    border-radius: 100px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
}

.form > button > img{
    width: 36px;
    height: 36px;
}

.footer-details-part{
    padding: 80px 0px;
    border-bottom: 1px solid rgba(128, 128, 128, 0.384);
}

.footer-details-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.footer-text > img{
    width: 170px;
}

.footer-text > p{
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    color: rgb(236, 236, 236);
    font-family: "Poppins", sans-serif;
    padding-top: 15px;
}

.footer-link {
    max-width: 250px;
    margin: 0 auto;
}

.footer-link > h3{
    font-size: 24px;
    font-weight: 600;
    font-family: "Rubik", sans-serif;
    color: #ffffff;
    padding-bottom: 15px;
}

.footer-link > ul{
    list-style: none;
}

.footer-link > ul > li > a{
    color: #f3eeee;
    font-family: "Rubik", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
    text-transform: uppercase;
    line-height: 35px;
}

.footer-contact{
    width: 350px;
    max-width: 0 auto;
}

.whatsapp-link > a{
    color: #eefdf4;
    font-family: "Rubik", sans-serif;
    font-size: 24px;
    line-height: normal;
    font-weight: 600;
    display: inline-flex;
    padding-top: 18px;
    gap: 8px;
    align-items: center;
}

.email-address > a{
    color: #ffffff;
    font-family: "Rubik", sans-serif;
    font-size: 19px;
    line-height: 45px;
    display: inline-flex;
    padding-top: 18px;
    gap: 8px;
    align-items: center;
}

.contact-address > p {
    color: #ffffff;
    font-family: "Rubik", sans-serif;
    font-size: 18px;
    line-height: 25px;
    display: inline-flex;
    padding-top: 18px;
    align-items: center;
    gap: 8px;
}

.contact-address > p > img{
    width: 30px;
    height: 30px;
}


.email-address > a > img{
    width: 30px;
    height: 30px;
}

.whatsapp-link > a > img{
    width: 30px;
    height: 30px;
}

.footer-copyright > p{
    color: #ffffff;
    font-family: "Rubik", sans-serif;
    font-size: 16px;
    line-height: normal;
    text-align: center;
    padding-top: 60px;
}

.footer-copyright > p > span{
    color: #19b154;
}