* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --accent: #625cf3;
    --accent-hover: #7a75ff;
    --heading: #11164d;
    --text: #66708f;
    --white: #ffffff;
    --hero-left: #232163;
    --hero-right: #14124b;
    --line: rgba(255, 255, 255, 0.14);
}

body {
    font-family: "Roboto Slab", serif !important;
    background: #ffffff;
    color: var(--heading);
}

a {
    text-decoration: none !important;
    color: inherit !important;
}

img {
    display: block;
    max-width: 100%;
}

.main-navbar {
    background: var(--white);
    border-bottom: 1px solid #eef1f8;
}

.brand-logo {
    color: var(--heading);
    font-size: 2rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.brand-logo span {
    color: var(--accent);
    font-style: italic;
    font-weight: 600;
}

.main-navbar .nav-link {
    color: var(--heading);
    font-size: 1rem;
    font-weight: 500;
}

.main-navbar .nav-link.active,
.main-navbar .nav-link:hover {
    color: var(--accent);
}

.main-navbar .navbar-toggler {
    background: rgba(98, 92, 243, 0.1);
    border-radius: 12px;
    padding: 10px 12px;
}

.main-navbar .navbar-toggler-icon {
    filter: contrast(0.3);
}

.main-navbar {
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

/* LOGO */

/* LEFT SPACE */
.main-navbar {
    background: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.nav-brand-custom {
    padding: 0;
    display: flex;
    align-items: center;
}

.nav-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* MENU CENTER */

.navbar-nav {
    align-items: center;
}
/* TOP HEADER START */

.top-header {
    background: #4e8be8;
    padding: 8px 0;
    font-size: 14px;
}

.top-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact a {
    color: #fff !important;
    margin-right: 18px !important;
    text-decoration: none;
}

.top-contact i {
    margin-right: 6px;
}

.top-social a {
    color: #fff !important;
    margin-left: 14px !important;
    font-size: 15px !important;
    transition: 0.3s !important;
}

.top-social a:hover {
    color: #ffd43b !important;
}

/* PHONE RESPONSIVE */

@media (max-width: 992px) {
    .top-flex {
        flex-direction: column;
        text-align: center;
    }

    .top-contact {
        display: flex;
        flex-direction: row; /* ⭐ column hata diya */
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap; /* ⭐ space kam hua to next line */
    }

    .top-social {
        display: none;
    }
}

/* TOP HEADER END */
/* NAV LINK */

.nav-link {
    font-weight: 500;
    color: #111;
    padding: 8px 10px;
}

.nav-link:hover,
.nav-link.active {
    color: #6c63ff;
}

.service-dropdown {
    max-height: 420px;
    overflow-y: auto;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 20px 40px rgba(60, 131, 212, 0.08);
    border: none;
}

.service-dropdown .dropdown-item {
    padding: 10px 15px;
    font-size: 15px;
    border-radius: 8px;
    transition: 0.3s;
}

.service-dropdown .dropdown-item:hover {
    background: #6c63ff;
    color: white;
}
#call-now-btn {
    color: black !important;
    font-weight: 600;
}

#call-now-btn:hover {
    text-decoration: none;
}

.all-service-item {
    background: #2a2f73;
    color: #fff !important;
    font-weight: 600;
    border-radius: 8px;
}

.all-service-item:hover {
    background: #2a2f73;
    color: #fff;
}

/* HELP */

.nav-help {
    gap: 12px;
}

.nav-help-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #6c63ff;
    color: #fff;
}

/* MOBILE */

@media (max-width: 992px) {
    .navbar-collapse {
        padding-top: 15px;
    }

    .nav-logo {
        width: 100px;
        height: 100px;
    }

    .nav-help {
        margin-top: 15px;
        justify-content: start;
    }
}
/* ================= HERO ================= */

.hero-section {
    position: relative;
    padding: 60px 0 50px;
    background: linear-gradient(90deg, #1d1f5f 0%, #0a0c3f 100%);
    overflow: hidden;
}

/* TITLE */

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 1px !important;
}

/* TEXT */

.hero-text {
    margin-top: 24px;
    opacity: 0.85;
    max-width: 560px;
    line-height: 1.7;
}

/* STATS */

.hero-stats {
    margin-top: 42px;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stats h2 {
    font-weight: 700;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin: 0;
}

.hero-stats small {
    display: block;
    margin-top: 10px;
    opacity: 0.9;
}

/* BUTTON */

.hero-buttons {
    margin-top: 42px;
}

/* IMAGE */

.hero-media-wrap {
    position: relative;
    max-width: 520px;
    margin-left: auto;
}

.hero-img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 34px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

/* FLOAT CARD */

.rating-card {
    position: absolute;
    left: -55px;
    bottom: 140px;
    background: #fff;
    color: #111;
    padding: 22px;
    width: 260px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* BOTTOM BAR */

.bottom-bar {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -70px;
    width: min(1180px, 90%);
    background: #fff;
    padding: 30px 36px;
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.bottom-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    flex-wrap: wrap;
}

/* ICON */

.icon-box {
    width: 62px;
    height: 62px;
    background: #6c63ff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 22px;
}

/* ================= ABOUT ================= */

.about-section {
    padding: 90px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-media {
    position: relative;
}

.main-image-card {
    max-width: 560px;
    border-radius: 34px;
    overflow: hidden;
}

.main-image-card img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* EXPERIENCE CARD */

.experience-card {
    position: absolute;
    right: -10px;
    bottom: -10px;
    width: 200px;
    height: 210px;
    border: 12px solid #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.experience-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(
        180deg,
        rgba(20, 25, 90, 0.3),
        rgba(20, 25, 90, 0.8)
    );
    color: #fff;
    text-align: center;
    padding: 20px;
}

.experience-overlay h3 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.experience-overlay p {
    margin-top: 10px;
    font-size: 0.95rem;
    max-width: 120px;
}

/* TAG */

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #6c63ff;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.15em;
}
@media (max-width: 992px) {
    .experience-card {
        display: none;
    }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .hero-section {
        padding: 60px;
    }

    .hero-media-wrap {
        margin: auto;
    }

    .rating-card {
        position: static;
        margin-top: 20px;
    }

    .bottom-bar {
        position: static;
        transform: none;
        margin-top: 60px;
        width: 100%;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .main-image-card img {
        height: 450px;
    }
}

.about-content h2 {
    max-width: 560px;
    margin-top: 24px;
    color: var(--heading);
    font-size: 3rem;
    line-height: 1.05;
    letter-spacing: -0.04em;
    font-weight: 800;
}

.about-text {
    max-width: 560px;
    margin-top: 28px;
    color: var(--text);
    font-size: 1.08rem;
    line-height: 1.75;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 44px;
    padding: 28px 0;
    border-top: 1px solid #e6e9f6;
    border-bottom: 1px solid #e6e9f6;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 18px;
}

.stat-box h3 {
    color: var(--accent);
    font-size: clamp(2.6rem, 4vw, 3.5rem);
    line-height: 1;
    font-weight: 700;
    flex-shrink: 0;
}

.stat-box p {
    max-width: 170px;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.45;
}

.about-footer {
    display: flex;
    align-items: center;
    gap: 42px;
    margin-top: 38px;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 172px;
    padding: 18px 28px;
    border-radius: 999px;
    background: var(--accent);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    transition: 0.25s ease;
}

.about-btn:hover {
    background: var(--accent-hover);
}

.founder-box {
    display: flex;
    align-items: center;
    gap: 16px;
}

.founder-box img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
}

.founder-box h4 {
    color: var(--heading);
    font-size: 1.7rem;
    line-height: 1.05;
    font-weight: 600;
}

.founder-box span {
    display: inline-block;
    margin-top: 8px;
    color: var(--text);
    font-size: 1rem;
}

@media (max-width: 1200px) {
    .container,
    .bottom-bar {
        width: min(100% - 36px, 1180px);
    }
}

@media (max-width: 1100px) {
    .hero-section {
        padding-bottom: 80px;
    }

    .hero-media-wrap {
        margin-right: auto;
    }

    .rating-card {
        left: 16px;
        bottom: 18px;
    }

    .bottom-bar {
        position: static;
        transform: none;
        margin: 38px auto 0;
    }

    .bottom-bar-inner {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .about-grid {
        gap: 38px;
    }

    .about-content h2 {
        font-size: 3.1rem;
    }

    .about-footer {
        gap: 24px;
    }
}

@media (max-width: 991px) {
    .main-navbar .navbar-collapse {
        margin-top: 14px;
        padding: 18px;
        border-radius: 20px;
        background: #f7f8ff;
    }

    .nav-help {
        padding-top: 14px;
        border-top: 1px solid #ebeff8;
    }

    .hero-section {
        padding: 56px 0 34px;
    }

    .hero-media-wrap {
        margin-right: auto;
    }

    .hero-img {
        height: 520px;
    }

    .about-section {
        padding: 64px 0 42px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .about-media {
        min-height: auto;
    }

    .main-image-card {
        max-width: 100%;
    }

    .main-image-card img {
        height: 540px;
    }

    .experience-card {
        right: 20px;
        bottom: -14px;
    }

    .about-content h2,
    .about-text {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .container,
    .bottom-bar {
        width: min(100% - 24px, 100%);
    }

    .brand-logo {
        font-size: 1.65rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 2.5rem;
        letter-spacing: 0.1rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-stats {
        text-align: left !important;
    }

    .hero-stats > div {
        margin-bottom: 18px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn,
    .appointment-btn {
        width: 100%;
    }

    .hero-img {
        border-radius: 24px;
        height: 420px;
    }

    .rating-card {
        position: static;
        width: 100%;
        margin-top: 16px;
    }

    .bottom-bar {
        margin-top: 24px;
        border-radius: 24px;
    }

    .bottom-bar-inner {
        padding: 22px 20px;
        gap: 20px;
    }

    .info-block {
        align-items: flex-start;
    }

    .icon-box {
        width: 58px;
        height: 58px;
        font-size: 1.2rem;
    }

    .about-section {
        padding: 30px 0 30px;
    }

    .main-image-card {
        border-radius: 24px;
    }

    .main-image-card img {
        height: 420px;
    }

    .experience-card {
        position: static;
        width: 100%;
        height: 180px;
        margin-top: 16px;
        border-width: 0;
        border-radius: 24px;
    }

    .about-content h2 {
        margin-top: 18px;
        font-size: 2.4rem;
    }

    .about-text {
        margin-top: 20px;
        font-size: 1rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
        padding: 22px 0;
    }

    .about-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
        margin-top: 28px;
    }

    .about-btn {
        width: 100%;
    }

    .founder-box h4 {
        font-size: 1.35rem;
    }
}

.services-section {
    background: #f4f6fb;
}

.services-title {
    max-width: 620px;
}

/* CARD */

.service-card {
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* ICON */

.icon-sm {
    width: 52px;
    height: 52px;
    background: #0b0c3f;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 20px;
}

/* IMAGE */

.service-card img {
    height: 240px;
    object-fit: cover;
}

/* ===== MOBILE ===== */

@media (max-width: 992px) {
    .services-title {
        font-size: 28px;
    }

    .service-card {
        padding: 20px !important;
        border-radius: 22px;
    }

    .icon-sm {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }

    .service-card img {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 40px 0;
    }

    .services-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .service-card img {
        height: 200px;
    }
}
.expertise-section {
    background: #f7f8fc;
}

/* TAG */

.expertise-tag {
    color: #6c63ff;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 14px;
}

/* TITLE */

.expertise-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
}

/* TEXT */

.expertise-text {
    color: #6b7280;
    max-width: 520px;
}

/* CHECK */

.check-icon {
    width: 30px;
    height: 30px;
    background: #6c63ff;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 6px;
    font-size: 14px;
    margin-top: 3px;
}

/* MEDIA */

.expertise-media {
    position: relative;
    height: 520px;
}

/* PATTERN */

.bg-pattern {
    position: absolute;
    right: 30px;
    top: 40px;
    width: 320px;
    height: 300px;
    background: #0b0c3f;
    border-radius: 30px;
}

/* IMAGE */

.img-top {
    position: absolute;
    top: 0;
    left: 40px;
    width: 300px;
    height: 360px;
    object-fit: cover;
    border-radius: 30px;
}

.img-bottom {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 320px;
    height: 360px;
    object-fit: cover;
    border-radius: 30px;
}

/* CARD */

.expert-card {
    position: absolute;
    left: 60px;
    bottom: -40px;
    background: white;
    padding: 20px 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: #6c63ff;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .expertise-title {
        font-size: 32px;
    }

    .expertise-media {
        height: auto;
        margin-top: 40px;
    }

    .bg-pattern {
        display: none;
    }

    .img-top,
    .img-bottom {
        position: static;
        width: 100%;
        height: 300px;
        margin-bottom: 20px;
    }

    .expert-card {
        position: static;
        margin-top: 10px;
    }
    @media (max-width: 992px) {
        .img-bottom {
            display: none;
        }
    }
}
.why-section {
    background: #f4f6fb;
}

/* IMAGE */

.why-img {
    border-radius: 30px;
    height: 520px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* TAG */

.why-tag {
    color: #6c63ff;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 14px;
}

/* TITLE */

.why-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
}

/* TEXT */

.why-text {
    color: #6b7280;
    max-width: 520px;
}

/* CARD */

.why-card {
    background: white;
    padding: 22px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    height: 100%;
}

.why-card:hover {
    transform: translateY(-5px);
}

/* ICON */

.why-icon {
    width: 50px;
    height: 50px;
    background: #6c63ff;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 20px;
    margin-bottom: 12px;
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .why-img {
        height: 350px;
    }

    .why-title {
        font-size: 32px;
    }
}

.testimonial-section {
    background: #f7f8fc;
}

/* TAG */

.testi-tag {
    color: #6c63ff;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 14px;
}

/* TITLE */

.testi-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
}

/* TEXT */

.testi-text {
    color: #6b7280;
    max-width: 420px;
}

/* NAV */

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* CARD */

.testi-card {
    background: white;
    padding: 30px;
    border-radius: 26px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    height: 100%;
}

/* QUOTE */

.quote-icon {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 26px;
    color: #6c63ff;
}

/* USER */

.user-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .testi-title {
        font-size: 32px;
    }
}

/* TITLE */

.faq-tag {
    color: #6c63ff;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 14px;
}

.faq-title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
}

.faq-text {
    color: #6b7280;
    max-width: 420px;
}

/* HELP CARD */

.faq-help {
    background: white;
    padding: 28px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 360px;
}

.faq-help-icon {
    width: 60px;
    height: 60px;
    background: #6c63ff;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 22px;
}

/* ACCORDION */

.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 18px;
}

.faq-accordion .accordion-button {
    border-radius: 50px !important;
    background: white;
    font-weight: 600;
    padding: 22px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: #6c63ff;
    color: white;
}

.faq-accordion .accordion-body {
    padding: 20px 30px;
}
@media (max-width: 992px) {
    .faq-title {
        font-size: 23px;
        font-weight: 600;
    }
}

.why-dark {
    background: #0b0c3f;
    color: white;
    position: relative;
}

/* GRID BACKGROUND */

.why-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
}

.container {
    position: relative;
    z-index: 2;
}

/* TAG */

.dark-tag {
    color: #6c63ff;
    letter-spacing: 2px;
    font-size: 14px;
}

/* TITLE */

.dark-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
}

/* TEXT */

.dark-text {
    opacity: 0.8;
    max-width: 380px;
}

/* BUTTON */

.dark-btn {
    background: #6c63ff;
    color: white;
    padding: 14px 30px;
    border-radius: 40px;
}

/* IMAGE */

.doctor-wrap {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    padding: 40px;
}

.doctor-img {
    max-height: 420px;
    padding-left: 20px;
}

/* FEATURE */

.dark-icon {
    width: 55px;
    height: 55px;
    background: #6c63ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 16px;
    font-size: 22px;
}

.dark-line {
    border-color: rgba(255, 255, 255, 0.1);
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .dark-title {
        font-size: 34px;
    }

    .doctor-wrap {
        margin: 30px 0;
    }
}

.news-section {
    background: #f5f7fd;
}

/* TAG */

.news-tag {
    color: #6c63ff;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 14px;
}

/* TITLE */

.news-title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    max-width: 760px;
}

/* BUTTON */

.news-btn {
    background: #6c63ff;
    color: white !important;
    padding: 14px 32px;
    border-radius: 40px;
}

/* CARD */

.news-card {
    display: flex;
    background: white;
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid #e6e8f5;
    height: 100%;
}

/* IMAGE */

.news-img {
    width: 45%;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTENT */

.news-content {
    padding: 35px;
    width: 55%;
}

.news-content h4 {
    font-weight: 700;
    margin-bottom: 14px;
}

.news-content p {
    color: #6b7280;
    margin-bottom: 20px;
}

/* LINK */

.learn-link {
    color: #6c63ff;
    font-weight: 600;
    text-decoration: none;
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .news-card {
        flex-direction: column;
        border-radius: 28px;
    }

    .news-img {
        width: 100%;
        height: 220px;
    }

    .news-content {
        width: 100%;
        padding: 25px;
    }

    .news-title {
        font-size: 30px;
    }
}
.appointment-section {
    position: relative;
    overflow: hidden;
    padding: 82px 0;
    background:
        radial-gradient(
            circle at top left,
            rgba(98, 92, 243, 0.12),
            transparent 28%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(23, 185, 164, 0.12),
            transparent 24%
        ),
        linear-gradient(180deg, #f7f8fd 0%, #f2f5ff 48%, #fafcff 100%);
}

.appointment-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(98, 92, 243, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(98, 92, 243, 0.03) 1px, transparent 1px);
    background-size: 34px 34px;
    pointer-events: none;
}

.appointment-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(10px);
}

.appointment-shape-one {
    width: 260px;
    height: 260px;
    top: -80px;
    right: -70px;
    background: rgba(98, 92, 243, 0.13);
}

.appointment-shape-two {
    width: 220px;
    height: 220px;
    left: -70px;
    bottom: -70px;
    background: rgba(23, 185, 164, 0.13);
}

.appointment-shell {
    position: relative;
    z-index: 1;
}

.appointment-left-stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 100%;
}

.working-card,
.clinic-map-card,
.appointment-right-panel,
.form-card {
    border-radius: 26px;
    border: 1px solid rgba(17, 22, 77, 0.08);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 24px 60px rgba(17, 22, 77, 0.08);
    backdrop-filter: blur(10px);
}

.working-card {
    padding: 24px;
}

.section-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(98, 92, 243, 0.1);
    color: #625cf3;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.section-chip-map {
    background: rgba(136, 182, 235, 0.11);
    color: #625cf3;
}

.working-card h4 {
    margin: 0 0 8px;
    color: #11164d;
    font-size: 26px;
    line-height: 1.18;
    font-weight: 800;
}

.clinic-intro {
    margin: 0 0 18px;
    color: #66708f;
    font-size: 14px;
    line-height: 1.7;
}

.clinic-detail-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.clinic-detail-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px;
    border-radius: 16px;
    background: #f8faff;
    border: 1px solid rgba(17, 22, 77, 0.06);
}

.clinic-detail-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #625cf3 0%, #7b75ff 100%);
    color: #ffffff;
    font-size: 15px;
}

.clinic-detail-content {
    min-width: 0;
}

.clinic-detail-content span {
    display: block;
    margin-bottom: 3px;
    color: #6b7595;
    font-size: 12px;
    font-weight: 600;
}

.clinic-detail-content strong,
.clinic-detail-content strong a {
    color: #11164d;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 700;
    word-break: break-word;
}

.clinic-map-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 16px;
}

.map-card-head {
    padding: 6px 6px 14px;
}

.map-card-head h5 {
    margin: 0;
    color: #11164d;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 800;
}

.clinic-map-frame {
    flex: 1;
    min-height: 280px;
    border-radius: 20px;
    overflow: hidden;
    background: #e9eefb;
}

.appointment-right-panel {
    width: 100%;
    height: 100%;
    padding: 28px;
}

.appointment-content-wrap {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.app-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(151, 177, 243, 0.11);
    color: #625cf3;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.app-title {
    margin: 0 0 12px;
    max-width: 620px;
    color: #11164d;
    font-size: 42px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.4px;
}

.app-text {
    margin: 0 0 18px;
    max-width: 590px;
    color: #66708f;
    font-size: 15px;
    line-height: 1.75;
}

.appointment-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.appointment-point {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #f5f8ff;
    border: 1px solid rgba(17, 22, 77, 0.06);
    color: #37405f;
    font-size: 13px;
    font-weight: 700;
}

.appointment-point i {
    color: #625cf3;
}

.form-card {
    flex: 1;
    padding: 22px;
    background: rgba(255, 255, 255, 0.94);
}

.appointment-field label {
    display: block;
    margin-bottom: 8px;
    color: #11164d;
    font-size: 13px;
    font-weight: 700;
}

.appointment-input,
.appointment-textarea {
    border: 1px solid #e5eaf7;
    border-radius: 14px;
    background: #f9fbff;
    color: #11164d;
    font-size: 14px;
    box-shadow: none;
}

.appointment-input {
    height: 52px;
}

.appointment-textarea {
    padding: 14px 16px;
    resize: none;
}

.appointment-input:focus,
.appointment-textarea:focus {
    border-color: #625cf3;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(98, 92, 243, 0.08);
}

.form-card select.appointment-input {
    appearance: none;
}

.btn-book {
    min-width: 200px;
    height: 52px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #625cf3 0%, #7a75ff 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 18px 35px rgba(98, 92, 243, 0.24);
    transition: 0.3s ease;
}

.btn-book:hover {
    transform: translateY(-2px);
}

@media (max-width: 1199px) {
    .app-title {
        font-size: 36px;
    }

    .working-card h4 {
        font-size: 23px;
    }
}

@media (max-width: 991px) {
    .appointment-section {
        padding: 68px 0;
    }

    .appointment-right-panel {
        padding: 24px;
    }

    .app-title {
        font-size: 32px;
    }

    .clinic-map-frame {
        min-height: 240px;
    }
}

@media (max-width: 767px) {
    .working-card,
    .clinic-map-card,
    .appointment-right-panel,
    .form-card {
        border-radius: 20px;
    }

    .working-card,
    .appointment-right-panel,
    .form-card {
        padding: 18px;
    }

    .app-title {
        font-size: 28px;
        letter-spacing: -1px;
    }

    .app-text {
        font-size: 14px;
    }

    .clinic-detail-row {
        padding: 12px;
    }

    .appointment-points {
        flex-direction: column;
    }

    .appointment-point {
        width: 100%;
    }

    .btn-book {
        width: 100%;
    }
}

.doctor-about {
    background: #f3f3f3;
}

.clinic-tag {
    color: #6c63ff;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
}

.doctor-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
}

.doctor-text {
    color: #555;
    line-height: 1.9;
    font-size: 17px;
}

.doctor-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.doctor-img-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.book-btn {
    background: #6c63ff;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.book-btn:hover {
    background: #574fd6;
    color: #fff;
}

/* Testimonial */
.testimonials-section {
    background: #f3f4f6;
}
.testimonial-card {
    border-radius: 16px;
    background: #ffffff;
}
.testimonial-stars {
    font-variation-settings: "FILL" 1;
}
.testimonial-text {
    font-size: 15px;
    color: black;
    flex-grow: 1;
}
.testimonial-avatar {
    width: 48px;
    height: 48px;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
}
.bg-av-1 {
    background: green;
}
.bg-av-2 {
    background: blue;
}
.bg-av-3 {
    background: green;
}
.testimonial-name {
    font-size: 16px;
    font-weight: 600;
}
.testimonial-role {
    font-size: 13px;
    color: #333;
}

/* ✅ MOBILE RESPONSIVE */

@media (max-width: 991px) {
    .doctor-content {
        text-align: center;
    }

    .doctor-title {
        font-size: 32px;
    }

    .doctor-text {
        font-size: 16px;
        text-align: start;
    }

    .doctor-img-wrap img {
        height: 400px;
        margin-top: 10px;
    }

    .book-btn {
        width: 100%;
        padding: 16px;
        font-size: 17px;
    }
}
/* ===============================
   FOOTER BASE
================================= */
.footer-dark {
    background: #111827;
    color: #d1d5db;
    padding: 60px 0 20px;
}

/* LOGO */
.footer-logo img {
    width: 170px;
}

/* TAGLINE */
.footer-tagline {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 10px 0;
}

/* HEADINGS */
.footer-heading {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}
.footer-heading p,
a {
    color: white;
}
/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #22c55e;
    padding-left: 5px;
}

/* CONTACT */
.footer-dark p {
    margin-bottom: 10px;
    font-size: 15px;
}

.footer-dark i {
    margin-right: 8px;
    color: white;
}

/* SOCIAL */
.footer-social {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 6px;
    background: #1f2937;
    color: #fff;
    transition: 0.3s;
}

.footer-social a:hover {
    transform: translateY(-3px);
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid #374151;
    margin-top: 30px;
    padding-top: 15px;
    font-size: 14px;
}

/* MOBILE */
@media (max-width: 576px) {
    .footer-dark {
        padding-top: 10px;
        padding-left: 0%;

        text-align: start;
    }

    .footer-social {
        justify-content: start;
    }
}