@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    scroll-behavior: smooth;
}
:root{
    --main:rgb(20, 186, 247);
    --back:rgb(3, 79, 212);
    --text:rgb(114, 110, 110);
}
.logo {
    height: fit-content;
}

.logo .logo-image{
    width: 210px;
    max-width: 50%;
    cursor: pointer;
    transition: width 0.3s ease;
}
.header{
    position: fixed;
    top: 0;
    left: 50px;
    width: 90%;
    z-index: 9999;
    background: white;
    margin-top: 0.6rem;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
}

.header nav{
    display:inline-flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    height: 80px;
    flex-wrap: nowrap;
    max-width: 100%;
}
header nav a{
    white-space: nowrap;
}
.header nav i{
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}
.header.scrolled{
    height: 65px;
    margin: 0;
}

.header.scrolled .logo-image{
    width: 150px;
}

header nav a {
    color: var(--text);
    font-size: 1.2rem;
    font-weight: 600;
 position: relative;
}
header nav a:hover {
     color: var(--main);
    }
header nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--main),var(--back));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

 header nav a:hover::before {
    width: 80%;
}
header nav a:active {
    color: var(--back);
}

header nav a:active::before {
    width: 80%;
}

.service {
    position: relative;
    top: 7px;
   padding-bottom: 15px;

}


.dropdown {
    position: absolute;
    top: 40px;
    left: -50px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 0 6px 1px black;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease 0.4s;
    background: white;
 width: 250px;
}

.dropdown li  {
    list-style: none;

}

.dropdown li a:hover {
    color: var(--main);
}
.dropdown li a{
    display: block;
    font-size: 1.2rem;
    margin: 15px;
}

.service:hover .dropdown {
    opacity: 1;
    visibility:visible;
}
/* home section */

.Home{
    height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;
    color: white;
 margin-top: 110px;
 padding-bottom: 80px;
}
.Home .list .item{
    position: absolute;
    inset: 0 0 0 0;
    transition: opacity 0.8s ease;

}
.Home .list .item::before{
    content: "";
    position: absolute;
    inset: 0;
    background :linear-gradient(to right ,var(--back) 30%,transparent 70%);
}
.Home .list .item img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.Home .list .item .content-home{
    position: absolute;
    top: 20%;
    width: 1140px;
    max-width: 80%;
    left: 50%;
    transform: translate(-50%);
    padding-right: 30%;
    box-sizing: 0 0 5px 10px black;
}
.Home .list .item .content-home .author-name{
    font-size: 2.4rem;
    font-weight: bold;
    letter-spacing: 4px;
    color: var(--main);
}
.Home .list .item .content-home .topic{
    font-size: 1.4rem;
    font-weight: 400;
    padding-bottom: 1.5rem;
}
.Home .list .item .content-home .content-text{
    text-align: start;
    font-family:Arial, sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
}
.Home .list .item .content-home button {
    width: 200px;
    margin-top: 1.2rem;
    height: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    background: transparent;
    color: white;
    border: none;
    transition: ease .3s;
    border: 2px solid var(--main);
    border-radius: 50px;
}
.Home .list .item .content-home button a{
  display: block;
  color: white;
  font-size: 1.2rem;
}
.Home .list .item .content-home button:hover{
    transform: translateY(-3px);
    background: var(--main);
    color: white;
    border: 2px solid var(--main);
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(20,186,247,.35);
}
.title{
    font-size: 5rem;
    font-weight: bold;
}

.slide-number{
    position: absolute;
    top: 88%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    color: white;
    font-family: "Poppins", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.slide-number #currentSlideNum{
    color: var(--main);
    transition: color .3s ease;
}
.slide-number .slide-total{
    font-size: 1.2rem;
    font-weight: 500;
    opacity: .8;
}

.Home .list .item:nth-child(1){
    z-index: 1;
}
.Home .list .item:nth-child(1) .author-name,
.Home .list .item:nth-child(1) .title,
.Home .list .item:nth-child(1) .topic,
.Home .list .item:nth-child(1) .content-text,
.Home .list .item:nth-child(1) button{
    transform: translateY(50%);
    filter: blur(20px);
    opacity: 0;
    animation: showContent 0.5s 1s linear 1 forwards;
}
@keyframes showContent{
    to{
        transform: translateY(0);
        filter: blur(0);
        opacity: 1;
    }
}
.Home .list .item:nth-child(1) .title{
    animation-delay: 1.3s;
}
.Home .list .item:nth-child(1) .topic{
    animation-delay: 1.4s;
}
.Home .list .item:nth-child(1) .content-text{
    animation-delay: 1.6s;
}.Home .list .item:nth-child(1) button{
    animation-delay: 1.8s;
}
.timing{
    position: absolute;
    width: 0;
    height: 5px;
    z-index: 100;
    background: red;
    top: 0;
    left: 0;
}
.Home.next .timing,
.Home.per .timing{
    width: 100%;
    animation: timingfc 2s linear 1 forwards ;
}
@keyframes timingfc{
    to{
        width: 0;
    }
}

.trust{
    margin-top: 8rem;
    margin-bottom: 4rem;
}
.trust .fa-square-whatsapp{
   font-size: 3.5rem;
    color: rgb(68, 229, 68);
   position: fixed;
   top: 88%;
   left: 2%;
   bottom: 0;
   height: 50px;
   width: max-content;
   border-radius: 10px;
   cursor: pointer;
   z-index: 999;
}
.trust h1{
    text-align: center;
    color: var(--main);
    font-weight: bold;
    margin-bottom: 6rem;
}
.trust .trust-items{
    display: flex;
    align-items: center;
   justify-content: center;
   gap: 5rem;
   text-align: center;
}
.trust .trust-items .trust-item i{
    font-size: 3rem;
    margin-bottom: 2.4rem;
   color: var(--text);
   cursor: pointer;

}


.trust .trust-items .trust-item h3{
    font-size: 2rem;
    color: var(--main);
    letter-spacing: 7px;
}
.trust .trust-items .trust-item p{
    color: var(--text);
    font-size: 1.4rem;
    font-weight: 500;
}

.option{
    text-align: center;
    background: rgb(212, 219, 221);
    padding: 2rem;
}
.option h3{
    font-size: 1.5rem;
    color: var(--main);
    font-weight: 500;
    padding-top: 3rem;
    padding-bottom: 2rem;
}
.option p{
    font-size: 1.2rem;
    font-weight: 600;

}
.option .items-of-pain{
    display: flex;
    justify-content: space-between;
    padding-top: 4rem;
    max-width: 100%;
}
.point-pain{
    position: relative;
    width: 300px;
}
.point-pain img{
    height: auto;
    width: 550px;
    max-width: 550px;
    position: absolute;
    left: -60px;
}
.point-pain .point{
    position: absolute;
    top: 0;
    left: 60%;
    margin: 0;
    padding: 0;
}
.point-pain .point li{
border: 8px solid var(--back);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    list-style: none;
}
.point-pain .point li:nth-child(1){
    position: absolute;
    right: -29px;
      top: 12px;
}
.point-pain .point li:nth-child(2){
    position: absolute;
        top: 80px;
    left: 17px;
}
.point-pain .point li:nth-child(3){
    position: absolute;
    top: 100px;
    left: 56px;
}
.point-pain .point li:nth-child(4){
    position: absolute;
    top: 140px;
    left: 80px;
}
.point-pain .point li:nth-child(5){
    position: absolute;
    top: 220px;
    left: 56px;
}
.point-pain .point li:nth-child(6){
    position: absolute;
    top: 240px;
    left: 150px;
    
}
.point-pain .point li:nth-child(7){
    position: absolute;
    top: 270px;
    left: 50px;
}
.point-pain .point li:nth-child(8){
    position: absolute;
    top: 340px;
    left: 10px;
   
}
.point-pain .point li:nth-child(9){
    position: absolute;
    top: 400px;
    left: 40px;
   
}
.point-pain .point li:nth-child(10){
    position: absolute;
    top: 310px;
    left: 50px;
}
.point-pain .point li:nth-child(11){
    position: absolute;
    bottom:-550px;
    right: 50px;
}
.point-pain .point li:nth-child(12){
    position: absolute;
    top:700px;
    right: -26px;
}
.point-pain .point li:nth-child(13){
    position: absolute;
    top:780px;
    left: 50px;
}
.point-pain .point li::before{
    position: absolute;
    top: -10px;
    left: 0px;
content: attr(text-content);
width:13vw;
background: var(--back);
color: white;
font-weight: bold;
opacity: 0;
border-radius: 10px;
transition: 0.3s ease;
}
.point-pain .point li:hover::before{
    transform: translate(10%);
opacity: 1;
}
.point-pain .point li:hover{
cursor: pointer;
}
.key-points .key-pain li{
font-size: 1.2rem;
font-weight: bold;
width: 90%;
height: 10vh;
padding-top: 1rem;
list-style: none;
text-align: start;
color: var(--text);
margin-left: 5rem;
}

.key-points .key-pain li::before{
    content: "\2713";
    margin-right:2rem ;
    color: var(--main);
   
}
.key-pain li.change{
    background: var(--back);
    color: white;
}
.key-points .key-pain li:hover{
cursor: pointer;
}

.images-section{
    position: relative;
    background:rgb(246, 240, 240);
     height: auto;
     width: 40%;
     border-radius: 10px;
     margin-right: 1rem;
       overflow: hidden;
}
.images-section .image-point{
    position: absolute;
 inset: 0 0 0 0;
display: none;
}
.images-section .image-point img{
    width: 75%;
    height: 50%;
    object-fit: cover;
    margin-top: 20px;
    border-radius: 10px;
}
.images-section .image-point .image-content p{
   font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 5;
}
.images-section .image-point .image-content p:not(.not){
  margin: 0;
}
.images-section .image-point .image-content a span{
  color: var(--main);
  font-size: 1.4rem;
  font-weight: 400;
  margin: 10px;
  display: block;
}
.images-section .image-point .image-content h3{
  color: var(--text);
  margin-top: 1rem;
  font-size: 1.7rem;
}
.images-section .click{
     display: block;
    
}

.about{
    padding: 3rem;
}
.about h3{
text-align: center;
font-size: 1.5rem;
font-weight: 400; 
color: var(--main);   
}

.about .about-heading{
    font-size: 1.4rem;
    font-weight: 400;
    text-align: center;
    margin-top: 2rem;
}

.about .about-content .clanic-video{
    width: 90%;
    position: relative;
}
.about .about-content .clanic-video .home-play-btn{
    position: absolute;
    bottom: 40%;
    background: var(--main);
    left: 50%;
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;

}
.about .about-content .clanic-video .home-play-btn i{
color: white;
font-size: 3.5rem;
cursor: pointer;

}
.about .about-content .clanic-video .home-play-btn::before{
    content: "";
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 45px 20px var(--back);
    animation: pulse 2.5s infinite;
}

.about .about-content .clanic-video .home-play-btn:before{
    width: 110px;
    height: 110px;
    animation-delay: 1.2s;
}

@keyframes pulse{
    0%{
        transform: scale(0.6);
        opacity: 0.8;
    }
    100%{
        transform: scale(1.4);
        opacity: 0;
    }
}
.about .about-content .clanic-video .about-play-btn{
    position: absolute;
    bottom: 40%;
    background: var(--main);
    left: 50%;
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;

}
.about .about-content .clanic-video .about-play-btn i{
color: white;
font-size: 3.5rem;
cursor: pointer;

}
.about .about-content .clanic-video .about-play-btn::before{
    content: "";
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 45px 20px var(--back);
    animation: pulse 2.5s infinite;
}

.about .about-content .clanic-video .about-play-btn:before{
    width: 110px;
    height: 110px;
    animation-delay: 1.2s;
}


.about .about-content .clanic-video img{
    width: 40vw;
    height: 80vh;
    object-fit: cover;
   padding-left: 4rem;
   margin-right: 3rem;
 box-shadow: 70px 60px 0 -21px var(--back);
}
.about .about-content{
    display:flex;
    align-items: center;
    gap: 2rem;
}
.about .about-content .content{
font-size: 1.2rem;
margin-top: 2rem;

}
.about .about-content .content h2{
    margin: 10px;
    font-size: 1.7rem;
}
.about .about-content .content p{
    padding-bottom: 1rem;
    color: var(--text);
}
.about .about-content .content .check-point{
display: grid;
grid-template-rows: repeat(6 ,auto);
grid-auto-flow: column;

}
.about .about-content .content .check-point li{
    list-style: none;
    color: var(--text);
    margin-bottom: 1rem;
}
.about .about-content .content .check-point li i{
    padding-right: 10px;
    color: var(--main);
   
}
.about .about-content .content a{
    display: block;
    height: 40px;
    width: 150px;
    background: var(--main);
    color: white;
    text-align: center;
    padding-top:5px ;
    transition: ease .3s;
  
}
.about .about-content .content a:hover{
    transform: scale(1.1);
    cursor: pointer;
}
.home-video-popup iframe {
    width: 100vw;
    max-width: 700px;
    height: 80vh;
    max-height: 500px;
    object-fit: cover;
}
.about-video-popup iframe {
    width: 100vw;
    max-width: 700px;
    height: 80vh;
    max-height: 500px;
}
.doctor{
    position: relative;
    overflow: hidden;

}
.doctor .doctor-content .content{
    position: absolute;
    top: 20%;
    display:flex;
    align-items: center;
    justify-content: center;
 }
.doctor .doctor-content .back{
    height: 800px;
    width: 100%;
}
.doctor .doctor-content::before{
    content: "";
    position: absolute;
    inset: 0;
    background:rgb(212, 219, 221);
   opacity:0.8 ;
}
.doctor .doctor-content .content .doctor-life{
padding-left:8rem;
padding-right: 10rem;
}
.doctor .doctor-content .content .doctor-life h3{
font-size: 4rem;
color: var(--main);
}
.doctor .doctor-content .content .doctor-life p{
margin-bottom: 1rem;
font-size: 1.4rem;
font-weight: 500;
color: var(--text);
}
.doctor .doctor-content .content .doctor-life a{
height: 50px;
width: 200px;
padding-top: 10px;
text-align: center;
color: white;
font-size: 1.3rem;
background: var(--main);
transition: ease .3s;
display: block;
}
.doctor .doctor-content .content .doctor-life a:hover{
    transform: scale(1.1);
    cursor: pointer;
}

 .service2 {
    padding: 3rem;
    overflow: hidden;
    background: linear-gradient(to top, white 50%, rgb(246, 240, 240) 50%);
    position: relative;
}

.service2 h3 {
    color: var(--main);
    margin-bottom: 1rem;
    font-weight: 400;
    text-align: center;
    font-size: 1.4rem;
}

.service2 h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.service-container {
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2.5rem;
    width: max-content;
}

.service-card .sevice-content {
    width: 345px;
    min-width: 345px;
    background: rgb(246, 240, 240);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.service-card .sevice-content img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.service-card .sevice-content .service-title {
    padding: 1.4rem 1.4rem 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.service-card .sevice-content p {
    color: var(--text);
    padding: 0 1.4rem;
    margin: 0.5rem 0;
    line-height: 1.6;
}

.service-card .sevice-content a {
    display: block;
    padding: 1.4rem;
    color: var(--main);
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: 500;
}

.service-card .sevice-content a:hover {
    text-decoration: underline;
}

.service-arrow {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.service-arrow button {
    height: 50px;
    width: 50px;
    border: 2px solid var(--main);
    background: white;
    border-radius: 50%;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--main);
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-arrow button:hover {
    color: white;
    background: var(--main);
    transform: scale(1.1);
}

.service-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.service-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

.service-dots .dot.active {
    background: var(--main);
}

.service-dots .dot:hover {
    background: var(--main);
    opacity: 0.7;
}

.contect{
    padding: 5rem;
}
.contect .request-contect{
    display: flex;
    align-content: center;
    gap: 7rem;

}
.contect .request-contect .png{
    height: 400px;
    width: 50%;
    padding-left: 3rem;
}
.contect .request-contect .request-conten{
    width: 37%;
    height: auto;
    box-shadow: 7px 9px 0 0 rgb(218, 218, 218);
   background: rgba(228, 229, 227, 0.736);
   text-align: center;
   margin-top: -2rem;
}
.contect .request-contect .request-conten h2{
    margin: 1.6rem;
    font-weight: 600;
}
.contect .request-contect .request-conten p{
    margin: .8rem;
    color: var(--text);
}
.contect .request-contect .request-conten form{
    display: grid;
}
.contect .request-contect .request-conten form input{
    height: 50px;
    margin: .6rem;
    width: 90%;
    margin-left: 1.7rem;
    outline: none;
    font-size: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}
.contect .request-contect .request-conten form input:focus{
    border: none;
}
.contect .request-contect .request-conten form input::placeholder{
    font-size: 1rem;    
}
.contect .request-contect .request-conten button{
    width: 160px;
    height: 46px;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    background: var(--main);
    border-radius: 50px;
    border: 2px solid var(--main);
    margin: 15px auto;
    display: block;
    transition: ease .3s;
}
.contect .request-contect .request-conten button:hover{
    background: var(--back);
    border-color: var(--back);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(3,79,212,.3);
    cursor: pointer;
}
.video-reviews{
    padding: 5rem;
    text-align: center;
    background: rgb(212, 219, 221);
    position: relative;
    overflow: hidden;
}
.video-reviews h3{
    margin-bottom: 1rem;
    color: var(--main);
    font-weight: 400;
}
.video-reviews p{
    margin: 20px;
}
.video-reviews .parent-video{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.video-reviews .parent-video img{
    width: 100%;
    max-width: 800px;
    display: block;
}

.video-reviews .parent-video .play-btn{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100px;
    width: 100px;
    border: 7px solid white;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
}

.video-reviews .parent-video .play-btn span{
    font-size: 4rem;
    position: absolute;
    bottom: -9px;
    left:0;
    right: -6px;
    color: white;   
}

.video-reviews .parent-video .video-arrow{

    position:absolute;
    top:50%;
    left:0;

    width:100%;
    padding:0 20px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    transform:translateY(-50%);
     transform: translateX(15%);
    pointer-events:none;
    z-index:5;

}

.video-reviews .video-popup .close-btn{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.4rem;
}
.video-reviews .parent-video .video-arrow button{

    pointer-events:auto;

    width:55px;
    height:55px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(0,0,0,.35);
    color:white;

    border:none;
    border-radius:50%;

    font-size:2.5rem;
    cursor:pointer;

}
.video-reviews .parent-video .video-arrow .next-video{
    position: absolute;
    left: 59%;
    transform: translateX(100%);
    right: 0;
}
.video-reviews .video-grid{
    display: flex;
     align-items: center;
     justify-content: center;
     gap: 20px;
     overflow: hidden;
     margin-top: 1.5rem;
}
.video-reviews .video-grid .video-card{
    position: relative;
    background: black;
}

.video-reviews .video-grid .video-card img{
    width: 22vw;
    opacity: 0.2;
    
}



.video-reviews .video-grid .video-card span{
    position: absolute;
    right: 50%;
    top: 30%;
    transform: translateX(27px);
    font-size: 3.5rem;
    color: white;
    cursor: pointer;
}
.video-reviews .video-grid .video-card h4{
    color: var(--text);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}
.video-reviews .video-popup{
    position: fixed;
    background: rgba(0, 0, 0, 0.799);
    inset: 0 0 0 0;
    width: 100vw;
    height: 120vh;
    z-index: 22222;
  
    align-items: center;
    justify-content: center;
}
.video-reviews .video-popup .popup-content{
    position: relative;
    width: 80%;
    max-width: 900px;
}

.video-reviews .video-popup iframe{
    width: 100%;
    height: 400PX;
    
}

.video-reviews .video-popup .video-arrow{
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.video-reviews .video-popup .popup-content .close-btn{
    position: absolute;
    bottom: 90%;
    left: 90%;
    font-size: 2rem;
    cursor: pointer;
    background: transparent;
    border: none;
    color: white;
    font-weight: bold;
}
.video-reviews .video-popup .popup-content .video-arrow button{
font-size: 4.5rem;
background: transparent;
color: white;
font-family: monospace;
border: none;
margin-left: 1rem;
}
.video-reviews .video-popup .popup-content .video-arrow .next-video-popup{
     position: absolute;
    left:900px;
    transform: translateX(-60px);
    right: 0;   
}
 .commit{
    padding: 5rem;
}
.commit .h3{
    padding-top: 2rem;
    text-align: center;
    color: var(--main);
    letter-spacing: 5px;
    font-size: 1.5rem;
}
.commit h2{
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.commit .commit-content{
 display: flex;
    transition: transform 0.6s ease-in-out;    
}
.commit-content-wrapper {
    overflow: hidden;
    width: 100%;
}
.commit .commit-content .commit-contenner .commited{
    width: 90%;
    height: auto;
    padding: 1rem;
    text-align: center;
    background:  rgb(218, 218, 218);
    position: relative;
    margin-left: 4.7rem;
}
.commit-contenner {
    flex: 0 0 50%;
    transition: 0.5s ease;
    pointer-events: none;
}
.commit-contenner.show {
    opacity: 1;
    transform: translateX(50%);
    pointer-events: auto;
    outline: 2px solid red;
}

.commit .commit-content .commit-contenner .commited::before{
    content: "";
      width: 0;
      height: 0;
      border-left: 80px solid transparent;
      border-right: 80px solid transparent;
      border-top: 100px solid rgb(218, 218, 218);
    position: absolute;
    top: 80%;
    left: 25px;
}
.commit .commit-content .commit-contenner .commited i{
    font-size: 3rem;
    color: var(--main);
}
.commit .commit-content .commit-contenner .commited p{
    line-height: 30px;
    color: var(--text);

}
.commit .commit-content .commit-contenner .commited .rewive-star{
    font-size: 1.9rem;
    letter-spacing: 7px;
    color: goldenrod;
}
.commit .commit-content .commit-contenner .commit-tex{
 position: relative;
 right: 20%;
 top: 70px;
 margin-bottom: 5rem;
 text-align: center;
}
.commit .commit-content .commit-contenner .commit-tex img{
    width: 10vw; 
}
.commit .commit-content .commit-contenner .commit-tex .name{
    color: var(--main);
}
 .commit-dots {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.dot2{
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ccc;
    margin: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.dot2.active2 {
    background: var(--main);
    transform: scale(1.2);
}

.bookme{
position: relative;
display: flex;
background: black;
}
.bookme img{
height: 170px;
width: 100%;
object-fit: cover;
opacity: 0.4;
}
.bookme .bookme-contect{
    position: absolute;
    top: 10%;
    padding: 3rem;
    display: flex;
    align-items: center;
}
.bookme .bookme-contect .bookme-text p{
    color: white;
    font-size: 1.4rem;    
}
.bookme .bookme-contect .bookme-text h3{
    color: white;
    font-size: 1.4rem;
}
.bookme .bookme-contect a{
    display: block;
    position: absolute;
    left: 180%;
    width: 220px;
    height: 50px;
    background: var(--main);
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    padding-top: 10px;
    border-radius: 10px;
    color: white;
    transition: ease 1s;
}
.bookme .bookme-contect a:hover{
    background: white;
    color: var(--main);
}
.location{
    padding: 5rem;
    padding-bottom: 2rem;
}
.location .location-content{
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 2rem;
}
.location .location-content .located{
    height: 200px;
    width: 250px;
    background: var(--back);
}
.location .location-content .located a{
    display: block;
    color: white;
    text-align: center;
    font-size: 1.2rem;
    
}
.location .location-content .located a h3{
padding-top: 2rem;
}
.fainal {
    position: relative;
    width: 100%;
    overflow: hidden;
    color: white;
}

.fainal > img{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;

    z-index:0;

}

.fainal-content {
    position: relative;
   
    z-index: 3;
   display: flex;
   align-items: center;
    gap: 4rem;
    padding: 4rem;
    color: white;
}

.fainal::before {
    content: "";
    position: absolute;
    inset: 0;
    background:var(--back);
    opacity: 0.8;
    z-index: 1;
}

.fainal .footer{
    position: absolute;
    background: black;
    width: 100%;
    height: 70px;
    top: 90%;
    z-index: 2;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6rem;
    opacity: 0.8;
}
.footer a{
    display: block;
}
.footer a i{
    height: 40px;
    width: 40px;
    border-radius: 10px;
    background: var(--main);
    box-shadow:  0 0 12px 2px var(--main);
    padding-top: 10px;
    display: block;
    color: white;
    transition: all 2s ease;
}
.footer a i:hover{
    box-shadow: none;
    cursor: pointer;
    
   
}
.fainal .fainal-content .main-contenner img{
    width: 15vw;
}
.fainal .fainal-content .main-contenner p{
    font-size: 1.1rem;
    line-height: 25px;
   text-align: start;
}
.fainal .fainal-content .main-contenner .icon-fainal{
display: flex;
align-items: start;
gap: .5rem;
margin-top: 1rem;
}
.fainal .fainal-content .main-contenner I{
    border: 2px solid white;
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
    padding-top: 6px;
    border-radius: 10px;
    background: white;
    color: var(--main);
    transition: all 1s;
}
.fainal .fainal-content .main-contenner I:hover{
    background: var(--main);
    color: white;
    cursor: pointer;
}
.fainal .fainal-content .service-contenner{
   display: grid;
   width: 100%;
   margin-top: 2rem;

}
.fainal .fainal-content .service-contenner h3{
    font-size: 1.7rem;
    font-weight: 500;
}
.fainal .fainal-content .service-contenner .physio-link a{
    display: block;
    line-height: 50px;
    color: white;
    font-size: 1.2rem;
}
.fainal .fainal-content .service-contenner .physio-link a:hover{
    color: var(--main);
}
.fainal .fainal-content .quick-contenner{
width: 100%;
display: grid;

margin-top: 2rem;
}
.fainal .fainal-content .quick-contenner h3{
   font-size: 1.7rem;
    font-weight: 500;   
}
.fainal .fainal-content .quick-contenner a{
    display: block;
    line-height: 50px;
    color: white;
    font-size: 1.2rem;   
}
.fainal .fainal-content .quick-contenner a:hover{
    color: var(--main);
}
.fainal .fainal-content .address-contenner{
width: 120%;
display: grid;

margin-top: 2rem;
}
.fainal .fainal-content .address-contenner h3{
   font-size: 1.7rem;
    font-weight: 500;
    margin-bottom: 2rem;   
}

.fainal .fainal-content .address-contenner i{
    line-height: 50px;
    color: white;
    font-size: 1.3rem;   
    display: flex;
    align-items: center;
    gap: 1rem;
    
    
}
.fainal .fainal-content .address-contenner span{
    font-size: 1.1rem;
    display: block;
    position: relative;
    bottom: 18%;
    padding-left: 3rem;

}

.image2{
    position:relative;
    margin-top:10rem;
    overflow:hidden;
    background:black;
    height:600px;
}


.image2 img{
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:.2;
}
.image2 svg{
    position: absolute;
    inset: 0;
    top: 50%;
    transform: translateY(100px);
    z-index: 2222;
    color: white;
}
.image2 .img-content2{
position: absolute;
top: 50%;
z-index: 222;
left: 20%;
font-size: 1.5REM;
color: white;
font-weight: 600;
display: flex;
align-items: center;
}

.image2 .img-content2 .a-tag{
    color: white;
    position: absolute;
    top: 60px;
    width: 600px;
    font-size: 1.3rem;
}
.image2 .img-content2 a{
    
    color: white;
}
.image2 .img-content2 a:hover{
    color: var(--main);
}
.about-hero-section{
    color: #f3f4f5;
}


.section-title {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.section-text {
  font-size: 1.2rem;
  max-width: 800px;
}

.center {
  text-align: center;
}
.about-hero-section {
  background: linear-gradient(to right, #f7f7f7, #ffffff);
  padding: 6rem 2rem;
  text-align: center;
}

.about-main-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--main);
}

.about-sub-title {
  font-size: 1.8rem;
  margin: 1rem 0;
  color: var(--main);
}

.about-hero-text {
  font-size: 1.2rem;
  max-width: 850px;
  margin: 1.5rem auto 0;
}
.about-hero-section {
  color: var(--text);
  padding: 6rem 2rem;
  text-align: center;
}

.about-main-title {
  font-size: 3.5rem;
  font-weight: 800;
}

.about-sub-title {
  font-size: 1.8rem;
  margin: 1rem 0;
  color: #666;
}

.about-hero-text {
  font-size: 1.2rem;
  max-width: 850px;
  margin: 1.5rem auto 0;
}
.doctor-profile-section {
  padding: 6rem 2rem;
  background: #f9f9f9;
}

.doctor-profile-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  max-width: 1200px;
  margin: auto;
}

.doctor-profile-text {
  flex: 1;
}

.doctor-role {
  font-size: 1.4rem;
  color: #555;
  margin-bottom: 1rem;
}

.doctor-profile-image {
  flex: 1;
  text-align: center;
}

.doctor-profile-image img {
  max-width: 350px;
  width: 100%;
  position: relative;
}
.about-experienced{
    border: 2px solid;
    height: 120px;
    width: 20%;
    font-size: 1.8rem;
    padding-top: 2rem;
    font-weight: 800;
    background: var(--back);
    color: white;
    position: absolute;
    right: 16%;
    transform: translateY(-70px);
    border: none;

}
.team-section {
  padding: 6rem 2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1100px;
  margin: 3rem auto 0;
}

.team-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}
.team-card img{
    width: 100%;
    height: auto;
}
.team-name {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--main);
  margin-bottom: 1rem;
}

.team-text {
  font-size: 1.1rem;
  margin-top: 0.8rem;
}
.treatment-approach-section {
  padding: 6rem 2rem;
  background: #f7f7f7;
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.approach-item {
  background: white;
  padding: 2rem;
  border-radius: 10px;
}

.approach-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.clinic-environment-section {
  padding: 5rem 2rem;
  display: flex;
  justify-content: center;
}

.clinic-env-content {
  max-width: 850px;
}
.about-cta-section {
  padding: 5rem 2rem;
  background: var(--main);
  color: white;
  text-align: center;
}

.cta-title {
  font-size: 2.6rem;
}

.cta-text {
  font-size: 1.2rem;
  margin: 1rem 0 2rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: white;
  color: var(--main);
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
}
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s ease forwards;
}

.fade-delay-1 { animation-delay: 0.2s; }
.fade-delay-2 { animation-delay: 0.4s; }
.fade-delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.about-hero-content h1,
.about-hero-content h2,
.about-hero-content p {
  animation: fadeUp 1s ease forwards;
}
.doctor-profile-image img {
  transition: transform 0.6s ease;
}

.doctor-profile-image img:hover {
  transform: translateY(-8px);
}
.team-card,
.approach-item {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.team-card i{
  text-align: center;
  background: #e6f4f1;
  color: var(--main);
  height: 40px;
  width: 40px;
  font-size: 1.6rem;
  padding-top: 8px;
 border-radius: 10px;
  margin-top: 2rem;
  margin: 5px;
}
.team-card i:hover{
  background: var(--main);
  color: white;
  cursor: pointer;
}
.team-card:hover,
.approach-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.certificate-section {
  padding: 6rem 2rem;
  background: #f9f9f9;
}

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1100px;
  margin: 3rem auto 0;
}

.certificate-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.certificate-card img {
  width: 100%;
  max-width: 220px;
  margin-bottom: 1.2rem;
  transition: ease-in .3s;
}
.certificate-card img:hover{
    transform: scale(1.1);
}

.certificate-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.certificate-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.1);
}
.approach-icon {
  width: 60px;
  height: 60px;
  background: #e6f4f1;
  color: var(--main);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  transition: transform 0.4s ease, background 0.4s ease;
}
.approach-item:hover .approach-icon {
  transform: scale(1.1);
  background: var(--main);
  color: #ffffff;
}

.Contect-section{
  padding: 5rem;
  background: rgb(242, 244, 245);
}
.Contect-section h1{
  font-size: 2.4rem;
  text-align: center;
  color: var(--main);
}
.Contect-section .contect-p{
  color: var(--text);
  text-align: center;
}
.Contect-section .contect-icon{
  display: flex;
  align-items: center;
  justify-content:center;
  gap: 2rem;
  margin-top: 2rem;
}
.contect-icon .div-icon{
  display: flex;
  align-items: center;
  padding: 20px;
  background: white;
 box-shadow: 0 0 15px 0 rgb(218, 218, 218);
  width: 100%;
  border: none;

}
.contect-icon .div-icon i{
  font-size: 2.6rem;
  width: 80px;
  height: 80px;
  border: 2px solid var(--main);
  border-radius: 50%;
  padding-top:1rem ;
  margin: 10px;
  color: var(--main);
  transition: all .3s;
}
.contect-icon .div-icon p{
  color: var(--text);
}
.contect-icon .div-icon p:hover{
  color: var(--main);
  cursor: pointer;
}
.contect-icon .div-icon i:hover{
  background: var(--main);
  color: white;
  cursor: pointer;
}
.contect-us-form{
  display: flex;
  margin-top: 4rem;
}
form .form-content{
display: flex;
align-items: center;
gap:0.9rem;
}
form .form-content input{
  margin: 10px;
  width: 350px;
  height: 50px;
  outline: none;
  border: 1px solid var(--text);
  font-size: 1.3rem;
  padding-left: 10px;
  padding-right: 10px;
  transition: all .3s;
}
form .form-content input:focus{
  border: 2px solid var(--main);
  transform: border 10%;
}
form .Message{
  width: 97%;
  padding: 10px;
  line-height: 20px;
  font-size: 1.2rem;
  overflow: hidden;
  outline: none;
  border: 1px solid var(--text);
  resize: none;
  margin-left: 0.7rem;
  transition: all .3s;
  
}
form .Message:focus{
  border: 2px solid var(--main);
  outline: none;
}
form .Message::placeholder{
  font-size: 1.4rem;
}

form .submit{
  width: 30%;
  height: 50px;
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
  background: var(--main);
  border: none;
  margin-top: 1rem;
  margin-left: 10px;
  transition: ease .3s;
}
form button:hover{
  background: white;
  color: var(--main);
  border: 1px solid;
}
.contect-us-text{
  line-height: 40px;
}
.contect-us-text p{
  color: var(--text);
}
.contect-us-text a i{
  font-size: 1.5rem;
  border: 2px solid;
  height: 40px;
  width: 40px;
  padding-top: 6px;
  border-radius: 50%;
  background: var(--main);
  color: white;
  transition: .3s ease;
}
.contect-us-text a i:hover{
  background: white;
  color: var(--main);
}
iframe{
  width: 100%;
  height: 600px;
  margin-top: 3rem;
}
.Service-page{
  padding: 5rem;
 background: rgb(242, 244, 245); 
}
.service-text{
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  gap: 2rem;
}
.service-text .scond h3{
  font-size: 2rem;
  color: var(--main);
  font-weight: 300;
}
.service-text .scond h5{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  padding-bottom: 2rem;
}
.service-text p{
  color: var(--text);
  font-size: 1.1rem;
  padding: 10px;
  text-align: start;

}
.service-contenner-section{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
}
.service-contenner-section .contenner-section{
  background: white;
}
.service-contenner-section .contenner-section img{
width: 100%;
height: 300px;
transition: all .3s ease-out;
border-radius:8px ;
}

.service-contenner-section .contenner-section p{
color: var(--text);
line-height: 30px;
}
.service-contenner-section .contenner-section h2,
.service-contenner-section .contenner-section p{
  padding: 20px;
}
.mission{
 padding: 5rem;
 overflow: hidden; 
}
.mission-text{
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 3rem;
  margin: 5px;
}
.mission-text p{
  line-height: 30px;
  color: var(--text);
}
.mission-text h3{
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.mission-text img{
  width: 50%;
  height: auto;
}

.blog-layout{
  overflow: hidden;
  padding: 5rem;
  display: flex;
  justify-content: space-between;
}
.blog-layout .blog-card{
  box-shadow: 0 0 12px 0 rgb(218, 218, 218);
  width: 120%;
  margin-bottom: 2rem;
}
.blog-card .blog-card-text{
  padding: 2rem;
  line-height: 40px;
}
.blog-card .blog-card-text .blog-card-icon{
  display: flex;
  align-items: center;
  gap: 1rem;
}
.blog-card .blog-card-text p{
color: var(--text);
}
.read-more{
  color: var(--main);
  font-size: 1.4rem;
}
.blog-card .blog-card-text .blog-card-icon a{
  color: var(--text);
}
.blog-card .blog-card-text .blog-card-icon i{
  color: var(--text);
  width: max-content;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.blog-layout .blog-card img{
  width: 100%;
  height: auto;
}
.blog-sidebar .recent-post img{
width: 25%;
height: auto;
}
.search-input{
  width: 60%;
  height: auto;
  box-shadow: 0 0 12px 0 rgb(218, 218, 218);
}
.search-input input{
position: relative;
width: 80%;
outline: none;
height: 50px;
border: 1px solid;
font-size: 1.1rem;
padding-left: 10px;
padding-right: 40px;
margin: 10px;
color: var(--text);
}
.search-input i{
  position: absolute;
  right: 16px;
  transform: translateY(10px);
  font-size: 1.4rem;
  background: var(--main);
  height: 50px;
  width: 50px;
  padding-top: 1rem;
  color: white;
  cursor: pointer;

}
.blog-sidebar{
  transform: translateX(40%);
} 
.recen-post-div{
  margin-top: 3rem;
  height: 400px;
  width: 60%;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 0 12px 0 rgb(218, 218, 218);
}
.recen-post-div h3{
  font-size: 1.5rem;
  color: var(--main);
  margin-top: 20px;
  margin-bottom: 20px;
}
.recent-post{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.recent-post a{
  color: black;
}
.recent-post a:hover{
  color: var(--main);
}
.recent-post span{
  color: var(--text);
}
.category{
  margin-top: 3rem;
  display: grid;
  line-height: 40px;
  height: 400px;
  width: 60%;
  padding: 20px;
  box-shadow: 0 0 12px 0 rgb(218, 218, 218);
}
.category h3{
  font-size: 1.6rem;
}
.category a{
  color: var(--text);
  font-size: 1.2rem;
}
.category a:hover{
  color: var(--main);
}
.category a::after{
  content: "";
  border: 1px solid var(--text);
  display: block;
}
.blog-pagination{
  padding-left: 5rem;
  display: flex;
  gap: 20px;
 margin-bottom: 3rem;
}
.blog-pagination a{
  width: 40px;
  height: 40px ;
  text-align: center;
  display: block;
  padding: 5px;
  color: var(--text);
  box-shadow: 0 0 12px 0 rgb(218, 218, 218);
  transition: all .3s ease;
  font-size: 1.3rem;
}
.blog-pagination a:hover{
  background: var(--main);
  color: white;
  box-shadow: none;
}
.blog-pagination a.active3{
  background: var(--main);
  color: white;
  border: 1px solid var(--main);
  box-shadow: none;
}

.single-blogs{
  padding: 5rem;
  overflow: hidden;
  display: flex;

}
.single-content{
  width: 180%;
}
.single-blog-content{
  box-shadow:  0 0 12px 0 rgb(218, 218, 218);
}
.single-blog-content img{
width: 100%;
height: auto;
position: relative;
}
.date-relized{
  height: 100px;
  width: 76px;
  font-size: 1.8rem;
  text-align: center;
  font-weight: 700;
  color: white;
  background: var(--main);
  border-radius: 5px;
  padding-top: 10px;
  position: absolute;
  left: 10%;
  transform: translateY(-150px);
}
.blog-text{
  line-height: 40px;
  padding: 3rem;
}
.blog-text .AIDA-content{
  color: var(--text);
}
.AIDA-content ul{
  margin-left: 1rem;
  padding-left: 2rem;
  background:rgb(242, 244, 245);
  position: relative;
}
.AIDA-content ul::after{
  content: "";
  position: absolute;
  top: 0%;
  left: -10px;
  height:100%;
  color: var(--main);
  border: 4px solid;
}
.buttons{
  width: 58%;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: -3rem;
margin-left: 4.7rem;
   box-shadow:  0 0 12px 0 rgb(218, 218, 218);
}
.buttons a{
  font-size: 1.4rem;
  color: var(--main);
}
.buttons .one{
  margin-left: 2rem;
}
.buttons .two{

  transform: translateX(500px);
}
.form-section{
  width: 58%;
  height: 500px;
  margin-left: 5rem;
  margin-top: 2rem;
  padding: 2rem;
  margin-bottom: 2rem;
 box-shadow:  0 0 12px 0 rgb(218, 218, 218);

}
.form-text{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  margin: 20px;
}
.form-text input{
  width: 100%;
  height: 40px;
  font-size: 1.2rem;
  outline: none;
  padding: 10px;
}
.form-text input:focus{
  border: 1px solid var(--main);
}
.search-input2{
  width: 80%;
  height: auto;
  box-shadow: 0 0 12px 0 rgb(218, 218, 218);
}
.search-input2 input{
position: relative;
width: 80%;
outline: none;
height: 50px;
border: 1px solid;
font-size: 1.1rem;
padding-left: 10px;
padding-right: 40px;
margin: 10px;
color: var(--text);
}
form .Message2{
  width: 97%;
  height: 200px;
  padding: 10px;
  line-height: 20px;
  font-size: 1.2rem;
  overflow: hidden;
  outline: none;
  border: 1px solid var(--text);
  resize: none;
  margin-left: 0.7rem;
  transition: all .3s;
  
}
form .Message2:focus{
  border: 1px solid var(--main);
  outline: none;
}
form .Message2::placeholder{
  font-size: 1.4rem;
}

form .bttn{
  width: 30%;
  height: 50px;
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
  background: var(--main);
  border: none;
  margin-top: 1rem;
  margin-left: 10px;
  transition: ease .3s;
}
form .bttn:hover{
  background: white;
  color: var(--main);
  border: 1px solid;
}
.search-input2 i{
  position: absolute;
right: 100px;
    transform: translateY(10px);
  font-size: 1.4rem;
  background: var(--main);
  height: 50px;
  width: 50px;
  padding-top: 1rem;
  color: white;
  cursor: pointer;

}
.search-input2 li,
.search-input2 a {
   display: block;
    text-decoration: none;
    margin-left: 1rem;
    color: var(--text);
}
.search-input li,
.search-input a {
   display: block;
    text-decoration: none;
    margin-left: 1rem;
    color: var(--text);
}

#commentsContainer{
    max-height:700px;
    overflow-y:auto;
    padding-right:10px;
}
.search-input2 a:hover {
    color: #007bff;
}
.blog-sidebar2{
  width: 100%;
  transform: translateX(10%);
}
.recen-post-div2{
  margin-top: 3rem;
  height: 400px;
  width: 80%;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 0 12px 0 rgb(218, 218, 218);
}
.recen-post-div2 h3{
  font-size: 1.5rem;
  color: var(--main);
  margin-top: 20px;
  margin-bottom: 20px;
}
.recent-post2{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.recent-post2 a{
  color: black;
}
.recent-post2 a:hover{
  color: var(--main);
}
.recent-post2 span{
  color: var(--text);
}
.category2{
  margin-top: 3rem;
  display: grid;
  line-height: 40px;
  height: 400px;
  width: 80%;
  padding: 20px;
  box-shadow: 0 0 12px 0 rgb(218, 218, 218);
}
.category2 h3{
  font-size: 1.6rem;
}
.category2 a{
  display: block;
  color: var(--text);
  font-size: 1.2rem;
}
.category2 a:hover{
  color: var(--main);
}
.category2 a::after{
  content: "";
  border: 1px solid var(--text);
  display: block;
}
.image3{
  width: 20%;
  height: auto;
}
.comment-user{
  width: 58%;
  height: auto;
  margin: 10px;
  margin-left: 5rem;
  padding: 2rem;
 box-shadow: 0 0 12px 0 rgb(218, 218, 218); 
    max-height:500px;
    overflow:hidden;
}
.comment-user h2{
  color: var(--main);
  font-size: 1.7rem;
}
.comments-user{
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
   animation: slideIn .5s ease;
}

@keyframes slideIn{

    from{
        opacity:0;
        transform:translateY(-20px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}
.comments-user i{
  font-size: 1.8rem;
  border-radius: 50%;
  padding-top: 10px;
  color: var(--main);
  padding: 20px;
}
.comment-to-user p{
  color: var(--text);
}
.comment-to-user .name-of-user{
  font-size: 1.4rem;
}
.comment-to-user h5{
  margin-left: 1rem;
  margin-top: 10px;
}
.search-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1px solid #ccc;
    max-height: 200px;
    overflow-y: auto;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    width: 100%;
    z-index: 1000;
}

.search-list li {
    padding: 8px;
    cursor: pointer;
}

.search-list li:hover {
    background-color: #f0f0f0;
}

.form-status{
    display:none;
    padding:15px;
    margin-bottom:20px;
    border-radius:8px;
    font-weight:600;
    text-align:center;
}

.form-status.success{
    display:block;
    background:#d4edda;
    color:#155724;
    border:1px solid #c3e6cb;
}

.form-status.error{
    display:block;
    background:#f8d7da;
    color:#721c24;
    border:1px solid #f5c6cb;
}

.address{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.address i{
    color: var(--main);
    font-size: 18px;
    min-width: 20px;
}

.address .address-item{
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.address .address-item span{
    line-height: 1.6;
    color:white;
}

.clanic-video{

    position:relative;

}


.about-play-btn{

    position:absolute;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    width:80px;
    height:80px;

    border-radius:50%;

    border:5px solid white;

    background:transparent;

    color:white;

    font-size:2rem;

    cursor:pointer;

}



.about-video-popup{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.8);

    display:none;

    align-items:center;

    justify-content:center;

    z-index:9999;

}



.about-popup-content{

    position:relative;

    width:80%;

    max-width:900px;

}



.about-popup-content iframe{

    width:100%;

    height:300px;

}



.about-close{

    position:absolute;

    right:0;

    top:-45px;

    background:none;

    border:none;

    color:white;

    font-size:3rem;

    cursor:pointer;

}

.home-video-popup,
.about-page-video-popup{

    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.8);
    justify-content:center;
    align-items:center;
    z-index:9999;

}


.about-popup-content{

    width:80%;
    max-width:900px;
    position:relative;

}


.about-popup-content iframe{

    width:100%;
    height:500px;
    border:none;

}


.home-close,
.about-page-close{
position: absolute;
    right: 41%;
    top: -43px;
    background: white;
    border: none;
    font-size: 55px;
    cursor: pointer;
    background: transparent;
    color: wheat;

}

.home-health{
    padding:6rem 8%;
    background:#f8fbff;
}

.home-health-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.home-health-image{
    flex:1;
}

.home-health-image img{
    width:100%;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
    object-fit:cover;
}

.home-health-text{
    flex:1;
}

.home-health-text h3{
    color:var(--main);
    font-size:1.3rem;
    margin-bottom:10px;
}

.home-health-text h2{
    font-size:2.4rem;
    margin-bottom:20px;
    line-height:1.3;
}

.home-health-text p{
    color:var(--text);
    line-height:32px;
    font-size:1.1rem;
    margin-bottom:30px;
}

.home-benefits{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-bottom:35px;
}

.benefit{
    display:flex;
    align-items:center;
    gap:15px;
    padding:16px;
    background:#fff;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:.3s;
}

.benefit:hover{
    transform:translateY(-5px);
}

.benefit i{
    width:50px;
    height:50px;
    background:var(--main);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.benefit span{
    font-weight:600;
    color:#222;
}

.home-health-btn{
    display:inline-block;
    padding:15px 35px;
    background:var(--main);
    color:#fff;
    border-radius:6px;
    font-size:1.1rem;
    transition:.3s;
}

.home-health-btn:hover{
    background:#fff;
    color:var(--main);
    border:1px solid var(--main);
}

.home-about{
    display:flex;
    gap:60px;
    align-items:center;
    padding:80px 8%;
}

.home-about-image{
    flex:1;
}

.home-about-image img{
    width:100%;
    border-radius:12px;
}

.home-about-content{
    flex:1;
}

.home-about-content h3{
    color:var(--main);
}

.home-about-content h2{
    font-size:2.5rem;
    margin:15px 0;
}

.home-about-content p{
    line-height:30px;
    margin-bottom:20px;
    color:var(--text);
}

.about-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.about-list div{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:600;
}

.about-list i{
    color:var(--main);
}

.need-home-service{
    padding:80px 8%;
    text-align:center;
    background:#f8fbff;
}

.need-home-service h3{
    color:var(--main);
}

.need-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.need-card{
    background:#fff;
    padding:35px;
    border-radius:10px;
    box-shadow:0 0 15px rgba(0,0,0,.08);
}

.need-card i{
    font-size:40px;
    color:var(--main);
    margin-bottom:20px;
}

.need-card p{
    line-height:28px;
    color:var(--text);
}

.conditions{
    padding:80px 8%;
    text-align:center;
}

.condition-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:45px;
}

.condition{
    background:#fff;
    padding:20px;
    box-shadow:0 0 12px rgba(0,0,0,.08);
    border-radius:8px;
    font-weight:600;
}

.condition i{
    color:var(--main);
    margin-right:8px;
}

.why-home{
    padding:80px 8%;
    background:#f8fbff;
    text-align:center;
}

.why-home h3{
    color:var(--main);
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:45px;
}

.why-card{
    padding:35px;
    background:#fff;
    border-radius:10px;
    box-shadow:0 0 12px rgba(0,0,0,.08);
}

.why-card i{
    font-size:45px;
    color:var(--main);
    margin-bottom:20px;
}

.why-card p{
    margin-top:15px;
    color:var(--text);
    line-height:28px;
}

.work-process{
    padding:80px 8%;
    text-align:center;
}

.process{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:50px;
}

.step{
    position:relative;
    padding:30px;
    background:#fff;
    border-radius:10px;
    box-shadow:0 0 12px rgba(0,0,0,.08);
}

.step span{
    width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    border-radius:50%;
    background:var(--main);
    color:#fff;
    font-size:22px;
    margin-bottom:20px;
}

.coverage{
    padding:80px 8%;
    background:#f8fbff;
    text-align:center;
}

.coverage-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top:40px;
}

.coverage-grid div{
    background:#fff;
    padding:20px;
    border-radius:8px;
    box-shadow:0 0 10px rgba(0,0,0,.08);
    font-weight:600;
}

.faq{
    padding:80px 8%;
}

.faq h3{
    text-align:center;
    color:var(--main);
    margin-bottom:40px;
}

.faq-item{
    background:#fff;
    box-shadow:0 0 10px rgba(0,0,0,.08);
    padding:25px;
    border-radius:10px;
    margin-bottom:20px;
}

.faq-item h4{
    color:var(--main);
    margin-bottom:10px;
}

.faq-item p{
    color:var(--text);
    line-height:28px;
}

.home-cta{
    padding:80px 8%;
    text-align:center;
    background:var(--main);
    color:#fff;
}

.home-cta p{
    width:650px;
    max-width:95%;
    margin:20px auto 40px;
    line-height:30px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
}

.cta-buttons a{
    padding:15px 35px;
    background:#fff;
    color:var(--main);
    border-radius:6px;
    font-weight:600;
    transition:.3s;
}

.cta-buttons a:hover{
    transform:translateY(-4px);
}
.need-card,
.why-card,
.condition,
.step,
.coverage-grid div,
.faq-item{
    transition:all .3s ease;
}

.need-card:hover,
.why-card:hover,
.condition:hover,
.step:hover,
.coverage-grid div:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 22px rgba(0,0,0,.12);
}
.home-about-image{
    overflow:hidden;
    border-radius:12px;
}

.home-about-image img{
    transition:.5s;
}

.home-about-image:hover img{
    transform:scale(1.05);
}
.home-about h2,
.need-home-service h2,
.conditions h2,
.why-home h2,
.work-process h2,
.coverage h2,
.home-cta h2{
    margin:12px 0 18px;
    font-size:2.3rem;
}

.home-about h3,
.need-home-service h3,
.conditions h3,
.why-home h3,
.work-process h3,
.coverage h3{
    color:var(--main);
    margin-bottom:10px;
}
.need-card h4,
.why-card h4,
.step h4{
    margin:15px 0;
}

.condition{
    line-height:28px;
}

.hero-overlay a,
.cta-buttons a{
    transition:.3s ease;
}

.hero-overlay a:hover,
.cta-buttons a:hover{
    transform:translateY(-3px);
}
.home-health-hero img{
    transition:8s ease;
}

.home-health-hero:hover img{
    transform:scale(1.08);
}
.home-about,
.need-home-service,
.conditions,
.why-home,
.work-process,
.coverage,
.faq,
.home-cta{
    overflow:hidden;
}

/* =====================================================
   service1.html additions — kept in its own file so
   base.css and responsive.css stay untouched.
   Adds: an icon badge and a "Book This Service" button
   to each service card, since previously each card was
   just an image + heading + paragraph with no icon and
   no way to act on it.
   ===================================================== */

.contenner-section{
    position: relative;
    padding-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    transition: transform .35s ease, box-shadow .35s ease;
    border-radius: 8px;
    overflow: hidden;
}
.contenner-section:hover{
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,.1);
}

.contenner-icon{
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #e6f4f1;
    color: var(--main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: -28px 0 0 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 6px 16px rgba(0,0,0,.12);
    transition: .3s ease;
}
.contenner-section:hover .contenner-icon{
    background: var(--main);
    color: #fff;
}

.contenner-section h2{
    margin-top: -10px;
}

.service-book-btn{
    display: inline-block;
    margin: 0 20px;
    padding: .7rem 1.6rem;
    background: transparent;
    color: var(--main);
    border: 2px solid var(--main);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    align-self: flex-start;
    transition: ease .3s;
}
.service-book-btn:hover{
    background: var(--main);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(20,186,247,.3);
    cursor: pointer;
}

@media (max-width: 768px){
    .service-book-btn{
        align-self: center;
        margin: 0 auto;
    }
    .contenner-icon{
        margin-left: auto;
        margin-right: auto;
        left: 0;
        right: 0;
    }
}




/* =====================================================
   Conditions dropdown in the main navbar.
   Shared across every page — linked after responsive.css.
   ===================================================== */

.nav-dropdown{
    position: relative;
}
.nav-dropdown-toggle{
    color: var(--text);
    font-size: 1.2rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    cursor: pointer;
}
.nav-dropdown-toggle i{
    font-size: .75rem;
    transition: transform .25s ease;
}
.nav-dropdown-toggle:hover{
    color: var(--main);
}
.nav-dropdown.open .nav-dropdown-toggle i{
    transform: rotate(180deg);
}

.nav-dropdown-menu{
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
    padding: .6rem 0;
    width: 220px;
    display: grid;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(8px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    z-index: 5000;
}

/* Desktop: hover to open */
@media (min-width: 769px){
    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown.open .nav-dropdown-menu{
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
}

.nav-dropdown-menu a{
    display: block;
    padding: .55rem 1.2rem;
    color: var(--text);
    font-size: .98rem;
    font-weight: 500;
}
.nav-dropdown-menu a:hover{
    background: #f6f0f0;
    color: var(--main);
}
.nav-dropdown-menu a.current{
    color: var(--main);
    font-weight: 700;
}

/* Mobile: click to open, full width, inline under the toggle */
@media (max-width: 768px){
    .nav-dropdown{
        width: 100%;
        text-align: center;
    }
    .nav-dropdown-toggle{
        justify-content: center;
        width: 100%;
        padding: 8px 0;
    }
    .nav-dropdown-menu{
        position: static;
        transform: none;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        background: #f9f9f9;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transition: max-height .3s ease;
    }
    .nav-dropdown.open .nav-dropdown-menu{
        max-height: 600px;
    }
    .nav-dropdown-menu a{
        padding: .65rem 0;
        border-top: 1px solid #eee;
    }
}
/* =====================================================
   contect.html additions — kept in its own file so
   base.css stays untouched.
   The Date + Time inputs deliberately do NOT get their
   own border/focus style — they inherit the exact same
   `form .form-content input` / `:focus` rules as every
   other field on this form (base.css), so they match
   Name/Email/Phone/Subject exactly. The only thing added
   here is a staggered fade-up entrance animation.
   ===================================================== */

.form-content.date-time-row input{
    opacity: 0;
    transform: translateY(16px);
    animation: contactFieldIn .6s ease forwards;
}
.form-content.date-time-row input#contectDate{
    animation-delay: .1s;
}
.form-content.date-time-row input#contectTime{
    animation-delay: .25s;
}
@keyframes contactFieldIn{
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tint the native calendar/clock icon so it doesn't look
   like a stray black icon against the site's color scheme. */
.form-content.date-time-row input::-webkit-calendar-picker-indicator{
    filter: invert(48%) sepia(78%) saturate(3207%) hue-rotate(166deg) brightness(101%) contrast(96%);
    cursor: pointer;
}

@media (max-width: 768px){
    .form-content.date-time-row{
        flex-direction: column;
    }
}
/* =====================================================
   Conditions dropdown in the main navbar.
   Shared across every page — linked after responsive.css.
   ===================================================== */

.nav-dropdown{
    position: relative;
}
.nav-dropdown-toggle{
    color: var(--text);
    font-size: 1.2rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    cursor: pointer;
}
.nav-dropdown-toggle i{
    font-size: .75rem;
    transition: transform .25s ease;
}
.nav-dropdown-toggle:hover{
    color: var(--main);
}
.nav-dropdown.open .nav-dropdown-toggle i{
    transform: rotate(180deg);
}

.nav-dropdown-menu{
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
    padding: .6rem 0;
    width: 220px;
    display: grid;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(8px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    z-index: 5000;
}

/* Desktop: hover to open */
@media (min-width: 769px){
    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown.open .nav-dropdown-menu{
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
}

.nav-dropdown-menu a{
    display: block;
    padding: .55rem 1.2rem;
    color: var(--text);
    font-size: .98rem;
    font-weight: 500;
}
.nav-dropdown-menu a:hover{
    background: #f6f0f0;
    color: var(--main);
}
.nav-dropdown-menu a.current{
    color: var(--main);
    font-weight: 700;
}

/* Mobile: click to open, full width, inline under the toggle */
@media (max-width: 768px){
    .nav-dropdown{
        width: 100%;
        text-align: center;
    }
    .nav-dropdown-toggle{
        justify-content: center;
        width: 100%;
        padding: 8px 0;
    }
    .nav-dropdown-menu{
        position: static;
        transform: none;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        background: #f9f9f9;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transition: max-height .3s ease;
    }
    .nav-dropdown.open .nav-dropdown-menu{
        max-height: 600px;
    }
    .nav-dropdown-menu a{
        padding: .65rem 0;
        border-top: 1px solid #eee;
    }
}

/* ---- "Book Now" button in the navbar ---- */
.nav-book-btn{
    display: inline-block;
    background: var(--main);
    color: #fff !important;
    padding: .55rem 1.4rem;
    border-radius: 50px;
    font-size: 1.02rem;
    font-weight: 600;
    white-space: nowrap;
    transition: ease .3s;
    box-shadow: 0 6px 16px rgba(20,186,247,.3);
}
.nav-book-btn:hover{
    background: var(--back);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(3,79,212,.35);
}
.nav-book-btn::before{
    display: none; /* don't inherit the underline-on-hover effect used by plain nav links */
}

@media (max-width: 768px){
    .nav-book-btn{
        display: block;
        margin: 10px auto 0;
        width: fit-content;
    }
}