@import url('https://fonts.googleapis.com/css2?family=Teachers:ital,wght@0,400..800;1,400..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #2f7cba;
    --text-color: #000;
}

.text-success {
    color: #2f7cba !important;
}

/* -----------------------
SCROLLBAR CSS
--------------------------*/

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 7px;
}

::selection {
    background-color: var(--primary-color);
    color: #FFF;
}

body {
    font-family: "Teachers", sans-serif;
    background: radial-gradient(circle, rgb(204, 255, 214) 0%, white 100%);
}

a {
    text-decoration: none;
    outline: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

p {
    font-weight: 300;
}

/* -----------------------
BACK TO TOP BUTTON CSS
--------------------------*/
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 15px;
    background-color: #000b14;
    color: white;
    border: 1px solid #5a5a5a4a;
    border-radius: 5px;
    display: none;
    cursor: pointer;
    z-index: 1000;
    transition: .3s;
}

.back-to-top i {
    font-size: 20px;
}

.back-to-top:hover {
    background-color: var(--primary-color);
}



/* -----------------------
HEADER CSS
--------------------------*/

header {
    position: absolute;
    left: 0;
    top: 0px;
    width: 100%;
    z-index: 9;
    height: auto;
}

.header-topbar {
    position: relative;
    padding: 10px 0 0;
    border-bottom: 1px solid rgba(228, 235, 241, 0.07);
}

/* -----------------------
NAVBAR CSS
--------------------------*/

#mainNavbar {
    transition: top 0.3s ease-in-out;
    z-index: 1030;
    background-color: #FFF;
    padding: 0 !important;
}

.navbar-brand {
    color: var(--text-color);
}

.navbar-brand:hover {
    color: var(--primary-color);
}

.navbar-brand-logo {
    width: 140px;
}

.nav-link {
    color: var(--text-color);
    font-size: 18px;
    font-weight: 500;
    transition: .5s;
}

.nav-link:focus,
.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover {
    border-bottom: 1px solid #242424;
    color: var(--primary-color);
}

.navbar-nav .nav-link.show {
    color: var(--primary-color);
}

.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.nav-item {
    padding: 0 10px;
}

.nav-item .active {
    border-bottom: 1px solid #242424;
    border-radius: 3px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.5px var(--primary-color);
    border-radius: 0;
}

.bx-menu {
    color: var(--text-color);
}

.navbar-toggler {
    border: 0;
}

.con-btn {
    display: flex;
    padding: 2px;
    border-radius: 3px;
    overflow: hidden;
    transition: 0.3s ease all;
}

.con-btn:hover {
    transform: scale(0.9);
}

.con-btn a {
    color: var(--text-color);
    line-height: unset;
    background: transparent;
    padding: 8px 1.5rem;
    font-weight: 500;
    border-radius: 2px;
    border: 1px solid var(--primary-color);
}

/* -----------------------
BANNER CSS
--------------------------*/
section.banner-bg {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 0 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-align: center;

    background-image: url("../home.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

section.banner-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(255 255 255 / 16%);
    /* adjust darkness */
    z-index: -1;
}

section.banner-bg>* {
    position: relative;
    z-index: 2;
}

.content {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.content h6,
i {
    color: #000;
}

.heading h1 {
    font-size: 60px;
    font-weight: 900;
    color: #000;
}

.heading h1 span {
    color: var(--primary-color);
}

.heading h4 {
    color: var(--text-color);
    margin-top: 15px;
}

.point {
    padding: 25px 0;
}

.point ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding-left: 0;
    list-style: none;
}

.point li {
    font-size: 18px;
    color: var(--text-color);
}

.btn-1 a {
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    background-color: var(--primary-color);
    transition: 0.5s;
    display: inline-block;
    font-weight: 600;
}

.btn-1 a:hover {
    color: #FFF;
    background-color: var(--text-color);
}


/* -----------------------
ABOUT CSS
--------------------------*/

.about-bg {
    background-color: #f9f9f9;
}

.about-con h4 {
    font-size: 36px;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    overflow: hidden;
    font-weight: 700;
}

.about-con h4::after {
    content: "";
    display: block;
    height: 3px;
    background: var(--primary-color);
    width: 0;
    margin: 10px auto 0;
    animation: underlineGrow 1s ease-out forwards;
}

@keyframes underlineGrow {
    from {
        width: 0;
    }

    to {
        width: 120px;
    }
}

.about-con h4 span {
    color: var(--primary-color);
}

.about-con p {
    color: var(--text-color);
    font-size: 18px;
    line-height: 1.6;
}

.about-con ul {
    padding: 0;
    margin-top: 15px;
    list-style: none;
}

.about-con li {
    font-size: 18px;
    color: var(--text-color);
    padding: 6px 0;
}

.about-img img {
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.about-img img:hover {
    transform: scale(1.03);
}

.about-img {
    padding: 15px;
}


/* -----------------------
IMPACT CSS
--------------------------*/

.our-impact-section {
    font-family: 'Poppins', sans-serif;
}

.impact-card {
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.impact-icon i {
    transition: transform 0.3s;
}

.impact-card:hover .impact-icon i {
    transform: scale(1.2) rotate(10deg);
}

.impact-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2f7cba;
}

.impact-text {
    font-size: 15px;
    color: #555;
}

.feature-card {
    background: #fff;
    transition: 0.3s ease;
    border: 1px solid #eee;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(100px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.process-card {
    background: #fff;
    border: 1px solid #eee;
    transition: 0.3s ease;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.step-icon {
    font-size: 40px;
}

.program-card-v2 {
    border: 1px solid #eee;
    transition: 0.3s ease;
    background: #fff;
}

.program-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

/* -----------------------
Wellness Programs CSS
--------------------------*/
.wellness-programs h2 span {
    color: #2f7cba;
}

.program-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.program-card i {
    font-size: 2.5rem;
    color: #2f7cba;
    margin-bottom: 15px;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.program-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.why-choose-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.why-choose-list span {
    background: #eaf7ee;
    padding: 10px 18px;
    border-radius: 25px;
    font-weight: 500;
}


/* -----------------------
EXPERTIES CSS
--------------------------*/
.card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 7px;
    padding: 25px 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.card h2::after {
    display: block;
    margin-top: 0.5em;
    content: '';
    border-bottom: 1px solid #0000004a;
}

.card h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 17px;
}

.card p {
    color: 000;
    line-height: 1.6;
}

.button {
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.terms-section {
    margin-top: 90px;
}

.policy-section {
    margin-top: 90px;
}

.contact-section {
    margin-top: 150px;
}

.testimonial-contact- {
    background: linear-gradient(358deg, #ffffff, lightblue);
}

.testimonial-contact-section .testimonial-item {
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.testimonial-contact-section .testimonial-name {
    font-weight: 600;
    margin-top: 15px;
    color: var(--primary-color);
}

.testimonial-contact-section .testimonial-role {
    font-size: 14px;
    color: #777;
}

.testimonial-contact-section .testimonial-text {
    font-style: italic;
    font-size: 1rem;
    color: #333;
}

.footer {
    background-color: #111;
    font-size: 14px;
}

.footer a {
    text-decoration: none;
}

.carousel-indicators {
    margin-bottom: 0rem;
}


/* -----------------------
TESTONMIALS CSS
--------------------------*/
.sec-pad {
    padding: 60px 0 0;
    margin: 50px 0;
}

.contact-sec {
    align-items: center;
    display: flex;
}

.contact-sec .contact-ul li,
.contact-ul b {
    font-size: 20px;
    margin: 10px 0;
}

.contact-sec .contact-ul i {
    font-size: 18px;
    padding: 10px;
    margin-right: 10px;
    border-radius: 50%;
}

.contact-detail span {
    width: 400px;
    display: flex;
    justify-content: center;
}

.contact-detail span a {
    font-size: 20px;
    padding: 6px 12px;
    border-radius: 50%;
    margin: 0px 5px;
}

.inptFld {
    width: 100%;
    height: 40px;
    border: 0;
    margin: 0 0 20px;
    border-radius: 3px;
    padding: 0 20px;
    font-size: 16px;
    color: #000;
}

.inptFld:focus {
    outline: 1px solid var(--primary-color);
}

.contFrm textarea {
    height: 75px;
    padding-top: 5px;
}

.inptBtn {
    height: 50px;
    border: 0;
    background: #00b055;
    font-size: 14px;
    color: #000;
    margin: auto;
    letter-spacing: 1px;
    cursor: pointer;
    width: 100%;
    max-width: 150px;
}

@media (max-width: 991px) {
    .sec-pad {
        padding: 20px 0 0px;
    }

    .contact-sec .contact-ul li,
    .contact-ul b {
        font-size: 16px;
    }

    .contact-sec .contact-ul i {
        font-size: 14px;
        padding: 6px;
        margin-right: 6px;
    }

    .inptFld {
        height: 40px;
        margin: 0 0 10px;
        padding: 0 14px;
        font-size: 14px;
    }
}



/* -----------------------
MEDIA QUERY // Small devices (landscape phones, 576px and up)
--------------------------*/
@media (max-width: 576px) {
    .header-topbar {
        display: none;
    }

    section.banner-bg {
        min-height: 400px;
        padding: 80px 0 0;
    }

    .heading h1 {
        font-size: 35px;
    }

    .heading h4 {
        font-size: 15px;
    }

    .social-icons {
        display: none;
    }

    .point ul {
        flex-direction: column;
    }

    .about-img img {
        width: 300px;
    }

    ol,
    ul {
        padding-left: 0;
    }

    .sec-pad {
        padding: 20px 40px;
    }
}

/* -----------------------
MEDIA QUERY // Medium devices (tablets, 768px and up)
--------------------------*/
@media only screen and (min-width: 426px) and (max-width: 768px) {}