@import url('https://fonts.googleapis.com/css2?family=Courgette&family=Handlee&family=Poppins&family=Roboto&family=Sigmar&family=Tangerine:wght@700&display=swap');

/*font-family: 'Courgette', cursive;
font-family: 'Handlee', cursive;
font-family: 'Poppins', sans-serif;
font-family: 'Roboto', sans-serif;
font-family: 'Sigmar', cursive;
font-family: 'Tangerine', cursive; */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

main {
    position: relative;
}
/* preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.loader {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #ff43b4;
    border-bottom: 16px solid #ff43b4;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}
#preloader h2{
    color: #140852;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* preloader end */
.logo-container {
    width: 100%;
    max-height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 0 100px;
    background: #fffdf9;
}

@media (max-width:500px) {
    .logo-container {
        padding: 0 10px;
        justify-content: space-between;
    }
}

.logo {
    max-width: 100px;
    padding-top: 10px;
}

.social-links i {
    font-size: 30px;
    margin: 0 10px;
    cursor: pointer;
    transition: 0.3s;
}

@media (max-width:500px) {
    .social-links i {
        font-size: 24px;
    }
}

.fa-instagram {
    color: #FF33FF;
}

.fa-facebook {
    color: #334CFF;
}

.fa-square-twitter {
    color: #479AE3;
}

.fa-youtube {
    color: #EC3606;
}

.social-links i:hover {
    transform: scale(1.2);
}

.navigation-menu {
    height: 100px;
    width: 100%;
    padding: 0 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #7BDBD6;

}

.logo-text {
    font-size: 60px;
    font-weight: bold;
    font-family: 'Tangerine', cursive, sans-serif;
    color: #ffffff;
    text-transform: capitalize;
    letter-spacing: 3px;
    cursor: pointer;
}

.hamburger {
    display: none;
}

.nav-bar ul {
    display: flex;
    list-style: none;
}

.nav-bar ul li a {
    position: relative;
    /* display: block; */
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    text-decoration: none;
    text-transform: capitalize;
    padding-bottom: 5px;
    margin: 0 10px;
    /* background: purple; */
    /* transition: 0.4s; */
}

.hover--effect::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: all 0.4s ease-out;
}

.hover--effect:hover::before {
    width: 100%;
}

.book-now {
    border: 1px solid #fff;
    padding: 5px 15px;
    border-radius: 4px;
    transition: .3s;
}

.book-now:hover {
    background: #fff;
    color: #000;
}

/* imageslider css start here */
.imageSlider {
    position: relative;
    /* margin: 0; */
    width: 100%;
    height: calc(100vh - 200px);
    background: url('../slider-img/3.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: changeImage 80s linear infinite;


}

@keyframes changeImage {
    5% {
        background: url('../slider-img/1.webp');
        background-size: cover;
        background-position: center;
    }

    10% {
        background: url('../slider-img/20.webp');
        background-size: cover;
        /* background-position: center; */
    }

    15% {
        background: url('../slider-img/2.webp');
        background-size: cover;
        background-position: center;
    }

    20% {
        background: url('../slider-img/19.webp');
        background-size: cover;
        background-position: center;
    }

    25% {
        background: url('../slider-img/3.webp');
        background-size: cover;
        background-position: center;
    }

    30% {
        background: url('../slider-img/18.webp');
        background-size: cover;
        background-position: center;
    }

    35% {
        background: url('../slider-img/4.webp');
        background-size: cover;
        background-position: center;
    }

    40% {
        background: url('../slider-img/17.webp');
        background-size: cover;
        background-position: center;
    }

    45% {
        background: url('../slider-img/5.webp');
        background-size: cover;
        background-position: center;
    }

    50% {
        background: url('../slider-img/16.webp');
        background-size: cover;
        background-position: center;
    }

    55% {
        background: url('../slider-img/6.webp');
        background-size: cover;
        background-position: center;
    }

    60% {
        background: url('../slider-img/15.webp');
        background-size: cover;
        background-position: center;
    }
    65% {
        background: url('../slider-img/7.webp');
        background-size: cover;
        background-position: center;
    }
    70% {
        background: url('../slider-img/14.webp');
        background-size: cover;
        background-position: center;
    }
    75% {
        background: url('../slider-img/8.webp');
        background-size: cover;
        background-position: center;
    }
    80% {
        background: url('../slider-img/13.webp');
        background-size: cover;
        background-position: center;
    }
    85% {
        background: url('../slider-img/9.webp');
        background-size: cover;
        background-position: center;
    }
    90% {
        background: url('../slider-img/12.webp');
        background-size: cover;
        background-position: center;
    }
    95% {
        background: url('../slider-img/10.webp');
        background-size: cover;
        background-position: center;
    }
    100% {
        background: url('../slider-img/11.webp');
        background-size: cover;
        background-position: center;
    }
}
.imageSlider.fade-out {
    opacity: 0;
}
/* @media (max-width:800px) {
    .imageSlider{
        height: 400px;
    }
} */
/* imageslider css end here */
.hero-container {
    position: relative;
    display: flex;
    min-height: 80vh;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 100px;
    background: url('../images/hero.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    /* transition: 0.3s ease-in-out; */
}

.hero-container-details {
    position: absolute;
    bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hero-container-details h1 {
    font-size: 34px;
    text-transform: capitalize;
    color: #00eaff;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 5px;
}

.hero-container-details a {
    margin-top: 20px;
    text-decoration: none;
    padding: 10px 20px;
    background: #09022b;
    font-size: 24px;
    color: #fff;
    text-transform: capitalize;
    transition: 0.3s ease-in-out;
}

/* section{
    width: 100%;
    padding: 30px;
    min-height: 100vh;
} */
/* therapy css start */
#therapy-container {
    min-height: 100vh;
    width: 100%;
    display: flex;
    background: url('../images/wave.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 10px 50px;
    font-family: 'Roboto', sans-serif;
}

.therapy-list-box {
    width: 50%;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 100px;
}

.left-box {
    row-gap: 250px;
}

.right-box {
    row-gap: 200px;
}

.therapy-box {
    width: 100%;
    max-width: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 20px;
    padding: 10px 20px;
    box-shadow: 0 5px 5px 3px rgba(0, 0, 0, 0.3);
}

.therapy-header {
    font-size: 78px;
    font-weight: bold;
    position: relative;
}

.therapy-header::before {
    content: 'Solution for every problem';
    position: absolute;
    top: -20px;
    left: 0;
    background: #E8F41A;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    word-spacing: 5px;
    font-weight: bold;
}

.therapy-box .image {
    width: 380px;
    max-width: 100%;
    object-fit: cover;
}

.therapy-box h2 {
    font-size: 38px;
    text-transform: capitalize;
    font-weight: bold;
}

.therapy-box p {
    font-size: 20px;
    line-height: 25px;
    letter-spacing: 1px;
    /*position:relative;*/
    /*color: #07106D;*/
}
.therapy-box p i{
    color: red;
}

.therapy-btn {
    font-size: 24px;
    text-decoration: none;
    padding: 8px 16px;
    color: #0e0641;
    border: 1px solid #0e0641;
    text-transform: capitalize;
    font-weight: bold;
}

.therapy-btn i {
    margin-left: 5px;
    transition: 0.3s ease-in-out;
}

.therapy-btn:hover i {
    transform: translateX(10px);
    color: #ff052f;
}

@media (max-width:900px) {
    #therapy-container {
        flex-direction: column;
        padding: 0 10px;
        align-items: center;
    }

    .therapy-list-box {
        width: calc(100% - 20px);
        padding-top: 60px;
    }

    .therapy-box h2 {
        font-size: 34px;
    }

    .left-box,
    .right-box {
        row-gap: 30px;
    }

    .therapy-header {
        font-size: 48PX;
    }
}

/* therapy css end */
.message {
    min-height: 60vh;
    padding: 20px 180px;
    margin-bottom: 50px;
    position: relative;
}

@media (max-width:900px) {
    .message {
        padding: 20px;
    }
}

.message h2 {
    font-size: 38px;
    font-weight: bold;
    font-family: 'Handlee', cursive, sans-serif;
}

.message p {
    font-size: 20px;
    font-family: 'Handlee', cursive, sans-serif;
    letter-spacing: 1px;
    text-align: justify;
    color: #000;
    position: relative;
}

.message p::before {
    content: "";
    position: absolute;
    top: 0;
    left: -10px;
    width: 3px;
    height: 100%;
    background: #FA8383;
}

.message .message-box {
    box-shadow: 0 0 10px 3px #0E4388;
    padding: 20px 40px;
    margin-top: 15px;

}

.message-btn {
    padding: 5px 12px;
    font-size: 16px;
    font-family: 'Handlee', cursive, sans-serif;
    background: #FA8383;
    color: #fff;
    text-decoration: none;
}

.message-btn i {
    margin-left: 10px;
    transition: 0.3s ease-in-out;
}

.message-btn:hover i {
    transform: translateX(10px);
}

@media (max-width:500px) {
    .hero-container {
        padding: 40px;
    }

    .hero-container-details h1 {
        font-size: 28px;
    }

    .hero-container a {
        font-size: 18px;
        padding: 8px 16px;
    }
}

.hero-container a i {
    margin-left: 10px;
    color: #FFB3B3;
    transition: 0.3s ease-in-out;
    animation: shaking 2s infinite ease-in-out;
}

@keyframes shaking {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(15px);
    }
}

.hero-container a:hover {
    background: #13045f;
}

.hero-header-span {
    color: #ffffff;
    background: #09022b;
    padding: 0 10px;
    border-radius: 4px;
}


.container {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #10b987;
    position: relative;
}

.container::before {
    content: '';
    position: absolute;
    top: -18%;
    left: 0;
    /* display: block; */
    background: url('../images/wave-message1.png');
    width: 100%;
    height: 100%;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial {
    position: relative;
    max-width: 900px;
    width: 100%;
    overflow: hidden;
    padding: 50px 0;
}

.testimonial .image {
    height: 170px;
    width: 170px;
    object-fit: cover;
    border: 5px solid #fff;
    border-radius: 50%;
}

.testimonial .slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 10px;
}

.slide p {
    padding: 60px 160px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    text-transform: none;
    text-align: center;

}

.slide .fa-quote-left {
    color: #ffd000;
    font-size: 48px;
}

.slide .details {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slide .name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.slide .address {
    font-size: 16px;
    font-weight: 400;
    color: #333;
}

/* swiper button css */

.nav-btn {
    height: 40px !important;
    width: 40px !important;
    border-radius: 50%;
    transform: translateY(30px);
    background: rgba(0, 0, 0, 0.1);
}

.nav-btn::after,
.nav-btn::before {
    font-size: 20px !important;
    color: #fff;
}

.swiper-pagination-bullet {
    background: #160909 !important;
    height: 15px !important;
    width: 15px !important;
}

.swiper-pagination-bullet-active {
    background: #ffd000 !important;
}

.doctor-intro {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 50px;
    font-family: 'Roboto', sans-serif;
    position: relative;
}

.doctor-intro::after {
    content: '';
    position: absolute;
    background: url('../images/wave-doctor.png');
    background-repeat: no-repeat;
    background-size: cover;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.doctor-intro img {
    width: 50%;
    max-width: 450px;
    /* height: 450px; */
    /* object-fit: cover; */
    border-radius: 4px;
    box-shadow: 0 0 20px #04ffea;
}

.doctor-intro-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 50%;
    padding-left: 60px;
}

.doctor-intro-header {
    font-size: 58px;
    font-weight: bold;
}

.degree {
    font-size: 14px;
    font-weight: bold;
    background: #065282;
    padding: 5px 8px;
    border-radius: 15px;
    color: #ffffff;
    text-transform: uppercase;
}

.doctor-intro-content p {
    font-size: 16px;
    word-spacing: 2px;
    margin-top: 10px;
    line-height: 25px;
}

.doctor-intro-btn {
    text-decoration: none;
    margin-top: 20px;
    margin-bottom: 10px;
    background: #000;
    color: #fff;
    padding: 10px 20px;
    transition: 0.3s ease-in-out;
}

.doctor-intro-btn:hover {
    color: #9c9999;
}

/* mission and vision css */
.mission-vision {
    min-height: 60vh;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 50px 100px;
    background: url('../images/mis.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* background: #061f25; */
}

.mission-vision h2 {
    margin-bottom: 20px;
    font-size: 44px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #c6dddf;
    text-align: center;
    font-family: 'Sigmar', cursive, sans-serif;
    font-weight: bold;
}

.mission-vision div {
    width: 100%;
    max-width: 700px;
    font-size: 22px;
    font-weight: 400;
    color: #c4e2de;
    padding: 10px 20px;
    box-shadow: 0 5px 10px 0 #c6dddf;
    font-family: 'Roboto', sans-serif;
    background: rgba(0, 0, 0, 0.6);
    word-spacing: 5px;
}

@media (max-width:678px) {
    .mission-vision {
        padding: 20px;
    }

    .mission-vision h2 {
        font-size: 38px;
    }
}

/* contact css */
.contact-box {
    min-height: 50vh;
    width: 100%;
    padding: 100px 200px;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    background: #479e9e;
    position: relative;
    z-index: 2;
}

.fa-sharp {
    position: absolute;
    top: 10px;
    left: 50%;
    color: #fffc48;
    font-size: 50px;

}

/* .contact-box::after{
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    background: url('../images/wave-contact.png');
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    z-index: -1;
} */
.contact-box-header {
    font-family: 'Roboto', sans-serif;
    font-size: 30px;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    border-radius: 5px;
    color: #f0e2e2;
    text-transform: capitalize;
}

.contact-box-header i {
    color: #fffc48;
}

.contact-now-btn {
    margin-left: 80px;
    text-decoration: none;
    background: #13ebe0;
    font-size: 30px;
    color: #574646;
    padding: 10px 20px;
    border-radius: 4px;
    transition: 0.3s ease-in-out;
}

.contact-now-btn:hover {
    box-shadow: 0 1px 15px 5px #ffec43;
}
.important{
    font-size: 16px;
    background: #d1697a;
    padding: 2px 4px;
    border-radius: 3px;
    color: #000;
}
@media (max-width:998px) {
    .contact-box {
        flex-direction: column;
        padding: 0 20px;
        justify-content: center;
    }

    .contact-now-btn {
        margin-left: 0;
        margin-top: 60px;
    }

    .contact-box-header {
        font-size: 24px;
        text-align: center;
    }

    .contact-box-header i {
        transform: rotate(90deg);
    }
}

@media (max-width:768px) {
    .doctor-intro::after {
        background-position: center;
    }

    .doctor-intro {
        flex-direction: column;
        padding: 10px 20px;
    }

    .doctor-intro img {
        min-width: 100%;
        max-width: 450px;
    }

    .doctor-intro-content {
        width: 100%;
        padding-left: 0px;
    }

    .doctor-intro-header {
        font-size: 38px;
    }

}

@media (max-width:768px) {

    .slide p {
        padding: 0 20px;
    }

    .nav-btn {
        display: none !important;
    }

}

@media (max-width:1320px) {
    .navigation-menu {
        padding: 0 50px;
    }
}

@media (max-width:1100px) {
    .navigation-menu {
        padding: 0 30px;
    }
}

@media (max-width:900px) {
    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger .line {
        height: 2px;
        background: #ffffff;
        margin: 8px 0px;
        transition: 0.3s ease-in-out;
    }

    .one {
        width: 30px;
    }

    .two {
        width: 20px;
    }

    .three {
        width: 10px;
    }

    .nav-bar {
        height: calc(100% - 200px);
        position: absolute;
        top: 200px;
        left: -100%;
        right: 0;
        width: 100%;
        background: url('../images/navigation-bg.webp');
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        transition: 0.5s ease-in-out;
        z-index: 10;
    }

    .nav-bar ul {
        display: block;
        width: fit-content;
        margin: 80px auto 0 auto;
        text-align: center;
    }

    .nav-bar ul li {
        margin: 16px;
    }

    .nav-bar.active {
        left: 0;
    }

    .hamburger.change-icon {
        position: relative;
    }

    .hamburger.change-icon .two {
        visibility: hidden;
    }

    .hamburger.change-icon .one {
        position: absolute;
        top: 0;
        left: 0;
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .hamburger.change-icon .three {
        width: 30px;
        position: absolute;
        top: 0;
        left: 0;
        transform: translate(-50%, -50%) rotate(-45deg);
    }
}

@media (max-width:580px) {
    .navigation-menu {
        padding: 0 10px;
    }

    .logo-text {
        font-size: 30px;
    }
}