@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&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");
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap");


:root {
    --blue: #003a70;
    --blue-dark: #002649;
    --green: #0d7674;
    --text: #1b2d58;
    --muted: #5f6d88;
    --bg: #f5f8ff;
    --line: #e5ecf7;
    --white: #ffffff;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
}

a {
    text-decoration: none;
}

/* logo  */

.logo a {
    display: flex;
    align-items: center;
    gap: 0px;
}

.logo img {
    width: 150px;
}

.evc-bottom {
    padding: 60px 0 70px;
}

.evc-section-tag {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
}

.evc-about-h2 {
    font-size: 32px;
    font-weight: 900;
    color: var(--blue);
    line-height: 1.12;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .logo img {
        width: 90px;
    }

    .doc-log-temp h5 {
        font-size: 22px;
    }

    .doc-log-temp p {
        font-size: 11px;
    }
}

/* Custom Scrollbar */
body::-webkit-scrollbar {
    width: 4px;
}

body::-webkit-scrollbar-track {
    background: linear-gradient(180deg, #f8faff, #e8f2ff);
}

body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #30aab1, #1d606a);
    border-radius: 4px;
}

body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #1d606a, #30aab1);
}

/* nav  */

.nav-topbar {
    display: flex;

    justify-content: end;
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: end;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--green);
}

.nav-contact-item {
    display: flex;
    align-items: center;
}

.nav-contact-item a {
    font-size: 15px;
    color: var(--green);
}

.nav-contact-item a i {
    font-size: 18px;
    margin-right: 5px;
}

.custom-navbar {
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    position: relative;
    font-family: "Montserrat", sans-serif;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
}

.custom-navbar .container {
    /* display: flex; */
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 15px;
}

@media (max-width: 991px) {
    .custom-navbar {
        padding: 0;
    }
}

.nav-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
}

ul.nav-links {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
    padding: 20px 0;
}

ul.nav-links li {
    position: relative;
}

ul.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    white-space: nowrap;
    font-size: 16px;
    padding: 10px 12px;
    display: block;
}

ul.nav-links {
    display: flex;
}

ul.nav-links a:hover {
    color: #fff;
    background-color: var(--green);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;

    background: var(--green);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: none;
    padding: 0;
    flex-direction: column;
    min-width: 300px;
    width: max-content;
    z-index: 999;
    border-radius: 0;
}

.dropdown-menu a {
    padding: 8px 10px !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 20px;
    color: #fff !important;
    border-bottom: 1px solid #fff;
}

.dropdown-menu a:hover {
    background-color: #fff !important;
    color: var(--green) !important;
    font-weight: 500 !important;
}

@media (min-width: 992px) {
    .has-dropdown:hover .dropdown-menu {
        display: flex;
    }
}

/* === MOBILE STYLES === */
@media (max-width: 991px) {
    .nav-toggle {
        display: block;
    }

    .desktop-menu {
        display: none !important;
    }

    ul.nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        flex-direction: column;
        display: none;
        width: 100%;
        gap: 0;
        z-index: 100;
        height: 100vh;
        overflow-y: auto;
        background-color: #fff;
        padding: 0;
    }

    ul.nav-links.show {
        display: flex;
    }

    ul.nav-links li {
        width: 100%;
    }

    ul.nav-links a {
        padding: 12px 10px;
        border-bottom: 1px solid #ccc;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        border-radius: 0;
        width: 100%;
        border: none;
    }

    .dropdown-menu a {
        padding: 8px 8px 8px 23px !important;
        font-size: 16px !important;
    }

    .has-dropdown .dropdown-menu {
        display: none;
    }

    .has-dropdown.show .dropdown-menu {
        display: flex;
    }
}

@media (min-width: 992px) {
    .nav-theme-btn {
        padding: 10px 25px !important;
        background-color: var(--green);
        border: none;
        margin-left: 5px;
        border-radius: 5px;
        font-weight: 600 !important;
        color: #fff !important;
        font-size: 16px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
}


.hs-hero {
    position: relative;
    overflow: hidden;
    background: var(--white);
    padding: 0;
}

.hs-hero-img-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 52%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 0;
    /* soft fade on the left edge */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.08) 8%, rgba(0, 0, 0, 1) 32%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.08) 8%, rgba(0, 0, 0, 1) 32%);
}

/* Blue abstract circle behind image */
.hs-hero-circle {
    position: absolute;
    top: -80px;
    right: 14%;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 58, 112, 0.12) 0%, transparent 70%);
    z-index: 0;
}

.hs-hero-body {
    position: relative;
    z-index: 2;
    padding: 54px 0 30px;
}

/* ── Left content ── */
.hs-kicker {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 12px;
}

.hs-title {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: var(--blue-dark);
    line-height: 1.18;
    margin-bottom: 6px;
}

.hs-title .hs-title-accent {
    color: var(--blue);
    display: block;
}

.hs-desc {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 480px;
    margin: 16px 0 28px;
}

/* ── Stats row ── */
.hs-stats {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.hs-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 20px;
    margin-right: 20px;
    border-right: 1px solid var(--line);
}

.hs-stat:last-child {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
}

.hs-stat-icon {
    font-size: 22px;
    color: var(--blue);
    opacity: 0.75;
}

.hs-stat-val {
    font-size: 22px;
    font-weight: 800;
    color: var(--blue-dark);
    line-height: 1;
}

.hs-stat-label {
    font-size: 11.5px;
    color: var(--muted);
    display: block;
    margin-top: 2px;
}

/* ── CTA buttons ── */
.hs-cta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hs-btn-main {
    background: var(--blue);
    color: var(--white);
    border: none;
    border-radius: 7px;
    padding: 13px 26px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 18px rgba(0, 58, 112, 0.22);
}

.hs-btn-main:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
    color: var(--white);
    box-shadow: 0 6px 22px rgba(0, 38, 73, 0.28);
}

.hs-btn-link {
    color: var(--blue);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: gap 0.2s, color 0.2s;
}

.hs-btn-link:hover {
    gap: 11px;
    color: var(--green);
}

/* ── Conditions card (right overlay) ── */
.hs-conditions {
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    z-index: 5;
    background: var(--blue-dark);
    border-radius: 12px;
    padding: 15px 12px;
    width: 450px;
    box-shadow: 0 8px 40px rgba(0, 38, 73, 0.35);
}

.hs-cond-title {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.hs-cond-item {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    text-decoration: none;
    transition: opacity 0.2s;
}

.hs-cond-item:last-of-type {
    border-bottom: none;
}

.hs-cond-item:hover {
    opacity: 0.78;
}

.hs-cond-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    flex-shrink: 0;
}

.hs-cond-name {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    flex: 1;
}

.hs-cond-arrow {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.38);
}

.hs-cond-more {
    display: block;
    font-size: 12.5px;
    color: var(--green);
    font-weight: 600;
    margin-top: 10px;
    text-decoration: none;
}

.hs-cond-more:hover {
    color: #0aafac;
}

@media(max-width:991px) {
    .hs-conditions {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 24px;
    }

    .hs-hero-img-bg {
        width: 100%;
        opacity: 0.12;
    }

    .hs-hero-body {
        padding: 40px 0 20px;
    }
}

/* ═══════════════════════════════════════
       BOTTOM SERVICES BAR
    ═══════════════════════════════════════ */
.hs-services {
    background: var(--blue-dark);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 20px 0;
}

.hs-services-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.hs-svc {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex: 1;
    min-width: 160px;
}

.hs-svc-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1.5px solid var(--white);
    background: var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--blue);
    flex-shrink: 0;
}

.hs-svc-text strong {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 3px;
}

.hs-svc-text span {
    font-size: 12px;
    color: var(--white);
    line-height: 1.45;
}

.hs-svc-divider {
    width: 1px;
    height: 44px;
    background: var(--line);
    flex-shrink: 0;
    align-self: center;
}

@media(max-width:768px) {
    .hs-svc-divider {
        display: none;
    }

    .hs-svc {
        min-width: 46%;
    }
}

@media(max-width:480px) {
    .hs-svc {
        min-width: 100%;
    }
}


/* profile */

.dp-doctor-section {
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.dp-doctor-section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    background: rgba(23, 61, 132, .07);
    pointer-events: none;
}

.dp-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.dp-kicker::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--green);
    border-radius: 2px;
}

.dp-profile-shell {
    background: rgba(255, 255, 255, .84);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 236, 247, .9);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 60px rgba(20, 40, 90, .09);
}

.dp-portrait-panel {
    background:
        linear-gradient(180deg, rgba(12, 43, 99, .96), rgba(23, 61, 132, .94)),
        url('https://images.unsplash.com/photo-1579684453423-f84349ef60b0?auto=format&fit=crop&w=900&q=80') center/cover no-repeat;
    color: #fff;
    padding: 15px;
    min-height: 100%;
    position: relative;
    overflow: hidden;
}

.dp-portrait-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 43, 99, .18) 0%, rgba(12, 43, 99, .42) 100%);
}

.dp-portrait-card {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 18px;
}

.dp-portrait-frame {
    width: 100%;
    aspect-ratio: 0.84 / 1;
    border-radius: 25px;
    padding: 5px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
}

.dp-portrait-img {
    width: 100%;
    height: 100%;
    border-radius: 22px;
    object-fit: cover;
    display: block;
}

.dp-content-panel {
    padding: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.dp-name {
    margin: 0 0 6px;
    font-size: 34px;
    line-height: 1.1;
    font-weight: 600;
    color: var(--blue);
}

.dp-role {
    margin: 0 0 18px;
    color: var(--green);
    font-size: 17px;
    line-height: 1.6;
    font-weight: 600;
}



.dp-mini-stat {
    background: #f7faff;
    border: 1px solid #e4ecf8;
    border-radius: 16px;
    padding: 10px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.dp-mini-stat .dp-mini-icon {
    height: 45px;
    width: 45px;
    background: var(--white);
    border: 2px solid var(--green);
    border-radius: 100%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dp-mini-stat .dp-mini-icon i {
    font-size: 22px;
    color: var(--green);
    display: block;
}

.dp-mini-stat strong {
    display: block;
    color: var(--blue);
    font-size: 14px;
    line-height: 1.25;
}

.dp-mini-stat span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
}

.dp-section-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 14px;
}

.dp-section-label i {
    font-size: 22px;
}

.dp-qual-card {
    background: #f7faff;
    border: 1px solid #e5edf8;
    border-left: 4px solid var(--blue);
    border-radius: 16px;
    padding: 12px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.dp-qual-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #e9efff;
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dp-qual-icon--gold {
    background: #fff5d6;
    color: #b8820a;
}

.dp-qual-card strong {
    display: block;
    font-size: 14px;
    color: var(--text);
    line-height: 1.3;
}

.dp-qual-card span {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 12.5px;
    line-height: 1.45;
}

.dp-divider {
    height: 1px;
    background: linear-gradient(90deg, var(--line), transparent);
    margin: 22px 0;
}

.dp-about {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text);
}

.dp-about p {
    margin-bottom: 12px;
}

.dp-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.dp-btn-main,
.dp-btn-outline {
    min-width: 180px;
    padding: 13px 20px;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    transition: .25s ease;
}

.dp-btn-main {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 10px 18px rgba(23, 61, 132, .18);
}

.dp-btn-main:hover {
    background: #0f2f68;
    color: #fff;
}

.dp-btn-outline {
    border: 1.5px solid #cfd9ea;
    color: var(--text);
    background: #fff;
}

.dp-btn-outline:hover {
    background: #f3f7ff;
    color: var(--text);
}

@media (max-width: 1199px) {
    .dp-title {
        font-size: 34px;
    }

    .dp-name {
        font-size: 30px;
    }

    .dp-quote blockquote {
        font-size: 20px;
    }
}

@media (max-width: 991px) {

    .dp-portrait-panel,
    .dp-content-panel {
        padding: 28px;
    }
}

@media (max-width: 767px) {
    .dp-doctor-section {
        padding: 50px 0;
    }

    .dp-title {
        font-size: 28px;
    }

    .dp-name {
        font-size: 25px;
    }

    .dp-role {
        font-size: 15px;
    }

    .dp-credential-strip,
    .dp-cta,
    .dp-chip-list {
        justify-content: center;
    }

    .dp-content-panel,
    .dp-portrait-panel {
        padding: 20px 12px;
    }

    .dp-btn-main,
    .dp-btn-outline {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 480px) {
    .dp-title {
        font-size: 24px;
    }
}


/* about us page */

.ct-about-wrap {
    overflow: hidden;
}

.ct-section-gap {
    padding: 60px 0;
}

.ct-section-title {
    margin-bottom: 42px;
}

.ct-section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 12px;
}

.ct-section-title h2 {
    font-size: clamp(1.5rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 10px;
}

.ct-hero {
    background: linear-gradient(135deg, var(--white) 0%, #edf4ff 100%);
    padding: 90px 0 70px;
    border-bottom: 1px solid var(--line);
}

.ct-hero-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(13, 118, 116, .10);
    color: var(--green);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.ct-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.15;
    color: var(--blue);
    font-weight: 700;
    margin-bottom: 18px;
}

.ct-hero p {
    color: var(--text);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.ct-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    background: var(--blue);
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(0, 58, 112, .18);
    transition: all .3s ease;
}

.ct-hero-btn:hover {
    background: var(--blue-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.ct-hero-media {
    position: relative;
    max-width: 500px;
    margin-left: auto;
}

.ct-hero-image {
    border-radius: 28px;
    overflow: hidden;
    background: #dfe7f3;
    box-shadow: 0 24px 55px rgba(0, 38, 73, .14);
}

.ct-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ct-hero-card {
    position: absolute;
    left: -85px;
    bottom: -40px;
    width: 300px;
    background: var(--white);
    border-radius: 22px;
    padding: 15px 12px;
    box-shadow: 0 20px 45px rgba(0, 38, 73, .12);
    border: 1px solid var(--line);
}

.ct-hero-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 8px;
}

.ct-hero-card p {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 0;
    line-height: 1.6;
}

.ct-panel {
    background: var(--white);
    border-radius: 24px;
    padding: 20px;
    height: 100%;
    border: 1px solid var(--line);
    box-shadow: 0 14px 35px rgba(0, 38, 73, .05);
}

.ct-panel h3 {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 16px;
}

.ct-panel p {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.ct-expertise-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.ct-expertise-list li {
    position: relative;
    padding: 8px 0 8px 30px;
    border-bottom: 1px solid #eef3fa;
    color: var(--text);
    font-weight: 400;
}

.ct-expertise-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ct-expertise-list li::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 15px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 5px rgba(13, 118, 116, .10);
}

.ct-stats-row {
    background: var(--blue);
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: 0 16px 42px rgba(0, 38, 73, .05);
    overflow: hidden;
}

.ct-stat-item {
    padding: 32px 20px;
    text-align: center;
    border-right: 1px solid #eef3fa;
    height: 100%;
}

.ct-stat-item:last-child {
    border-right: none;
}

.ct-stat-item h3 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.ct-stat-item p {
    margin-bottom: 0;
    color: var(--white);
    font-size: .97rem;
    font-weight: 500;
}

.ct-membership-box {
    background: var(--white);
    border-radius: 24px;
    padding: 34px;
    border: 1px solid var(--line);
    box-shadow: 0 14px 35px rgba(0, 38, 73, .05);
}

.ct-membership-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.ct-membership-list li {
    padding: 16px 0;
    border-bottom: 1px solid #eef3fa;
    color: var(--text);
    font-weight: 500;
}

.ct-membership-list li:first-child {
    padding-top: 0;
}

.ct-membership-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}


@media (max-width: 991.98px) {
    .ct-hero {
        padding: 70px 0 60px;
    }

    .ct-hero-media {
        max-width: 100%;
        margin: 40px auto 0;
    }

    .ct-hero-card {
        position: static;
        width: 100%;
        margin-top: 18px;
    }

    .ct-stat-item {
        border-right: none;
        border-bottom: 1px solid #eef3fa;
    }

    .ct-stat-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 767.98px) {
    .ct-section-gap {
        padding: 65px 0;
    }

    .ct-stat-item {
        padding: 20px 12px;

    }

    .ct-stat-item h3 {
        font-size: 1.75rem;
    }

    .ct-stat-item p {
        font-size: 0.85rem;
    }

    .ct-panel,
    .ct-highlight-card,
    .ct-membership-box {
        padding: 20px 12px;
    }

    .ct-hero h1 {
        font-size: 2.2rem;
    }
}

/* contact us page  */

.cu-body {
    padding: 50px 0 70px;
}

/* DOCTOR CARD */
.cu-doc-card {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--line);
    box-shadow: 0 4px 28px rgba(0, 58, 112, 0.07);
    padding: 32px 28px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
}

.cu-doc-avatar {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 30px;
    color: var(--white);
    border: 3px solid var(--line);
}

.cu-doc-info h2 {
    font-size: 20px;
    font-weight: 800;
    color: var(--blue-dark);
    margin-bottom: 3px;
}

.cu-doc-info .cu-doc-qual {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 6px;
}

.cu-doc-info .cu-doc-spec {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(13, 118, 116, 0.1);
    color: var(--green);
    font-size: 12.5px;
    font-weight: 600;
    border-radius: 5px;
    padding: 4px 12px;
}

.cu-doc-contacts {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cu-doc-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
}

.cu-doc-contact-item:hover {
    color: var(--green);
}

.cu-doc-contact-item .cu-ci-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--bg);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 13px;
    flex-shrink: 0;
}

/* SECTION HEADING */
.cu-section-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.cu-section-head .cu-sh-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 15px;
    flex-shrink: 0;
}

.cu-section-head h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--blue-dark);
    margin: 0;
}

.cu-section-head span {
    font-size: 12.5px;
    color: var(--muted);
    display: block;
}

/* CLINIC CARDS */
.cu-clinic-card {
    background: var(--white);
    border-radius: 14px;
    border: 1px solid var(--line);
    box-shadow: 0 3px 18px rgba(0, 58, 112, 0.06);
    padding: 16px 12px 15px;
    height: 100%;
    transition: box-shadow 0.2s, transform 0.2s;
}

.cu-clinic-card:hover {
    box-shadow: 0 8px 32px rgba(0, 58, 112, 0.13);
    transform: translateY(-3px);
}

.cu-clinic-top {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 14px;
}

.cu-clinic-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 17px;
    flex-shrink: 0;
}

.cu-clinic-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--blue-dark);
    line-height: 1.3;
    margin-bottom: 3px;
}

.cu-clinic-addr {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
}

.cu-clinic-divider {
    height: 1px;
    background: var(--line);
    margin: 12px 0;
}

.cu-clinic-timing {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 12px;
}

.cu-appt-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
}

.cu-appt-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.cu-appt-row:last-child {
    margin-bottom: 0;
}

.cu-appt-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 7px;
    padding: 6px 12px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.cu-appt-phone:hover {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

.cu-appt-email {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--green);
    text-decoration: none;
    font-weight: 500;
}

.cu-appt-email:hover {
    text-decoration: underline;
}

.cu-days-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 58, 112, 0.07);
    color: var(--blue);
    border-radius: 5px;
    padding: 4px 10px;
    font-size: 11.5px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* FORM */
.cu-form-card {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--line);
    box-shadow: 0 4px 28px rgba(0, 58, 112, 0.07);
    padding: 32px 28px;
}

.cu-form-label {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
    display: block;
    letter-spacing: 0.02em;
}

.cu-form-control {
    width: 100%;
    border: 1.5px solid var(--line);
    border-radius: 9px;
    padding: 15px 15px;
    font-size: 13.5px;
    color: var(--text);
    background: var(--bg);
    outline: none;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.cu-form-control:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 58, 112, 0.1);
    background: var(--white);
}

textarea.cu-form-control {
    resize: vertical;
    min-height: 120px;
}

.cu-submit-btn {
    width: 100%;
    background: var(--blue);
    color: var(--white);
    border: none;
    border-radius: 10px;
    padding: 14px;
    font-size: 14.5px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 18px rgba(0, 58, 112, 0.2);
}

.cu-submit-btn:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(0, 38, 73, 0.25);
}

/* MAPS */
.cu-map-card {
    background: var(--white);
    border-radius: 14px;
    border: 1px solid var(--line);
    box-shadow: 0 3px 18px rgba(0, 58, 112, 0.06);
    padding: 18px;
    margin-bottom: 20px;
}

.cu-map-card:last-child {
    margin-bottom: 0;
}

.cu-map-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 13px;
}

.cu-map-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 13px;
    flex-shrink: 0;
}

.cu-map-header strong {
    font-size: 13px;
    font-weight: 700;
    color: var(--blue-dark);
    display: block;
}

.cu-map-header span {
    font-size: 11.5px;
    color: var(--muted);
}

.cu-map-frame {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--line);
    margin-bottom: 13px;
}

.cu-map-frame iframe {
    display: block;
    width: 100%;
    height: 200px;
    border: none;
}

.cu-map-phones {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .cu-doc-contacts {
        margin-left: 0;
        width: 100%;
    }

    .cu-doc-card {
        flex-direction: column;
    }
}


/* Social Links */
.ct-social-head {
    padding: 16px 22px;
    border-bottom: 1px solid var(--line);
    background: var(--bg);
}

.ct-social-head h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.ct-social-head h6 i {
    color: var(--green);
}

.ct-social-body {
    padding: 16px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--white);
}

.ct-social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: var(--bg);
    text-decoration: none;
    transition: .2s ease;
}

.ct-social-link:hover {
    border-color: #d0ddf5;
    box-shadow: 0 4px 14px rgba(23, 61, 132, .08);
    transform: translateX(4px);
}

.ct-social-link-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
    color: var(--white);
}

.ct-social-link-icon.fb {
    background: #1877f2;
}

.ct-social-link-icon.ig {
    background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
}

.ct-social-link-icon.yt {
    background: #ff0000;
}

.ct-social-link-icon.li {
    background: #0a66c2;
}

.ct-social-link-label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}

.ct-social-link-sub {
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
}

.ct-social-link-arrow {
    margin-left: auto;
    color: var(--muted);
    font-size: 11px;
}


/* ══════════════════════════════════
       BREADCRUMB HERO
    ══════════════════════════════════ */
.sp-breadcrumb-hero {
    background:
        linear-gradient(90deg, rgba(12, 43, 99, .97) 0%, rgba(23, 61, 132, .92) 55%, rgba(23, 61, 132, .72) 100%),
        url('https://images.unsplash.com/photo-1581595219315-a187dd40c322?auto=format&fit=crop&w=1600&q=85') center / cover no-repeat;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.sp-breadcrumb-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--blue));
}

.sp-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffd1d4;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.sp-hero-tag::before {
    content: "";
    width: 24px;
    height: 2px;
    background: #ffd1d4;
    border-radius: 2px;
}

.sp-hero-title {
    margin: 0 0 16px;
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    line-height: 1.15;
    max-width: 740px;
}

.sp-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sp-breadcrumb li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, .80);
}

.sp-breadcrumb li a {
    color: rgba(255, 255, 255, .80);
    text-decoration: none;
    transition: .2s;
}

.sp-breadcrumb li a:hover {
    color: #fff;
}

.sp-breadcrumb li.active {
    color: #fff;
}

.sp-breadcrumb li i {
    font-size: 10px;
    color: rgba(255, 255, 255, .85);
}

/* ══════════════════════════════════
       PAGE BODY
    ══════════════════════════════════ */
.sp-page {
    padding: 56px 0 72px;
    background: #fff;
}

/* ══════════════════════════════════
       CONTENT AREA
    ══════════════════════════════════ */
.sp-service-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    border: 1px solid var(--line);
}

.sp-service-img-wrap img {
    width: 100%;
    aspect-ratio: 16/8;
    object-fit: cover;
    display: block;
}


/* Kicker */
.sp-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.sp-kicker::before {
    content: "";
    width: 24px;
    height: 2px;
    background: var(--green);
    border-radius: 2px;
}

/* Title */
.sp-title {
    margin: 0 0 14px;
    font-size: 34px;
    font-weight: 600;
    color: var(--blue);
    line-height: 1.15;
}

/* Lead */
.sp-lead {
    font-size: 17px;
    line-height: 1.85;
    color: var(--muted);
    margin-bottom: 24px;
    font-weight: 500;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--line);
}

/* Body */
.sp-body {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text);
}

.sp-body p {
    margin-bottom: 12px;
}

.sp-body p:last-child {
    margin-bottom: 0;
}

.sp-body strong {
    color: var(--text);
    font-weight: 600;
}

/* Section heading inside content */
.sp-h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--blue);
    margin: 36px 0 12px;
    padding-left: 16px;
    border-left: 4px solid var(--green);
    line-height: 1.3;
}

.sp-h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    margin: 24px 0 10px;
}

/* Clean bullet list — no icons */
.sp-list {
    list-style: none;
    margin: 0 0 20px;
    padding-left: 10px;
}

.sp-list li {
    position: relative;
    padding: 6px 14px 6px 20px;
    font-size: 16px;
    color: var(--text);
    line-height: 1.65;
    border-bottom: 1px solid #e7f0ff;
}

.sp-list li:last-child {
    border-bottom: none;
}

.sp-list li::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 16px;
    /* transform: translateY(-50%); */
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
}


/* Why Choose — clean 2-col grid */
.sp-why-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 10px;
}

.sp-why-item {
    background: #f7faff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.45;
    position: relative;
    padding-left: 28px;
}

.sp-why-item::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
}

/* CTA Strip */
.sp-cta-strip {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue));
    border-radius: 22px;
    padding: 30px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 36px;
    position: relative;
    overflow: hidden;
}

.sp-cta-strip::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    right: -90px;
    top: -90px;
    pointer-events: none;
}

.sp-cta-strip-text {
    position: relative;
    z-index: 2;
}

.sp-cta-strip-text h4 {
    margin: 0 0 5px;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
}

.sp-cta-strip-text p {
    margin: 0;
    font-size: 15px;
    color: rgba(255, 255, 255, .78);
}

.sp-cta-btn {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 12px;
    background: #fff;
    color: var(--blue);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
    transition: .2s ease;
}

.sp-cta-btn:hover {
    background: #f0f6ff;
    color: var(--blue);
}

/* ══════════════════════════════════
       SIDEBAR
    ══════════════════════════════════ */
.sp-sidebar {
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: sticky;
    top: 20px;
}

.sp-sidebar-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(20, 40, 90, .07);
}

/* Doctor */
.sp-doc-panel {
    background: linear-gradient(160deg, var(--blue-dark) 0%, var(--blue) 100%);
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sp-doc-panel::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    right: -80px;
    top: -80px;
    pointer-events: none;
}

.sp-doc-photo-frame {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, .22);
    margin: 0 auto 14px;
    overflow: hidden;
}


.sp-doc-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.sp-doc-name {
    margin: 0 0 5px;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
}

.sp-doc-role {
    margin: 0 0 14px;
    font-size: 15px;
    color: rgba(255, 255, 255, .9);
    line-height: 1.6;
}

.sp-doc-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.sp-doc-pill {
    padding: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .16);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
}

.sp-doc-body {
    padding: 15px 12px;
}

.sp-doc-body p {
    margin: 0 0 14px;
    font-size: 16px;
    color: var(--text);
    line-height: 1.7;
}

.sp-doc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    background: var(--blue);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(23, 61, 132, .18);
    transition: .2s ease;
}

.sp-doc-btn:hover {
    background: #0f2f68;
    color: #fff;
}

/* Sidebar Headings */
.sp-sidebar-head {
    padding: 16px 20px;
    border-bottom: 1px solid var(--line);
}

.sp-sidebar-head h6 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sp-sidebar-head h6 i {
    color: var(--green);
    font-size: 20px;
}

/* Services List */
.sp-services-list {
    list-style: none;
    margin: 0;
    padding: 0 0;
}

.sp-services-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    transition: .2s ease;
    border-bottom: 1px solid var(--line);
    gap: 8px;
}

.sp-services-list li a:hover {
    background: #f4f8ff;
    color: var(--blue);
}


.sp-services-list li a .sp-arrow {
    color: #9aacd0;
    font-size: 13px;
    flex-shrink: 0;
}

/* Contact Info */
.sp-contact-list {
    display: flex;
    flex-direction: column;
}

.sp-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid var(--line);
    padding: 12px;
}

.sp-contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #eef3ff;
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
}

.sp-contact-item strong {
    display: block;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
}

.sp-contact-item a,
.sp-contact-item span {
    font-size: 13.5px;
    color: var(--text);
    font-weight: 600;
    text-decoration: none;
    line-height: 1.55;
    display: block;
}

.sp-contact-item a:hover {
    color: var(--blue);
}

/* Form */
.sp-form-head {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue));
    padding: 15px 15px;
}

.sp-form-head h6 {
    margin: 0 0 3px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sp-form-head p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, .72);
}

.sp-form-body {
    padding: 15px 12px;
}

.sp-form-group {
    margin-bottom: 12px;
}

.sp-form-group label {
    display: block;
    font-size: 11.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
    margin-bottom: 2px;
}

.sp-form-group input,
.sp-form-group textarea {
    width: 100%;
    padding: 11px 12px;
    border-radius: 12px;
    border: 1.5px solid var(--line);
    background: #f8fbff;
    font-size: 14px;
    color: var(--text);
    font-family: inherit;
    outline: none;
    transition: .2s ease;
}

.sp-form-group input:focus,
.sp-form-group textarea:focus {
    border-color: var(--blue);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(23, 61, 132, .08);
}

.sp-form-group textarea {
    height: 90px;
    resize: vertical;
}

.sp-form-submit {
    width: 100%;
    padding: 13px;
    border-radius: 12px;
    background: var(--green);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 8px 18px rgba(195, 59, 66, .22);
    transition: .2s ease;
}

.sp-form-submit:hover {
    background: #a82e34;
}

/* ══════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════ */
@media (max-width:1199px) {
    .sp-hero-title {
        font-size: 30px;
    }

    .sp-title {
        font-size: 28px;
    }
}

@media (max-width:991px) {
    .sp-page {
        padding: 40px 0 56px;
    }

    .sp-why-grid {
        grid-template-columns: 1fr;
    }

    .sp-cta-strip {
        flex-direction: column;
        text-align: center;
    }

    .sp-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .sp-sidebar {
        position: static;
        margin-top: 36px;
    }
}

@media (max-width:767px) {
    .sp-breadcrumb-hero {
        padding: 34px 0;
    }

    .sp-hero-title {
        font-size: 24px;
    }

    .sp-title {
        font-size: 22px;
    }

    .sp-lead {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .sp-service-img-wrap img {
        height: 220px;
    }
}

.list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    column-gap: 15px;
}






/* faq */

.evq-accordion {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(27, 45, 88, 0.08);
    padding: 20px;
    border: 1px solid var(--line);
}

/* Accordion Item */
.evq-accordion-item {
    border: none;
    border-bottom: 1px solid var(--line);
    margin: 0;
    padding: 0;
    background: transparent;
}

.evq-accordion-item:last-child {
    border-bottom: none;
}

/* Accordion Header */
.evq-accordion-header {
    margin: 0;
    padding: 0;
}

/* Accordion Button */
.evq-accordion-button {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 15px 20px !important;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.evq-accordion-button:hover {
    color: var(--blue);
}

.evq-accordion-button:focus {
    outline: none;
    box-shadow: none;
}

/* Question Number */
.evq-question-number {
    color: var(--green);
    font-size: 18px;
    font-weight: 600;
    min-width: 32px;
    opacity: 0.9;
}

/* Question Text */
.evq-question-text {
    letter-spacing: 0.02em;
    font-size: 18px;
    flex: 1;
    text-align: left;
}

/* Accordion Icon */
.evq-accordion-icon {
    color: var(--muted);
    font-size: 16px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* Active State */
.evq-accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--blue);
    border-radius: 12px;
}

.evq-accordion-button:not(.collapsed) .evq-accordion-icon {
    transform: rotate(45deg);
    color: var(--green);
}

.evq-accordion-button:not(.collapsed) .evq-question-number {
    color: var(--blue);
}

/* Accordion Collapse */
.evq-accordion-collapse {
    border: none;
}

/* Accordion Body */
.evq-accordion-body {
    padding: 0 28px 24px 72px;
    color: var(--text);
    font-size: 16px;
    line-height: 1.8;
}

.evq-accordion-body p {
    margin: 0;
}

.evq-accordion-body ul {
    padding-left: 25px;

    li {
        margin-bottom: 8px;
    }
}

/* Responsive */
@media (max-width: 991px) {

    .evq-accordion {
        padding: 12px;
    }

    .evq-accordion-button {
        padding: 15px 15px !important;
        font-size: 16px;
    }

    .evq-accordion-body {
        padding: 0 22px 20px 68px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .evq-section-title {
        font-size: 26px;
    }

    .evq-section-subtitle {
        font-size: 15px;
    }

    .evq-accordion-button {
        padding: 18px 20px !important;
        font-size: 15px;
        gap: 12px;
    }

    .evq-question-number {
        font-size: 13px;
        min-width: 28px;
    }

    .evq-accordion-body {
        padding: 0 20px 18px 64px;
        font-size: 14.5px;
    }
}

@media (max-width: 576px) {
    .evq-section-title {
        font-size: 24px;
    }

    .evq-accordion {
        padding: 12px;
        border-radius: 16px;
    }

    .evq-accordion-button {
        padding: 12px 12px !important;
        font-size: 14.5px;
    }

    .evq-question-text {
        font-size: 14.5px;
    }

    .evq-accordion-body {
        padding: 0 18px 16px 60px;
        font-size: 14px;
    }
}

/* excelance section  */

.ec-section {
    position: relative;
    width: 100%;
    min-height: 560px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background: linear-gradient(120deg, #dff0f5 0%, #eaf6f8 45%, #f0f8fd 100%);
}

.ec-left {
    position: relative;
    z-index: 3;
    width: 58%;
    padding: 56px 30px 48px 6%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ec-kicker {
    display: inline-flex;
    align-items: center;
    background: var(--green);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    border-radius: 5px;
    padding: 6px 16px;
    width: fit-content;
    margin-bottom: 18px;
}

.ec-title {
    font-size: clamp(34px, 3.6vw, 54px);
    font-weight: 800;
    color: var(--blue-dark);
    line-height: 1.1;
}

.ec-title .ec-accent {
    color: var(--green);
    display: block;
}

.ec-underline {
    width: 52px;
    height: 4px;
    border-radius: 3px;
    background: var(--green);
    margin: 18px 0 20px;
}

.ec-desc {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.75;
    max-width: 675px;
    margin-bottom: 34px;
}

.ec-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 34px;
    gap: 0;
}

.ec-feat {
    padding: 0 10px 0 10px;
    border-right: 1px solid rgba(0, 58, 112, 0.13);
}

.ec-feat:first-child {
    padding-left: 0;
}

.ec-feat:last-child {
    border-right: none;
}

.ec-feat-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 58, 112, 0.2);
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 11px;
    font-size: 17px;
    color: var(--blue);
}

.ec-feat strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 5px;
    line-height: 1.3;
}

.ec-feat span {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.55;
    display: inline-block;
}

.ec-cta-bar {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 58, 112, 0.1);
    backdrop-filter: blur(6px);
    /* max-width: 520px; */
    padding: 15px 20px;
}

.ec-cta-left {
    display: flex;
    align-items: center;
    gap: 13px;
    flex: 1;
}

.ec-cta-phone-icon {
    width: 50px;
    height: 50px;
    border-radius: 9px;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    font-size: 20px;
}

.ec-cta-label strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--text);

}

.ec-cta-label span {
    font-size: 12px;
    color: var(--muted);
}

.ec-cta-btn {
    background: var(--blue-dark);
    color: var(--white) !important;
    font-size: 14px;
    font-weight: 700;
    padding: 19px 28px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s, gap 0.2s;
}

.ec-cta-btn:hover {
    background: #001e38;
    gap: 14px;
}

.ec-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 56%;
    height: 100%;
    z-index: 1;
    clip-path: ellipse(100% 75% at 120% 50%);
}

.ec-right-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.ec-right::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--green) 0%, transparent 10%);
    z-index: 3;
    opacity: 0.55;
}

.ec-trust {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 5;
    background: var(--white);
    border-radius: 14px;
    padding: 15px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 350px;
    box-shadow: 0 8px 36px rgba(0, 38, 73, 0.2);
}

.ec-trust-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--blue-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #f7c948;
    font-size: 22px;
}

.ec-trust-text strong {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.ec-trust-text span {
    font-size: 13px;
    color: var(--muted);
    display: inline-block;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .ec-section {
        flex-direction: column;
        min-height: auto;
    }

    .ec-left {
        width: 100%;
        padding: 40px 24px 32px;
    }

    .ec-right {
        position: relative;
        width: 100%;
        height: 320px;
        clip-path: polygon(0% 8%, 100% 0%, 100% 100%, 0% 100%);
    }

    .ec-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 0;
    }

    .ec-feat {
        border-right: none;
        border-bottom: 1px solid rgba(0, 58, 112, 0.1);
        padding-bottom: 14px;
    }

    .ec-feat:nth-child(odd) {
        padding-right: 12px;
        border-right: 1px solid rgba(0, 58, 112, 0.1);
    }

    .ec-feat:nth-child(even) {
        padding-left: 12px;
    }

    .ec-feat:last-child,
    .ec-feat:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

@media (max-width: 576px) {
    .ec-left {
        padding: 32px 18px 28px;
    }

    .ec-cta-bar {
        flex-direction: column;
        max-width: 100%;
    }

    .ec-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .ec-trust {
        width: calc(100% - 32px);
        right: 16px;
    }

    .ec-features {
        grid-template-columns: 1fr 1fr;
    }
}


/* gallery */

.evc-media-img {
    aspect-ratio: 5/4;
    object-fit: cover;
    object-position: top;
    width: 100%;
    border-radius: 18px;

}

/* patients section  */

.gib-hero-left {
    padding: 40px 48px;
    background: linear-gradient(90deg, var(--bg) 0%, rgba(245, 248, 255, 0.92) 100%);
}

.gib-headline {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--blue-dark);
    line-height: 1.08;
    margin-bottom: 8px;
}

.gib-subheadline {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 12px;
}

.gib-desc {
    color: var(--muted);
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 22px;
    font-size: 0.98rem;
}

.gib-flags {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 22px;
    align-items: flex-start;
}

.gib-flag-item {
    text-align: center;
    font-size: 0.88rem;
    color: var(--text);
    width: 100px;
}

.gib-flag-circle {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--line);
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    margin: 0 auto 6px;
}

.gib-flag-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gib-trust-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 15px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    /* max-width: 680px; */
}

.gib-trust-card h6 {
    color: var(--blue-dark);
    font-weight: 800;
    margin-bottom: 10px;
}

.gib-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
    color: var(--text);
    font-size: 0.9rem;
}

.gib-trust-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 118, 116, 0.12);
    color: var(--green);
    flex-shrink: 0;
}

.gib-map-wrap {
    width: 330px;
    flex: 0 0 330px;
}

.gib-map-wrap img {
    width: 100%;
    height: auto;
    mix-blend-mode: multiply;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}

.gib-hero-right {
    min-height: 420px;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(0, 58, 112, 0.10), var(--bg));
}

.gib-hero-right img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;

    object-fit: cover;
    object-position: center;
    display: block;
}

.gib-bottom {
    background: var(--bg);
    border-top: 1px solid var(--line);
    padding: 20px 30px;
}

.gib-bottom-cards {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: stretch;
}

.gib-info-card {
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0, 38, 73, 0.05);
    overflow: hidden;
    flex: 1 1 200px;
    min-width: 200px;
    height: 100%;
    padding-right: 130px;
    background:
        linear-gradient(to right, #f6f6f6 50%, transparent 100%),
        url('../images/bg/family-bg.jpg') no-repeat right center;
    background-size: auto, contain;
}

/* .gib-info-card.c1 {
            background:
                linear-gradient(to right, #f6f6f6 50%, transparent 100%),
                url('images/bg/family-bg.jpg') no-repeat right center;
        } */

.gib-info-card.c2 {
    background:
        linear-gradient(to right, #f6f6f6 50%, transparent 100%),
        url('../images/bg/plain-bg.jpg') no-repeat right center;
    background-size: auto, contain;
}

.gib-info-card.c3 {
    background:
        linear-gradient(to right, #f6f6f6 50%, transparent 100%),
        url('../images/sur-1.jpeg') no-repeat right center;
    background-size: auto, contain;
}

.gib-info-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

.gib-info-card-body {
    padding: 12px;
}

.gib-info-card-body h6 {
    color: var(--blue-dark);
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 6px;
}

.gib-info-card-body p {
    color: var(--muted);
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.5;
}

.gib-stat-cards {
    border-radius: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    min-width: 120px;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 38, 73, 0.05);
}

.gib-stat-card {
    padding: 12px 8px;
    text-align: center;
    border-right: 1px solid var(--line);
    /* box-shadow: 0 2px 10px rgba(0, 38, 73, 0.05); */
}

.gib-stat-num {
    color: var(--blue-dark);
    font-weight: 800;
    font-size: 1.9rem;
    line-height: 1.1;
}

.gib-stat-label {
    color: var(--text);
    font-size: 0.78rem;
    line-height: 1.35;
}

@media (max-width: 991px) {
    .gib-headline {
        font-size: 1.75rem;
    }

    .gib-hero-left {
        padding: 30px 12px;
    }

    .gib-hero-right {
        min-height: 280px;
    }

    .gib-bottom {
        padding: 24px;
    }
}

@media (max-width: 767px) {
    .gib-bottom-cards {
        flex-direction: column;
    }

    .gib-map-wrap {
        display: none;
    }

    .gib-stat-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .gib-stat-card {
        flex: 1 1 140px;
    }
}

/* blogs */

/* digital marketing services  */

.dm-seo-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--blue);
    margin: 0 0 15px 0;
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

.dm-seo-title-italic {
    font-style: italic;
    font-weight: 500;
    background: var(--green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dm-seo-subtitle {
    font-size: 1.2rem;
    color: var(--text);
    line-height: 1.6;
    position: relative;
    z-index: 1;
    margin: 0;
}

.dm-seo-articles {
    padding: 60px 0;
    position: relative;
}

.dm-seo-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    position: sticky;
    top: 100px;
    left: 0;
    /* height: 100%; */
    z-index: 10;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(14, 106, 191, 0.08);
}

.dm-seo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(14, 106, 191, 0.15);
}

.dm-seo-img-wrapper {
    position: relative;
    overflow: hidden;
}

.dm-seo-img {
    width: 100%;
    aspect-ratio: 2.1/1;
    object-fit: cover;
    display: block;
}

.dm-seo-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--green);
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

.dm-seo-card:hover .dm-seo-img-wrapper::after {
    opacity: 0.2;
}

.dm-seo-card-body {
    padding: 20px;
}

.dm-seo-card-small .dm-seo-card-body {
    padding: 15px;
}

.dm-seo-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--white);
    background: var(--green);
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;

}

.dm-seo-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 10px 0;
    line-height: 1.3;
    transition: color 0.3s ease;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.dm-seo-card:hover .dm-seo-card-title {
    color: var(--blue);
}

.dm-seo-card-small .dm-seo-card-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.dm-seo-card-text {
    font-size: 1rem;
    color: var(--blue-dark);
    line-height: 1.5;
    margin: 0;
    overflow: hidden;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.dm-seo-card-small .dm-seo-card-text {
    font-size: 0.88rem;
}

.dm-seo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 1;
}

.dm-seo-card:hover::before {
    transform: scaleX(1);
}

@media (max-width: 576px) {
    .dm-seo-title {
        font-size: 2rem;
    }

    .dm-seo-card-title {
        font-size: 1.2rem;
    }

    .dm-seo-articles {
        padding: 40px 0;
    }

    .dm-seo-hero {
        padding: 40px 0 30px;
    }

    .dm-seo-card-body {
        padding: 12px;
    }
}


/* footer  */
.evc-footer {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 60px 0 24px;
    position: relative;
}

/* Brand / Logo */
.evc-footer-brand {
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.evc-footer-brand i {
    color: var(--green);
    font-size: 26px;
}

.evc-footer-text {
    font-size: 16px;
    line-height: 1.85;
    margin: 0;
    color: var(--white);
}

/* Section Titles */
.evc-footer-title {
    color: var(--white);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.evc-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--green);
    border-radius: 2px;
}

/* Links Lists */
.evc-footer-links,
.evc-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.evc-footer-links li {
    margin-bottom: 12px;
}

.evc-footer-links a {
    color: var(--white);
    font-size: 16px;
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
}

.evc-footer-links a i {
    font-size: 10px;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.25s ease;
}

.evc-footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.evc-footer-links a:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Info */
.evc-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.evc-footer-contact i {
    color: var(--green);
    font-size: 16px;
    margin-top: 3px;
    width: 16px;
    flex-shrink: 0;
}

.evc-footer-contact a,
.evc-footer-contact span {
    color: var(--white);
    font-size: 16px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.evc-footer-contact a:hover {
    color: var(--white);
}

/* Social Media */
.evc-footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.evc-social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: var(--white);
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.evc-social-link:hover {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(23, 61, 132, 0.18);
}

/* Divider */
.evc-footer-hr {
    border-color: rgba(255, 255, 255, 0.62);
    margin: 24px 0 20px;
}

/* Bottom Section */
.evc-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.evc-footer-copyright p {
    margin: 0;
    font-size: 16px;
    color: var(--white);
}

.evc-footer-copyright strong {
    color: var(--white);
    font-weight: 600;
}

.evc-footer-bottom-links {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.evc-footer-bottom-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s ease;
}

.evc-footer-bottom-links a:hover {
    color: var(--white);
}

/* Responsive */
@media (max-width: 991px) {
    .evc-footer {
        padding: 48px 0 20px;
    }

    .evc-footer-title::after {
        left: 0;
    }

    .evc-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding-bottom: 10px;
    }

    .evc-footer-bottom-links {
        gap: 18px;
    }

    .evc-footer-text {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .evc-footer-brand {
        font-size: 19px;
    }

    .evc-footer-brand i {
        font-size: 22px;
    }

    .evc-social-link {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .evc-footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
}