/* ==============================
       CSS CUSTOM PROPERTIES
    ============================== */
:root {
    --primary: #006B8F;
    /* teal-blue — hospital trust */
    --primary-dark: #004E6A;
    --primary-light: #008FAF;
    --accent: #E8A020;
    /* warm gold */
    --accent-light: #F5C040;
    --white: #ffffff;
    --off-white: #F4F8FB;
    --text-dark: #0D2233;
    --text-mid: #3A5068;
    --text-light: #7A92A6;
    --border: rgba(0, 107, 143, 0.12);
    --shadow-sm: 0 2px 12px rgba(0, 107, 143, 0.10);
    --shadow-md: 0 8px 32px rgba(0, 107, 143, 0.16);
    --shadow-lg: 0 20px 60px rgba(0, 107, 143, 0.18);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.38s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==============================
       RESET & BASE
    ============================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* ==============================
       SCROLLBAR
    ============================== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

/* preloader */
/* =========================
CBLM IMAGE CIRCLE PRELOADER
========================= */

.cblm-preloader {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100vh;

    background: #061b13;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 999999;

    transition: 0.8s ease;
}

.cblm-preloader.hide-preloader {
    opacity: 0;
    visibility: hidden;
}

.cblm-loader-wrap {
    text-align: center;
}

/* CIRCLE WRAPPER */
.cblm-circle-wrapper {
    position: relative;

    width: 150px;
    height: 150px;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* ROTATING BORDER */
.cblm-circle-border {
    position: absolute;

    width: 150px;
    height: 150px;

    border-radius: 50%;

    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid #36d98a;
    border-left: 4px solid #36d98a;

    animation: cblmRotate 1s linear infinite;
}

/* LOGO */
.cblm-loader-logo {
    width: 90px;
    height: 90px;

    object-fit: contain;

    border-radius: 50%;

    background: #ffffff;

    padding: 10px;
}

/* TEXT */
.cblm-loader-text {
    margin-top: 20px;

    color: #ffffff;

    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;

    font-family: sans-serif;
}

/* ROTATION */
@keyframes cblmRotate {

    100% {
        transform: rotate(360deg);
    }

}

/* ==============================
       UTILITY
    ============================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.section-label-center{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;

    color: #d89b2b;
}
.section-label-center::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--accent);
    display: inline-block;
}
.section-label::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--accent);
    display: inline-block;
}

.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.section-subheading {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.75;
    
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--primary);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 30px;
    border-radius: 50px;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(0, 107, 143, 0.28);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 107, 143, 0.36);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 30px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* ==============================
       ANNOUNCEMENT BAR
    ============================== */
.announce-bar {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.84rem;
    padding: 8px 0;
    overflow: hidden;
}

.announce-bar .ticker {
    display: flex;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
    gap: 60px;
}

.announce-bar .ticker span {
    padding-right: 60px;
}

.announce-bar .ticker i {
    color: var(--accent-light);
    margin-right: 6px;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ==============================
       HEADER / NAV
    ============================== */
/* =========================
HEADER
========================= */

header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: var(--white);

    box-shadow: 0 2px 20px rgba(0, 107, 143, 0.10);

    transition: var(--transition);
}

header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 107, 143, 0.18);
}

/* =========================
NAVBAR
========================= */

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 70px;
}

/* =========================
LOGO
========================= */

.logo {
    display: flex;
    align-items: center;

    height: 70px;
}

.logo img {
    height: 60px;
    object-fit: contain;

    display: block;
}

/* =========================
NAV LINKS
========================= */

.nav-links {
    display: flex;
    align-items: center;

    gap: 4px;

    margin: 0;
    padding: 0;

    list-style: none;

    height: 70px;
}

.nav-links>li {
    position: relative;

    display: flex;
    align-items: center;

    height: 100%;
}

.nav-links>li>a,
.nav-links>li>span {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 100%;

    gap: 5px;

    font-weight: 500;
    font-size: 0.91rem;

    color: var(--text-dark);

    padding: 0 14px;

    border-radius: 8px;

    transition: var(--transition);

    cursor: pointer;
}

.nav-links>li>a:hover,
.nav-links>li>span:hover,
.nav-links>li>a.active,
.nav-links>li>span.active {
    color: var(--primary);

    background: rgba(0, 107, 143, 0.07);
}

/* =========================
DROPDOWN
========================= */

.dropdown {
    position: absolute;

    top: calc(100% + 8px);
    left: 0;

    background: var(--white);

    border-radius: var(--radius-sm);

    box-shadow: var(--shadow-lg);

    min-width: 300px;

    padding: 10px;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-8px);

    transition: var(--transition);

    border: 1px solid var(--border);

    z-index: 999;
}

.nav-links>li:hover .dropdown {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.dropdown a {
    display: block;

    padding: 9px 14px;

    font-size: 0.88rem;

    color: var(--text-mid);

    border-radius: 6px;

    transition: var(--transition);
}

.dropdown a:hover {
    color: var(--primary);

    background: rgba(0, 107, 143, 0.07);

    padding-left: 20px;
}

/* =========================
CTA
========================= */

.nav-cta {
    display: flex;
    align-items: center;

    gap: 14px;

    height: 70px;
}

.nav-phone {
    font-weight: 600;
    font-size: 0.9rem;

    color: var(--primary);

    display: flex;
    align-items: center;

    gap: 7px;
}

.nav-phone i {
    color: var(--accent);
}

/* =========================
HAMBURGER
========================= */
/* =========================
   HAMBURGER
========================= */

.hamburger{
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: transparent;
    border: none;
    z-index: 99999;
}

.hamburger span{
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: 0.3s ease;
}

/* =========================
   MOBILE NAVBAR
========================= */

@media(max-width:991px){

    .nav-links{
        position: fixed;

        top: 80px;
        left: -100%;

        width: 100%;
        height: calc(100vh - 80px);

        background: #fff;

        display: flex;
        flex-direction: column;

        padding: 20px;

        gap: 2px;

        transition: 0.4s ease;

        z-index: 9999;

        overflow-y: auto;

        overscroll-behavior: contain;
    }


    .nav-links.active{
        left: 0;
    }

    /* REMOVE BIG SPACING */

    .nav-links li{
        width: 100%;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav-links li a{
        display: flex;
        align-items: center;
        justify-content: space-between;

        width: 100%;

        padding: 14px 16px;

        font-size: 18px;

        border-radius: 12px;
    }

    /* REMOVE EXTRA GAP */

    .nav-links{
        gap: 2px;
    }

}
/* ==============================
       HERO
    ============================== */
.hero {
    position: relative;
    min-height: 92vh;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #0099C2 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(232, 160, 32, 0.12) 0%, transparent 40%);
}

/* Animated circles */
.hero-circles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hc {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: pulse-circle 6s ease-in-out infinite;
}

.hc:nth-child(1) {
    width: 300px;
    height: 300px;
    right: 8%;
    top: 10%;
    animation-delay: 0s;
}

.hc:nth-child(2) {
    width: 500px;
    height: 500px;
    right: 4%;
    top: -5%;
    animation-delay: 1.5s;
    opacity: 0.5;
}

.hc:nth-child(3) {
    width: 180px;
    height: 180px;
    left: 5%;
    bottom: 10%;
    animation-delay: 3s;
}

@keyframes pulse-circle {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.08);
        opacity: 0.2;
    }
}

/* Floating medical icons */
.float-icon {
    position: absolute;
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.15);
    animation: floatIcon 8s ease-in-out infinite;
}

.float-icon:nth-child(1) {
    top: 15%;
    left: 3%;
    animation-delay: 0s;
}

.float-icon:nth-child(2) {
    top: 70%;
    left: 8%;
    animation-delay: 2s;
}

.float-icon:nth-child(3) {
    top: 40%;
    right: 3%;
    animation-delay: 4s;
}

.float-icon:nth-child(4) {
    bottom: 12%;
    right: 12%;
    animation-delay: 1s;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-18px) rotate(8deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
}

.hero-text {
    animation: fadeInUp 0.8s ease both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 160, 32, 0.18);
    border: 1px solid rgba(232, 160, 32, 0.4);
    color: var(--accent-light);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 28px;
}

.hero-badge i {
    font-size: 0.75rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 22px;
}

.hero-title span {
    color: var(--accent-light);
}

.hero-desc {
    font-size: 1.07rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: left;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-light);
    line-height: 1;
}

.stat-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
    font-weight: 500;
}

/* Hero right side - appointment card */
.hero-card {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 24px;
    padding: 40px 36px;
    box-shadow: var(--shadow-lg);
    animation: fadeInRight 0.9s ease 0.2s both;
}

.hero-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.hero-card p {
    color: var(--text-mid);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-mid);
    margin-bottom: 7px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    color: var(--text-dark);
    background: var(--off-white);
    transition: var(--transition);
    outline: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(0, 107, 143, 0.12);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* ==================================================
         EXTRACTED INLINE STYLES — moved into main.css
         Grouped and documented for maintainability
         ================================================== */

/* ----- Icon sizing ----- */
/* small chevron used in nav dropdown triggers */
.fa-chevron-down {
    font-size: 0.65rem;
}

/* ----- Navigation helpers ----- */
/* smaller primary button when inside nav-cta */
.nav-cta .btn-primary {
    padding: 11px 22px;
    font-size: 0.88rem;
}

/* overlay container used for decorative floating icons in the hero */
.hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* ----- Layout utility modifiers ----- */
/* remove container horizontal padding when needed */
.container--flush {
    padding: 0;
}

/* spacing helpers (small set used in templates) */
.mb-28 {
    margin-bottom: 28px;
}

.mt-16-auto {
    margin: 16px auto 0;
}

.mt-18 {
    margin: 18px 0 0;
}

.center-cta {
    text-align: center;
    margin-top: 44px;
}

/* prevent shrinking for inline CTAs */
.no-shrink {
    flex-shrink: 0;
}

/* ----- Reveal / animation delays ----- */
/* small utility classes to stagger `.reveal` animations */
.delay-010 {
    transition-delay: 0.10s;
}

.delay-015 {
    transition-delay: 0.15s;
}

.delay-020 {
    transition-delay: 0.20s;
}

.delay-030 {
    transition-delay: 0.30s;
}

.delay-040 {
    transition-delay: 0.40s;
}

.delay-045 {
    transition-delay: 0.45s;
}

.delay-050 {
    transition-delay: 0.50s;
}

/* ----- Gradient helper classes ----- */
/* quick-access icon gradients */
.qa-icon.grad-gold {
    background: linear-gradient(135deg, #E8A020, #F5C040);
}

.qa-icon.grad-green {
    background: linear-gradient(135deg, #10B981, #34D399);
}

.qa-icon.grad-purple {
    background: linear-gradient(135deg, #8B5CF6, #A78BFA);
}

/* why-section icon gradients */
.why-icon.grad-gold {
    background: linear-gradient(135deg, #E8A020, #F5C040);
}

.why-icon.grad-green {
    background: linear-gradient(135deg, #10B981, #34D399);
}

.why-icon.grad-red {
    background: linear-gradient(135deg, #EF4444, #F87171);
}

.why-icon.grad-indigo {
    background: linear-gradient(135deg, #8B5CF6, #A78BFA);
}

.why-icon.grad-yellow {
    background: linear-gradient(135deg, #F59E0B, #FCD34D);
}

/* blog thumbnail gradients */
.blog-thumb.blog-grad-primary {
    background: linear-gradient(135deg, var(--primary), #00BCD4);
}

.blog-thumb.blog-grad-amber {
    background: linear-gradient(135deg, #E8A020, #F59E0B);
}

/* before/after image gradients */
.ba-img.ba-grad-1 {
    background: linear-gradient(135deg, #065f46, #10b981);
}

.ba-img.ba-grad-2 {
    background: linear-gradient(135deg, #065f46, #059669);
}

/* ----- Small component helpers ----- */
/* compact patient-results card moved from inline markup */
.patient-results {
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.patient-results-title {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.patient-results-sub {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 4px;
}

/* ----- Footer helpers ----- */
.footer-logo-text {
    display: none;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
}

.footer-contact-item a {
    color: inherit;
}

.btn-primary.footer-directions {
    font-size: 0.82rem;
    padding: 11px 20px;
    margin-top: 8px;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    width: 100%;
}

.footer-bottom strong {
    color: rgba(255, 255, 255, 0.7);
}

/* end: extracted helpers */

.hero-card .btn-primary {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
    font-size: 1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(36px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(36px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==============================
       QUICK ACCESS STRIP
    ============================== */
.quick-access {
    background: var(--white);
    padding: 0;
    box-shadow: 0 4px 24px rgba(0, 107, 143, 0.1);
}

.quick-access-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.qa-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 28px;
    border-right: 1px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.qa-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: var(--transition);
}

.qa-item:hover::before {
    width: 100%;
}

.qa-item:hover {
    background: rgba(0, 107, 143, 0.04);
}

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

.qa-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.qa-item:hover .qa-icon {
    transform: scale(1.1) rotate(-5deg);
}

.qa-label {
    font-weight: 700;
    font-size: 0.97rem;
    color: var(--text-dark);
}

.qa-sub {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 2px;
}

/* ==============================
       ABOUT SECTION
    ============================== */
.about {
    padding: 100px 0;
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img-icon {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.15);
}

.about-img-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    padding: 40px;
}

.about-img-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.about-img-text p {
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0.88;
}

.about-badge-floating {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: var(--shadow-md);
    text-align: center;
    animation: float 4s ease-in-out infinite;
}

.about-badge-floating .num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
}

.about-badge-floating .lbl {
    font-size: 0.78rem;
    color: var(--text-mid);
    font-weight: 500;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.about-text .section-heading {
    margin-bottom: 20px;
}

.about-text .section-subheading {
    margin-bottom: 28px;
}

.about-pillars {
   display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 36px;
}

.pillar {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.pillar:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.pillar-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(0, 107, 143, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.pillar h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.pillar p {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ==============================
       SPECIALITIES
    ============================== */
.specialities {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-label {
    justify-content: center;
}

.section-header .section-subheading {
    margin: 0 auto;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.spec-card {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 36px 26px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.spec-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    opacity: 0;
    transition: var(--transition);
}

.spec-card:hover::before {
    opacity: 1;
}

.spec-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.spec-card:hover .spec-icon,
.spec-card:hover .spec-title,
.spec-card:hover .spec-desc {
    color: var(--white);
}

.spec-icon {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.spec-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.spec-desc {
    font-size: 0.84rem;
    color: var(--text-mid);
    line-height: 1.6;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

/* ==============================
       STATS COUNTER
    ============================== */
.stats-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stats-item {
    text-align: center;
}

.stats-num {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 10px;
}

.stats-num span {
    color: var(--accent-light);
}

.stats-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* ==============================
       HAIR TRANSPLANT SECTION
    ============================== */
.hair-section {
    padding: 100px 0;
    background: var(--off-white);
}

.hair-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hair-text {
    order: 1;
}

.hair-visual {
    order: 2;
}

.hair-types {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 28px 0;
}

.hair-type-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--white);
    border: 1.5px solid var(--border);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
}

.hair-type-tag:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.before-after-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ba-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.ba-img {
    height: 180px;
    background: linear-gradient(135deg, #1a3a4a, #2d6080);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.ba-label {
    padding: 12px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-mid);
    display: flex;
    align-items: center;
    gap: 8px;
}

.ba-label .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.ba-label .dot.before {
    background: #EF4444;
}

.ba-label .dot.after {
    background: #10B981;
}

/* ==============================
       WHY CHOOSE US
    ============================== */
.why-us {
    padding: 100px 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.why-card {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: var(--off-white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.why-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.why-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
}

.why-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.why-body p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.7;
}

/* ==============================
       TESTIMONIALS
    ============================== */
.testimonials {
    padding: 100px 0;
    background: var(--off-white);
}

.testi-slider{
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 60px;
}

.testi-track{
    display: flex;
    gap: 24px;
    width: max-content;
    animation: testiScroll 100s linear infinite;
}

.testi-slider:hover .testi-track{
    animation-play-state: paused;
}

.testi-card{
    width: 380px;
    flex-shrink: 0;
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.testi-card::before{
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    line-height: 1;
    color: var(--primary);
    opacity: 0.12;
    position: absolute;
    top: 16px;
    left: 24px;
}

.testi-card:hover{
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.testi-stars{
    color: var(--accent);
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.testi-text{
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testi-author{
    display: flex;
    align-items: center;
    gap: 14px;
}

.testi-avatar{
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}

.testi-name{
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.testi-role{
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Infinite Animation */
@keyframes testiScroll{
    0%{
        transform: translateX(0);
    }

    100%{
        transform: translateX(calc(-50% - 12px));
    }
}

/* Tablet */
@media (max-width: 992px){

    .testi-card{
        width: 320px;
        padding: 28px;
    }

}

/* Mobile */
@media (max-width: 600px){

    .testi-track{
        gap: 16px;
    }

    .testi-card{
        width: 280px;
        padding: 22px;
    }

    .testi-text{
        font-size: 14px;
        line-height: 24px;
    }

}

/* ==============================
       DOCTORS SECTION
    ============================== */
.doctors {
    padding: 100px 0;
    background: var(--white);
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
}

.doctor-card {
    background: var(--off-white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.doctor-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: var(--primary);
}

.doctor-img {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.25);
}

.doctor-info {
    padding: 24px;
}

.doctor-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.doctor-spec {
    font-size: 0.83rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 14px;
}

.doctor-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.82rem;
    color: var(--text-light);
}

.doctor-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ==============================
       BLOG SECTION
    ============================== */
.blog {
    padding: 100px 0;
    background: var(--off-white);
}

/* =========================
   BLOG SLIDER
========================= */

.blog-slider-wrap{
    position: relative;
    margin-top: 60px;
    overflow: hidden;
}

.blog-slider{
    overflow: hidden;
    width: 100%;
}

.blog-grid{
    display: flex;
    gap: 28px;
    transition: transform 0.6s ease;
}

/* =========================
   BLOG CARD
========================= */

.blog-card{
    flex: 0 0 calc(33.333% - 18.7px);
    max-width: calc(33.333% - 18.7px);

    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);

    flex-shrink: 0;
}

.blog-card:hover{
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

/* =========================
   BLOG THUMB
========================= */

.blog-thumb{
    height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.blog-grad-primary{
    background: linear-gradient(135deg,#0891b2,#06b6d4);
}

.blog-grad-amber{
    background: linear-gradient(135deg,#d97706,#f59e0b);
}

/* =========================
   BLOG DATE
========================= */

.blog-date{
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--white);
    border-radius: 10px;
    padding: 8px 14px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    text-align: center;
}

/* =========================
   BLOG BODY
========================= */

.blog-body{
    padding: 26px;
}

.blog-tag{
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.blog-title{
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 14px;
}

.blog-title a{
    color: var(--text-dark);
    text-decoration: none;
}

.blog-excerpt{
    font-size: 0.86rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-read{
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: 0.3s ease;
}

.blog-card:hover .blog-read{
    gap: 12px;
}

/* =========================
   BUTTONS
========================= */

.blog-btn{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    cursor: pointer;
    z-index: 20;
    transition: 0.3s ease;
}

.blog-btn:hover{
    transform: translateY(-50%) scale(1.08);
}

.blog-prev{
    left: 10px;
}

.blog-next{
    right: 10px;
}

/* =========================
   DOTS
========================= */

.blog-dots{
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.blog-dot{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: 0.3s ease;
}

.blog-dot.active{
    background: var(--primary);
    transform: scale(1.2);
}

/* =========================
   TABLET
========================= */

@media(max-width:992px){

    .blog-card{
        flex: 0 0 calc(50% - 14px);
        max-width: calc(50% - 14px);
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:600px){

    .blog-grid{
        gap: 18px;
    }

    .blog-card{
        flex: 0 0 100%;
        max-width: 100%;
    }

    .blog-thumb{
        height: 180px;
        font-size: 3rem;
    }

    .blog-body{
        padding: 20px;
    }

    .blog-btn{
        width: 40px;
        height: 40px;
    }

}
/* ==============================
       CTA STRIP
    ============================== */
.cta-strip {
    background: linear-gradient(135deg, var(--accent) 0%, #D4890C 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--white);
    color: var(--accent);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 30px;
    border-radius: 50px;
    border: 2px solid var(--white);
    transition: var(--transition);
}

.btn-white:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 30px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* ==============================
       FOOTER
    ============================== */
footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    margin-bottom: 18px;
}

.footer-logo img {
    height: 52px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-about {
    font-size: 0.88rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
}

.social-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--accent);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a::before {
    content: '›';
    color: var(--accent);
    font-size: 1rem;
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
}

.fc-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 0.9rem;
}

.fc-label {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.fc-value {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-bottom p {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-bottom a {
    color: var(--accent);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

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

/* ==============================
       BACK TO TOP
    ============================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: all;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ==============================
       EMERGENCY FLOAT
    ============================== */
.emergency-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.ef-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #EF4444;
    color: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
    animation: pulse-red 2s infinite;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

@keyframes pulse-red {

    0%,
    100% {
        box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
    }

    50% {
        box-shadow: 0 8px 30px rgba(239, 68, 68, 0.7);
    }
}

.ef-wa {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    border: none;
    text-decoration: none;
}

/* ==============================
       SCROLL REVEAL
    ============================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==============================
       RESPONSIVE
    ============================== */
@media (max-width: 1024px) {
    .spec-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-access-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .qa-item:nth-child(2) {
        border-right: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding: 60px 0;
    }

    .hero-card {
        display: none;
    }

    .about-grid,
    .hair-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        display: none;
    }

    .why-grid,
    .testi-grid,
    .doctors-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-access-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .spec-grid {
        grid-template-columns: 1fr;
    }

    .quick-access-inner {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }
    
}



.story_sec {
    padding: 100px 0;
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;

}

.story-text p {
    font-size: 15px;
    color: var(--slate);
    line-height: 1.8;
    margin-bottom: 16px
}

.story-text p:last-child {
    margin-bottom: 0
}

.story-highlight {
    background: var(--text-light);
    border-left: 4px solid var(--primary);
    border-radius: 0 10px 10px 0;
    padding: 20px 24px;
    margin: 24px 0;
    font-size: 15px;
    color: var(--primary-dark);
    font-style: italic;
    line-height: 1.7
}

.story-image {
    background: #deedfb;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.story-img-card {
    background: white;
    border-radius: 14px;
    padding: 22px;
    box-shadow: var(--shadow)
}

.story-img-card-label {
    font-size: 11px;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 6px
}

.story-img-card-val {
    font-family: var(--font-head);
    font-size: 28px;
    color: var(--primary-dark);
    font-weight: 600
}

.story-img-card-sub {
    font-size: 12.5px;
    color: var(--slate);
    margin-top: 2px
}

.story-img-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

/* =========================
LASER TREATMENT CARD
========================= */

.laser-treatment-card-new {
    background: #1a6fc4;
    color: #ffffff;
}

.laser-treatment-label {
    font-size: 12px;

    opacity: .75;

    text-transform: uppercase;

    letter-spacing: .8px;

    margin-bottom: 6px;
}

.laser-treatment-title {
    font-family: var(--font-head);

    font-size: 18px;

    font-weight: 600;

    line-height: 1.4;
}

/* =========================
FISTULA HOSPITAL SECTION
========================= */

.fistula-hospital-section {
    background: #eef6ff;
}

/* TITLE */
.fistula-section-title {
    text-align: center;
    margin-bottom: 50px;
}

.fistula-section-title h2 {
    font-size: 42px;
    color: #002d62;
    margin-bottom: 18px;
}

.fistula-section-title p {
    color: #555;
    max-width: 800px;
    margin: auto;
    line-height: 1.8;
}

/* GRID */
.fistula-card-grid {
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

    gap: 20px;
}

/* CARD */
.fistula-info-card {
    background: #fff;

    border-radius: 24px;

    padding: 35px;

    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);

    transition: 0.4s;

    position: relative;

    overflow: hidden;
}

/* TOP BORDER */
.fistula-info-card::before {
    content: '';

    position: absolute;

    width: 100%;
    height: 5px;

    left: 0;
    top: 0;

    background: linear-gradient(to right, #00b4ff, #002d62);
}

/* HOVER */
.fistula-info-card:hover {
    transform: translateY(-10px);
}

/* TITLE */
.fistula-info-card h3 {
    margin-bottom: 15px;

    color: #002d62;

    font-size: 24px;
}

/* TEXT */
.fistula-info-card p {
    color: #555;

    line-height: 1.7;
}

/* =========================
SURGERY ADVICE SECTION
========================= */

.surgery-advice-section {
    background: var(--off);
}

/* GRID */
.surgery-advice-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 56px;

    align-items: center;
}

/* VISUAL */
.surgery-advice-visual {
    background: linear-gradient(135deg,
            var(--navy),
            var(--navy-light));

    border-radius: var(--r);

    padding: 36px;

    color: #fff;

    min-height: 360px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 18px;

    text-align: center;
}

/* VISUAL HEADING */
.surgery-advice-visual h3 {
    color: #fff;

    font-size: 1.3rem;
}

/* VISUAL TEXT */
.surgery-advice-visual p {
    color: rgba(255, 255, 255, .72);

    font-size: .87rem;
}

/* LIST */
.surgery-advice-list {
    list-style: none;

    display: grid;

    gap: 9px;

    margin: 0;

    padding: 0;
}

/* LIST ITEM */
.surgery-advice-list li {
    display: flex;

    align-items: flex-start;

    gap: 11px;

    padding: 11px 15px;

    background: #fff;

    border-radius: 9px;

    font-size: .9rem;

    border-left: 3px solid rgb(241, 54, 54);

    box-shadow: 0 1px 5px rgba(0, 0, 0, .05);
}

/* =========================
SURGERY ADVICE IMAGE
========================= */

.surgery-advice-visual-img {
    width: 100%;

    max-width: 520px;

    object-fit: cover;

    display: block;

    margin: auto;

    border-radius: 20px;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 992px) {

    .surgery-advice-visual-img {
        max-width: 360px;
    }

}

@media (max-width: 768px) {

    .surgery-advice-visual-img {
        max-width: 100%;
    }

}

.what-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.what-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.what-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.what-image-badge {
    position: absolute;
    left: 20px;
    bottom: 20px;

    display: flex;
    align-items: center;
    gap: 6px;

    padding: 8px 16px;
    border-radius: 50px;

    background: var(--primary);
    color: #fff;

    font-size: 13px;
    font-weight: 700;
}

.what-content p {
    margin-bottom: 16px;

    font-size: 15.5px;
    line-height: 1.8;
    color: var(--text-muted);
}

.what-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;

    margin-top: 24px;
}

.info-chip {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    padding: 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);

    background: var(--bg-soft);
}

.info-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: var(--primary-light);
    color: var(--primary);
}

.info-icon svg {
    width: 16px;
    height: 16px;
}

.info-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
}

.info-desc {
    margin-top: 2px;

    font-size: 12px;
    color: var(--text-muted);
}

.piles-treatment-section {
    padding: 40px 0;
}

.piles-treatment-box {
    padding: 35px;
    border: 1px solid #1d4ed8;
    border-radius: 20px;
    background: #fff;
}

.piles-treatment-box .section-heading {
    margin-bottom: 18px;
}

.piles-treatment-box .section-heading span {
    color: #1d4ed8;
}

.piles-treatment-box p {
    margin-bottom: 14px;

    font-size: 15.5px;
    line-height: 1.8;
    color: var(--text-muted);
}


.food-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}
/* Tablet */
@media (max-width: 992px){

    .food-grid{
        gap: 24px;
    }

}

/* Mobile */
@media (max-width: 768px){

    .food-grid{
        grid-template-columns: 1fr;
        gap: 20px;
    }

}
.food-col {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.food-header {
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.food-eat .food-header {
    background: #f0fdf4;
    border-bottom: 1px solid #bbf7d0;
}

.food-avoid .food-header {
    background: #fff1f2;
    border-bottom: 1px solid #fecdd3;
}

.food-header svg {
    width: 22px;
    height: 22px;
}

.food-eat .food-header svg {
    color: #16a34a;
}

.food-avoid .food-header svg {
    color: #dc2626;
}

.food-header h4 {
    font-size: 16px;
    font-weight: 700;
}

.food-eat .food-header h4 {
    color: #15803d;
}

.food-avoid .food-header h4 {
    color: #b91c1c;
}

.food-list {
    padding: 16px 24px 20px;
}

.food-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
}

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

.food-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

.food-eat .food-dot {
    background: #16a34a;
}

.food-avoid .food-dot {
    background: #dc2626;
}

.food-item span {
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
}

.food-item small {
    display: block;
    font-size: 12.5px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* CONTENT */

.content-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-wrap img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
@media (max-width: 992px){

    .content-wrap{
        gap: 40px;
    }

}

/* Mobile */
@media (max-width: 768px){

    .content-wrap{
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .content-text{
        order: 2;
    }

    .reveal{
        order: 1;
    }

}
.content-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #002d62;
}

.content-text p {
    margin-bottom: 18px;
    color: #555;
}

.list {
    margin-top: 25px;
}

.list li {
    list-style: none;
    margin-bottom: 14px;
    position: relative;
    padding-left: 30px;
    color: #444;
}

.list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00b4ff;
    font-weight: bold;
}

.bg-light {
    background: #faf8f6 !important;
    padding: 100px 0;
}

.mvv-grid {
   display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}
/* Tablet */
@media (max-width: 992px){

    .mvv-grid{
        grid-template-columns: repeat(2, 1fr);
    }

}

/* Mobile */
@media (max-width: 768px){

    .mvv-grid{
        grid-template-columns: 1fr;
        gap: 20px;
    }

}
.mvv-card {
    background: white;
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid var(--text-dark);
    position: relative;
    overflow: hidden;
    transition: box-shadow .25s, transform .2s
}

.mvv-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px)
}

.mvv-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s
}

.mvv-card:hover::after {
    transform: scaleX(1)
}

.mvv-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #faf8f6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px
}

.mvv-icon svg {
    width: 26px;
    height: 26px
}

.mvv-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px
}

.mvv-text {
    font-size: 13.5px;
    color: var(--slate);
    line-height: 1.7
}
.med-service-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;

    position: relative;
    overflow: hidden;

    border-left: 5px solid #d32f2f;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.med-service-card::before {
    content: '';

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background: linear-gradient(90deg, #d32f2f, #1565c0);
}

.med-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.med-service-icon {
    width: 80px;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 1.5rem;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        rgba(211, 47, 47, 0.1),
        rgba(21, 101, 192, 0.1)
    );

    color: #d32f2f;
    font-size: 2rem;
}

/* responsive */

/* Tablet */
@media (max-width: 768px){

    .about-pillars{
        grid-template-columns: 1fr;
    }

    .pillar{
        padding: 16px;
    }
     .story-grid{
        grid-template-columns: 1fr;
        gap: 40px;
    }
     .surgery-advice-grid{
        grid-template-columns: 1fr;
        gap: 40px;
    }

}

/* Mobile */
@media (max-width: 480px){

    .about-pillars{
        gap: 12px;
    }

    .pillar{
        flex-direction: row;
        align-items: flex-start;
    }

    .pillar h4{
        font-size: 16px;
        line-height: 24px;
    }

    .pillar p{
        font-size: 14px;
        line-height: 22px;
    }

    .pillar-icon{
        min-width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
     .story-grid{
        grid-template-columns: 1fr;
        gap: 40px;
    }
     .surgery-advice-grid{
        grid-template-columns: 1fr;
        gap: 40px;
    }

}

/* =========================
   SECTION
========================= */

.fissure-info-sec{
    padding: 90px 0;
    background: #ffffff;
}

/* =========================
   GRID
========================= */

.fissure-info-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* =========================
   LEFT CONTENT
========================= */

.fissure-info-content .section-label{
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 40px;
    background: #eef2ff;
    color: #1d4ed8;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 22px;
}

.fissure-info-content .section-heading{
    font-size: 3rem;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 28px;
}

.fissure-info-box{
    background: #eef2ff;
    border-left: 4px solid #1d4ed8;
    border-radius: 0 16px 16px 0;
    padding: 30px;
    margin-bottom: 30px;
}

.fissure-info-box p{
    font-size: 1.05rem;
    line-height: 2;
    color: #1e3a8a;
    margin-bottom: 18px;
}

.fissure-info-box p:last-child{
    margin-bottom: 0;
}

.fissure-bottom-text{
    font-size: 1.05rem;
    line-height: 1.9;
    color: #475569;
    margin-bottom: 30px;
}

.fissure-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* =========================
   RIGHT CARD
========================= */

.fissure-symptoms-card{
    background: #f5fdff;
    border: 1px solid #cbd5e1;
    border-radius: 18px;
    padding: 38px;
}

.fissure-symptoms-card h3{
    font-size: 1.7rem;
    line-height: 1.4;
    color: #0f172a;
    margin-bottom: 30px;
}

.fissure-symptoms-card ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

.fissure-symptoms-card ul li{
    position: relative;
    padding: 18px 0 18px 22px;
    border-bottom: 1px solid #dbeafe;
    font-size: 1.02rem;
    line-height: 1.8;
    color: #0f172a;
}

.fissure-symptoms-card ul li::before{
    content: '';
    position: absolute;
    left: 0;
    top: 31px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f97316;
}

.fissure-note{
    margin-top: 26px;
    font-size: 1rem;
    line-height: 1.9;
    color: #475569;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .fissure-info-grid{
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .fissure-info-content .section-heading{
        font-size: 2.4rem;
    }

}

@media(max-width:600px){

    .fissure-info-sec{
        padding: 70px 0;
    }

    .fissure-info-content .section-heading{
        font-size: 2rem;
    }

    .fissure-info-box{
        padding: 24px;
    }

    .fissure-info-box p,
    .fissure-bottom-text,
    .fissure-symptoms-card ul li,
    .fissure-note{
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .fissure-symptoms-card{
        padding: 28px 24px;
    }

    .fissure-symptoms-card h3{
        font-size: 1.35rem;
    }

}

/* =========================
   CAUSES SECTION
========================= */

.causes-sec{
    padding: 90px 0;
    background: #f8fafc;
}

/* =========================
   HEADING
========================= */

.causes-heading{
    max-width: 760px;
    margin: 0 auto 60px;
}

.causes-heading .section-label{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 18px;

    border-radius: 40px;

    background: #eef2ff;

    color: #1d4ed8;

    font-size: 0.82rem;
    font-weight: 700;

    letter-spacing: 0.08em;

    margin-bottom: 22px;
}

.causes-heading .section-heading{
    margin-bottom: 18px;
}

.causes-heading .section-subheading{
    max-width: 640px;
    margin: 0 auto;
}

/* =========================
   GRID
========================= */

.causes-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* =========================
   CARD
========================= */

.cause-card{
    background: #fff;

    border: 1px solid #dbe4ff;

    border-radius: 18px;

    padding: 36px 10px;

    text-align: center;

    transition: 0.3s ease;
}

.cause-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.08);
}

.cause-icon{
    width: 72px;
    height: 72px;

    margin: 0 auto 24px;

    border-radius: 16px;

    background: #f8fafc;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 2rem;
}

.cause-card h3{
    font-size: 1.2rem;
    line-height: 1.5;

    color: #0f172a;

    margin-bottom: 14px;
}

.cause-card p{
    font-size: 0.95rem;
    line-height: 1.9;

    color: #475569;

    margin: 0;
}

/* =========================
   TABLET
========================= */

@media(max-width:991px){

    .causes-grid{
        grid-template-columns: repeat(2, 1fr);
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:600px){

    .causes-sec{
        padding: 70px 0;
    }

    .causes-heading{
        margin-bottom: 40px;
    }

    .causes-grid{
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .cause-card{
        padding: 28px 22px;
    }

    .cause-card h3{
        font-size: 1.05rem;
    }

    .cause-card p{
        font-size: 0.92rem;
        line-height: 1.8;
    }

}

/* =========================
   SECTION
========================= */

.treatment-guide-sec{
    padding: 90px 0;
    background: #ffffff;
}

/* =========================
   HEADING
========================= */

.treatment-heading{
    max-width: 760px;
    margin: 0 auto 60px;
}

.treatment-heading .section-label{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 18px;

    border-radius: 40px;

    background: #eef2ff;

    color: #1d4ed8;

    font-size: 0.82rem;
    font-weight: 700;

    letter-spacing: 0.08em;

    margin-bottom: 22px;
}

.treatment-heading .section-heading{
    margin-bottom: 18px;
}

.treatment-heading .section-subheading{
    max-width: 680px;
    margin: 0 auto;
}

/* =========================
   GRID
========================= */

.treatment-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* =========================
   CARD
========================= */

.treatment-card{
    background: #f7fbfd9c;

    border-radius: 18px;

    border: 1px solid #e2e8f0;

    overflow: hidden;

    transition: 0.3s ease;
}

.treatment-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* TOP BORDER */

.green-card{
    border-top: 4px solid #22c55e;
}

.orange-card{
    border-top: 4px solid #f97316;
}

.blue-card{
    border-top: 4px solid #2563eb;
}

/* =========================
   TOP CONTENT
========================= */

.treatment-top{
    padding: 28px 24px 20px;
}

.treatment-top h3{
    font-size: 1.12rem;
    line-height: 1.5;

    color: #0f172a;

    margin-bottom: 16px;
}

.treatment-top h3 span{
    margin-right: 8px;
}

.treatment-top p{
    font-size: 0.94rem;
    line-height: 1.9;

    color: #475569;

    margin: 0;
}

/* =========================
   LIST
========================= */

.treatment-card ul{
    list-style: none;

    margin: 0;
    padding: 0 24px 28px;
}

.treatment-card ul li{
    position: relative;

    padding: 14px 0 14px 24px;

    border-top: 1px solid #e2e8f0;

    font-size: 0.93rem;
    line-height: 1.8;

    color: #334155;
}

/* CHECK ICON */

.treatment-card ul li::before{
    content: '✓';

    position: absolute;

    left: 0;
    top: 15px;

    font-size: 0.9rem;
    font-weight: 700;
}

/* ICON COLORS */

.green-card ul li::before{
    color: #22c55e;
}

.orange-card ul li::before{
    color: #f97316;
}

.blue-card ul li::before{
    color: #2563eb;
}

/* =========================
   TABLET
========================= */

@media(max-width:991px){

    .treatment-grid{
        grid-template-columns: 1fr;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:600px){

    .treatment-guide-sec{
        padding: 70px 0;
    }

    .treatment-heading{
        margin-bottom: 40px;
    }

    .treatment-top{
        padding: 24px 20px 18px;
    }

    .treatment-card ul{
        padding: 0 20px 24px;
    }

    .treatment-top h3{
        font-size: 1rem;
    }

    .treatment-top p,
    .treatment-card ul li{
        font-size: 0.9rem;
        line-height: 1.8;
    }

}

/* =========================
   SECTION
========================= */

.laser-benefits-sec{
    padding: 90px 0;
    background: #f8fafc;
}

/* =========================
   HEADING
========================= */

.laser-benefits-heading{
    max-width: 820px;
    margin: 0 auto 60px;
}

.laser-benefits-heading .section-label{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 18px;

    border-radius: 40px;

    background: #eef2ff;

    color: #1d4ed8;

    font-size: 0.82rem;
    font-weight: 700;

    letter-spacing: 0.08em;

    margin-bottom: 22px;
}

.laser-benefits-heading .section-heading{
    margin-bottom: 18px;
}

.laser-benefits-heading .section-subheading{
    max-width: 700px;
    margin: 0 auto;
}

/* =========================
   GRID
========================= */

.laser-benefits-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* =========================
   CARD
========================= */

.laser-benefit-card{
    background: #fff;

    border: 1px solid #dbe4ff;

    border-radius: 18px;

    padding: 34px 10px;

    text-align: center;

    transition: 0.3s ease;
}

.laser-benefit-card:hover{
    transform: translateY(-6px);

    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

/* =========================
   ICON
========================= */

.laser-benefit-icon{
    width: 72px;
    height: 72px;

    margin: 0 auto 24px;

    border-radius: 50%;

    background: #f1f5ff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 2rem;
}

/* =========================
   CONTENT
========================= */

.laser-benefit-card h3{
    font-size: 1.18rem;
    line-height: 1.5;

    color: #0f172a;

    margin-bottom: 14px;
}

.laser-benefit-card p{
    font-size: 0.93rem;
    line-height: 1.9;

    color: #64748b;

    margin: 0;
}

/* =========================
   TABLET
========================= */

@media(max-width:991px){

    .laser-benefits-grid{
        grid-template-columns: repeat(2, 1fr);
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:600px){

    .laser-benefits-sec{
        padding: 70px 0;
    }

    .laser-benefits-heading{
        margin-bottom: 40px;
    }

    .laser-benefits-grid{
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .laser-benefit-card{
        padding: 28px 22px;
    }

    .laser-benefit-card h3{
        font-size: 1.05rem;
    }

    .laser-benefit-card p{
        font-size: 0.9rem;
        line-height: 1.8;
    }

}

/* =========================
   SECTION
========================= */

.comparison-sec{
    padding: 90px 0;
    background: #ffffff;
}

/* =========================
   HEADING
========================= */

.comparison-heading{
    max-width: 760px;
    margin: 0 auto 60px;
}

.comparison-heading .section-label{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 18px;

    border-radius: 40px;

    /* background: #eef2ff; */

    color: var(--accent);

    font-size: 0.82rem;
    font-weight: 700;

    letter-spacing: 0.08em;

    margin-bottom: 22px;
}

.comparison-heading .section-heading{
    margin-bottom: 18px;
}

.comparison-heading .section-subheading{
    max-width: 680px;
    margin: 0 auto;
}

/* =========================
   TABLE WRAP
========================= */

.comparison-table-wrap{
    overflow-x: auto;

    border-radius: 18px;

    border: 1px solid #dbe4ff;

    background: #eff7f89f;
}

/* =========================
   TABLE
========================= */

.comparison-table{
    width: 100%;

    border-collapse: collapse;

    min-width: 820px;
}

/* =========================
   HEAD
========================= */

.comparison-table thead{
    background: #2952bf;
}

.comparison-table thead th{
    padding: 20px 16px;

    text-align: left;

    color: #fff;

    font-size: 1rem;
    font-weight: 700;
}

/* =========================
   BODY
========================= */

.comparison-table tbody tr{
    border-bottom: 1px solid #dbe4ff;
}

.comparison-table tbody tr:last-child{
    border-bottom: none;
}

.comparison-table tbody td{
    padding: 18px 16px;

    font-size: 0.96rem;
    line-height: 1.7;

    color: #334155;
}

/* =========================
   POSITIVE / NEGATIVE
========================= */

.positive{
    color: #16a34a !important;
    font-weight: 700;
}

.negative{
    color: #ef4444 !important;
    font-weight: 700;
}

/* =========================
   ROW HOVER
========================= */

.comparison-table tbody tr:hover{
    background: #f8fbff;
}

/* =========================
   MOBILE
========================= */

@media(max-width:600px){

    .comparison-sec{
        padding: 70px 0;
    }

    .comparison-heading{
        margin-bottom: 40px;
    }

    .comparison-table thead th,
    .comparison-table tbody td{
        padding: 14px 12px;

        font-size: 0.9rem;
    }

}

/* =========================
   SECTION
========================= */

.treatment-cost-sec{
    padding: 90px 0;
    background: #f8fafc;
}

/* =========================
   HEADING
========================= */

.treatment-cost-heading{
    max-width: 760px;
    margin: 0 auto 60px;
}

.treatment-cost-heading .section-label{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 18px;

    border-radius: 40px;

    background: #eef2ff;

    color: #1d4ed8;

    font-size: 0.82rem;
    font-weight: 700;

    letter-spacing: 0.08em;

    margin-bottom: 22px;
}

.treatment-cost-heading .section-heading{
    margin-bottom: 18px;
}

.treatment-cost-heading .section-subheading{
    max-width: 680px;
    margin: 0 auto;
}

/* =========================
   TABLE WRAP
========================= */

.treatment-cost-table-wrap{
    overflow-x: auto;

    background: #fff;

    border: 1px solid #dbe4ff;

    border-radius: 18px;
}

/* =========================
   TABLE
========================= */

.treatment-cost-table{
    width: 100%;

    border-collapse: collapse;

    min-width: 760px;
}

/* =========================
   TABLE HEAD
========================= */

.treatment-cost-table thead{
    background: #2952bf;
}

.treatment-cost-table thead th{
    padding: 20px 16px;

    text-align: left;

    color: #fff;

    font-size: 1rem;
    font-weight: 700;
}

/* =========================
   TABLE BODY
========================= */

.treatment-cost-table tbody tr{
    border-bottom: 1px solid #dbe4ff;
}

.treatment-cost-table tbody tr:last-child{
    border-bottom: none;
}

.treatment-cost-table tbody tr:hover{
    background: #f8fbff;
}

.treatment-cost-table tbody td{
    padding: 18px 16px;

    font-size: 0.95rem;
    line-height: 1.7;

    color: #334155;
}

/* =========================
   COST COLOR
========================= */

.cost-highlight{
    color: #1d4ed8 !important;
    font-weight: 700;
}

/* =========================
   NOTE
========================= */

.treatment-cost-note{
    margin-top: 18px;

    text-align: center;

    font-size: 0.92rem;
    line-height: 1.8;

    color: #64748b;
}

/* =========================
   MOBILE
========================= */

@media(max-width:600px){

    .treatment-cost-sec{
        padding: 70px 0;
    }

    .treatment-cost-heading{
        margin-bottom: 40px;
    }

    .treatment-cost-table thead th,
    .treatment-cost-table tbody td{
        padding: 14px 12px;

        font-size: 0.9rem;
    }

    .treatment-cost-note{
        font-size: 0.85rem;
    }

}

/* =========================
   SECTION
========================= */

.why-choose-sec{
    padding: 90px 0;
    background: #ffffff;
}

/* =========================
   HEADING
========================= */

.why-choose-heading{
    max-width: 820px;
    margin: 0 auto 60px;
}

.why-choose-heading .section-label{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 18px;

    border-radius: 40px;

    background: #eef2ff;

    color: #1d4ed8;

    font-size: 0.82rem;
    font-weight: 700;

    letter-spacing: 0.08em;

    margin-bottom: 22px;
}

.why-choose-heading .section-heading{
    margin-bottom: 18px;
}

.why-choose-heading .section-subheading{
    max-width: 720px;
    margin: 0 auto;
}

/* =========================
   GRID
========================= */

.why-choose-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* =========================
   CARD
========================= */

.why-choose-card{
    background: #edf5f79f;

    border: 1px solid #dbe4ff;

    border-radius: 18px;

    padding: 28px;

    display: flex;
    align-items: flex-start;
    gap: 18px;

    transition: 0.3s ease;
}

.why-choose-card:hover{
    transform: translateY(-6px);

    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

/* =========================
   NUMBER
========================= */

.why-number{
    width: 48px;
    height: 48px;

    min-width: 48px;

    border-radius: 50%;

    background: #2952bf;

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1rem;
    font-weight: 700;
}

/* =========================
   CONTENT
========================= */

.why-content h3{
    font-size: 1.15rem;
    line-height: 1.6;

    color: #0f172a;

    margin-bottom: 12px;
}

.why-content p{
    font-size: 0.94rem;
    line-height: 1.9;

    color: #64748b;

    margin: 0;
}

/* =========================
   TABLET
========================= */

@media(max-width:991px){

    .why-choose-grid{
        grid-template-columns: repeat(2, 1fr);
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:600px){

    .why-choose-sec{
        padding: 70px 0;
    }

    .why-choose-heading{
        margin-bottom: 40px;
    }

    .why-choose-grid{
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .why-choose-card{
        padding: 24px 20px;
    }

    .why-content h3{
        font-size: 1.02rem;
    }

    .why-content p{
        font-size: 0.9rem;
        line-height: 1.8;
    }

}

/* =========================
   JOURNEY SECTION
========================= */

.journey-sec{
    padding: 90px 0;
    background: #f8fafc;
}

/* =========================
   HEADING
========================= */

.journey-heading{
    max-width: 850px;
    margin: 0 auto 60px;
}

.journey-heading .section-label{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 18px;

    border-radius: 40px;

    background: #eef2ff;

    color: #1d4ed8;

    font-size: 0.82rem;
    font-weight: 700;

    letter-spacing: 0.08em;

    margin-bottom: 22px;
}

.journey-heading .section-heading{
    margin-bottom: 18px;
}

.journey-heading .section-subheading{
    max-width: 700px;
    margin: 0 auto;
}

/* =========================
   GRID
========================= */

.journey-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* =========================
   CARD
========================= */

.journey-card{
    background: #fff;

    border: 1px solid #dbe4ff;

    border-radius: 18px;

    padding: 28px;

    transition: 0.3s ease;
}

.journey-card:hover{
    transform: translateY(-6px);

    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

/* =========================
   TOP
========================= */

.journey-top{
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 24px;
}

.journey-number{
    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: #2952bf;

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1rem;
    font-weight: 700;

    flex-shrink: 0;
}

.journey-badge{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 7px 12px;

    border-radius: 30px;

    background: #eef2ff;

    color: #2952bf;

    font-size: 0.75rem;
    font-weight: 700;
}

/* =========================
   CONTENT
========================= */

.journey-card h3{
    font-size: 1.08rem;
    line-height: 1.7;

    color: #0f172a;

    margin-bottom: 16px;
}

.journey-card p{
    font-size: 0.92rem;
    line-height: 2;

    color: #475569;

    margin: 0;
}

/* =========================
   TABLET
========================= */

@media(max-width:991px){

    .journey-grid{
        grid-template-columns: repeat(2, 1fr);
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:600px){

    .journey-sec{
        padding: 70px 0;
    }

    .journey-heading{
        margin-bottom: 40px;
    }

    .journey-grid{
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .journey-card{
        padding: 24px 20px;
    }

    .journey-card h3{
        font-size: 1rem;
    }

    .journey-card p{
        font-size: 0.9rem;
        line-height: 1.9;
    }

}


/* =========================
   SECTION
========================= */

.patient-advice-sec{
    padding: 90px 0;
    background: #ffffff;
}

/* =========================
   HEADING
========================= */

.patient-advice-heading{
    max-width: 820px;
    margin: 0 auto 60px;
}

.patient-advice-heading .section-label{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 18px;

    border-radius: 40px;

    background: #eef2ff;

    color: #1d4ed8;

    font-size: 0.82rem;
    font-weight: 700;

    letter-spacing: 0.08em;

    margin-bottom: 22px;
}

.patient-advice-heading .section-heading{
    margin-bottom: 18px;
}

.patient-advice-heading .section-subheading{
    max-width: 700px;
    margin: 0 auto;
}

/* =========================
   GRID
========================= */

.patient-advice-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* =========================
   CARD
========================= */

.patient-advice-card{
    background: #f6fdff81;

    border: 1px solid #dbe4ff;

    border-radius: 18px;

    padding: 26px;

    display: flex;
    align-items: flex-start;
    gap: 18px;

    transition: 0.3s ease;
}

.patient-advice-card:hover{
    transform: translateY(-6px);

    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

/* =========================
   ICON
========================= */

.patient-icon{
    width: 52px;
    height: 52px;

    min-width: 52px;

    border-radius: 14px;

    background: #eef2ff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.4rem;
}

/* =========================
   CONTENT
========================= */

.patient-content h3{
    font-size: 1.05rem;
    line-height: 1.6;

    color: #0f172a;

    margin-bottom: 12px;
}

.patient-content p{
    font-size: 0.92rem;
    line-height: 1.9;

    color: #64748b;

    margin: 0;
}

/* =========================
   TABLET
========================= */

@media(max-width:991px){

    .patient-advice-grid{
        grid-template-columns: repeat(2, 1fr);
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:600px){

    .patient-advice-sec{
        padding: 70px 0;
    }

    .patient-advice-heading{
        margin-bottom: 40px;
    }

    .patient-advice-grid{
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .patient-advice-card{
        padding: 22px 18px;
        gap: 14px;
    }

    .patient-icon{
        width: 46px;
        height: 46px;
        min-width: 46px;

        font-size: 1.2rem;
    }

    .patient-content h3{
        font-size: 1rem;
    }

    .patient-content p{
        font-size: 0.9rem;
        line-height: 1.8;
    }

}

/* =========================
   FAQ SECTION
========================= */

.faq-sec{
    padding: 90px 0;
    background: #f8fafc;
}

/* =========================
   HEADING
========================= */

.faq-heading{
    max-width: 760px;
    margin: 0 auto 60px;
}

.faq-heading .section-heading{
    /* font-size: 4rem; */

    line-height: 1.25;

    margin-bottom: 24px;

    color: #0f172a;
}

.faq-heading .section-subheading{
    max-width: 650px;
    margin: 0 auto;
}
.faq-heading .section-label{
    display: flex;

    align-items: center;
    justify-content: center;

    width: fit-content;

    margin: 0 auto 22px;
}

/* =========================
   GRID
========================= */

.faq-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: start;
}

/* =========================
   ITEM
========================= */

.faq-item{
    background: #ffffff;

    border: 1px solid #dbe4ff;

    border-radius: 20px;

    overflow: hidden;

    transition: 0.3s ease;
}

.faq-item:hover{
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
}

/* =========================
   QUESTION
========================= */

.faq-question{
    width: 100%;

    border: none;

    background: transparent;

    padding: 24px 26px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    cursor: pointer;

    text-align: left;
}

.faq-question span{
    font-size: 1rem;
    font-weight: 700;

    line-height: 1.7;

    color: #0f172a;
}

.faq-question i{
    font-size: 0.9rem;

    color: #2952bf;

    transition: 0.3s ease;

    flex-shrink: 0;
}

/* =========================
   ANSWER
========================= */

.faq-answer{
    max-height: 0;

    overflow: hidden;

    transition: max-height 0.4s ease;
}

.faq-answer-inner{
    padding: 0 26px 24px;
}

.faq-answer p{
    margin: 0;

    font-size: 0.93rem;
    line-height: 1.95;

    color: #64748b;
}

/* =========================
   ACTIVE
========================= */

.faq-item.active .faq-question i{
    transform: rotate(45deg);
}

/* =========================
   TABLET
========================= */

@media(max-width:991px){

    .faq-grid{
        grid-template-columns: 1fr;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:600px){

    .faq-sec{
        padding: 70px 0;
    }

    .faq-heading{
        margin-bottom: 40px;
    }

    .faq-question{
        padding: 20px 18px;
    }

    .faq-question span{
        font-size: 0.95rem;
    }

    .faq-answer-inner{
        padding: 0 18px 20px;
    }

    .faq-answer p{
        font-size: 0.9rem;
        line-height: 1.85;
    }
     .faq-heading .section-heading{
        font-size: 2.2rem;
        line-height: 1.3;
    }

}

/*===============================
  FISTULA UNDERSTANDING SECTION
================================*/

.fistula-understanding-section{
    padding: 100px 0;
    background: #ffffff;
}

.understanding-grid{
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 70px;
    align-items: center;
}

/* left content */

.section-heading.small{
    font-size: 58px;
    max-width: 620px;
    margin-bottom: 30px;
}

.info-box{
    background: #dfeef5;
    border-left: 4px solid #167aa2;
    border-radius: 0 18px 18px 0;

    padding: 28px 32px;
    margin-bottom: 28px;
}

.info-box p{
    font-size: 18px;
    line-height: 1.9;
    color: #0b4b68;
    margin: 0;
}

.understanding-text{
    font-size: 18px;
    line-height: 1.9;
    color: #4e6475;

    max-width: 560px;
    margin-bottom: 34px;
}

/* button */

.primary-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #0c789b;
    color: #fff;

    padding: 16px 24px;
    border-radius: 12px;

    font-size: 17px;
    font-weight: 600;
    text-decoration: none;

    transition: 0.3s ease;
}

.primary-btn:hover{
    background: #095f7b;
    color: #fff;
}

/* right card */

.symptom-card{
    background: #fff;

    padding: 36px 32px;

    border: 1px solid #c8d8e2;
    border-radius: 20px;

    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.symptom-card h3{
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;

    color: #0b1d39;
    margin-bottom: 28px;
}

.symptom-card ul{
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.symptom-card ul li{
    position: relative;

    padding: 0 0 18px 18px;
    margin-bottom: 18px;

    font-size: 18px;
    line-height: 1.7;
    color: #1f2f3c;

    border-bottom: 1px solid #d7e2e8;
}

.symptom-card ul li::before{
    content: "";

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #f57a1f;

    position: absolute;
    left: 0;
    top: 12px;
}

.card-bottom-text{
    font-size: 16px;
    line-height: 1.8;
    color: #586c7d;
}

/*===============================
  RESPONSIVE
================================*/

@media (max-width: 992px){

    .understanding-grid{
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-heading.small{
        font-size: 46px;
    }

}

@media (max-width: 768px){

    .fistula-understanding-section{
        padding: 70px 0;
    }

    .section-heading.small{
        font-size: 34px;
        line-height: 1.2;
    }

    .info-box{
        padding: 22px 20px;
    }

    .info-box p,
    .understanding-text,
    .symptom-card ul li{
        font-size: 16px;
    }

    .symptom-card{
        padding: 26px 20px;
    }

    .symptom-card h3{
        font-size: 24px;
    }

    .primary-btn{
        width: 100%;
    }

}

/* =========================
   PROCESS SECTION
========================= */

.process-sec{
    padding: 90px 0;
    background: #f8fafc;
}

/* =========================
   HEADING
========================= */

.process-heading{
    max-width: 760px;
    margin: 0 auto 70px;
}

.process-heading .section-heading{
    margin-bottom: 18px;
}

.process-heading .section-subheading{
    max-width: 650px;
    margin: 0 auto;
}

/* =========================
   FLOW
========================= */

.process-flow{
    display: flex;
    align-items: flex-start;
    justify-content: center;

    flex-wrap: wrap;

    gap: 18px;
}

/* REMOVE OLD LINE */

.process-flow::before{
    display: none;
}

/* =========================
   STEP
========================= */

.process-step{
    width: 180px;

    text-align: center;

    position: relative;
}

/* NUMBER */

.process-number{
    width: 56px;
    height: 56px;

    margin: 0 auto 18px;

    border-radius: 50%;

    background: #0e7490;

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.1rem;
    font-weight: 700;

    box-shadow: 0 10px 24px rgba(14,116,144,0.18);
}

/* CONTENT */

.process-step h3{
    font-size: 1rem;
    line-height: 1.5;

    color: #0f172a;

    margin-bottom: 10px;
}

.process-step p{
    font-size: 0.88rem;
    line-height: 1.8;

    color: #64748b;

    margin: 0;
}

/* =========================
   ARROW
========================= */

.process-arrow{
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.2rem;

    color: #94a3b8;

    margin-top: 18px;

    min-width: 24px;
}

/* =========================
   TABLET
========================= */

@media(max-width:991px){

    .process-flow{
        justify-content: center;

        gap: 30px 20px;
    }

    .process-step{
        width: 45%;
    }

    .process-arrow{
        display: none;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:600px){

    .process-sec{
        padding: 70px 0;
    }

    .process-heading{
        margin-bottom: 40px;
    }

    .process-flow{
        flex-direction: column;
        align-items: center;

        gap: 10px;
    }

    .process-step{
        width: 100%;
        max-width: 320px;
    }

    .process-number{
        width: 52px;
        height: 52px;

        font-size: 1rem;
    }

    .process-step h3{
        font-size: 0.98rem;
    }

    .process-step p{
        font-size: 0.86rem;
        line-height: 1.8;
    }

    /* MOBILE ARROW */

    .process-arrow{
        display: flex;

        width: 100%;

        justify-content: center;

        margin: -5px 0 8px;

        font-size: 1rem;

        transform: rotate(90deg);

        color: #94a3b8;
    }

}

/*====================================
  PATIENT TIPS SECTION
====================================*/

.patient-tips-section{
    padding: 100px 0;
    background: #f4f8fb;
}

/* grid */

.tips-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* card */

.tip-card{
    background: #fff;

    border: 1px solid #cfe0e8;
    border-radius: 18px;

    padding: 30px 26px;

    display: flex;
    align-items: flex-start;
    gap: 18px;

    transition: 0.3s ease;
}

.tip-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* icon */

.tip-icon{
    width: 44px;
    height: 44px;

    min-width: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;
    line-height: 1;
}

/* content */

.tip-content h3{
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;

    color: #0b1d39;

    margin-bottom: 10px;
}

.tip-content p{
    font-size: 17px;
    line-height: 1.9;

    color: #5b6f7f;
    margin: 0;
}

/*====================================
  RESPONSIVE
====================================*/

@media (max-width: 992px){

    .tips-grid{
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px){

    .patient-tips-section{
        padding: 70px 0;
    }

    .tips-grid{
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .tip-card{
        padding: 24px 20px;
    }

    .tip-content h3{
        font-size: 22px;
    }

    .tip-content p{
        font-size: 15px;
        line-height: 1.8;
    }

    .tip-icon{
        font-size: 24px;
    }

}

/* =========================
   CONDITION OVERVIEW
========================= */

.condition-overview-sec{
    padding: 90px 0;
    background: #f8fafc;
}

/* =========================
   TOP CONTENT
========================= */

.condition-top-content{
    max-width: 850px;
    margin-bottom: 60px;
}

.condition-top-content .section-heading{
    margin-bottom: 20px;
}

.condition-top-content .section-subheading{
    max-width: 760px;
}

/* =========================
   GRID
========================= */

.condition-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 28px;
}

/* =========================
   CARD
========================= */

.condition-card{
    background: #fff;

    border: 1px solid #dbe4ff;

    border-radius: 20px;

    padding: 34px 32px;

    transition: 0.3s ease;
}

.condition-card:hover{
    transform: translateY(-4px);

    box-shadow: 0 14px 40px rgba(0,0,0,0.06);
}

/* LEFT CARD */

.left-condition-card{
    border-left: 4px solid #06b6d4;
}

/* =========================
   CONTENT
========================= */

.condition-card h3{
    font-size: 1.35rem;
    line-height: 1.5;

    color: #0f172a;

    margin-bottom: 22px;
}

.condition-card p{
    font-size: 0.94rem;
    line-height: 2;

    color: #64748b;

    margin-bottom: 18px;
}

.condition-card p:last-child{
    margin-bottom: 0;
}

/* =========================
   ICON
========================= */

.condition-icon{
    width: 38px;
    height: 38px;

    border-radius: 50%;

    background: #ecfeff;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-right: 10px;

    font-size: 1rem;
}

/* =========================
   LIST
========================= */

.condition-list{
    display: flex;
    flex-direction: column;

    gap: 0;
}

.condition-list li{
    position: relative;

    padding: 16px 0 16px 28px;

    font-size: 0.92rem;
    line-height: 1.9;

    color: #475569;

    border-bottom: 1px solid #e2e8f0;
}

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

.condition-list li::before{
    content: '';

    position: absolute;

    left: 0;
    top: 28px;

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #14b8a6;
}

/* =========================
   TABLET
========================= */

@media(max-width:991px){

    .condition-grid{
        grid-template-columns: 1fr;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:600px){

    .condition-overview-sec{
        padding: 70px 0;
    }

    .condition-top-content{
        margin-bottom: 40px;
    }

    .condition-card{
        padding: 24px 20px;
    }

    .condition-card h3{
        font-size: 1.15rem;
    }

    .condition-card p{
        font-size: 0.9rem;
        line-height: 1.9;
    }

    .condition-list li{
        font-size: 0.88rem;
        line-height: 1.8;

        padding: 14px 0 14px 24px;
    }

}

/*====================================
  ROOT CAUSES SECTION
====================================*/

.root-causes-section{
    padding: 100px 0;
    background: #ffffff;
}

/* heading */

.left-text{
    max-width: 760px;
    margin-top: 18px;
}

/* grid */

.causes-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;

    margin-top: 50px;
}

/* card */

.cause-card{
    background: #f4fbff;

    border: 1px solid #cfe0e8;
    border-radius: 18px;

    padding: 26px 22px;

    transition: 0.3s ease;
}

.cause-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.05);
}

/* icon */

.cause-icon{
    width: 52px;
    height: 52px;

    border-radius: 10px;
    background: #e8f5f7;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 26px;

    margin-bottom: 22px;
}

/* content */

.cause-card h3{
    font-size: 26px;
    line-height: 1.5;
    font-weight: 700;

    color: #0b1d39;

    margin-bottom: 16px;
}

.cause-card p{
    font-size: 15px;
    line-height: 1.9;

    color: #5e7383;
    margin: 0;
}

/*====================================
  RESPONSIVE
====================================*/

@media (max-width: 992px){

    .causes-grid{
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px){

    .root-causes-section{
        padding: 70px 0;
    }

    .causes-grid{
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 40px;
    }

    .cause-card{
        padding: 22px 18px;
    }

    .cause-card h3{
        font-size: 21px;
        line-height: 1.4;
    }

    .cause-card p{
        font-size: 14px;
        line-height: 1.8;
    }

    .cause-icon{
        width: 46px;
        height: 46px;

        font-size: 22px;
        margin-bottom: 18px;
    }

}

/*====================================
  LASER BENEFITS SECTION
====================================*/

.laser-benefits-section{
    padding: 100px 0;
    background: #f4f8fb;
}

/* grid */

.benefits-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;

    margin-top: 55px;
}

/* card */

.benefit-card{
    background: #fff;

    border: 1px solid #d6e3e8;
    border-radius: 18px;

    padding: 34px 26px;

    text-align: center;

    transition: 0.35s ease;
}

.benefit-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.06);
}

/* icon */

.benefit-icon{
    width: 72px;
    height: 72px;

    margin: 0 auto 24px;

    border-radius: 50%;
    background: #dff4f6;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 32px;
}

/* title */

.benefit-card h3{
    font-size: 28px;
    line-height: 1.5;
    font-weight: 700;

    color: #0b1d39;

    margin-bottom: 18px;
}

/* text */

.benefit-card p{
    font-size: 15px;
    line-height: 1.9;

    color: #607485;
    margin: 0;
}

/*====================================
  RESPONSIVE
====================================*/

@media (max-width: 992px){

    .benefits-grid{
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px){

    .laser-benefits-section{
        padding: 70px 0;
    }

    .benefits-grid{
        grid-template-columns: 1fr;
        gap: 20px;

        margin-top: 40px;
    }

    .benefit-card{
        padding: 28px 20px;
    }

    .benefit-icon{
        width: 64px;
        height: 64px;

        font-size: 28px;
        margin-bottom: 20px;
    }

    .benefit-card h3{
        font-size: 22px;
        line-height: 1.4;
    }

    .benefit-card p{
        font-size: 14px;
        line-height: 1.8;
    }

}

/*====================================
  TRUST SECTION
====================================*/

.trust-section{
    padding: 100px 0;
    background: #f4f8fb;
}

/* grid */

.trust-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;

    margin-top: 55px;
}

/* card */

.trust-card{
    background: #fff;

    border: 1px solid #dbe6eb;
    border-radius: 20px;

    padding: 34px 30px;

    transition: 0.35s ease;

    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.trust-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.06);
}

/* number */

.trust-number{
    width: 56px;
    height: 56px;

    border-radius: 50%;

    background: linear-gradient(135deg, #138ca5, #0d5d89);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
    font-weight: 700;

    margin-bottom: 28px;
}

/* title */

.trust-card h3{
    font-size: 22px;
    line-height: 1.6;
    font-weight: 700;

    color: #0b1d39;

    margin-bottom: 18px;
}

/* paragraph */

.trust-card p{
    font-size: 15px;
    line-height: 2;

    color: #5f7283;
    margin: 0;
}

/*====================================
  RESPONSIVE
====================================*/

@media (max-width: 992px){

    .trust-grid{
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px){

    .trust-section{
        padding: 70px 0;
    }

    .trust-grid{
        grid-template-columns: 1fr;
        gap: 20px;

        margin-top: 40px;
    }

    .trust-card{
        padding: 28px 22px;
    }

    .trust-number{
        width: 50px;
        height: 50px;

        font-size: 20px;

        margin-bottom: 22px;
    }

    .trust-card h3{
        font-size: 20px;
        line-height: 1.5;
    }

    .trust-card p{
        font-size: 14px;
        line-height: 1.9;
    }

}

/*====================================
  PROCEDURE SECTION
====================================*/

.procedure-section{
    padding: 100px 0;
    background: #ffffff;
}

/* grid */

.procedure-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;

    margin-top: 60px;
}

/* card */

.procedure-card{
    background: #f7feffb7;

    border: 1px solid #d8e5ea;
    border-radius: 20px;

    padding: 28px;

    transition: 0.35s ease;
}

.procedure-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.05);
}

/* top */

.procedure-top{
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 24px;
}

/* number */

.procedure-number{
    width: 52px;
    height: 52px;

    border-radius: 50%;

    background: linear-gradient(135deg, #16a0b7, #0a6b8f);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    font-weight: 700;
}

/* time */

.procedure-time{
    display: inline-flex;
    align-items: center;

    background: #dff5f7;
    color: #0b6f87;

    padding: 8px 14px;
    border-radius: 50px;

    font-size: 14px;
    font-weight: 600;
}

/* title */

.procedure-card h3{
    font-size: 20px;
    line-height: 1.6;
    font-weight: 700;

    color: #0b1d39;

    margin-bottom: 18px;
}

/* text */

.procedure-card p{
    font-size: 15px;
    line-height: 2;

    color: #5f7383;
    margin: 0;
}

/*====================================
  RESPONSIVE
====================================*/

@media (max-width: 992px){

    .procedure-grid{
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px){

    .procedure-section{
        padding: 70px 0;
    }

    .procedure-grid{
        gap: 20px;
        margin-top: 40px;
    }

    .procedure-card{
        padding: 24px 20px;
    }

    .procedure-top{
        flex-wrap: wrap;
        gap: 10px;
    }

    .procedure-number{
        width: 46px;
        height: 46px;

        font-size: 16px;
    }

    .procedure-time{
        font-size: 13px;
        padding: 7px 12px;
    }

    .procedure-card h3{
        font-size: 18px;
        line-height: 1.5;
    }

    .procedure-card p{
        font-size: 14px;
        line-height: 1.9;
    }

}

/*====================================
  RECOVERY TIPS SECTION
====================================*/

.recovery-tips-section{
    padding: 100px 0;
    background: #eef8f9;
}

/* grid */

.recovery-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;

    margin-top: 55px;
}

/* card */

.recovery-card{
    background: #fff;

    border: 1px solid #d7e4e9;
    border-radius: 18px;

    padding: 26px 20px;

    transition: 0.35s ease;
}

.recovery-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.05);
}

/* icon */

.recovery-icon{
    width: 58px;
    height: 58px;

    border-radius: 14px;
    background: #e2f6f8;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;

    margin-bottom: 22px;
}

/* title */

.recovery-card h3{
    font-size: 20px;
    line-height: 1.5;
    font-weight: 700;

    color: #0b1d39;

    margin-bottom: 16px;
}

/* paragraph */

.recovery-card p{
    font-size: 14px;
    line-height: 1.9;

    color: #617483;
    margin: 0;
}

/*====================================
  RESPONSIVE
====================================*/

@media (max-width: 1200px){

    .recovery-grid{
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px){

    .recovery-tips-section{
        padding: 70px 0;
    }

    .recovery-grid{
        grid-template-columns: 1fr;
        gap: 18px;

        margin-top: 40px;
    }

    .recovery-card{
        padding: 24px 18px;
    }

    .recovery-icon{
        width: 52px;
        height: 52px;

        font-size: 26px;
        margin-bottom: 18px;
    }

    .recovery-card h3{
        font-size: 18px;
        line-height: 1.4;
    }

    .recovery-card p{
        font-size: 14px;
        line-height: 1.8;
    }

}

/* =========================
   CAUSE SECTION
========================= */

.cause-grid-sec{
    padding: 90px 0;
    background: #ffffff;
}

/* =========================
   HEADING
========================= */

.cause-heading{
    max-width: 760px;

    margin-bottom: 60px;
}

.cause-heading .section-heading{
    margin-bottom: 18px;
}

.cause-heading .section-subheading{
    line-height: 2;

    max-width: 620px;
}

/* =========================
   GRID
========================= */

.cause-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);

    gap: 24px;
}

/* =========================
   CARD
========================= */

.cause-card{
    background: #f6feff;

    border: 1px solid #dbe4ff;

    border-radius: 20px;

    padding: 30px 26px;

    transition: 0.35s ease;

    box-shadow: 0 10px 30px rgba(15,23,42,0.04);
}

.cause-card:hover{
    transform: translateY(-6px);

    box-shadow: 0 20px 45px rgba(15,23,42,0.08);
}

/* =========================
   ICON
========================= */

.cause-icon{
    width: 62px;
    height: 62px;

    border-radius: 50%;

    background: #ecfeff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.7rem;

    margin-bottom: 22px;
}

/* =========================
   CONTENT
========================= */

.cause-card h3{
    font-size: 1.2rem;

    line-height: 1.6;

    color: #0f172a;

    margin-bottom: 14px;
}

.cause-card p{
    font-size: 0.92rem;

    line-height: 2;

    color: #64748b;

    margin: 0;
}

/* =========================
   TABLET
========================= */

@media(max-width:991px){

    .cause-grid{
        grid-template-columns: repeat(2,1fr);
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:600px){

    .cause-grid-sec{
        padding: 70px 0;
    }

    .cause-heading{
        margin-bottom: 40px;
    }

    .cause-grid{
        grid-template-columns: 1fr;
    }

    .cause-card{
        padding: 24px 20px;
    }

    .cause-icon{
        width: 54px;
        height: 54px;

        font-size: 1.4rem;

        margin-bottom: 18px;
    }

    .cause-card h3{
        font-size: 1.05rem;
    }

    .cause-card p{
        font-size: 0.88rem;

        line-height: 1.9;
    }

}

/*====================================
  LAPAROSCOPIC BENEFITS SECTION
====================================*/

.laparoscopic-benefits-section{
    padding: 100px 0;
    background: #f4f8fb;
}

/* grid */

.lap-benefits-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;

    margin-top: 55px;
}

/* card */

.lap-benefit-card{
    background: #fff;

    border: 1px solid #dce7eb;
    border-radius: 18px;

    padding: 40px 28px;

    text-align: center;

    transition: 0.35s ease;
}

.lap-benefit-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.05);
}

/* icon */

.lap-benefit-icon{
    width: 74px;
    height: 74px;

    margin: 0 auto 24px;

    border-radius: 50%;
    background: #e7f7f8;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 34px;
}

/* title */

.lap-benefit-card h3{
    font-size: 24px;
    line-height: 1.5;
    font-weight: 700;

    color: #0b1d39;

    margin-bottom: 16px;
}

/* text */

.lap-benefit-card p{
    font-size: 15px;
    line-height: 1.9;

    color: #617584;
    margin: 0;
}

/*====================================
  RESPONSIVE
====================================*/

@media (max-width: 992px){

    .lap-benefits-grid{
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px){

    .laparoscopic-benefits-section{
        padding: 70px 0;
    }

    .lap-benefits-grid{
        grid-template-columns: 1fr;
        gap: 20px;

        margin-top: 40px;
    }

    .lap-benefit-card{
        padding: 30px 22px;
    }

    .lap-benefit-icon{
        width: 64px;
        height: 64px;

        font-size: 28px;
        margin-bottom: 20px;
    }

    .lap-benefit-card h3{
        font-size: 20px;
    }

    .lap-benefit-card p{
        font-size: 14px;
        line-height: 1.8;
    }

}
.why-choose-section{
    background: #f2fdfd7c;
    padding: 90px 0;
}

/*====================================
  SURGERY JOURNEY SECTION
====================================*/

.surgery-journey-section{
    padding: 100px 0;
    background: #fafdff;
}

/* grid */

.journey-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;

    margin-top: 60px;
}

/* card */

.journey-card{
    background: #ffffff;

    border: 1px solid #dce8eb;
    border-top: 5px solid #0f8a80;

    border-radius: 20px;

    padding: 30px 28px;

    transition: 0.35s ease;
}

.journey-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.05);
}

/* top */

.journey-top{
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 24px;
}

/* step */

.journey-step{
    background: #052c5c;
    color: #fff;

    padding: 10px 18px;
    border-radius: 50px;

    font-size: 16px;
    font-weight: 700;
}

/* time */

.journey-time{
    background: #dff6f3;
    color: #0b857b;

    padding: 10px 16px;
    border-radius: 50px;

    font-size: 15px;
    font-weight: 600;
}

/* title */

.journey-card h3{
    font-size: 22px;
    line-height: 1.5;
    font-weight: 700;

    color: #0b1d39;

    margin-bottom: 18px;
}

/* text */

.journey-card p{
    font-size: 16px;
    line-height: 2;

    color: #607483;
    margin: 0;
}

/*====================================
  RESPONSIVE
====================================*/

@media (max-width: 992px){

    .journey-grid{
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px){

    .surgery-journey-section{
        padding: 70px 0;
    }

    .journey-grid{
        gap: 20px;
        margin-top: 40px;
    }

    .journey-card{
        padding: 24px 20px;
    }

    .journey-top{
        flex-wrap: wrap;
        gap: 10px;
    }

    .journey-step{
        font-size: 14px;
        padding: 8px 14px;
    }

    .journey-time{
        font-size: 13px;
        padding: 8px 14px;
    }

    .journey-card h3{
        font-size: 19px;
        line-height: 1.4;
    }

    .journey-card p{
        font-size: 14px;
        line-height: 1.9;
    }

}

/* other specialities   */
    /* accupresure */

    /*====================================
  ACUPRESSURE INFO SECTION
====================================*/

.acupressure-info-sec{
    padding: 100px 0;
    background: #f5f7f7;
}

/* grid */

.acupressure-grid{
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;

    margin-top: 60px;
}

/* left card */

.acupressure-left-card{
    background: #fff;

    border-radius: 24px;

    padding: 50px 40px;

    box-shadow: 0 5px 25px rgba(0,0,0,0.04);
}

/* icon */

.acupressure-icon{
    width: 72px;
    height: 72px;

    border-radius: 18px;
    background: #e4f2ef;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 34px;

    margin-bottom: 30px;

    color: #007b73;
}

/* left content */

.acupressure-left-card h3{
    font-size: 38px;
    line-height: 1.4;
    font-weight: 700;

    color: #0b1d39;

    margin-bottom: 20px;
}

.acupressure-left-card p{
    font-size: 18px;
    line-height: 2;

    color: #566b7b;

    margin-bottom: 18px;
}

/* right card */

.acupressure-right-card{
    background: #007d71;

    border-radius: 24px;

    padding: 34px 32px;

    color: #fff;
}

.acupressure-right-card h3{
    font-size: 34px;
    line-height: 1.4;
    font-weight: 700;

    margin-bottom: 35px;
}

.acupressure-right-card ul{
    padding: 0;
    margin: 0;

    list-style: none;
}

.acupressure-right-card ul li{
    position: relative;

    padding-left: 28px;
    margin-bottom: 24px;

    font-size: 19px;
    line-height: 1.8;
}

.acupressure-right-card ul li::before{
    content: "◈";

    position: absolute;
    left: 0;
    top: 0;

    color: #fff;
    font-size: 16px;
}

/*====================================
  RESPONSIVE
====================================*/

@media (max-width: 992px){

    .acupressure-grid{
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px){

    .acupressure-info-sec{
        padding: 70px 0;
    }

    .acupressure-grid{
        margin-top: 40px;
        gap: 20px;
    }

    .acupressure-left-card,
    .acupressure-right-card{
        padding: 30px 22px;
        border-radius: 18px;
    }

    .acupressure-left-card h3{
        font-size: 28px;
    }

    .acupressure-left-card p{
        font-size: 15px;
        line-height: 1.9;
    }

    .acupressure-right-card h3{
        font-size: 24px;
        margin-bottom: 25px;
    }

    .acupressure-right-card ul li{
        font-size: 15px;
        margin-bottom: 18px;
    }

}
/*====================================
  THERAPY CAUSES SECTION
====================================*/

.therapy-causes-sec{
    padding: 100px 0;
    background: #ffffff;
}

/* grid */

.therapy-causes-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;

    margin-top: 60px;
}

/* card */

.therapy-cause-card{
    background: #f6feffa1;

    border-radius: 24px;

    padding: 34px 32px;

    box-shadow: 0 5px 25px rgba(0,0,0,0.04);

    transition: 0.35s ease;
}

.therapy-cause-card:hover{
    transform: translateY(-6px);
}

/* icon */

.therapy-cause-card .acupressure-icon{
    margin-bottom: 32px;
}

/* heading */

.therapy-cause-card h3{
    font-size: 30px;
    line-height: 1.5;
    font-weight: 700;

    color: #0b1d39;

    margin-bottom: 18px;
}

/* text */

.therapy-cause-card p{
    font-size: 18px;
    line-height: 2;

    color: #566b7b;

    margin: 0;
}

/*====================================
  RESPONSIVE
====================================*/

@media (max-width: 992px){

    .therapy-causes-grid{
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px){

    .therapy-causes-sec{
        padding: 70px 0;
    }

    .therapy-causes-grid{
        margin-top: 40px;
        gap: 20px;
    }

    .therapy-cause-card{
        padding: 30px 22px;
        border-radius: 18px;
    }

    .therapy-cause-card h3{
        font-size: 24px;
    }

    .therapy-cause-card p{
        font-size: 15px;
        line-height: 1.9;
    }

}




/*====================================
  THERAPY BENEFITS SECTION
====================================*/

.therapy-benefits-sec{
    padding: 100px 0;
    background: #f5f7f7;
}

/* grid */

.therapy-benefits-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;

    margin-top: 60px;
}

/* card */

.therapy-benefit-card{
    background: #fff;

    border-radius: 20px;

    padding: 32px 34px;

    box-shadow: 0 5px 25px rgba(0,0,0,0.04);

    transition: 0.35s ease;
}

.therapy-benefit-card:hover{
    transform: translateY(-6px);
}

/* heading */

.therapy-benefit-card h3{
    font-size: 28px;
    line-height: 1.5;
    font-weight: 700;

    color: #0b1d39;

    margin-bottom: 18px;
}

/* text */

.therapy-benefit-card p{
    font-size: 17px;
    line-height: 2;

    color: #566b7b;

    margin: 0;
}

/*====================================
  RESPONSIVE
====================================*/

@media (max-width: 992px){

    .therapy-benefits-grid{
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px){

    .therapy-benefits-sec{
        padding: 70px 0;
    }

    .therapy-benefits-grid{
        margin-top: 40px;
        gap: 20px;
    }

    .therapy-benefit-card{
        padding: 30px 22px;
        border-radius: 18px;
    }

    .therapy-benefit-card h3{
        font-size: 22px;
    }

    .therapy-benefit-card p{
        font-size: 15px;
        line-height: 1.9;
    }

}


/*====================================
  TRUST CBLM SECTION
====================================*/

.trust-cblm-sec{
    padding: 100px 0;
    background: #f5f7f7;
}

/* grid */

.trust-cblm-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;

    margin-top: 60px;
}

/* card */

.trust-cblm-card{
    position: relative;

    background: #fff;

    border-radius: 24px;

    padding: 32px 34px;

    box-shadow: 0 5px 25px rgba(0,0,0,0.04);

    transition: 0.35s ease;
}

.trust-cblm-card:hover{
    transform: translateY(-6px);
}

/* badge */

.trust-badge{
    width: 62px;
    height: 62px;

    border-radius: 18px;

    background: linear-gradient(135deg, #007d71, #00a896);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
    font-weight: 700;

    color: #fff;

    margin-bottom: 28px;

    box-shadow: 0 10px 25px rgba(0,125,113,0.22);
}

/* heading */

.trust-cblm-card h3{
    font-size: 28px;
    line-height: 1.5;
    font-weight: 700;

    color: #0b1d39;

    margin-bottom: 16px;
}

/* text */

.trust-cblm-card p{
    font-size: 17px;
    line-height: 2;

    color: #566b7b;

    margin: 0;
}

/*====================================
  RESPONSIVE
====================================*/

@media (max-width: 992px){

    .trust-cblm-grid{
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px){

    .trust-cblm-sec{
        padding: 70px 0;
    }

    .trust-cblm-grid{
        margin-top: 40px;
        gap: 20px;
    }

    .trust-cblm-card{
        padding: 30px 22px;
        border-radius: 18px;
    }

    .trust-badge{
        width: 52px;
        height: 52px;

        font-size: 18px;

        border-radius: 14px;

        margin-bottom: 22px;
    }

    .trust-cblm-card h3{
        font-size: 22px;
    }

    .trust-cblm-card p{
        font-size: 15px;
        line-height: 1.9;
    }

}



/*=========================================
  HEALING PROCESS SECTION
=========================================*/

.healing-process-sec{
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

/* heading */

.healing-process-heading{
    text-align: center;
    margin-bottom: 70px;
}

.healing-process-heading h2{
    font-size: 62px;
    line-height: 1.2;
    font-weight: 800;

    color: #007d71;

    margin-bottom: 24px;
}

.healing-process-heading p{
    font-size: 19px;
    line-height: 1.8;

    color: #24364a;
}

/* grid */

.healing-process-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* card */

.healing-process-card{
    position: relative;

    background: #fff;

    border-radius: 24px;

    padding: 32px 34px;

    min-height: 360px;

    overflow: hidden;

    box-shadow: 0 10px 35px rgba(0,0,0,0.04);

    border-left: 6px solid #008272;

    transition: 0.35s ease;
}

.healing-process-card:hover{
    transform: translateY(-8px);
}

/* big number */

.process-number-new{
    position: absolute;
font-family: 'Inter', system-ui, -apple-system, sans-serif;
    /* top: 38px; */
    right: 34px;

    font-size: 78px;
    font-weight: 800;
    line-height: 1;

    color: rgba(0, 125, 113, 0.08);

    z-index: 1;
}

/* time */

.process-time{
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 98px;
    height: 42px;

    padding: 0 18px;

    background: linear-gradient(135deg, #17b0a1, #0c8e80);

    border-radius: 10px;

    font-size: 15px;
    font-weight: 700;

    color: #fff;

    margin-bottom: 32px;
}

/* title */

.healing-process-card h3{
    position: relative;
    z-index: 2;

    font-size: 34px;
    /* line-height: 1.45; */
    font-weight: 700;

    color: #0b1d39;

    margin-bottom: 18px;
}

/* text */

.healing-process-card p{
    position: relative;
    z-index: 2;

    font-size: 18px;
    line-height: 2;

    color: #566b7b;

    margin: 0;
}

/*=========================================
  RESPONSIVE
=========================================*/

@media (max-width: 1200px){

    .healing-process-heading h2{
        font-size: 52px;
    }

    .healing-process-card h3{
        font-size: 28px;
    }

}

@media (max-width: 992px){

    .healing-process-grid{
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px){

    .healing-process-sec{
        padding: 70px 0;
    }

    .healing-process-heading{
        margin-bottom: 45px;
    }

    .healing-process-heading h2{
        font-size: 36px;
        margin-bottom: 16px;
    }

    .healing-process-heading p{
        font-size: 15px;
        line-height: 1.8;
    }

    .healing-process-grid{
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .healing-process-card{
        min-height: auto;

        padding: 30px 22px;

        border-radius: 18px;
    }

    .process-number-new{
        font-size: 56px;

        top: 25px;
        right: 20px;
    }

    .process-time{
        min-width: 82px;
        height: 38px;

        font-size: 13px;

        margin-bottom: 24px;
    }

    .healing-process-card h3{
        font-size: 24px;
        margin-bottom: 14px;
    }

    .healing-process-card p{
        font-size: 15px;
        line-height: 1.9;
    }

}


/*=========================================
  WELLNESS TIPS SECTION
=========================================*/

.wellness-tips-sec{
    padding: 90px 0;
    background: #f5f7f7;
}

/* heading */

.wellness-heading{
    text-align: center;
    margin-bottom: 60px;
}

.wellness-heading h2{
    font-size: 64px;
    line-height: 1.2;
    font-weight: 800;

    color: #007d71;

    margin: 0;
}

/* grid */

.wellness-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* card */

.wellness-card{
    background: #fff;

    border-radius: 24px;

    padding: 32px 34px;

    min-height: 260px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.04);

    transition: 0.35s ease;
}

.wellness-card:hover{
    transform: translateY(-8px);
}

/* title */

.wellness-card h3{
    font-size: 32px;
    line-height: 1.4;
    font-weight: 700;

    color: #0b1d39;

    margin-bottom: 20px;
}

/* text */

.wellness-card p{
    font-size: 20px;
    line-height: 2;

    color: #24364a;

    margin: 0;
}

/*=========================================
  RESPONSIVE
=========================================*/

@media (max-width: 1200px){

    .wellness-heading h2{
        font-size: 52px;
    }

    .wellness-card h3{
        font-size: 28px;
    }

}

@media (max-width: 992px){

    .wellness-grid{
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px){

    .wellness-tips-sec{
        padding: 70px 0;
    }

    .wellness-heading{
        margin-bottom: 40px;
    }

    .wellness-heading h2{
        font-size: 38px;
    }

    .wellness-grid{
        gap: 20px;
    }

    .wellness-card{
        min-height: auto;

        padding: 32px 24px;

        border-radius: 18px;
    }

    .wellness-card h3{
        font-size: 24px;
        margin-bottom: 14px;
    }

    .wellness-card p{
        font-size: 15px;
        line-height: 1.9;
    }

}


/* hair transplant */

/*=========================================
  PRP INFO SECTION
=========================================*/

.prp-info-sec{
    padding: 100px 0;
    background: #f5f7f7;
}

/* grid */

.prp-info-grid{
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;

    margin-top: 50px;
}

/* left card */

.prp-left-card{
    background: #dff1ee;

    border: 1px solid #b7d9d2;

    border-radius: 22px;

    padding: 34px;
}

.prp-left-card h3{
    font-size: 34px;
    line-height: 1.4;
    font-weight: 700;

    color: #007d71;

    margin-bottom: 18px;
}

.prp-card-text{
    font-size: 16px;
    line-height: 2;

    color: #4b6170;

    margin-bottom: 28px;
}

/* symptom list */

.prp-symptom-list{
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.prp-symptom-item{
    display: flex;
    align-items: center;
    gap: 14px;

    background: #edf7f5;

    border-radius: 12px;

    padding: 14px 16px;
}

.prp-icon{
    min-width: 38px;
    width: 38px;
    height: 38px;

    border-radius: 10px;

    background: #d6ece7;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #007d71;

    font-size: 14px;
}

.prp-symptom-item p{
    margin: 0;

    font-size: 14px;
    line-height: 1.7;
    font-weight: 500;

    color: #2d3d4d;
}

/* right wrap */

.prp-right-wrap{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* main card */

.prp-main-card{
    position: relative;

    background: #007d71;

    border-radius: 22px;

    padding: 34px;

    overflow: hidden;
}

.prp-main-card::after{
    content: "PRP";

    position: absolute;

    right: -10px;
    bottom: -18px;

    font-size: 90px;
    font-weight: 800;

    color: rgba(255,255,255,0.08);
}

.prp-main-card h3{
    font-size: 34px;
    line-height: 1.4;
    font-weight: 700;

    color: #fff;

    margin-bottom: 18px;

    position: relative;
    z-index: 2;
}

.prp-main-card p{
    font-size: 15px;
    line-height: 2;

    color: rgba(255,255,255,0.92);

    margin: 0;

    position: relative;
    z-index: 2;
}

/* feature card */

.prp-feature-card{
    display: flex;
    align-items: flex-start;
    gap: 18px;

    background: #edf7f5;

    border: 1px solid #cfe5df;

    border-radius: 16px;

    padding: 18px 20px;
}

.prp-feature-icon{
    min-width: 42px;
    width: 42px;
    height: 42px;

    border-radius: 12px;

    background: #007d71;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 16px;
}

.prp-feature-card h4{
    font-size: 18px;
    line-height: 1.5;
    font-weight: 700;

    color: #24364a;

    margin-bottom: 6px;
}

.prp-feature-card p{
    font-size: 13px;
    line-height: 1.7;

    color: #607180;

    margin: 0;
}

/*=========================================
  RESPONSIVE
=========================================*/

@media (max-width: 992px){

    .prp-info-grid{
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px){

    .prp-info-sec{
        padding: 70px 0;
    }

    .prp-info-grid{
        margin-top: 35px;
        gap: 20px;
    }

    .prp-left-card,
    .prp-main-card{
        padding: 24px 20px;
    }

    .prp-left-card h3,
    .prp-main-card h3{
        font-size: 24px;
    }

    .prp-card-text,
    .prp-main-card p{
        font-size: 14px;
        line-height: 1.9;
    }

    .prp-symptom-item{
        align-items: flex-start;
    }

    .prp-feature-card{
        padding: 16px;
    }

}

/*=========================================
  HAIR LOSS CAUSE SECTION
=========================================*/

.hairloss-cause-sec{
    padding: 100px 0;
    background: #ffffff;
}

/* grid */

.hairloss-cause-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;

    margin-top: 60px;
}

/* card */

.hairloss-cause-card{
    position: relative;

    background: #fff;

    border-radius: 24px;

    padding: 32px 34px;

    overflow: hidden;

    border: 1px solid #e5ecea;

    transition: 0.45s ease;
}

/* bottom animated line */

.hairloss-cause-card::after{
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0%;
    height: 5px;

    background: #008272;

    transition: 0.45s ease;
}

/* hover effect */

.hairloss-cause-card:hover,
.hairloss-cause-card.active{
    border-color: #008272;

    transform: translateY(-6px);

    box-shadow: 0 12px 35px rgba(0,125,113,0.08);
}

.hairloss-cause-card:hover::after,
.hairloss-cause-card.active::after{
    width: 100%;
}

/* icon */

.hairloss-cause-icon{
    width: 62px;
    height: 62px;

    border-radius: 16px;

    background: #e7f5f2;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #008272;

    font-size: 22px;

    margin-bottom: 24px;

    transition: 0.4s ease;
}

.hairloss-cause-card:hover .hairloss-cause-icon,
.hairloss-cause-card.active .hairloss-cause-icon{
    background: #008272;
    color: #fff;
}

/* title */

.hairloss-cause-card h3{
    font-size: 30px;
    line-height: 1.5;
    font-weight: 700;

    color: #24364a;

    margin-bottom: 16px;
}

/* text */

.hairloss-cause-card p{
    font-size: 15px;
    line-height: 2;

    color: #5c6f7f;

    margin: 0;
}

/*=========================================
  RESPONSIVE
=========================================*/

@media (max-width: 992px){

    .hairloss-cause-grid{
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px){

    .hairloss-cause-sec{
        padding: 70px 0;
    }

    .hairloss-cause-grid{
        grid-template-columns: 1fr;
        gap: 20px;

        margin-top: 40px;
    }

    .hairloss-cause-card{
        padding: 28px 22px;

        border-radius: 18px;
    }

    .hairloss-cause-icon{
        width: 52px;
        height: 52px;

        font-size: 18px;

        border-radius: 12px;

        margin-bottom: 18px;
    }

    .hairloss-cause-card h3{
        font-size: 22px;
    }

    .hairloss-cause-card p{
        font-size: 14px;
        line-height: 1.9;
    }

}

/*=========================================
  PRP BENEFITS SECTION
=========================================*/

.prp-benefits-sec{
    padding: 100px 0;
    background: #f5f7f7;
}

/* grid */

.prp-benefits-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;

    margin-top: 60px;
}

/* card */

.prp-benefit-card{
    position: relative;

    background: #fff;

    border: 1px solid #d9e8e4;

    border-radius: 24px;

    padding: 34px 26px;

    overflow: hidden;

    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);

    min-height: 360px;
}

/* smooth fill overlay */

.prp-benefit-card::before{
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 0%;

    background: linear-gradient(180deg, #149585 0%, #0b7d71 100%);

    transition: height 0.55s cubic-bezier(0.4, 0, 0.2, 1);

    z-index: 1;
}

/* hover + active */

.prp-benefit-card:hover::before,
.prp-benefit-card.active::before{
    height: 100%;
}

.prp-benefit-card:hover,
.prp-benefit-card.active{
    transform: translateY(-8px);

    border-color: #0b7d71;

    box-shadow: 0 18px 40px rgba(0,125,113,0.14);
}

/* all content above overlay */

.prp-benefit-card > *{
    position: relative;
    z-index: 2;
}

/* number */

.prp-card-number{
    position: absolute;

    top: 20px;
    right: 24px;

    font-size: 62px;
    line-height: 1;
    font-weight: 800;

    color: rgba(0,125,113,0.08);
font-family: 'Inter', system-ui, -apple-system, sans-serif;
    transition: 0.45s ease;

}

.prp-benefit-card:hover .prp-card-number,
.prp-benefit-card.active .prp-card-number{
    color: rgba(255,255,255,0.12);
}

/* icon */

.prp-benefit-icon{
    width: 58px;
    height: 58px;

    border-radius: 14px;

    background: #e9f5f2;

    border: 1px solid #cfe7e1;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #0b7d71;

    font-size: 20px;

    margin-bottom: 28px;

    transition: all 0.4s ease;
}

.prp-benefit-card:hover .prp-benefit-icon,
.prp-benefit-card.active .prp-benefit-icon{
    background: rgba(255,255,255,0.12);

    border-color: rgba(255,255,255,0.2);

    color: #fff;
}

/* title */

.prp-benefit-card h3{
    font-size: 28px;
    line-height: 1.5;
    font-weight: 700;

    color: #24364a;

    margin-bottom: 16px;

    transition: 0.4s ease;
}

.prp-benefit-card:hover h3,
.prp-benefit-card.active h3{
    color: #fff;
}

/* text */

.prp-benefit-card p{
    font-size: 15px;
    line-height: 2;

    color: #617383;

    margin: 0;

    transition: 0.4s ease;
}

.prp-benefit-card:hover p,
.prp-benefit-card.active p{
    color: rgba(255,255,255,0.92);
}

/*=========================================
  RESPONSIVE
=========================================*/

@media (max-width: 992px){

    .prp-benefits-grid{
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px){

    .prp-benefits-sec{
        padding: 70px 0;
    }

    .prp-benefits-grid{
        grid-template-columns: 1fr;
        gap: 20px;

        margin-top: 40px;
    }

    .prp-benefit-card{
        min-height: auto;

        padding: 28px 22px;

        border-radius: 18px;
    }

    .prp-card-number{
        font-size: 48px;

        right: 18px;
    }

    .prp-benefit-icon{
        width: 50px;
        height: 50px;

        font-size: 17px;

        margin-bottom: 22px;
    }

    .prp-benefit-card h3{
        font-size: 22px;
    }

    .prp-benefit-card p{
        font-size: 14px;
        line-height: 1.9;
    }

}
/*=========================================
  PRP TRUST SECTION
=========================================*/

.prp-trust-sec{
    position: relative;

    padding: 100px 0;

    background: linear-gradient(180deg, #005f57 0%, #00695f 100%);

    overflow: hidden;
}

/* dotted pattern */

.prp-trust-sec::before{
    content: "";

    position: absolute;
    inset: 0;

    background-image:
    radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);

    background-size: 24px 24px;

    pointer-events: none;
}

/* heading */

.prp-trust-sec .comparison-heading{
    position: relative;
    z-index: 2;
}

.prp-trust-sec .section-heading{
    color: #fff;
}

.prp-trust-sec .section-subheading{
    color: rgba(255,255,255,0.82);
}

/* grid */

.prp-trust-grid{
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;

    margin-top: 60px;
}

/* card */

.prp-trust-card{
    position: relative;

    background: rgba(255,255,255,0.05);

    border: 1px solid rgba(255,255,255,0.14);

    border-radius: 22px;

    padding: 28px 22px;

    overflow: hidden;

    backdrop-filter: blur(8px);

    transition: 0.4s ease;
}

.prp-trust-card:hover{
    transform: translateY(-6px);

    border-color: rgba(255,255,255,0.3);

    background: rgba(255,255,255,0.08);
}

/* number */

.prp-trust-number{
    position: absolute;

    top: 18px;
    right: 18px;

    font-size: 62px;
    line-height: 1;
    font-weight: 800;

    font-family: 'Inter', system-ui, -apple-system, sans-serif;

    color: rgba(255,255,255,0.10);
}

/* icon */

.prp-trust-icon{
    width: 52px;
    height: 52px;

    border-radius: 14px;

    background: rgba(255, 184, 0, 0.12);

    border: 1px solid rgba(255, 184, 0, 0.4);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffbf47;

    font-size: 18px;

    margin-bottom: 24px;
}

/* title */

.prp-trust-card h3{
    font-size: 28px;
    line-height: 1.5;
    font-weight: 700;

    color: #fff;

    margin-bottom: 14px;
}

/* text */

.prp-trust-card p{
    font-size: 15px;
    line-height: 2;

    color: rgba(255,255,255,0.82);

    margin: 0;
}

/*=========================================
  RESPONSIVE
=========================================*/

@media (max-width: 992px){

    .prp-trust-grid{
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px){

    .prp-trust-sec{
        padding: 70px 0;
    }

    .prp-trust-grid{
        grid-template-columns: 1fr;

        margin-top: 40px;
    }

    .prp-trust-card{
        padding: 24px 20px;

        border-radius: 18px;
    }

    .prp-trust-number{
        font-size: 46px;
    }

    .prp-trust-icon{
        width: 46px;
        height: 46px;

        font-size: 16px;

        border-radius: 12px;

        margin-bottom: 18px;
    }

    .prp-trust-card h3{
        font-size: 22px;
    }

    .prp-trust-card p{
        font-size: 14px;
        line-height: 1.9;
    }

}

/*=========================================
  PRP JOURNEY SECTION
=========================================*/

.prp-journey-sec{
    padding: 100px 0;
    background: #f5f7f7;
}

/*=========================================
  TIMELINE
=========================================*/

.prp-journey-timeline{
    position: relative;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 90px;

    margin-top: 60px;
    margin-bottom: 35px;
}

/* line */

.timeline-line{
    position: absolute;

    top: 99%;

    left: 10%;

    width: 80%;

    height: 2px;

    background: #b8dfd8;

    transform: translateY(-50%);
}

/*=========================================
  ICON WRAP
=========================================*/

.timeline-icon-wrap{
    position: relative;

    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;
}

/*=========================================
  ICON
=========================================*/

.timeline-icon{
    position: relative;

    width: 64px;
    height: 64px;

    border-radius: 50%;

    background: #109989;

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;

    transition:
    transform 0.45s ease,
    box-shadow 0.45s ease,
    background 0.45s ease;

    box-shadow: 0 10px 25px rgba(0, 128, 115, 0.18);
}

/* smooth glow */

.timeline-icon::before{
    content: "";

    position: absolute;

    inset: -15px;

    border-radius: 50%;

    background: rgba(0, 173, 153, 0.14);

    filter: blur(16px);

    opacity: 0;

    transition: 0.45s ease;

    z-index: -1;
}

/*=========================================
  NUMBER
=========================================*/

.timeline-step-count{
    position: absolute;

    top: -6px;
    right: -4px;

    width: 26px;
    height: 26px;

    border-radius: 50%;

    background: #f7ae45;

    color: #fff;

    font-size: 11px;
    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 50;

    transition:
    transform 0.45s ease,
    box-shadow 0.45s ease,
    top 0.45s ease,
    right 0.45s ease;
}

/*=========================================
  ICON HOVER
=========================================*/

.timeline-icon-wrap:hover .timeline-icon{
    transform: scale(1.15);

    background: #0da392;

    box-shadow:
    0 16px 35px rgba(0,125,113,0.30),
    0 0 45px rgba(0,160,144,0.18);
}

/* glow active */

.timeline-icon-wrap:hover .timeline-icon::before{
    opacity: 1;

    transform: scale(1.08);
}

/* number hover */

.timeline-icon-wrap:hover .timeline-step-count{
    transform: scale(1.12);

    top: -10px;
    right: -8px;

    box-shadow:
    0 0 18px rgba(247,174,69,0.40);
}

/*=========================================
  ACTIVE ICON
=========================================*/

.timeline-icon-wrap.active .timeline-icon{
    transform: scale(1.15);

    background: #0da392;

    box-shadow:
    0 16px 35px rgba(0,125,113,0.30),
    0 0 45px rgba(0,160,144,0.18);
}

.timeline-icon-wrap.active .timeline-icon::before{
    opacity: 1;

    transform: scale(1.08);
}

.timeline-icon-wrap.active .timeline-step-count{
    transform: scale(1.12);

    top: -10px;
    right: -8px;

    box-shadow:
    0 0 18px rgba(247,174,69,0.40);
}

/*=========================================
  GRID
=========================================*/

.prp-journey-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/*=========================================
  CARD
=========================================*/

.prp-journey-card{
    background: #f7fbfa;

    border: 1px solid #d5e8e4;

    border-radius: 22px;

    padding: 24px 20px;

    min-height: 290px;

    transition:
    transform 0.45s ease,
    border-color 0.45s ease,
    background 0.45s ease,
    box-shadow 0.45s ease;
}

/* active card */

.prp-journey-card.active{
    background: #fff;

    border-color: #00a090;

    box-shadow:
    0 12px 35px rgba(0, 128, 115, 0.10);
}

/* hover */

.prp-journey-card:hover{
    background: #fff;

    border-color: #00a090;

    transform: translateY(-6px);

    box-shadow:
    0 18px 45px rgba(0, 128, 115, 0.12);
}

/*=========================================
  TIME BADGE
=========================================*/

.journey-time{
    display: inline-flex;
    align-items: center;
    gap: 8px;

    background: #dff4ef;

    color: #008272;

    border-radius: 40px;

    padding: 8px 14px;

    font-size: 12px;
    font-weight: 700;

    margin-bottom: 22px;
}

/*=========================================
  CARD TEXT
=========================================*/

.prp-journey-card h3{
    font-size: 28px;
    line-height: 1.5;
    font-weight: 700;

    color: #2c3d4f;

    margin-bottom: 14px;
}

.prp-journey-card p{
    font-size: 14px;
    line-height: 2;

    color: #647484;

    margin: 0;
}

/*=========================================
  POST CARD
=========================================*/

.prp-post-card{
    display: flex;
    align-items: flex-start;
    gap: 22px;

    margin-top: 28px;

    background: #f8fbfb;

    border: 1px solid #d6e7e2;

    border-radius: 22px;

    padding: 32px 24px;
}

/* icon */

.prp-post-icon{
    min-width: 58px;
    width: 58px;
    height: 58px;

    border-radius: 50%;

    background: #169989;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 18px;

    box-shadow: 0 10px 25px rgba(0,125,113,0.16);
}

/* heading */

.prp-post-content h3{
    font-size: 28px;
    line-height: 1.4;
    font-weight: 700;

    color: #2b3d4e;

    margin-bottom: 12px;
}

/* text */

.prp-post-content p{
    font-size: 15px;
    line-height: 2;

    color: #647484;

    margin: 0;
}

/*=========================================
  RESPONSIVE
=========================================*/

@media (max-width: 992px){

    .prp-journey-grid{
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px){

    .prp-journey-sec{
        padding: 70px 0;
    }

    .prp-journey-timeline{
        display: none;
    }

    .prp-journey-grid{
        grid-template-columns: 1fr;

        gap: 20px;

        margin-top: 40px;
    }

    .prp-journey-card{
        min-height: auto;

        border-radius: 18px;

        padding: 24px 20px;
    }

    .prp-journey-card h3{
        font-size: 22px;
    }

    .prp-post-card{
        flex-direction: column;

        border-radius: 18px;

        padding: 24px 20px;
    }

    .prp-post-content h3{
        font-size: 22px;
    }

    .prp-post-content p,
    .prp-journey-card p{
        font-size: 14px;
        line-height: 1.9;
    }

}


/*=========================================
  PATIENT GUIDELINE SECTION
=========================================*/

.patient-guideline-sec{
    padding: 100px 0;
    background: #ffff;
}

/*=========================================
  GRID
=========================================*/

.guideline-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;

    margin-top: 55px;
}

/*=========================================
  CARD
=========================================*/

.guideline-card{
    background: #fbfcfc;

    border: 1px solid #d8e8e4;

    border-radius: 24px;

    padding: 28px;

    transition: 0.4s ease;
}

.guideline-card:hover{
    transform: translateY(-6px);

    border-color: #0e9485;

    box-shadow:
    0 18px 40px rgba(0,128,115,0.10);
}

/*=========================================
  TOP
=========================================*/

.guideline-top{
    display: flex;
    align-items: center;
    gap: 16px;

    padding-bottom: 18px;
    margin-bottom: 24px;

    border-bottom: 1px solid #dbe9e5;
}

/*=========================================
  ICON
=========================================*/

.guideline-icon{
    min-width: 54px;
    width: 54px;
    height: 54px;

    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
}

/* before */

.before-icon{
    background: #fff1e4;
    color: #e98d2d;
}

/* after */

.after-icon{
    background: #ddf5ef;
    color: #0b9584;
}

/* lifestyle */

.lifestyle-icon{
    background: #ddf5ef;
    color: #0b9584;
}

/*=========================================
  HEADING
=========================================*/

.guideline-top h3{
    font-size: 22px;
    line-height: 1.4;
    font-weight: 700;

    color: #2f3e4f;

    margin-bottom: 4px;
}

.guideline-top span{
    font-size: 13px;
    color: #7a8b99;
}

/*=========================================
  LIST
=========================================*/

.guideline-card ul{
    padding: 0;
    margin: 0;

    list-style: none;
}

.guideline-card ul li{
    position: relative;

    padding-left: 18px;
    margin-bottom: 18px;

    font-size: 15px;
    line-height: 1.9;

    color: #5d6d7d;
}

/* bullet */

.guideline-card ul li::before{
    content: "";

    position: absolute;

    top: 11px;
    left: 0;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #17a08f;
}

/*=========================================
  RESPONSIVE
=========================================*/

@media (max-width: 992px){

    .guideline-grid{
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px){

    .patient-guideline-sec{
        padding: 70px 0;
    }

    .guideline-card{
        padding: 24px 20px;
        border-radius: 18px;
    }

    .guideline-top{
        align-items: flex-start;
    }

    .guideline-top h3{
        font-size: 18px;
    }

    .guideline-card ul li{
        font-size: 14px;
        line-height: 1.8;
    }

}

/* about */

/* =========================
   HERO ABOUT SECTION
========================= */

.hero-about-sec{
    padding: 50px 0;

    background: #f3f8fd;

    overflow: hidden;
}

/* =========================
   GRID
========================= */

.hero-about-grid{
    display: grid;
    grid-template-columns: 1fr 1.05fr;

    gap: 10px;

    align-items: center;
}

/* =========================
   LEFT CONTENT
========================= */

.hero-about-content{
    max-width: 620px;
}

.hero-mini-badge{
    display: inline-flex;
    align-items: center;

    gap: 10px;

    background: #edf4ff;

    color: #2563eb;

    padding: 12px 18px;

    border-radius: 100px;

    font-size: 0.9rem;
    font-weight: 500;

    margin-bottom: 5px;
}

.hero-mini-badge .dot{
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #2563eb;
}

/* =========================
   TITLE
========================= */

.hero-about-title{
    font-family: 'Playfair Display', serif;

    font-size: 3.8rem;
    font-weight: 700;

    line-height: 1.12;

    letter-spacing: -1px;

    color: #0f172a;

    /* margin-bottom: 30px; */
}

.hero-about-title span{
    display: block;

    color: #2876d8;
}

/* =========================
   TEXT
========================= */

.hero-about-text{
    font-size: 1.28rem;

    /* line-height: 2; */

    color: #64748b;

    max-width: 560px;

    /* margin-bottom: 42px; */
}

/* =========================
   BUTTONS
========================= */

.hero-about-btns{
    display: flex;
    align-items: center;

    gap: 16px;

    flex-wrap: wrap;
}

.btn-outline{
    height: 58px;

    padding: 0 28px;

    border-radius: 16px;

    background: #fff;

    border: 1px solid #dbe4ff;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    font-size: 1rem;
    font-weight: 600;

    color: #0f172a;

    transition: 0.3s ease;
}

.btn-outline:hover{
    transform: translateY(-3px);
}

/* =========================
   RIGHT CARD
========================= */

.hero-about-card-wrap{
    position: relative;
}

.hero-about-card{
    background: #fff;

    border-radius: 34px;

    padding: 20px;

    box-shadow: 0 30px 70px rgba(15,23,42,0.12);

    position: relative;
}

/* =========================
   FLOATING BADGES
========================= */

.floating-badge{
    position: absolute;

    background: #fff;

    border-radius: 16px;

    padding: 18px 22px;

    box-shadow: 0 20px 40px rgba(15,23,42,0.12);

    display: flex;
    align-items: center;

    gap: 12px;

    font-size: 0.95rem;
    font-weight: 500;

    color: #334155;

    z-index: 5;
}

.top-badge{
    top: -18px;
    right: -18px;
}

.bottom-badge{
    left: -28px;
    bottom: -18px;
}

.green-dot{
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #22c55e;
}

/* =========================
   CARD CONTENT
========================= */

.card-icon{
    width: 56px;
    height: 56px;

    border-radius: 16px;

    background: #edf4ff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.4rem;

    margin-bottom: 10px;
}

.hero-about-card h3{
    font-family: 'Playfair Display', serif;

    font-size: 2.1rem;
    font-weight: 700;

    color: #1e293b;

    margin-bottom: 22px;
}

.hero-about-card p{
    font-size: 1.06rem;

    /* line-height: 2; */

    color: #64748b;

    /* margin-bottom: 34px; */
}

/* =========================
   STATS GRID
========================= */

.hero-stats-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);

    gap: 18px;
}

.hero-stat-box{
    background: #f8fbff;

    border-radius: 20px;

    padding: 10px 20px;

    text-align: center;
}

.hero-stat-box h4{
    font-family: 'Playfair Display', serif;

    font-size: 2rem;
    font-weight: 700;

    color: #2563eb;

    margin-bottom: 10px;
}

.hero-stat-box span{
    font-size: 0.92rem;

    color: #64748b;
}

/* =========================
   TABLET
========================= */

@media(max-width:991px){

    .hero-about-grid{
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .hero-about-title{
        font-size: 3.5rem;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:600px){

    .hero-about-sec{
        padding: 70px 0;
    }

    .hero-about-title{
        font-size: 2.5rem;
    }

    .hero-about-text{
        font-size: 1rem;

        line-height: 1.9;
    }

    .hero-about-card{
        padding: 28px 22px;

        border-radius: 26px;
    }

    .hero-about-card h3{
        font-size: 1.6rem;
    }

    .hero-about-card p{
        font-size: 0.95rem;

        line-height: 1.9;
    }

    .hero-stats-grid{
        grid-template-columns: 1fr;
    }

    .floating-badge{
        position: static;

        margin-bottom: 16px;
    }

    .top-badge,
    .bottom-badge{
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }

}

/* =========================
   SPECIALITY SECTION
========================= */

.speciality-sec{
    padding: 90px 0;

    background: #f8fafc;
}

/* =========================
   GRID
========================= */

.speciality-grid{
    display: grid;

    grid-template-columns: repeat(6,1fr);

    gap: 16px;

    margin-top: 60px;
}

/* =========================
   CARD
========================= */

.speciality-card{
    min-height: 86px;

    background: #fff;

    border: 1px solid #e5e7eb;

    border-radius: 16px;

    padding: 10px 18px;

    display: flex;
    align-items: center;

    gap: 14px;

    font-size: 1rem;
    font-weight: 500;

    line-height: 1.6;

    color: #0f172a;

    transition: 0.3s ease;
}

.speciality-card:hover{
    transform: translateY(-4px);

    border-color: #bfdbfe;

    box-shadow: 0 15px 35px rgba(15,23,42,0.06);
}

/* =========================
   DOT
========================= */

.speciality-dot{
    width: 9px;
    height: 9px;

    min-width: 9px;

    border-radius: 50%;

    background: #2563eb;
}

/* =========================
   LAPTOP
========================= */

@media(max-width:1200px){

    .speciality-grid{
        grid-template-columns: repeat(4,1fr);
    }

}

/* =========================
   TABLET
========================= */

@media(max-width:991px){

    .speciality-grid{
        grid-template-columns: repeat(3,1fr);
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:767px){

    .speciality-sec{
        padding: 70px 0;
    }

    .speciality-grid{
         grid-template-columns: repeat(2,1fr) !important;

        gap: 12px;
    }

    .speciality-card{
        min-height: auto;

        padding: 18px 16px;

        font-size: 0.95rem;
    }

}


/* =========================
   JOURNEY TIMELINE
========================= */

.journey-timeline-sec{
    padding: 100px 0;

    background: #fff;
}

/* =========================
   TIMELINE WRAPPER
========================= */

.journey-timeline{
    position: relative;

    max-width: 950px;

    margin: 70px auto 0;

    padding-left: 70px;
}

/* vertical line */

.journey-timeline::before{
    content: "";

    position: absolute;

    left: 24px;
    top: 0;

    width: 2px;
    height: 100%;

    background: #2b74d8;
}

/* =========================
   ITEM
========================= */

.timeline-item{
    position: relative;

    display: flex;
    align-items: flex-start;

    gap: 26px;

    margin-bottom: 55px;
}

.timeline-item:last-child{
    margin-bottom: 0;
}

/* =========================
   CIRCLE
========================= */

.timeline-circle{
    position: absolute;

    left: -70px;
    top: 0;

    width: 50px;
    height: 50px;

    border-radius: 50%;

    background: #2b74d8;

    border: 4px solid #e8f1ff;

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 0.95rem;
    font-weight: 700;

    box-shadow: 0 10px 20px rgba(43,116,216,0.15);
}

/* =========================
   CONTENT
========================= */

.timeline-content{
    padding-top: 2px;
}

.timeline-year{
    display: inline-block;

    font-size: 0.78rem;
    font-weight: 700;

    color: #2b74d8;

    margin-bottom: 8px;
}

.timeline-content h3{
    font-size: 1.2rem;
    font-weight: 700;

    line-height: 1.5;

    color: #0f172a;

    margin-bottom: 12px;
}

.timeline-content p{
    font-size: 0.95rem;

    line-height: 1.9;

    color: #64748b;

    max-width: 760px;
}

/* =========================
   TABLET
========================= */

@media(max-width:991px){

    .journey-timeline{
        padding-left: 55px;
    }

    .timeline-circle{
        left: -55px;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:767px){

    .journey-timeline-sec{
        padding: 70px 0;
    }

    .journey-timeline{
        padding-left: 45px;

        margin-top: 50px;
    }

    .journey-timeline::before{
        left: 18px;
    }

    .timeline-circle{
        width: 38px;
        height: 38px;

        left: -45px;

        font-size: 0.75rem;

        border-width: 3px;
    }

    .timeline-item{
        margin-bottom: 40px;
    }

    .timeline-content h3{
        font-size: 1rem;
    }

    .timeline-content p{
        font-size: 0.88rem;

        line-height: 1.8;
    }

}


/* blood bank */
/* =========================
   BLOOD BANK SECTION
========================= */

.blood-bank-sec{
    padding: 90px 0;

    background: #f5f9fd;
}

/* =========================
   TITLE
========================= */

.blood-bank-title{
    font-size: 4rem;
    font-weight: 800;

    line-height: 1.15;

    color: #111827;

    max-width: 620px;

    margin-bottom: 30px;
}

.blood-bank-title span{
    color: #ef4444;
}

/* =========================
   TEXT
========================= */

.blood-bank-text{
    font-size: 1.1rem;

    line-height: 1.9;

    color: #64748b;

    max-width: 620px;

    margin-bottom: 38px;
}

/* =========================
   BUTTONS
========================= */

.blood-bank-btns{
    display: flex;
    align-items: center;

    gap: 16px;

    flex-wrap: wrap;
}

.blood-outline-btn{
    height: 58px;

    padding: 0 30px;

    border-radius: 100px;

    border: 1.5px solid #ef4444;

    background: #fff;

    color: #ef4444;

    font-size: 1rem;
    font-weight: 600;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    transition: 0.3s ease;
}

.blood-outline-btn:hover{
    background: #ef4444;

    color: #fff;
}

/* =========================
   IMAGE BOX
========================= */

.blood-bank-image-wrap{
    text-align: center;
}

.blood-bank-image-box{
    width: 100%;
    height: 470px;

    border-radius: 26px;

    background: linear-gradient(135deg,#fdf2f8,#dbeafe);

    display: flex;
    align-items: center;
    justify-content: center;
}

.blood-bank-heart{
    font-size: 5rem;
}

.blood-bank-img-text{
    margin-top: 14px;

    font-size: 0.95rem;

    color: #64748b;
}

/* =========================
   EMERGENCY BAR
========================= */

.blood-emergency-bar{
    background: linear-gradient(135deg,#ff4d4d,#ff6b57);

    border-radius: 18px;

    padding: 26px 32px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    flex-wrap: wrap;

    box-shadow: 0 15px 40px rgba(239,68,68,0.25);

    position: relative;

    overflow: hidden;
}

/* dotted pattern */

.blood-emergency-bar::before{
    content: "";

    position: absolute;

    inset: 0;

    background-image: radial-gradient(rgba(255,255,255,0.18) 1px, transparent 1px);

    background-size: 12px 12px;

    opacity: 0.5;
}

/* content */

.blood-bar-left,
.blood-bar-right{
    position: relative;

    z-index: 2;
}

.blood-bar-left h3{
    font-size: 1.6rem;
    font-weight: 700;

    color: #fff;

    margin-bottom: 10px;
}

.blood-bar-left p{
    font-size: 1rem;

    color: rgba(255,255,255,0.95);

    margin: 0;
}

/* right */

.blood-bar-right{
    display: flex;
    align-items: center;

    gap: 14px;
}

.blood-phone-icon{
    font-size: 2rem;
}

.blood-bar-right a{
    font-size: 2rem;
    font-weight: 800;

    color: #fff;

    text-decoration: none;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .blood-bank-title{
        font-size: 3rem;
    }

    .blood-bank-image-box{
        height: 380px;
    }

}

@media(max-width:767px){

    .blood-bank-sec{
        padding: 70px 0;
    }

    .blood-bank-title{
        font-size: 2.2rem;
    }

    .blood-bank-text{
        font-size: 0.96rem;
    }

    .blood-bank-btns{
        flex-direction: column;

        align-items: stretch;
    }

    .blood-outline-btn,
    .btn-primary{
        width: 100%;
    }

    .blood-bank-image-box{
        height: 260px;
    }

    .blood-bank-heart{
        font-size: 3.8rem;
    }

    .blood-emergency-bar{
        padding: 22px;
    }

    .blood-bar-left h3{
        font-size: 1.2rem;
    }

    .blood-bar-right a{
        font-size: 1.4rem;
    }

}

/* =========================
   BLOOD STATS SECTION
========================= */

.blood-stats-sec{
    padding: 80px 0;

    background: #fff;
}

/* =========================
   CARD
========================= */

.blood-stat-card{
    background: #fff;

    border-radius: 20px;

    padding: 30px 20px;

    text-align: center;

    position: relative;

    overflow: hidden;

    height: 100%;

    transition: 0.35s ease;

    box-shadow: 0 10px 30px rgba(15,23,42,0.04);
}

/* TOP BORDER ON HOVER */

.blood-stat-card::before{
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    transform: translateX(-50%);

    width: 0%;
    height: 4px;

    background: #dc2626;

    transition: 0.35s ease;
}

.blood-stat-card:hover::before{
    width: 100%;
}

.blood-stat-card:hover{
    transform: translateY(-6px);

    box-shadow: 0 18px 45px rgba(15,23,42,0.08);
}

/* =========================
   NUMBER
========================= */

.blood-stat-card h2{
    font-size: 3.2rem;
    font-weight: 800;

    line-height: 1;

    color: #dc2626;

    margin-bottom: 18px;
}

/* =========================
   TITLE
========================= */

.blood-stat-card h3{
    font-size: 1.6rem;
    font-weight: 700;

    line-height: 1.5;

    color: #111827;

    margin-bottom: 18px;
}

/* =========================
   TEXT
========================= */

.blood-stat-card p{
    font-size: 1.05rem;

    line-height: 1.9;

    color: #64748b;

    margin: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .blood-stat-card h2{
        font-size: 3.2rem;
    }

    .blood-stat-card h3{
        font-size: 1.3rem;
    }

}

@media(max-width:767px){

    .blood-stats-sec{
        padding: 70px 0;
    }

    .blood-stat-card{
        padding: 34px 24px;
    }

    .blood-stat-card h2{
        font-size: 2.7rem;
    }

    .blood-stat-card h3{
        font-size: 1.15rem;
    }

    .blood-stat-card p{
        font-size: 0.95rem;
    }

}

/* =========================
   BLOOD ABOUT SECTION
========================= */

.blood-about-sec{
    padding: 90px 0;

    background: #f8fafc;
}

/* =========================
   HEADING
========================= */

.heading-divider{
    width: 70px;
    height: 3px;

    background: #dc2626;

    border-radius: 20px;

    margin: 18px auto 24px;
}

/* =========================
   LEFT CONTENT
========================= */

.blood-about-content{
    padding-right: 25px;
}

.blood-about-item{
    margin-bottom: 42px;
}

.blood-about-item:last-child{
    margin-bottom: 0;
}

.blood-about-item h3{
    font-size: 2rem;
    font-weight: 700;

    color: #111827;

    margin-bottom: 18px;
}

.blood-about-item p{
    font-size: 1.08rem;

    line-height: 1.9;

    color: #334155;

    margin: 0;
}

/* =========================
   RIGHT CARD
========================= */

.blood-check-card{
    background: #fff;

    border-radius: 24px;

    padding: 42px;

    box-shadow: 0 15px 40px rgba(15,23,42,0.06);
}

.blood-check-card h3{
    font-size: 2.2rem;
    font-weight: 700;

    color: #111827;

    margin-bottom: 34px;
}

/* =========================
   FORM GROUP
========================= */

.form-group{
    margin-bottom: 24px;
}

.form-group label{
    display: block;

    font-size: 1rem;
    font-weight: 600;

    color: #111827;

    margin-bottom: 10px;
}

/* =========================
   INPUT
========================= */

.form-group input{
    width: 100%;
    height: 58px;

    border: 1px solid #dbe5ee;

    border-radius: 12px;

    padding: 0 18px;

    outline: none;

    font-size: 1rem;

    color: #111827;

    transition: 0.3s ease;
}

.form-group input:focus{
    border-color: #2563eb;

    box-shadow: 0 0 0 4px rgba(37,99,235,0.08);
}

/* =========================
   CUSTOM SELECT
========================= */

.custom-select{
    position: relative;
}

.custom-select-trigger{
    width: 100%;
    height: 58px;

    border: 1px solid #dbe5ee;

    border-radius: 12px;

    background: #fff;

    padding: 0 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    cursor: pointer;

    transition: 0.3s ease;
}

.custom-select.active .custom-select-trigger{
    border-color: #2563eb;

    box-shadow: 0 0 0 4px rgba(37,99,235,0.08);
}

.custom-select-trigger span{
    font-size: 1rem;

    color: #111827;
}

.custom-select-trigger i{
    font-size: 0.9rem;

    color: #64748b;

    transition: 0.3s ease;
}

.custom-select.active .custom-select-trigger i{
    transform: rotate(180deg);
}

/* =========================
   OPTIONS
========================= */

.custom-options{
    position: absolute;

    top: calc(100% + 10px);
    left: 0;
    right: 0;

    background: #fff;

    border-radius: 14px;

    border: 1px solid #dbe5ee;

    overflow: hidden;

    box-shadow: 0 20px 40px rgba(0,0,0,0.08);

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: 0.3s ease;

    z-index: 999;
}

.custom-select.active .custom-options{
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

/* =========================
   OPTION
========================= */

.custom-option{
    padding: 16px 18px;

    font-size: 0.96rem;

    color: #111827;

    cursor: pointer;

    transition: 0.25s ease;
}

.custom-option:hover{
    background: #ef4444;

    color: #fff;
}

/* =========================
   BUTTON
========================= */

.blood-check-btn{
    width: 100%;
    height: 58px;

    border: none;

    border-radius: 12px;

    background: linear-gradient(90deg,#dc2626,#ef4444);

    color: #fff;

    font-size: 1rem;
    font-weight: 600;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    transition: 0.3s ease;

    margin-top: 10px;
}

.blood-check-btn:hover{
    transform: translateY(-2px);

    box-shadow: 0 15px 30px rgba(239,68,68,0.2);
}

/* =========================
   HELPLINE
========================= */

.blood-helpline{
    margin-top: 18px;

    text-align: center;

    font-size: 0.95rem;

    color: #64748b;
}

.blood-helpline strong{
    color: #111827;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .blood-about-content{
        padding-right: 0;
    }

}

@media(max-width:767px){

    .blood-about-sec{
        padding: 70px 0;
    }

    .blood-about-item h3{
        font-size: 1.55rem;
    }

    .blood-about-item p{
        font-size: 0.96rem;
    }

    .blood-check-card{
        padding: 28px 22px;
    }

    .blood-check-card h3{
        font-size: 1.6rem;
    }

    .custom-select-trigger,
    .form-group input{
        height: 54px;
    }

}

/* =========================
   BLOOD SERVICES
========================= */

.blood-services-sec{
    padding: 90px 0;

    background: #fff;
}

/* =========================
   CARD
========================= */
.blood-service-card{
    background: #fff;

    border-radius: 22px;

    padding: 34px 28px;

    height: 100%;

    position: relative;

    overflow: hidden;

    transition: 0.35s ease;

    /* border-top: 3px solid #ef4444; */
    border-left: 4px solid #ef4444;

    border-right: 1px solid #edf2f7;
    border-bottom: 1px solid #edf2f7;

    box-shadow: 0 10px 30px rgba(15,23,42,0.04);
}


/* TOP BORDER */

.blood-service-card::before{
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: linear-gradient(90deg,#ef4444,#2563eb);
}

/* HOVER */

.blood-service-card:hover{
    transform: translateY(-8px);

    box-shadow: 0 20px 50px rgba(15,23,42,0.08);
}

/* =========================
   ICON
========================= */

.blood-service-icon{
    width: 68px;
    height: 68px;

    border-radius: 50%;

    background: #f1f5f9;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 2rem;

    margin-bottom: 28px;
}

/* =========================
   TITLE
========================= */

.blood-service-card h3{
    font-size: 2rem;
    font-weight: 700;

    line-height: 1.35;

    color: #111827;

    margin-bottom: 18px;
}

/* =========================
   TEXT
========================= */

.blood-service-card p{
    font-size: 1rem;

    line-height: 1.9;

    color: #475569;

    margin-bottom: 22px;
}

/* =========================
   LIST
========================= */

.blood-service-card ul{
    padding-left: 22px;

    margin: 0;

    list-style: disc;
}

.blood-service-card ul li{
    font-size: 0.96rem;

    line-height: 1.9;

    color: #111827;

    list-style: disc;
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .blood-service-card h3{
        font-size: 1.6rem;
    }

}

@media(max-width:767px){

    .blood-services-sec{
        padding: 70px 0;
    }

    .blood-service-card{
        padding: 28px 22px;
    }

    .blood-service-icon{
        width: 60px;
        height: 60px;

        font-size: 1.7rem;
    }

    .blood-service-card h3{
        font-size: 1.35rem;
    }

    .blood-service-card p,
    .blood-service-card ul li{
        font-size: 0.92rem;
    }

}

/* =========================
   BLOOD PROCESS SECTION
========================= */

.blood-process-sec{
    padding: 90px 0;

    background: #f8fafc;
}

/* =========================
   CARD
========================= */

.blood-process-card{
    background: #fff;

    border-radius: 22px;

    padding: 60px 30px 34px;

    text-align: center;

    position: relative;

    height: 100%;

    border: 1px solid #edf2f7;

    box-shadow: 0 10px 30px rgba(15,23,42,0.04);

    transition: 0.35s ease;
}

.blood-process-card:hover{
    transform: translateY(-8px);

    box-shadow: 0 18px 45px rgba(15,23,42,0.08);
}

/* =========================
   COUNT
========================= */

.blood-process-count{
    position: absolute;

    top: -16px;
    left: 50%;

    transform: translateX(-50%);

    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: #dc2626;

    color: #fff;

    font-size: 1rem;
    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 10px 25px rgba(220,38,38,0.25);
}

/* =========================
   ICON
========================= */

.blood-process-icon{
    font-size: 3rem;

    color: #dc2626;

    margin-bottom: 24px;
}

/* =========================
   TITLE
========================= */

.blood-process-card h3{
    font-size: 1.9rem;
    font-weight: 700;

    color: #111827;

    margin-bottom: 18px;
}

/* =========================
   TEXT
========================= */

.blood-process-card p{
    font-size: 1rem;

    line-height: 1.9;

    color: #334155;

    margin-bottom: 20px;
}

/* =========================
   BOTTOM TEXT
========================= */

.blood-process-card span{
    display: block;

    font-size: 0.9rem;

    color: #64748b;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .blood-process-card h3{
        font-size: 1.5rem;
    }

}

@media(max-width:767px){

    .blood-process-sec{
        padding: 70px 0;
    }

    .blood-process-card{
        padding: 55px 22px 28px;
    }

    .blood-process-icon{
        font-size: 2.4rem;
    }

    .blood-process-card h3{
        font-size: 1.3rem;
    }

    .blood-process-card p{
        font-size: 0.93rem;
    }

}

/* =========================
   BLOOD GROUP SECTION
========================= */

.blood-group-sec{
    padding: 90px 0;

    background: #ffff;
}

/* =========================
   CARD
========================= */

.blood-group-card{
    background: #fff;

    border-radius: 22px;

    padding: 38px 24px;

    text-align: center;

    height: 100%;

    border: 1px solid #e2e8f0;

    box-shadow: 0 10px 30px rgba(15,23,42,0.04);

    transition: 0.35s ease;
}

.blood-group-card:hover{
    transform: translateY(-8px);

    box-shadow: 0 20px 45px rgba(15,23,42,0.08);
}

/* =========================
   CIRCLE
========================= */

.blood-group-circle{
    width: 96px;
    height: 96px;

    border-radius: 50%;

    margin: 0 auto 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 2.8rem;
    font-weight: 700;

    color: #fff;
}

/* COLORS */

.bg-a-plus{
    background: #dc2626;
}

.bg-a-minus{
    background: #c2185b;
}

.bg-b-plus{
    background: #3949ab;
}

.bg-b-minus{
    background: #5b2fb8;
}

.bg-o-plus{
    background: #00897b;
}

.bg-o-minus{
    background: #43a047;
}

.bg-ab-plus{
    background: #fb8c00;
}

.bg-ab-minus{
    background: #fbc02d;

    color: #1e293b;
}

/* =========================
   TITLE
========================= */

.blood-group-card h3{
    font-size: 2rem;
    font-weight: 700;

    color: #111827;

    margin-bottom: 16px;
}

/* =========================
   TEXT
========================= */

.blood-group-card p{
    font-size: 1rem;

    line-height: 1.8;

    color: #334155;

    margin-bottom: 12px;
}

/* =========================
   TAGS
========================= */

.blood-group-tags{
    display: flex;
    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 20px;
}

.blood-tag{
    padding: 7px 14px;

    border-radius: 50px;

    font-size: 0.88rem;
    font-weight: 600;

    color: #fff;

    line-height: 1;
}

.available-tag{
    background: #15803d;
}

.population-tag{
    background: #06b6d4;
}

.limited-tag{
    background: #facc15;

    color: #fff;
}

.shortage-tag{
    background: #ef4444;
}

/* =========================
   NOTE BOX
========================= */

.blood-note-box{
    margin-top: 50px;

    background: #d9f3fb;

    border: 1px solid #9ddff0;

    border-radius: 18px;

    padding: 30px;

    display: flex;

    gap: 22px;
}

.blood-note-icon{
    width: 56px;
    height: 56px;

    min-width: 56px;

    border-radius: 50%;

    background: #0e7490;

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.5rem;
}

.blood-note-content h4{
    font-size: 2rem;
    font-weight: 700;

    color: #0f172a;

    margin-bottom: 12px;
}

.blood-note-content p{
    font-size: 1rem;

    line-height: 1.9;

    color: #0f172a;

    margin: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .blood-group-card h3{
        font-size: 1.6rem;
    }

}

@media(max-width:767px){

    .blood-group-sec{
        padding: 70px 0;
    }

    .blood-group-card{
        padding: 30px 20px;
    }

    .blood-group-circle{
        width: 82px;
        height: 82px;

        font-size: 2.3rem;
    }

    .blood-group-card h3{
        font-size: 1.35rem;
    }

    .blood-group-card p{
        font-size: 0.92rem;
    }

    .blood-note-box{
        flex-direction: column;

        padding: 24px 20px;
    }

    .blood-note-content h4{
        font-size: 1.3rem;
    }

    .blood-note-content p{
        font-size: 0.92rem;
    }

}

/* =========================
   BLOOD CHARGE SECTION
========================= */

.blood-charge-sec{
    padding: 90px 0;

    background: #f8fafc;
}

/* =========================
   ALERT BOX
========================= */

.blood-charge-alert{
    background: #fff4cf;

    border: 1px solid #f6d36b;

    border-radius: 10px;

    padding: 22px 24px;

    margin-top: 45px;
    margin-bottom: 28px;
}

.blood-charge-alert h4{
    font-size: 1.2rem;
    font-weight: 700;

    color: #92400e;

    margin-bottom: 10px;
}

.blood-charge-alert p{
    margin: 0;

    font-size: 0.96rem;

    line-height: 1.8;

    color: #78350f;
}

/* =========================
   TABLE
========================= */

.blood-charge-table{
    width: 100%;

    border-collapse: collapse;

    background: #fff;

    border: 1px solid #dbe5ee;
}

.blood-charge-table thead{
    background: #1f2937;
}

.blood-charge-table thead th{
    color: #fff;

    font-size: 0.95rem;
    font-weight: 700;

    padding: 14px 16px;

    border: 1px solid #374151;

    text-align: left;
}

.blood-charge-table tbody td{
    font-size: 0.93rem;

    color: #334155;

    padding: 14px 16px;

    border: 1px solid #dbe5ee;

    line-height: 1.7;
}

/* =========================
   CONTENT
========================= */

.blood-charge-content{
    margin-top: 40px;
}

.blood-charge-content h3{
    font-size: 2rem;
    font-weight: 700;

    color: #111827;

    margin-bottom: 14px;
}

.blood-charge-content p{
    font-size: 1rem;

    color: #334155;

    margin-bottom: 16px;
}

.blood-charge-content ul{
    padding-left: 22px;

    margin: 0;

    list-style: disc;
}

.blood-charge-content ul li{
    font-size: 0.97rem;

    line-height: 1.9;

    color: #111827;

    margin-bottom: 8px;
}

.blood-charge-content ul li::marker{
    color: #111827;
}

/* =========================
   INSURANCE BOX
========================= */

.blood-insurance-box{
    margin-top: 34px;

    background: #dff5e6;

    border: 1px solid #8dd4a0;

    border-radius: 10px;

    padding: 22px 24px;
}

.blood-insurance-box h4{
    font-size: 1.2rem;
    font-weight: 700;

    color: #166534;

    margin-bottom: 10px;
}

.blood-insurance-box p{
    margin: 0;

    font-size: 0.96rem;

    line-height: 1.8;

    color: #166534;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:767px){

    .blood-charge-sec{
        padding: 70px 0;
    }

    .blood-charge-content h3{
        font-size: 1.5rem;
    }

    .blood-charge-table{
        min-width: 700px;
    }

}


/* =========================
   PLASMA SECTION
========================= */

.plasma-donation-sec{
    padding: 90px 0;

    background: #fff;
}

/* =========================
   LEFT CONTENT
========================= */

.plasma-content{
    padding-right: 24px;
}

.plasma-info-block{
    margin-bottom: 38px;
}

.plasma-info-block:last-child{
    margin-bottom: 0;
}

.plasma-info-block h3{
    font-size: 2rem;
    font-weight: 700;

    color: #111827;

    margin-bottom: 18px;
}

.plasma-info-block p{
    font-size: 1rem;

    line-height: 1.9;

    color: #334155;

    margin: 0;
}

/* =========================
   LIST
========================= */

.plasma-info-block ul{
    padding-left: 22px;

    margin: 0;

    list-style: disc;
}

.plasma-info-block ul li{
    font-size: 0.97rem;

    line-height: 1.9;

    color: #111827;

    margin-bottom: 6px;
}

.plasma-info-block ul li::marker{
    color: #111827;
}

/* =========================
   FORM CARD
========================= */

.plasma-form-card{
    background: #fff;

    border-radius: 22px;

    padding: 34px;

    border: 1px solid #edf2f7;

    box-shadow: 0 10px 35px rgba(15,23,42,0.05);
}

.plasma-form-card h3{
    font-size: 2rem;
    font-weight: 700;

    color: #111827;

    margin-bottom: 28px;
}

/* =========================
   CHECKBOX
========================= */

.plasma-checkbox{
    display: flex;
    align-items: flex-start;

    gap: 10px;

    margin-bottom: 24px;
}

.plasma-checkbox input{
    margin-top: 5px;
}

.plasma-checkbox label{
    font-size: 0.95rem;

    line-height: 1.8;

    color: #334155;
}

/* =========================
   NOTE
========================= */

.plasma-form-note{
    margin-top: 18px;

    font-size: 0.92rem;

    line-height: 1.8;

    color: #64748b;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .plasma-content{
        padding-right: 0;
    }

}

@media(max-width:767px){

    .plasma-donation-sec{
        padding: 70px 0;
    }

    .plasma-info-block h3,
    .plasma-form-card h3{
        font-size: 1.5rem;
    }

    .plasma-info-block p,
    .plasma-info-block ul li{
        font-size: 0.93rem;
    }

    .plasma-form-card{
        padding: 26px 22px;
    }

}

/* RGHS */
/* =========================
   RGHS MAIN CARD
========================= */

.rghs-info-card{
    background: #fff;

    border: 1px solid #dbe5ee;

    border-radius: 24px;

    padding: 34px;

    height: 100%;
}

/* =========================
   BANNER
========================= */

.rghs-banner-box{
    position: relative;

    overflow: hidden;

    background: linear-gradient(135deg,#0f5fb5,#1e73c9);

    border-radius: 16px;

    padding: 30px;

    margin-top: 26px;
    margin-bottom: 32px;
}

.rghs-banner-overlay{
    position: absolute;

    top: -8px;
    right: 20px;

    font-size: 7rem;
    font-weight: 800;

    color: rgba(255,255,255,0.06);

    line-height: 1;
}

.rghs-banner-small{
    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing: 1px;

    color: rgba(255,255,255,0.7);

    margin-bottom: 10px;

    position: relative;
    z-index: 2;
}

.rghs-banner-box h3{
    font-size: 2rem;
    font-weight: 700;

    line-height: 1.4;

    color: #ffd24d;

    margin-bottom: 10px;

    position: relative;
    z-index: 2;
}

.rghs-banner-box p{
    font-size: 1rem;

    color: #fff;

    margin-bottom: 20px;

    position: relative;
    z-index: 2;
}

/* =========================
   TAGS
========================= */

.rghs-tags{
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    position: relative;
    z-index: 2;
}

.rghs-tags span{
    background: rgba(255,255,255,0.18);

    border: 1px solid rgba(255,255,255,0.15);

    color: #fff;

    padding: 8px 14px;

    border-radius: 8px;

    font-size: 0.85rem;
    font-weight: 600;
}

/* =========================
   CONTENT
========================= */

.rghs-content p{
    font-size: 1rem;

    line-height: 2;

    color: #334155;

    margin-bottom: 24px;
}

.rghs-content p:last-child{
    margin-bottom: 0;
}

/* =========================
   HIGHLIGHT BOX
========================= */

.rghs-highlight-box{
    display: flex;
    align-items: flex-start;

    gap: 18px;

    background: #eef6ff;

    border-left: 4px solid #0f5fb5;

    border-radius: 12px;

    padding: 22px;

    margin-top: 34px;
}

.rghs-highlight-icon{
    width: 42px;
    height: 42px;

    min-width: 42px;

    border-radius: 8px;

    background: #0f5fb5;

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1rem;
}

.rghs-highlight-box p{
    margin: 0;

    font-size: 0.96rem;

    line-height: 1.9;

    color: #334155;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:767px){

    .rghs-info-card{
        padding: 24px 20px;
    }

    .rghs-banner-box{
        padding: 24px 20px;
    }

    .rghs-banner-overlay{
        font-size: 4rem;
    }

    .rghs-banner-box h3{
        font-size: 1.4rem;
    }

    .rghs-content p{
        font-size: 0.93rem;
    }

    .rghs-highlight-box{
        padding: 18px;
    }

    .rghs-highlight-box p{
        font-size: 0.9rem;
    }

}



.rghs-right-sidebar {
      display: flex;
      flex-direction: column;
      gap: 18px;
}

/*==============================
RGHS STATUS BOX
==============================*/

.rghs-status-box {
      background: #1fa14a;
      border-radius: 18px;
      padding: 26px 22px;
      text-align: center;
}

.rghs-status-box .status-icon {
      width: 44px;
      height: 44px;
      margin: 0 auto 18px;
      border: 2px solid #003d11;
      background: #00d62f;
      display: flex;
      align-items: center;
      justify-content: center;
}

.rghs-status-box .status-icon i {
      color: #fff;
      font-size: 18px;
      font-weight: 700;
}

.rghs-status-box h4 {
      color: #fff;
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 10px;
}

.rghs-status-box p {
      color: rgba(255, 255, 255, 0.9);
      font-size: 15px;
      line-height: 1.7;
      margin: 0;
}

/*==============================
FORM BOX
==============================*/

.rghs-form-box {
      background: linear-gradient(180deg, #0f5ca8 0%, #1e6cb5 100%);
      border-radius: 18px;
      padding: 28px 22px;
      position: relative;
      overflow: visible;
      z-index: 5;
}

.rghs-form-box::after {
      content: "";
      position: absolute;
      bottom: -40px;
      right: -40px;
      width: 140px;
      height: 140px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 50%;
}

.rghs-form-box h3 {
      font-size: 28px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
      position: relative;
      z-index: 2;
}

.rghs-form-box p {
      font-size: 15px;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.85);
      margin-bottom: 22px;
      position: relative;
      z-index: 2;
}

.rghs-form-box .form-group {
      margin-bottom: 14px;
      position: relative;
      z-index: 2;
}

.rghs-form-box .form-control,
.rghs-form-box .form-select {
      height: 54px;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
      font-size: 15px;
      padding: 10px 16px;
      box-shadow: none;
}

.rghs-form-box .form-control::placeholder {
      color: rgba(255, 255, 255, 0.7);
}

.rghs-form-box .form-control:focus,
.rghs-form-box .form-select:focus {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.3);
      color: #fff;
      box-shadow: none;
}

.rghs-form-box .form-select option {
      color: #000;
}

.rghs-btn {
      width: 100%;
      height: 56px;
      border: none;
      border-radius: 8px;
      background: #14a44d;
      color: #fff;
      font-size: 16px;
      font-weight: 600;
      transition: 0.3s ease;
      position: relative;
      z-index: 1;
}

.rghs-btn i {
      margin-right: 7px;
}

.rghs-btn:hover {
      background: #dc3d2d;
}

/*==============================
RESPONSIVE
==============================*/

@media (max-width: 767px) {

      .rghs-status-box,
      .rghs-form-box {
            padding: 22px 18px;
      }

      .rghs-status-box h4,
      .rghs-form-box h3 {
            font-size: 22px;
      }
}

/*==============================
CUSTOM GREEN DROPDOWN
==============================*/

.custom-dropdown {
      position: relative;
      width: 100%;
      font-family: inherit;
      z-index: 99;
}

.dropdown-selected {
      height: 56px;
      border: 1px solid #5ca8ff;
      border-radius: 14px;
      background: #fff;
      padding: 0 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      font-size: 16px;
      font-weight: 500;
      color: #111;
      transition: 0.3s ease;
}

.dropdown-selected i {
      font-size: 15px;
      color: #6b7280;
      transition: 0.3s ease;
}

.custom-dropdown.active .dropdown-selected {
      border-color: #14a44d;
      box-shadow: 0 0 0 3px rgba(20, 164, 77, 0.12);
}

.custom-dropdown.active .dropdown-selected i {
      transform: rotate(180deg);
}

/* OPTIONS */

.dropdown-options {
      position: absolute;
      top: calc(100% + 10px);
      left: 0;
      width: 100%;
      background: #fff;
      border: 1px solid #dfe6ee;
      border-radius: 16px;
      padding: 0;
      margin: 0;
      list-style: none;
      overflow: hidden;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: 0.3s ease;
      z-index: 9999;
      box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.custom-dropdown.active .dropdown-options {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
}

.dropdown-options li {
      padding: 16px 18px;
      font-size: 15px;
      font-weight: 500;
      cursor: pointer;
      transition: 0.3s ease;
      color: #111;
      border-bottom: 1px solid #edf2f7;
}

.dropdown-options li:last-child {
      border-bottom: none;
}

/* ACTIVE + HOVER */

.dropdown-options li.active,
.dropdown-options li:hover {
      background: #14a44d;
      color: #fff;
}

/* MOBILE */

@media (max-width: 767px) {

      .dropdown-selected {
            height: 52px;
            font-size: 14px;
            border-radius: 12px;
      }

      .dropdown-options li {
            padding: 14px 16px;
            font-size: 14px;
      }
}

/*==============================
SIDEBAR BOX
==============================*/

.rghs-sidebar-box {
      background: #fff;
      border: 1px solid #dbe4ee;
      border-radius: 20px;
      padding: 28px 24px;
      /* margin-bottom: 20px; */
}

/* TITLE */

.sidebar-title {
      font-size: 28px;
      font-weight: 700;
      color: #111827;
      margin-bottom: 24px;
      letter-spacing: 0.5px;
}

/* LIST */

.contact-list {
      margin: 0;
      padding: 0;
      list-style: none;
}

.contact-list li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 14px 0;
      border-bottom: 1px solid #e5edf5;
}

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

/* ICON */

.contact-icon {
      width: 34px;
      height: 34px;
      min-width: 34px;
      border-radius: 10px;
      background: #f3f7fb;
      border: 1px solid #dbe4ee;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #e74c3c;
      font-size: 14px;
      margin-top: 2px;
}

/* TEXT */

.contact-list a,
.contact-list span {
      font-size: 15px;
      line-height: 1.7;
      color: #374151;
      text-decoration: none;
      transition: 0.3s ease;
}

.contact-list a:hover {
      color: #0f5ca8;
}

/* BUTTON */

.direction-btn {
      margin-top: 22px;
      width: 100%;
      height: 52px;
      border-radius: 10px;
      background: #eef5fb;
      border: 1px solid #dbe4ee;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-size: 15px;
      font-weight: 600;
      color: #0f5ca8;
      text-decoration: none;
      transition: 0.3s ease;
}

.direction-btn:hover {
      background: #0f5ca8;
      color: #fff;
}

/* MOBILE */

@media (max-width: 767px) {

      .rghs-sidebar-box {
            padding: 22px 18px;
            border-radius: 16px;
      }

      .sidebar-title {
            font-size: 22px;
            margin-bottom: 18px;
      }

      .contact-list a,
      .contact-list span {
            font-size: 14px;
      }

      .direction-btn {
            font-size: 14px;
      }
}

/*==============================
PATIENT INFO BOX
==============================*/

.rghs-sidebar-box {
      background: #fff;
      border: 1px solid #dbe4ee;
      border-radius: 22px;
      padding: 28px 22px;
}

/* TITLE */

.sidebar-title {
      font-size: 28px;
      font-weight: 700;
      color: #111827;
      margin-bottom: 22px;
      letter-spacing: 0.5px;
}

/* LIST */

.patient-info-list {
      margin: 0;
      padding: 0;
      list-style: none;
}

.patient-info-list li {
      border-bottom: 1px solid #edf2f7;
}

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

/* LINK */

.patient-info-list li a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 16px 12px;
      border-radius: 12px;
      text-decoration: none;
      transition: 0.3s ease;
}

/* TEXT */

.patient-info-list li a span {
      font-size: 17px;
      font-weight: 500;
      color: #111827;
      transition: 0.3s ease;
}

/* ICON */

.patient-info-list li a i {
      font-size: 13px;
      color: #0f5ca8;
      transition: 0.3s ease;
}

/* HOVER */

.patient-info-list li a:hover {
      background: #f4f8fc;
}

.patient-info-list li a:hover span {
      color: #0f5ca8;
      transform: translateX(3px);
}

.patient-info-list li a:hover i {
      transform: translateX(3px);
}

/* ACTIVE */

.patient-info-list li a.active span {
      color: #0f5ca8;
      font-weight: 600;
}

/* MOBILE */

@media (max-width: 767px) {

      .rghs-sidebar-box {
            padding: 22px 18px;
            border-radius: 18px;
      }

      .sidebar-title {
            font-size: 22px;
            margin-bottom: 18px;
      }

      .patient-info-list li a {
            padding: 14px 10px;
      }

      .patient-info-list li a span {
            font-size: 15px;
      }
}

/*==============================
RGHS BENEFITS SECTION
==============================*/

.rghs-benefits-section {
      background: #fff;
      border: 1px solid #d9e4ef;
      border-radius: 26px;
      padding: 34px;
      margin-top: 30px;
}

/* TOP TEXT */

.benefits-top-text {
      font-size: 17px;
      line-height: 2;
      color: #5b6475;
      margin-top: 20px;
      margin-bottom: 34px;
}

/* BOX */

.benefit-box {
      background: #f8fafc;
      border: 1px solid #dbe4ee;
      border-radius: 18px;
      padding: 26px 22px;
      display: flex;
      align-items: flex-start;
      gap: 18px;
      height: 100%;
      transition: 0.3s ease;
}

.benefit-box:hover {
      transform: translateY(-4px);
      border-color: #b9cde3;
}

/* ICON */

.benefit-icon {
      width: 56px;
      height: 56px;
      min-width: 56px;
      border-radius: 16px;
      background: #eef5fb;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
}

/* CONTENT */

.benefit-content h4 {
      font-size: 22px;
      line-height: 1.4;
      font-weight: 700;
      color: #111827;
      margin-bottom: 10px;
}

.benefit-content p {
      font-size: 15px;
      line-height: 1.9;
      color: #667085;
      margin: 0;
}

/* MOBILE */

@media (max-width: 767px) {

      .rghs-benefits-section {
            padding: 26px 18px;
            border-radius: 18px;
      }

      .benefit-box {
            padding: 20px 16px;
            gap: 14px;
      }

      .benefit-icon {
            width: 48px;
            height: 48px;
            min-width: 48px;
            font-size: 20px;
      }

      .benefit-content h4 {
            font-size: 18px;
      }

      .benefits-top-text {
            font-size: 15px;
            line-height: 1.8;
      }
}

/*==============================
ELIGIBILITY SECTION
==============================*/

.rghs-eligibility-section {
      background: #fff;
      border: 1px solid #d9e4ef;
      border-radius: 26px;
      padding: 42px;
      margin-top: 30px;
}

/* TEXT */

.eligibility-top-text {
      font-size: 17px;
      line-height: 2;
      color: #5b6475;
      margin-top: 20px;
      margin-bottom: 30px;
}

/* LIST */

.eligibility-list {
      display: flex;
      flex-direction: column;
}

/* ITEM */

.eligibility-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 18px 0;
      border-bottom: 1px solid #e5edf5;
}

.eligibility-item:last-child {
      border-bottom: none;
      padding-bottom: 0;
}

/* ICON */

.eligibility-icon {
      width: 28px;
      height: 28px;
      min-width: 28px;
      border-radius: 50%;
      background: #ecfdf3;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 2px;
}

.eligibility-icon i {
      color: #22c55e;
      font-size: 12px;
}

/* TEXT */

.eligibility-item p {
      margin: 0;
      font-size: 16px;
      line-height: 1.9;
      color: #5b6475;
}

.eligibility-item p strong {
      color: #111827;
      font-weight: 700;
}

/* MOBILE */

@media (max-width: 767px) {

      .rghs-eligibility-section {
            padding: 26px 18px;
            border-radius: 18px;
      }

      .eligibility-top-text {
            font-size: 15px;
            line-height: 1.8;
      }

      .eligibility-item {
            gap: 12px;
            padding: 16px 0;
      }

      .eligibility-item p {
            font-size: 14px;
            line-height: 1.8;
      }
}

/*==============================
RGHS CARD SECTION
==============================*/

.rghs-card-section {
      background: #fff;
      border: 1px solid #d9e4ef;
      border-radius: 26px;
      padding: 42px;
      margin-top: 30px;
}

/* TOP TEXT */

.rghs-card-top-text {
      font-size: 17px;
      line-height: 2;
      color: #5b6475;
      margin-top: 20px;
      margin-bottom: 28px;
}

.rghs-card-top-text strong {
      color: #111827;
}

/* FEATURES */

.rghs-card-features {
      display: flex;
      flex-direction: column;
}

/* ITEM */

.rghs-card-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 18px 0;
      border-bottom: 1px solid #e5edf5;
}

.rghs-card-item:last-child {
      border-bottom: none;
      padding-bottom: 0;
}

/* ICON */

.card-check-icon {
      width: 28px;
      height: 28px;
      min-width: 28px;
      border-radius: 50%;
      background: #ecfdf3;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 2px;
}

.card-check-icon i {
      color: #22c55e;
      font-size: 12px;
}

/* TEXT */

.rghs-card-item p {
      margin: 0;
      font-size: 16px;
      line-height: 1.9;
      color: #5b6475;
}

.rghs-card-item p strong {
      color: #111827;
      font-weight: 700;
}

/* DOCUMENT BOX */

.rghs-document-box {
      margin-top: 32px;
      background: #eef5fb;
      border-left: 3px solid #0f5ca8;
      border-radius: 0 16px 16px 0;
      padding: 22px 22px;
      display: flex;
      align-items: flex-start;
      gap: 18px;
}

.document-icon {
      color: #444;
      font-size: 24px;
      margin-top: 3px;
}

.rghs-document-box p {
      margin: 0;
      font-size: 15px;
      line-height: 1.9;
      color: #425466;
}

.rghs-document-box p strong {
      color: #0f3b72;
}

/* MOBILE */

@media (max-width: 767px) {

      .rghs-card-section {
            padding: 26px 18px;
            border-radius: 18px;
      }

      .rghs-card-top-text {
            font-size: 15px;
            line-height: 1.8;
      }

      .rghs-card-item {
            gap: 12px;
            padding: 16px 0;
      }

      .rghs-card-item p {
            font-size: 14px;
            line-height: 1.8;
      }

      .rghs-document-box {
            padding: 18px 16px;
            gap: 14px;
            flex-direction: column;
      }

      .rghs-document-box p {
            font-size: 14px;
      }
}

/*==============================
SERVICES SECTION
==============================*/

.rghs-services-section {
      background: #fff;
      border: 1px solid #d9e4ef;
      border-radius: 26px;
      padding: 42px;
      margin-top: 30px;
}

/* TOP TEXT */

.services-top-text {
      font-size: 17px;
      line-height: 2;
      color: #5b6475;
      margin-top: 20px;
      margin-bottom: 30px;
}

/* SERVICE ITEM */

.service-item {
      background: #eef5fb;
      border: 1px solid #d8e6f2;
      border-radius: 14px;
      min-height: 72px;
      padding: 16px 18px;
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 16px;
      font-weight: 600;
      color: #16355c;
      transition: 0.3s ease;
      height: 100%;
}

.service-item:hover {
      background: #0f5ca8;
      border-color: #0f5ca8;
      color: #fff;
      transform: translateY(-3px);
}

.service-item span {
      font-size: 20px;
      line-height: 1;
}

/* HIGHLIGHT BOX */

.services-highlight-box {
      margin-top: 34px;
      background: #eef5fb;
      border-left: 3px solid #0f5ca8;
      border-radius: 0 16px 16px 0;
      padding: 22px;
      display: flex;
      align-items: flex-start;
      gap: 18px;
}

.highlight-icon {
      color: #f59e0b;
      font-size: 22px;
      margin-top: 2px;
}

.services-highlight-box p {
      margin: 0;
      font-size: 15px;
      line-height: 1.9;
      color: #425466;
}

.services-highlight-box p strong {
      color: #0f3b72;
}

/* MOBILE */

@media (max-width: 767px) {

      .rghs-services-section {
            padding: 26px 18px;
            border-radius: 18px;
      }

      .services-top-text {
            font-size: 15px;
            line-height: 1.8;
      }

      .service-item {
            min-height: 64px;
            padding: 14px 16px;
            font-size: 14px;
      }

      .service-item span {
            font-size: 18px;
      }

      .services-highlight-box {
            padding: 18px 16px;
            gap: 14px;
            flex-direction: column;
      }

      .services-highlight-box p {
            font-size: 14px;
      }
}

/*==============================
REGISTRATION SECTION
==============================*/

.rghs-registration-section {
      background: #fff;
      border: 1px solid #d9e4ef;
      border-radius: 26px;
      padding: 42px;
      margin-top: 30px;
      overflow: hidden;
}

/* TOP TEXT */

.registration-top-text {
      font-size: 17px;
      line-height: 2;
      color: #5b6475;
      margin-top: 20px;
      margin-bottom: 34px;
}

/* PROCESS LIST */

.registration-process-list {
      width: 100%;
      display: flex;
      flex-direction: column;
}

/* PROCESS ITEM */

.registration-process-item {
      width: 100%;
      display: flex;
      align-items: flex-start;
      gap: 22px;
      padding: 26px 0;
      border-bottom: 1px solid #e5edf5;
}

.registration-process-item:first-child {
      padding-top: 0;
}

.registration-process-item:last-child {
      border-bottom: none;
      padding-bottom: 0;
}

/* NUMBER BOX */

.process-number {
      width: 48px;
      height: 48px;
      min-width: 48px;
      border-radius: 12px;
      background: linear-gradient(180deg, #2d8ce3 0%, #1f6fba 100%);
      color: #fff;
      font-size: 20px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 20px rgba(31, 111, 186, 0.18);
      flex-shrink: 0;
}

/* CONTENT */

.process-content {
      flex: 1;
      width: 100%;
      min-width: 0;
}

.process-content h4 {
      font-size: 24px;
      line-height: 1.4;
      font-weight: 700;
      color: #111827;
      margin-bottom: 8px;
}

.process-content p {
      margin: 0;
      font-size: 15px;
      line-height: 1.9;
      color: #667085;
      word-break: break-word;
}

.process-content p strong {
      color: #0f3b72;
}

/* MOBILE */

@media (max-width: 767px) {

      .rghs-registration-section {
            padding: 26px 18px;
            border-radius: 18px;
      }

      .registration-top-text {
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 24px;
      }

      .registration-process-item {
            gap: 14px;
            padding: 20px 0;
      }

      .process-number {
            width: 42px;
            height: 42px;
            min-width: 42px;
            font-size: 17px;
            border-radius: 10px;
      }

      .process-content h4 {
            font-size: 18px;
      }

      .process-content p {
            font-size: 14px;
            line-height: 1.8;
      }
}

/*==============================
LEGAL FRAMEWORK SECTION
==============================*/

.rghs-legal-section {
      background: #fff;
      border: 1px solid #d9e4ef;
      border-radius: 26px;
      padding: 42px;
      margin-top: 30px;
      overflow: hidden;
}

/* TOP TEXT */

.legal-top-text {
      font-size: 17px;
      line-height: 2;
      color: #5b6475;
      margin-top: 20px;
      margin-bottom: 30px;
}

/* LIST */

.legal-framework-list {
      display: flex;
      flex-direction: column;
      width: 100%;
}

/* ITEM */

.legal-framework-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 18px 0;
      border-bottom: 1px solid #e5edf5;
}

.legal-framework-item:last-child {
      border-bottom: none;
      padding-bottom: 0;
}

/* NUMBER */

.legal-number {
      width: 34px;
      height: 34px;
      min-width: 34px;
      border-radius: 8px;
      background: #eef5fb;
      color: #0f5ca8;
      font-size: 15px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 2px;
}

/* TEXT */

.legal-framework-item p {
      margin: 0;
      font-size: 16px;
      line-height: 1.9;
      color: #374151;
      flex: 1;
}

/* MOBILE */

@media (max-width: 767px) {

      .rghs-legal-section {
            padding: 26px 18px;
            border-radius: 18px;
      }

      .legal-top-text {
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 24px;
      }

      .legal-framework-item {
            gap: 12px;
            padding: 16px 0;
      }

      .legal-number {
            width: 30px;
            height: 30px;
            min-width: 30px;
            font-size: 13px;
      }

      .legal-framework-item p {
            font-size: 14px;
            line-height: 1.8;
      }
}


/* =========================
   FORM CARD
========================= */

.appointment-form-card{
    background: #fff;

    border: 1px solid #dbe5ee;

    border-radius: 24px;

    padding: 34px;
}

/* =========================
   FORM
========================= */

.appointment-form label{
    display: block;

    font-size: 0.9rem;
    font-weight: 600;

    color: #111827;

    margin-bottom: 10px;
}

.blood-form-group{
    margin-bottom: 20px;
}

.blood-form-group input,
.custom-select-trigger,
.blood-form-group textarea{
    width: 100%;

    border: 1px solid #cfd8e3;

    border-radius: 10px;

    background: #fff;

    padding: 0 16px;

    font-size: 0.95rem;

    color: #111827;

    outline: none;

    transition: 0.3s ease;
}

.blood-form-group input,
.custom-select-trigger{
    height: 54px;
}

.blood-form-group textarea{
    height: 140px;

    padding-top: 16px;

    resize: none;
}

.blood-form-group input:focus,
.custom-select-trigger:focus,
.blood-form-group textarea:focus{
    border-color: var(--primary);
}

/* =========================
   CUSTOM SELECT
========================= */

.custom-select{
    position: relative;
}

.custom-select-trigger{
    display: flex;
    align-items: center;
    justify-content: space-between;

    cursor: pointer;
}

.custom-select-trigger i{
    font-size: 0.9rem;

    color: #64748b;

    transition: 0.3s ease;
}

.custom-options{
    position: absolute;

    top: calc(100% + 10px);
    left: 0;

    width: 100%;

    background: #fff;

    border: 1px solid #dbe5ee;

    border-radius: 18px;

    overflow: hidden;

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: 0.3s ease;

    z-index: 99;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.custom-select.active .custom-options{
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.custom-select.active .custom-select-trigger i{
    transform: rotate(180deg);
}

.custom-option{
    padding: 18px 20px;

    font-size: 0.95rem;

    cursor: pointer;

    transition: 0.3s ease;
}

.custom-option:hover,
.custom-option.selected{
    background: var(--primary);

    color: #fff;
}

/* =========================
   VISIT TYPE
========================= */

.visit-type-wrap{
    margin-bottom: 24px;
}

.visit-type-wrap label{
    display: block;

    margin-bottom: 14px;
}

.visit-type-grid{
    display: flex;
    gap: 12px;

    flex-wrap: wrap;
}

.visit-type-btn{
    height: 46px;

    padding: 0 20px;

    border-radius: 40px;

    border: 1px solid #cfd8e3;

    background: #fff;

    display: flex;
    align-items: center;

    gap: 10px;

    font-size: 0.9rem;
    font-weight: 500;

    cursor: pointer;

    transition: 0.3s ease;
}

.visit-type-btn.active,
.visit-type-btn:hover{
    background: #f0f7ff;

    border-color: var(--primary);

    color: var(--primary);
}

/* =========================
   NOTE
========================= */

.appointment-note{
    display: flex;
    align-items: flex-start;

    gap: 10px;

    font-size: 0.84rem;

    line-height: 1.7;

    color: #64748b;

    margin-bottom: 22px;
}

/* =========================
   BUTTON
========================= */

.appointment-submit-btn{
    height: 56px;

    padding: 0 26px;

    border: none;

    border-radius: 10px;

    background: var(--primary);

    color: #fff;

    font-size: 0.95rem;
    font-weight: 600;

    cursor: pointer;

    transition: 0.3s ease;
}

.appointment-submit-btn:hover{
    opacity: 0.92;
}

/* =========================
   SIDEBAR
========================= */

.appointment-sidebar{
    display: flex;
    flex-direction: column;

    gap: 24px;
}

.appointment-side-card{
    background: #fff;

    border: 1px solid #dbe5ee;

    border-radius: 18px;

    overflow: hidden;
}

.appointment-side-title{
    background: #005f85;

    color: #fff;

    padding: 16px 20px;

    font-size: 0.95rem;
    font-weight: 700;

    display: flex;
    align-items: center;

    gap: 10px;
}

.appointment-info-list{
    margin: 0;
    padding: 0;

    list-style: none;
}

.appointment-info-list li{
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 14px;

    padding: 14px 20px;

    border-bottom: 1px solid #e7edf4;

    font-size: 0.9rem;
}

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

.appointment-info-list a{
    color: var(--primary);

    text-decoration: none;

    font-weight: 600;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:767px){

    .appointment-form-card{
        padding: 24px 20px;
    }

}

/* =========================
   INSURANCE CARD
========================= */

.insurance-card-body{
    padding: 18px 20px 20px;
}

.insurance-card-body p{
    font-size: 0.88rem;

    line-height: 1.8;

    color: #64748b;

    margin-bottom: 18px;
}

/* =========================
   TAGS
========================= */

.insurance-tags{
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 18px;
}

.insurance-tags span{
    display: inline-flex;
    align-items: center;

    gap: 7px;

    background: #fff4df;

    color: #9a6700;

    border-radius: 30px;

    padding: 7px 12px;

    font-size: 0.78rem;
    font-weight: 600;
}

.insurance-tags span i{
    font-size: 0.7rem;
}

/* =========================
   LINK
========================= */

.insurance-link{
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: var(--primary);

    text-decoration: none;

    font-size: 0.84rem;
    font-weight: 600;
}

/* =========================
   FOLLOW SOCIAL
========================= */

.follow-social-wrap{
    padding: 18px 20px 20px;

    display: flex;
    align-items: center;

    gap: 12px;

    flex-wrap: wrap;
}

.follow-social-wrap a{
    width: 38px;
    height: 38px;

    border: 1px solid #dbe5ee;

    border-radius: 8px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #64748b;

    text-decoration: none;

    transition: 0.3s ease;
}

.follow-social-wrap a:hover{
    background: var(--primary);

    border-color: var(--primary);

    color: #fff;
}
.appointment-sec{
    padding: 95px 0;
    background: #f8fafc;
}

/* =========================
   LOCATION SECTION
========================= */

.location-sec{
    padding: 90px 0;
}

/* =========================
   MAP
========================= */

.map-frame{
    overflow: hidden;

    border-radius: 22px;

    border: 1px solid #dbe5ee;

    margin-top: 34px;
}

.map-frame iframe{
    width: 100%;

    height: 560px;

    border: none;

    display: block;
}

/* =========================
   BUTTONS
========================= */

.location-btn-wrap{
    display: flex;
    align-items: center;

    gap: 18px;

    flex-wrap: wrap;

    margin-top: 26px;
}

.location-btn{
    height: 54px;

    padding: 0 24px;

    border: 1px solid var(--primary);

    border-radius: 12px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    background: #f4fbff;

    color: var(--primary);

    text-decoration: none;

    font-size: 0.95rem;
    font-weight: 600;

    transition: 0.3s ease;
}

.location-btn:hover{
    background: var(--primary);

    color: #fff;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:767px){

    .map-frame iframe{
        height: 420px;
    }

    .location-btn-wrap{
        flex-direction: column;

        align-items: stretch;
    }

    .location-btn{
        width: 100%;
    }

}

/* =========================
   COMMON QUESTIONS
========================= */

.common-question-sec{
    padding: 90px 0;
    background: #f8fafc;
}

/* =========================
   GRID
========================= */

.common-question-grid{
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    margin-top: 40px;
}

/* =========================
   CARD
========================= */

.common-question-card{
    background: #fff;

    border: 1px solid #dbe5ee;

    border-radius: 20px;

    padding: 26px 24px;

    transition: 0.3s ease;
}

.common-question-card:hover{
    transform: translateY(-4px);

    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

/* =========================
   TOP
========================= */

.common-question-top{
    display: flex;
    align-items: flex-start;

    gap: 14px;

    margin-bottom: 16px;
}

.common-question-icon{
    width: 26px;
    height: 26px;

    min-width: 26px;

    border-radius: 50%;

    background: var(--primary);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 0.72rem;
}

.common-question-top h3{
    font-size: 1.15rem;
    font-weight: 700;

    line-height: 1.5;

    color: #111827;

    margin: 0;
}

/* =========================
   TEXT
========================= */

.common-question-card p{
    font-size: 0.96rem;

    line-height: 1.9;

    color: #64748b;

    margin: 0;

    padding-left: 40px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .common-question-grid{
        grid-template-columns: 1fr;
    }

}

@media(max-width:767px){

    .common-question-sec{
        padding: 70px 0;
    }

    .common-question-card{
        padding: 22px 18px;
    }

    .common-question-top h3{
        font-size: 1rem;
    }

    .common-question-card p{
        padding-left: 0;

        font-size: 0.92rem;
    }

}


/* =========================
   BLOG HERO
========================= */

.blog-hero-sec{
    padding: 80px 0 70px;

    background: linear-gradient(
        90deg,
        #f4f9fd 0%,
        #fdfaf4 100%
    );
}

/* =========================
   CONTENT
========================= */

.blog-hero-content{
    max-width: 760px;
}

/* =========================
   TITLE
========================= */

.blog-hero-title{
    font-size: 4rem;

    line-height: 1.15;

    font-weight: 700;

    color: #071c3c;

    margin: 18px 0 22px;

    letter-spacing: -1px;

    font-family: "Playfair Display", serif;
}

/* =========================
   TEXT
========================= */

.blog-hero-text{
    max-width: 720px;

    font-size: 1.28rem;

    line-height: 1.9;

    color: #4b5f7a;

    margin: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .blog-hero-title{
        font-size: 3rem;
    }

}

@media(max-width:767px){

    .blog-hero-sec{
        padding: 65px 0;
    }

    .blog-hero-title{
        font-size: 2.2rem;

        line-height: 1.25;
    }

    .blog-hero-text{
        font-size: 1rem;

        line-height: 1.8;
    }

}

/* blogs */

.featured-post-card{
    background: #fff;
    border: 1px solid #d8e7ee;
    border-radius: 20px;
    overflow: hidden;
}

.featured-post-image{
    position: relative;
    height: 100%;
}

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

.featured-label{
    position: absolute;
    top: 16px;
    left: 16px;
    background: #f5b400;
    color: #111;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 15px;
    border-radius: 30px;
}

.featured-post-content{
    padding: 34px 28px;
}

.featured-post-meta{
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.featured-post-category{
    background: #eef7fb;
    color: #0077a6;
    font-size: 12px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 30px;
}

.featured-post-date{
    color: #7c8794;
    font-size: 14px;
}

.featured-post-date i{
    margin-right: 5px;
}

.featured-post-content h2{
    font-size: 27px;
    line-height: 1.45;
    color: #071c3d;
    margin-bottom: 18px;
    font-weight: 700;
}

.featured-post-content p{
    font-size: 15px;
    line-height: 1.9;
    color: #5e6c7b;
    margin-bottom: 24px;
}

.featured-post-btn{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #00779f;
    color: #fff;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
}

.featured-post-btn:hover{
    color: #fff;
}

.appointment-sidebar-box{
    background: #006d8f;
    border-radius: 18px;
    padding: 38px 28px;
    text-align: center;
    color: #fff;
    height: 100%;
}

.appointment-sidebar-icon{
    font-size: 34px;
    margin-bottom: 20px;
}

.appointment-sidebar-box h3{
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 16px;
    font-weight: 700;
}

.appointment-sidebar-box p{
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 26px;
    opacity: 0.95;
}

.appointment-sidebar-box a{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #006d8f;
    text-decoration: none;
    padding: 12px 26px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
}

@media(max-width:991px){

    .appointment-sidebar-box{
        margin-top: 10px;
    }

}

@media(max-width:767px){

    .featured-post-content{
        padding: 24px;
    }

    .featured-post-content h2{
        font-size: 24px;
    }

}


.blog-main-section{
    padding: 30px 0 90px 0;
}
.featured-post-card{
    background: #fff;
    border: 1px solid #d8e7ee;
    border-radius: 20px;
    overflow: hidden;
}

.featured-post-image{
    position: relative;
    height: 100%;
}

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

.featured-label{
    position: absolute;
    top: 16px;
    left: 16px;
    background: #f5b400;
    color: #111;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 15px;
    border-radius: 30px;
}

.featured-post-content{
    padding: 25px;
}

.featured-post-meta{
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.featured-post-category{
    background: #eef7fb;
    color: #0077a6;
    font-size: 12px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 30px;
}

.featured-post-date{
    color: #7c8794;
    font-size: 14px;
}

.featured-post-date i{
    margin-right: 5px;
}

.featured-post-content h2{
    font-size: 24px;
    /* line-height: 1.45; */
    color: #071c3d;
    /* margin-bottom: 18px; */
    font-weight: 700;
}

.featured-post-content p{
    font-size: 12px;
    /* line-height: 1.9; */
    color: #5e6c7b;
    /* margin-bottom: 24px; */
}

.featured-post-btn{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #00779f;
    color: #fff;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
}

.featured-post-btn:hover{
    color: #fff;
}

.appointment-sidebar-box{
    background: #006d8f;
    border-radius: 18px;
    padding: 22px;
    text-align: center;
    color: #fff;
    height: 100%;
}

.appointment-sidebar-icon{
    font-size: 34px;
    /* margin-bottom: 20px; */
}

.appointment-sidebar-box h3{
    font-size: 20px;
    line-height: 1.4;
    /* margin-bottom: 16px; */
    font-weight: 700;
}

.appointment-sidebar-box p{
    font-size: 12px;
    /* line-height: 1.8; */
    /* margin-bottom: 26px; */
    opacity: 0.95;
}

.appointment-sidebar-box a{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #006d8f;
    text-decoration: none;
    padding: 12px 26px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
}


@media(max-width:767px){

    .featured-post-content{
        padding: 20px;
    }

    .featured-post-content h2{
        font-size: 24px;
    }

}


.all-articles-section{
    margin-top: 30px;
}

.all-articles-heading{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.all-articles-heading h2{
    font-size: 28px;
    font-weight: 700;
    color: #071c3d;
    margin: 0;
}

.all-articles-heading span{
    background: #eef7fb;
    color: #0077a6;
    font-size: 12px;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 30px;
}

.article-card-main{
    background: #fff;
    border: 1px solid #d8e7ee;
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
}

.article-card-image{
    position: relative;
}

.article-card-image img{
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.article-card-category{
    position: absolute;
    top: 14px;
    left: 14px;
    background: #eef2ff;
    color: #2845a7;
    font-size: 11px;
    font-weight: 700;
    padding: 7px 12px;
    border-radius: 30px;
}

.article-card-content{
    padding: 18px;
}

.article-card-meta{
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.article-card-meta span{
    font-size: 12px;
    color: #7c8794;
}

.article-card-meta span i{
    margin-right: 5px;
}

.article-card-meta .fa-circle{
    font-size: 6px;
    vertical-align: middle;
}

.article-card-content h3{
    font-size: 18px;
    font-weight: 700;
    color: #071c3d;
    margin-bottom: 12px;
}

.article-card-content p{
    font-size: 12px;
    color: #5e6c7b;
    margin-bottom: 14px;
}

.article-card-content a{
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    color: #0077a6;
    font-size: 14px;
    font-weight: 700;
}

@media(max-width:767px){

    .all-articles-heading{
        gap: 12px;
        flex-wrap: wrap;
    }

}

.latest-blogs-sidebar{
    background: #fff;
    border: 1px solid #d8e7ee;
    border-radius: 18px;
    overflow: hidden;
    margin-top: 22px;
}

.latest-blog-title{
    background: #00779f;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.latest-blog-title i{
    color: #fff;
    font-size: 16px;
}

.latest-blog-title h3{
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.latest-blog-item{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    border-bottom: 1px solid #d8e7ee;
}

.latest-blog-item:last-child{
    border-bottom: 0;
}

.latest-blog-image{
    width: 56px;
    min-width: 56px;
    height: 56px;
    border-radius: 8px;
    overflow: hidden;
}

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

.latest-blog-content h4{
    font-size: 12px;
    font-weight: 700;
    color: #071c3d;
    margin-bottom: 4px;
    line-height: 1.4;
}

.latest-blog-content span{
    font-size: 12px;
    color: #8a97a6;
    display: block;
}

.quick-contact-sidebar{
    background: #fff;
    border: 1px solid #d8e7ee;
    border-radius: 18px;
    overflow: hidden;
    margin-top: 22px;
}

.quick-contact-title{
    background: #00779f;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quick-contact-title i{
    color: #fff;
    font-size: 16px;
}

.quick-contact-title h3{
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.quick-contact-body{
    padding: 18px;
}

.quick-contact-item{
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.quick-contact-item:last-child{
    margin-bottom: 0;
}

.quick-contact-icon{
    width: 38px;
    min-width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #eef7fb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-contact-icon i{
    color: #00779f;
    font-size: 15px;
}

.green-icon{
    background: #edf8f1;
}

.green-icon i{
    color: #198754;
}

.quick-contact-text a,
.quick-contact-text p{
    margin: 0;
    font-size: 14px;
    color: #4d6175;
    text-decoration: none;
    line-height: 1.5;
}

.specialities-sidebar{
    background: #fff;
    border: 1px solid #d8e7ee;
    border-radius: 18px;
    overflow: hidden;
    margin-top: 22px;
}

.specialities-title{
    background: #00779f;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.specialities-title i{
    color: #fff;
    font-size: 16px;
}

.specialities-title h3{
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.specialities-body{
    padding: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.specialities-body a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    border: 1px solid #ccd9e2;
    border-radius: 30px;
    text-decoration: none;
    color: #4f6275;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.specialities-body a:hover{
    background: #00779f;
    border-color: #00779f;
    color: #fff;
}

.blog-hero-content{
    max-width: 1150px;
}

.blog-hero-category{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eef7fb;
    color: #00779f;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 22px;
}

.blog-hero-category i{
    font-size: 12px;
}

.blog-hero-meta{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.blog-hero-meta span{
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    color: #708090;
}

.blog-hero-meta span i{
    color: #00779f;
    font-size: 13px;
}

.blog-hero-meta .fa-circle{
    font-size: 6px;
}

.reviewed-badge{
    background: #eef8f1;
    border: 1px solid #b9dfc5;
    color: #198754 !important;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 13px !important;
    font-weight: 600;
}

.reviewed-badge i{
    color: #198754 !important;
}

@media(max-width:767px){

    .blog-hero-meta{
        gap: 12px;
    }

}

.blog-detail-image{
    border: 1px solid #d8e7ee;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 28px;
    background: #fff;
}

.blog-detail-image img{
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.blog-detail-image-caption{
    padding: 10px 14px;
    font-size: 12px;
    color: #7b8794;
    border-top: 1px solid #d8e7ee;
}

.blog-detail-block{
    margin-bottom: 34px;
}

.blog-detail-block h2{
    font-size: 28px;
    font-weight: 700;
    color: #071c3d;
    padding-bottom: 12px;
    border-bottom: 1px solid #d8e7ee;
    margin-bottom: 18px;
    font-family: "Playfair Display", serif;
}

.blog-detail-block p{
    font-size: 15px;
    color: #31465a;
    margin-bottom: 16px;
}

.blog-detail-block ul{
    padding-left: 22px;
    margin-bottom: 0;
    list-style: disc;
}

.blog-detail-block ul li{
    font-size: 15px;
    color: #31465a;
    margin-bottom: 14px;
    padding-left: 4px;
}

.blog-detail-block ul li::marker{
    color: var(--primary);
    font-size: 16px;
}

.blog-note-box{
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #eef7fb;
    border-left: 4px solid #00779f;
    padding: 16px 18px;
    border-radius: 0 14px 14px 0;
    margin-top: 22px;
}

.blog-note-box i{
    color: #00779f;
    font-size: 16px;
    margin-top: 3px;
}

.blog-note-box p{
    margin: 0;
}

@media(max-width:767px){

    .blog-detail-image img{
        height: 300px;
    }

    .blog-detail-block h2{
        font-size: 24px;
    }

}

.blog-consultation-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 22px;
    border: 1px solid #d8e7ee;
    border-radius: 18px;
    margin-bottom: 34px;
}

.blog-consultation-left{
    display: flex;
    align-items: center;
    gap: 16px;
}

.blog-consultation-icon{
    width: 44px;
    min-width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #00779f;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-consultation-icon i{
    color: #fff;
    font-size: 18px;
}

.blog-consultation-content h3{
    font-size: 18px;
    font-weight: 700;
    color: #071c3d;
    margin-bottom: 4px;
}

.blog-consultation-content p{
    margin: 0;
    font-size: 14px;
    color: #738294;
}

.blog-consultation-content p span{
    margin: 0 6px;
}

.blog-consultation-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #00779f;
    color: #fff;
    text-decoration: none;
    padding: 11px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
}

.blog-consultation-btn:hover{
    color: #fff;
}

.blog-share-box{
    padding-top: 26px;
    border-top: 1px solid #d8e7ee;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.blog-share-box span{
    font-size: 15px;
    font-weight: 600;
    color: #6f7f90;
}

.blog-share-icons{
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-share-icons a{
    width: 36px;
    min-width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.blog-share-icons a i{
    color: #fff;
    font-size: 15px;
}

.whatsapp-share{
    background: #25D366;
}

.facebook-share{
    background: #1877F2;
}

.twitter-share{
    background: #1DA1F2;
}

.linkedin-share{
    background: #0A66C2;
}

@media(max-width:767px){

    .blog-consultation-box{
        flex-direction: column;
        align-items: flex-start;
    }

}