﻿.page-banner {
    margin-top: -128px;
    padding: 120px 0 7px;
    background: linear-gradient( 135deg, #051937, #082A5A );
    position: relative;
    overflow: hidden;
}

    /* Glow */

    .page-banner::before {
        content: '';
        position: absolute;
        width: 450px;
        height: 450px;
        border-radius: 50%;
        background: #20C997;
        filter: blur(150px);
        opacity: .15;
        top: -150px;
        right: -100px;
    }

.banner-wrapper {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 50px;
    padding: 40px 0 0 40px;
    align-items: center;
}

.banner-badge {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 50px;
    background: rgba(255,255,255,.08);
    color: #20C997;
    border: 1px solid rgba(255,255,255,.1);
    margin-bottom: 25px;
}

.banner-content h1 {
    color: #fff;
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 25px;
}

    .banner-content h1 span {
        color: #20C997;
    }

.banner-content p {
    color: #D8E8FF;
    max-width: 550px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.breadcrumb-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 25px;
    border-radius: 50px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(15px);
}

    .breadcrumb-box a {
        color: #fff;
        text-decoration: none;
    }

    .breadcrumb-box span:last-child {
        color: #20C997;
    }

.banner-image {
    text-align: center;
}

    .banner-image img {
        width: 100%;
        margin-bottom: -20px;
        max-width: 450px;
        animation: floatDoctor 5s ease-in-out infinite;
    }

@keyframes floatDoctor {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.banner-content {
    animation: slideLeft 1s ease forwards;
}

.banner-image {
    animation: slideRight 1s ease forwards;
}

@keyframes slideLeft {

    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {

    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* Responsive */

@media(max-width:991px) {

    .banner-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0px;
        gap: 0px;
    }

    .banner-content p {
        margin: auto auto 35px;
    }

    .banner-image img {
        margin-bottom: -90px;
    }

    .banner-content h1 {
        font-size: 52px;
    }

    .banner-image {
        margin-top: 30px;
    }
}

@media(max-width:576px) {

    .page-banner {
        padding: 150px 0 60px;
    }

    .banner-content h1 {
        font-size: 38px;
    }
}

.banner-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient( rgba(255,255,255,.03) 1px, transparent 1px ), linear-gradient( 90deg, rgba(255,255,255,.03) 1px, transparent 1px );
    background-size: 60px 60px;
    animation: gridMove 12s linear infinite;
    pointer-events: none;
}

@keyframes gridMove {

    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(60px);
    }
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .25;
    animation: floatGlow 8s ease-in-out infinite;
}

.glow-1 {
    width: 300px;
    height: 300px;
    background: #20C997;
    top: 10%;
    left: -100px;
}

.glow-2 {
    width: 350px;
    height: 350px;
    background: #0D6EFD;
    right: -100px;
    top: 20%;
    animation-delay: 2s;
}

.glow-3 {
    width: 250px;
    height: 250px;
    background: #22D3EE;
    bottom: -80px;
    left: 40%;
    animation-delay: 4s;
}

@keyframes floatGlow {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-40px);
    }

    100% {
        transform: translateY(0px);
    }
}

.premium-contact {
    padding: 60px 0;
    background: #f8fafc;
    position: relative;
}

/* GRID */

.contact-grid {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 40px;
}
/* ==========================
   ABOUT US SECTION
========================== */

.about-us {
    padding: 70px 0;
    background: #ffffff;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image {
    position: relative;
}

    .about-image img {
        width: 100%;
        border-radius: 30px;
        display: block;
        box-shadow: 0 20px 50px rgba(0,0,0,.08);
    }

.experience-box {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: linear-gradient( 135deg, #0A4EA3, #2563eb );
    color: #fff;
    padding: 25px 35px;
    border-radius: 20px;
    text-align: center;
}

    .experience-box h3 {
        font-size: 40px;
        margin-bottom: 5px;
    }

.section-badge {
    display: inline-block;
    padding: 10px 20px;
    background: #E8FFF7;
    color: #20C997;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-content h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #081B3D;
    margin-bottom: 20px;
}

    .about-content h2 span {
        display: block;
        color: #20C997;
    }

.about-content p {
    color: #64748B;
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.feature-item {
    background: #F8FBFF;
    border: 1px solid #E6EEF7;
    padding: 16px 20px;
    border-radius: 15px;
    font-weight: 600;
    color: #081B3D;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    padding: 0 35px;
    border-radius: 50px;
    background: linear-gradient( 135deg, #0A4EA3, #2563eb );
    color: #fff;
    font-weight: 600;
}
/* ==========================
   TABLET
========================== */

@media(max-width:991px) {

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-content {
        text-align: center;
    }

        .about-content h2 {
            font-size: 42px;
        }

    .about-features {
        grid-template-columns: 1fr 1fr;
    }

    .experience-box {
        right: 20px;
    }
}

/* ==========================
   MOBILE
========================== */

@media(max-width:767px) {

    .about-us {
        padding: 70px 0;
    }

    .about-content h2 {
        font-size: 32px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .experience-box {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 20px;
        width: 100%;
    }

        .experience-box h3 {
            font-size: 32px;
        }
}
/* ==========================
   WHY CHOOSE US
========================== */

.why-choose {
    padding: 70px 0;
    background: #F8FBFF;
}

.section-title-center {
    text-align: center;
    max-width: 1100px;
    margin: auto;
    margin-bottom: 70px;
}

    .section-title-center h2 {
        font-size: 52px;
        color: #081B3D;
        margin: 20px 0;
    }

        .section-title-center h2 span {
            color: #20C997;
        }

    .section-title-center p {
        color: #64748B;
        line-height: 1.8;
    }

.choose-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.choose-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 25px;
    text-align: center;
    transition: .4s;
    border: 1px solid #E8EEF6;
}

    .choose-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,.08);
    }

.choose-icon {
    width: 80px;
    height: 80px;
    margin: auto auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    background: linear-gradient( 135deg, #0A4EA3, #2563eb );
    border-radius: 20px;
    color: #fff;
}

.choose-card h3 {
    color: #081B3D;
    margin-bottom: 15px;
}

.choose-card p {
    color: #64748B;
    line-height: 1.8;
}
@media(max-width:991px) {

    .choose-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:767px) {

    .choose-grid {
        grid-template-columns: 1fr;
    }

    .section-title-center h2 {
        font-size: 34px;
    }
}
/* ==========================
   MISSION & VISION
========================== */

.mission-vision {
    padding: 0 0 70px;
    background: #fff;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.mv-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    border: 1px solid #E8EEF6;
    transition: all .4s ease;
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

    .mv-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(0,0,0,.08);
    }

    .mv-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, #0D6EFD, #20C997);
    }

.mv-icon {
    width: 90px;
    height: 90px;
    min-width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
    border-radius: 25px;
    background: linear-gradient( 135deg, #0A4EA3, #2563eb );
}

.mv-content {
    flex: 1;
}

.mv-card h3 {
    font-size: 32px;
    font-weight: 700;
    color: #081B3D;
    margin: 0 0 15px;
    line-height: 1.2;
}

.mv-card p {
    margin: 0;
    color: #64748B;
    font-size: 16px;
    line-height: 1.9;
}

/* ==========================
   TABLET
========================== */

@media (max-width: 991px) {

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .mv-card h3 {
        font-size: 28px;
    }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 767px) {

    .mission-vision {
        padding: 0 0 50px;
    }

    .mv-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 25px;
    }

    .mv-icon {
        width: 80px;
        height: 80px;
        min-width: 80px;
        font-size: 34px;
    }

    .mv-card h3 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .mv-card p {
        font-size: 15px;
        line-height: 1.8;
    }
}
/*=========================
 FAQ SECTION
=========================*/

.premium-faq-section {
    padding: 60px 0;
    background: #fff;
}

/*=========================
 GRID
=========================*/

.faq-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 60px;
    align-items: start;
}

/*=========================
 LEFT SIDE
=========================*/
.faqsection-title {
    font-size: 42px;
}

.faq-content {
    background: linear-gradient( 135deg, #071c4d, #0A4EA3 );
    padding: 30px;
    border-radius: 30px;
    position: sticky;
    top: 60px;
}

    .faq-content .section-tag {
        background: rgba(255,255,255,.12);
        color: #fff;
    }

    .faq-content .faqsection-title {
        color: #fff;
        margin-top: 20px;
    }

        .faq-content .faqsection-title span {
            color: #27d9d2;
        }

    .faq-content p {
        color: rgba(255,255,255,.8);
        line-height: 1.9;
        margin-top: 20px;
    }

/*=========================
 SUPPORT CARD
=========================*/

.faq-support-card {
    margin-top: 35px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    gap: 20px;
}

.support-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: rgba(39,217,210,.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .support-icon i {
        color: #27d9d2;
        font-size: 28px;
    }

.support-content h4 {
    color: #fff;
    margin-bottom: 8px;
}

.support-content p {
    margin: 0;
    font-size: 14px;
}

/*=========================
 BUTTON
=========================*/

.faq-contact-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 35px;
    background: #27d9d2;
    color: #081B3D;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: .4s;
}

    .faq-contact-btn:hover {
        background: #fff;
        color: #081B3D;
    }

/*=========================
 RIGHT SIDE
=========================*/

.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/*=========================
 FAQ ITEM
=========================*/

.faq-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #edf2f7;
    transition: .4s;
}

    .faq-item.active {
        box-shadow: 0 15px 40px rgba(10,78,163,.08);
    }

.faq-question {
    width: 100%;
    background: #fff;
    border: none;
    padding: 28px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #081B3D;
}

    .faq-question span {
        font-size: 28px;
        color: #27d9d2;
    }

.faq-answer {
    padding: 0 30px 28px;
    color: #64748b;
    line-height: 1.9;
}

/*=========================
 HOVER
=========================*/

.faq-item:hover {
    transform: translateY(-3px);
}

/*=========================
 RESPONSIVE
=========================*/

@media(max-width:991px) {

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-content {
        position: static;
    }
}

@media(max-width:767px) {

    .premium-faq-section {
        padding: 60px 0;
    }

    .faq-content {
        padding: 30px;
    }

    .faq-question {
        font-size: 16px;
        padding: 22px;
    }

    .faq-answer {
        padding: 0 22px 22px;
    }
}

