header{
    padding: 6px 0;
    .logo{
        width: 350px;
        img{
            width: 100%;
        }
    }
    nav{
        ul{
            display: flex;
            li{
                a{
                    display: inline-block;
                    padding: 10px;
                    color: var(--theme-color3);
                    font-weight: 600;
                    font-size:18px;
                }
            }
        }
    }
     .toggle {
        display: none;

        i {
          font-size: 24px;
          border: 2px solid var(--theme-color1);
          padding: 5px 10px;
          color: var(--theme-color3);
        }
      }
}
.mobile-nav {
      position: fixed;
      overflow: scroll;
      top: 0;
      right: -100%;
      width: 270px;
      height: 100%;
      background: linear-gradient(135deg, #fdfbfb, #ebedee);
      border-left: 5px solid #04744e;
      box-shadow: -5px 0 15px rgba(0, 0, 0, 0.15);
      display: flex;
      flex-direction: column;
      padding: 60px 20px;
      transition: right 0.3s ease;
      z-index: 999;
    }

    .mobile-nav.active {
      right: 0;
    }

    .mobile-nav ul {
      flex-direction: column;
      gap: 15px;
    }

    .mobile-nav ul li {
      border-bottom: 1px solid #e0e0e0;
      padding-bottom: 10px;
      margin-bottom: 10px;
      position: relative;
    }

    .mobile-nav a {
      font-size: 16px;
      color: #333;
      font-weight: 500;
      padding: 8px 0;
      display: inline-block;
    }

    .dropdown-toggle {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
    }

    .submenu {
      max-height: 0;
      overflow: hidden;
      flex-direction: column;
      gap: 10px;
      padding-left: 15px;
      transition: max-height 0.3s ease;
    }

    .mobile-nav li.open>.submenu {
      max-height: 500px;
    }

    .dropdown-icon {
      font-size: 14px;
      color: #04744e;
      margin-left: 10px;
      cursor: pointer;
      transition: transform 0.3s ease;
      transform: rotate(0deg);
    }

    .mobile-nav li.open>.dropdown-toggle>.dropdown-icon {
      transform: rotate(180deg);
    }

    .submenu a:hover {
      background-color: #f0f9f6;
      border-radius: 4px;
      padding-left: 5px;
    }

    .close-btn {
      position: absolute;
      top: 20px;
      right: 20px;
      font-size: 24px;
      cursor: pointer;
      color: #04744e;
    }

    @media(max-width:576px){
        header{
            .logo{
                width: 250px;
            }
        }
    }
/*---------------------------banner section ---------------------------------*/
.banner{
    background-image: url(../images/banner-home.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 100px 20px;
     &::after {
          position: absolute;
          content: "";
          top: 0;
          left: 0;
          bottom: 0;
          right: 0;
          background-color:var(--theme-color3);
          opacity: 0.8;
          z-index: 1;
        }
    .img-content{
            position: relative;
            z-index: 2;
            h1{
                color: #fff;
                font-weight: 900;
                margin-bottom: 20px;
                line-height: 1.2;
                width: 50%;
            }
            p{
                color: #fff;
                margin-bottom: 40px;
                width: 60%;
                line-height: 1.5;
            }
            .buttons{
                a{
                    svg{
                        width: 30px;
                        height: 20px;
                        padding-top: 5px;
                    }
                }
            }
        }
}
/*--------------------------about-section-------------------------------------*/
.about{
    .col-left{
          position: relative;
          img{
            display: block;
            height: 600px;
            object-fit: cover;
          }
        .card{
            width: 250px;
            padding: 50px 30px;
            clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 99%, 0 26%);
            background-color: var(--theme-color1);
            position: absolute;
            right: -1px;
            bottom: -2px;
            border-radius: 0;
            &:hover{
              transform: translateY(0px);
            }
            h3{
                text-align: center;
                color: #fff;
            }
        }
    }
    .col-right{
        h4{
            margin-bottom: 20px;
            color: var(--theme-color1);
            
        }
        h2{
            color: var(--theme-color3);
            margin-bottom: 20px;
        }
        p{
            color: #616161;
            margin-bottom: 20px;
        }
    }
    .col-right-cont{
      i{
        font-size: 50px;
        color: var(--theme-color3);
      }
        h3{
            color: var(--theme-color3);
            margin-bottom: 10px;
        }
    }
}
/*-------------------------service section -----------------------------------*/
.services-section {
    background: url('../images/image1.jpg') no-repeat center center/cover;
    padding: 80px 20px;
    color: white;
    text-align: center;
    position: relative;
  }

  .services-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--theme-color3);
    opacity: 0.9;
    z-index: 0;
  }

  .services-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
  }

  .services-title {
    margin-bottom: 40px;
  }

  .services-title h2 {
    color: #fff;
    font-weight: bold;
  }

  .services-title p {
    max-width: 600px;
    margin: 10px auto 0;
    color: rgba(255, 255, 255, .8);
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 1px;
  }

  .service-box {
    background: transparent;
    border-right: none;
    padding: 30px 20px;
  }

  .service-box:last-child {
    border-right: none;
  }

  .service-icon {
    font-size: 36px;
    color: var(--theme-color1);
    margin-bottom: 15px;
  }

  .service-title {
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
  }

  .service-description {
    color: rgba(255, 255, 255, .8);
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }

  .view-more-btn {
    border: 1px solid #fff;
    padding: 8px 16px;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
  }

  .view-more-btn:hover {
    background: #fff;
    color: #000;
  }

/*------------------------why choose us ------------------------------*/

 .why-choose-us .left {
  flex: 1 1 50%;
  padding: 20px;
}

 .why-choose-us .right {
  flex: 1 1 45%;
  padding: 20px;
}

 .why-choose-us .right img {
  width: 100%;
  border-radius: 8px;
  height: 600px;
  object-fit: cover;
}

 .why-choose-us .section-title .icon-title h4 i{
    color: var(--theme-color1);
 }

 .why-choose-us .section-title .icon {
  width: 30px;
  height: 30px;
}

 .why-choose-us .section-title h5 {
  color: var(--theme-color1);
  font-weight: 600;
}

 .why-choose-us .section-title h2 {
  
  margin: 10px 0;
  color: #173f35;
  line-height: 1.3;
}

 .why-choose-us .section-title p {
  color: #616161;
  font-size: 18px;
  margin-bottom: 20px;
}

 .why-choose-us .bar-box {
  margin-top: 30px;
}

 .why-choose-us .bar-item {
  margin-bottom: 25px;
}

 .why-choose-us .bar-title {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  color: #173f35;
  margin-bottom: 6px;
}

 .why-choose-us .bar {
  height: 6px;
  background-color: #dcdcdc;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

 .why-choose-us .bar .fill {
  height: 100%;
  background-color: #1e392a;
  width: 0%;
  transition: width 2s ease-in-out;
  border-radius: 10px;
}

/*--------------------------testimonials ------------------------------*/
.testimonials{
  background-color: var(--theme-color3);
  padding: 60px 0px;
  .slider-2{
    .slide{
      padding: 10px;
      .box{
          clip-path: polygon(6% 0, 100% 0, 100% 100%, 0 100%, 0 15%);
          display: flex;
          flex-wrap: wrap;
          align-items: center;
          background-color: #f7f4f4;
          padding: 30px;
          p{
            color: #616161;
          }
      }
    }
  }
}

/*-----------------------team section -----------------------------*/
.team-card {
  position: relative;
  overflow: hidden;
  font-family: 'Arial', sans-serif;
}

.team-img-wrapper {
  position: relative;
  right: -20px;
  bottom: -80px;
  z-index: 2;
  text-align: center;
}

.team-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 3;
}

.team-info {
  position: relative;
  background-color: #023d2d;
  color: white;
  text-align: left;
  padding: 60px 20px 20px;
  margin-top: -80px;
  clip-path: polygon(0 0, 100% 60%, 100% 100%, 0 100%);
  z-index: 1;
  min-height: 160px;
}
.team-info h4 {
  margin: 0 0 5px;
  color: #fff;
  font-weight: bold;
}

.team-info p {
  margin: 0 0 10px;
}
.col-team-content{
    p{
        color: #616161;
    }
}
/*-----------------------blogs --------------------------*/
.blog{
  background-color: var(--theme-color3);
  padding: 60px 0px;
  .col-content{
    margin-bottom: 20px;
    h4{
      color: #fff;
      font-size: 28px;
      font-weight: bold;
    }
    a{
      color: yellow;
    }
    p{
      color:#d4d8d1;
    }
    &:hover{
        h4{
            color: var(--theme-color1);
        }
    }
  }
}
.blog-icon{
  color: #d4d8d1;
  i{
    color: #d4d8d1;
  }
}
/*--------------------faq---------------------------*/
 .faq{
      padding: 60px 0px;
      .box{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        color: #fff;
       
      }
     }
     .box-open{ display: none;}
     .box-active-color + .box-open{ display: block;}
     .box-inactive-color{
      background-color: var(--theme-color3);
     }
     .box-active-color{
      background-color: var(--theme-color1);
      border-radius: 0 0 20px 0;
     }
      .box-active-color > i{transform: rotate(45deg);
      transition: 0.8s;}
     .hide{
      display: none;
     }
/*-----------------------------footer-------------------------*/
.footer{
      background-color: var(--theme-color3);
      padding: 60px 0;
      .logo{
        width: 250px;
        background-color: #fff;
        padding: 5px 5px 0px;
      }
      .footer-content{
        color: #fff;
        margin-top: 20px;
        ul{
          li{
            a{
              color: #fff;
              i{
                color: var(--theme-color1);
                margin-right: 6px;
              }
            }
          }
        }
      }
      .text-center{
        h5{
          color: #fff;
          font-family: sans-serif;
          font-size: 28px;
          margin: 0 0 20px 0;
          font-weight: bold;
        }
        ul{
          li{
            a{
              font-size: 1rem;
              margin-bottom: 10px;
              color: #fff;
              i{
                color: var(--theme-color1);
              }
            }
          }
        }
      }
    }
/*----------------------------about-us----------------------*/
    .about-us{
    background-image: url(../images/about-banner.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 80vh;
    position: relative;
    .about-title{
      display: inline-block;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%,-50%);
      width: 65%;
      h1{
        color: #fff;
      }
    }
  }
/*--------------------------counter ---------------------------*/
.counter-section {
  background-color: var(--theme-color3);
  padding: 120px 20px;
  width: 100%;
}

.counter-box {
  text-align: center;
  padding: 20px;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  margin-bottom: 20px;
}

.counter-box:hover {
  transform: translateY(-5px);
}

.counter {
  font-size: 48px;
  color:var(--theme-color1);
  font-weight: bold;
  margin-bottom: 10px;
}

.counter-box p {
  font-size: 18px;
  color: #555;
  margin: 0;
}
/*-------------------------------- gallery ------------------------*/
.gallery{
  margin: 30px 0px;
}
/*-----------------------services section---------------------------*/
.sub-heading{
  h2{
    color: red !important;
  }
}
.services{
  padding: 60px 0px 20px;
  text-align: center;
  .title2{
    h2{
      color: #444444;
    }
  }
}
/*---------------------tabs------------------------*/
.tab-container {
  display: flex;
  justify-content: center;   /* centers the tabs horizontally */
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px auto;
}

.tab-button {
  padding: 10px 20px;
  background-color: #eee;
  border: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
}

.tab-button:hover {
  background-color: #ccc;
}

.tab-button.active {
  background-color: var(--theme-color1);
  color: white;
}

.tab-content {
  padding: 20px;
  display: none;
}
.tabs{
  .Singaporr{
    p{
      color: #616161;
    }
  }
}
/*----------------advertisment section ---------------------------*/
.advertisment{
  background-image: url(../images/advertisment.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  height: 80vh;
  .ad-content{
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    h2{
      color: #fff;
      text-align: center;
      margin-bottom: 20px;
    }
    .button{
      display: flex;
      justify-content: center;
    }
  }

}
/*---------------------treatment-----------------------*/
.treatment{
  background-image: url(../images/background-treatment.webp);
  padding: 60px 0px;
  .treatment-box{
    text-align: center;
    .icon{
      display: flex;
      justify-content: center;
      img{
        width: 80px;
      }
    }
    .icon-content{
      margin-bottom: 30px;
      h3{
        color: #fff;
        margin-bottom: 20px;
      }
      p{
        color: #fff;
      }
    }
  }
}
/*-------------------blogs----------------------------*/
.blog-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  font-family: 'Segoe UI', sans-serif;
}


.blog-section .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.blog-section .section-title h2 {
  color:var(--theme-color3);
}

.blog-section .section-title p {
  color: #616161;
}


@media screen and (max-width: 991px) {
  .col-lg-4 {
    flex: 0 0 48%;
  }
}

@media screen and (max-width: 768px) {
  .col-lg-4, .col-md-6 {
    flex: 0 0 100%;
  }
}

.card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

.card-content h3 {
  margin-bottom: 10px;
}

.card-content p {
  font-size: 14px;
  color: #555;
}

.card-content a {
  color: #27ae60;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  transition: 0.3s;
}

.card-content a:hover {
  text-decoration: underline;
}
/*--------------------contact --------------------------*/
.sample {
    padding: 60px 0;
    .box {
        background-color: white;
        .card {
            padding: 25px 35px;
            height: 400px;
            i {
                color: #ffa500;
                font-size: 40px;
                padding-bottom: 10px;
            }

            h5 {
                color: #ffa500;
                font-size: 40px;
                padding-bottom: 10px;
            }

            h3 {
                font-size: 25px;
                padding: 15px 0;
            }

            p {
                color: gray;
                line-height: 30px;
                font-size: 17px;
                padding-bottom: 5px;
            }
        }
    }
}
.contact {
    /* background-color: #E8E842; */
    padding: 50px 0;

    .contact-container {

        .contact-info h2 {
            font-size: 28px;
            margin-bottom: 20px;
            /* color: #ff5d00; */
        }

        h3 {
            font-size: 25px;
            margin: 10px 0;
            color: var(--theme-color1);
        }

        .contact-form {
            background-color: #fff;
            border-radius: 6px;
            padding: 0px 20px;
        }

        .contact-form h2 {
            margin-bottom: 20px;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 15px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }

        .contact-form button {
            font-weight: bold;
            cursor: pointer;
        }

        img {
            border-radius: 10px;
            height: 450px;
            object-fit: cover;
        }
    }
}


/*------------------------*/
  @media (min-width: 992px) {
.col-lg-4:not(:last-child) .service-box {
  border-right: 1px solid #fff;
}
}
@media(max-width:1024px){
  header nav {
        display: none;
      }

      header .toggle {
        display: block;
      }

      header .button {
        display: none;
      }
      .banner{
        padding: 80px 15px;
        .img-content{
            h1{
                width: 80%;
            }
         p{
            width: 80%;
            font-size: 16px;
         }   
        }
      }
    .why-choose-us .right img {
    height: auto;
    }
    .why-choose-us .left {
        padding: 0px;
    }
    .why-choose-us .right {
    padding: 0px;
}
}
@media(max-width:768px){
    .banner{
        padding: 40px 0px;
        .img-content{
            h1{
                width: 80%;
            }
         p{
            width: 80%;
            font-size: 14px;
            margin-bottom: 15px;
         }   
        }
      }
      .service-box {
    padding: 10px 0px;
        }
        .about {
    & .col-left {
        .card{
            padding: 30px 20px;
            width: 200px;
        }
        img {
            display: block;
            height: 500px;
            object-fit: cover;
        }
    }
}
.footer{
  padding: 30px 0;
}
.services{
  padding: 20px 0 20px;
}
}
@media(max-width:576px){
    .testimonials{
  background-color: var(--theme-color3);
  padding: 60px 0px;
  .slider-2{
    .slide{
      padding: 10px;
      .box{
          clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%, 0 15%);
          padding: 50px;
          .col-left{
            margin-bottom: 10px;
          }
          p{
            color: #616161;
            margin-bottom: 10px;
          }
          h4{
            margin: 0;
          }
      }
    }
  }
    }
    .blog{
    padding: 30px 0;
    .col-content{
        a{
            border-bottom: 1px dotted #fff;
        }
    }
    }
    .about {
    & .col-left {
        .card{
            padding: 30px 20px;
            width: 200px;
        }
        img {
            display: block;
            height: 300px;
            object-fit: cover;
        }
    }
    }
  .about-us {
    height: 50vh;
      .about-title {
          display: inline-block;
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          width: 85%;
      }
  }
}
.footer-bottom {
  background-color: #112724;  /* Dark blue or choose your own */
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
}
.dr{
  .image{
    position: relative;
    .img-content{
      padding: 20px;
      margin-top: -10px;
      background-color: var(--theme-color1);
      p{
        color: #fff;
      }
    }
  }
}
.sticky{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  background-color: #fff;
}

/*-----------------------floating menus---------------------------*/
.fixed-contact-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.contact-btn {
  background-color: #25D366; /* WhatsApp Green */
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.contact-btn.call {
  background-color: #0a66c2; /* Call Blue */
}

.contact-btn img {
  width: 28px;
  height: 28px;

}

.contact-btn:hover {
  transform: scale(1.1);
}

  select{
        width: 100%;
    padding: 15px;
    color: #7a7a7e;
    border-radius: 4px;
    height: 47px;
    border: 1px solid #ccc;
  }