:root {
    --primary: #1D7891;
    --primary-dark: #145A6C;
    --accent: #A2CD3A;
    --secondary: #525354;
    --text: #1A120B;
    --white: #FFFFFF;
    --bg-soft: #F4F9FA;
    --border: #E3ECEE;
    --radius: 14px;
    --shadow: 0 20px 45px -20px rgba(26, 18, 11, 0.18);
}



p {
    font-size: 18px !important;
    text-align: justify;
}

.card p,
.card-body p {
    font-size: 12px !important;
}



/* Sirf services, challenges aur inner content ke paragraphs ke liye */
.service-desc,
.challenge-box p,
.resource-box p,
.card-back p {
    text-align: justify;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", Sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    background: var(--accent);
    display: inline-block;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: .25s ease;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -10px rgba(29, 120, 145, .55);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-accent {
    background: var(--accent);
    color: #183205;
}

.btn-accent:hover {
    filter: brightness(0.95);
    transform: translateY(-2px);
}

/* ===== TOPBAR ===== */
.topbar {
    background: var(--text);
    color: #f2efe9;
    font-size: 13.5px;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 24px;
}

.topbar-links {
    display: flex;
    gap: 26px;
}

.topbar-links a:hover {
    color: var(--accent);
}

.topbar-social {
    display: flex;
    gap: 14px;
    opacity: .8;
}

/* ===== HEADER ===== */
header.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.55) 100%);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 8px 24px -16px rgba(26, 18, 11, 0.16);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
}

.logo span {
    color: var(--primary);
}

.logo .dot {
    color: var(--accent);
}

nav.main-nav {
    display: flex;
    gap: 34px;
}

nav.main-nav a {
    font-weight: 500;
    font-size: 15px;
    color: var(--secondary);
    transition: .2s;
}

nav.main-nav a:hover {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-actions .btn {
    padding: 12px 24px;
    font-size: 14px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: var(--primary);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    margin-top: -119px;
    min-height: 800px;
    height: auto;
    background: linear-gradient(120deg, var(--bg-soft) 0%, #ffffff 55%);
    overflow: hidden;
    padding: 90px 0 70px;
}

.hero::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -160px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle at center, rgba(29, 120, 145, .14), transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -160px;
    left: -120px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle at center, rgba(162, 205, 58, .16), transparent 70%);
    border-radius: 50%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 47px;
    letter-spacing: -1px;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 20px 40px rgba(0, 0, 0, .45);
}

.hero h1 em {
    font-style: normal;
    color: #fff;
    position: relative;
}

.hero p.lead {
    color: rgba(255, 255, 255, .92);
    font-size: 17px;
    max-width: 520px;
    margin-bottom: 32px;
    text-shadow: 0 14px 26px rgba(0, 0, 0, .35);
    text-align: justify;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.hero-stats {
    display: flex;
    gap: 34px;
    flex-wrap: wrap;
}

.hero-stats .stat b {
    display: block;
    font-size: 24px;
    color: #fff;
}

.hero-stats .stat span {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .85);
}



.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity .8s ease;
    background-position: top;


}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .68) 0%, rgba(0, 0, 0, .46) 48%, rgba(0, 0, 0, .22) 100%);
}

.hero-slide.active {
    opacity: 1;

}

.hero-slider::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, .34));
    z-index: 1;
}

.hero-slider-controls {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .5);
    border: 1px solid rgba(255, 255, 255, .85);
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

.slider-dot.active {
    background: #fff;
    transform: scale(1.2);
}

.hero-slide .slide-label {
    position: absolute;
    left: 24px;
    bottom: 110px;
    z-index: 2;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    text-shadow: 0 18px 30px rgba(0, 0, 0, .55);
}

.hero-slide .slide-subtitle {
    position: absolute;
    left: 24px;
    bottom: 72px;
    z-index: 2;
    color: rgba(255, 255, 255, .95);
    font-size: 15px;
    max-width: 340px;
    line-height: 1.6;
    text-shadow: 0 12px 20px rgba(0, 0, 0, .35);
}


.art-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.art-metric {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 14px;
    padding: 16px;
}

.art-metric b {
    display: block;
    font-size: 22px;
}

.art-metric span {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .75);
}

/* ===== SECTION HEAD ===== */
.section {
    padding: 90px 0;
}

.section-head {
    max-width: 640px;
    margin-bottom: 50px;
}

.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head h2 {
    font-size: 34px;
    letter-spacing: -.5px;
    margin-bottom: 14px;
}

.section-head p {
    color: var(--secondary);
    font-size: 16px;
}

.bg-soft {
    background: var(--bg-soft);
    background-color: #f9f8f9;
}

#services {
    background: var(--bg-soft);
}

/* ===== NEW SERVICES SECTION STYLES ===== */
.services-split-header {
    display: grid;
    grid-template-columns: 1.1fr 1.1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.services-eyebrow {
    font-size: 13px;
    font-weight: 600;
    color: #1A120B;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.header-left h2 {
    font-size: 34px;
    line-height: 1.25;
    color: var(--text);
    font-weight: 700;
}

.header-right p {
    font-size: 16px;
    color: var(--secondary);
    line-height: 1.65;
}

/* Grid Layout */
.services-new-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Cards Styling */
.service-new-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.3s ease;
}

.service-new-card:hover {
    border-color: #CBD5E1;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

/* Inside Card Header with circle and text inline */
.card-header-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px dashed #E2E8F0;
}

.card-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #1D7891;
    /* Same teal/blue tone as in your image */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon-circle svg {
    display: block;
}

.service-new-card h3 {
    font-size: 16.5px;
    font-weight: 600;
    color: var(--text);
}

.service-new-card p {
    font-size: 14px;
    color: var(--secondary);
    line-height: 1.7;
    margin-bottom: 25px;
    text-align: justify;
}

.card-arrow {
    font-size: 18px;
    color: var(--secondary);
    font-weight: 400;
    margin-top: auto;
    transition: transform 0.2s;
}

.service-new-card:hover .card-arrow {
    transform: translateX(4px);
    color: var(--primary);
}

/* Link ki basic styling */
.card-arrow-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #000000;
    /* Aap apne card ke text ka color yahan badal sakte hain */
    font-size: 16px;
    font-weight: 500;
    margin-top: auto;
}

/* Shuru mein text ko chhipane aur smooth animation ke liye */
.card-arrow-link .hover-text {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 0.4s ease, opacity 0.3s ease, margin-right 0.3s ease;
}

/* Arrow ki styling aur thoda sa gap */
.card-arrow-link .arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

/* Jab pooray card par mouse aaye (Hover State) */
.service-new-card:hover .card-arrow-link .hover-text {
    max-width: 150px;
    /* Text ke mutabiq width */
    opacity: 1;
    margin-right: 10px;
    /* Text aur arrow ke darmiyan fasla */
}

/* Hover par arrow ko thoda sa right side push karne ke liye (Acha lagta hai) */
.service-new-card:hover .card-arrow-link .arrow {
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .services-split-header {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-new-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services-new-grid {
        grid-template-columns: 1fr;
    }

    .header-left h2 {
        font-size: 28px;
    }
}

/* ===== FEATURE / RCM SECTION ===== */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-visual {
    background: var(--primary);
    border-radius: 28px;
    padding: 40px;
    color: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.feature-visual .fbox {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 16px;
    padding: 22px;
}

.feature-visual .fbox b {
    display: block;
    font-size: 26px;
    color: var(--accent);
    margin-bottom: 6px;
}

.feature-visual .fbox span {
    font-size: 13px;
    color: rgba(255, 255, 255, .8);
}

.feature-list {
    margin-top: 26px;
}

.feature-list li {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-top: 1px solid var(--border);
}

.feature-list li:first-child {
    border-top: none;
}

.feature-list .num {
    width: 34px;
    height: 34px;
    flex: none;
    border-radius: 50%;
    background: rgba(162, 205, 58, .18);
    color: #5c7a1a;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-list h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.feature-list p {
    color: var(--secondary);
    font-size: 14px;
}

/* ===== ABOUT SECTION — REDESIGN ===== */
.about-section {
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -160px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(162, 205, 58, 0.14) 0%, rgba(162, 205, 58, 0) 70%);
    z-index: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 76px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ---- Visual column ---- */
.about-visual {
    position: relative;
}

.about-visual::before {
    content: "";
    position: absolute;
    top: -22px;
    left: -22px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent);
    border-radius: 26px;
    z-index: 0;
}

.about-image-wrapper {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow);
    width: 100%;
    aspect-ratio: 4 / 5;
}

.about-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 1;
}

.about-img.active {
    opacity: 1;
    z-index: 2;
}

.about-badge-card {
    position: absolute;
    bottom: -28px;
    right: -20px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 20px 40px -12px rgba(26, 18, 11, 0.25);
    padding: 20px 24px;
    min-width: 216px;
}

.about-badge-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    flex-shrink: 0;
}

.about-badge-number {
    font-size: 25px;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}

.about-badge-label {
    font-size: 12.5px;
    color: var(--secondary);
    font-weight: 600;
    margin-top: 5px;
    line-height: 1.3;
}

/* ---- Content column ---- */
.about-eyebrow {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 12px;
}

.about-content h2 {
    font-size: 38px;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.22;
}

.about-content h2 span {
    color: var(--primary);
}

.about-lead {
    color: var(--secondary);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 560px;
}

.about-lead p {
    margin-bottom: 14px;
}

.about-lead p:last-child {
    margin-bottom: 0;
}

.about-lead a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.about-lead a:hover {
    color: var(--primary-dark);
}

.about-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 26px;
    margin-bottom: 36px;
}

.about-check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-check-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(162, 205, 58, 0.18);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-check-text strong {
    display: block;
    font-size: 14.5px;
    color: var(--text);
    margin-bottom: 3px;
}

.about-check-text span {
    font-size: 13px;
    color: var(--secondary);
    line-height: 1.5;
}

.about-stats-strip {
    display: flex;
    border-top: 1px solid var(--border);
    padding-top: 28px;
    margin-bottom: 34px;
    margin-bottom: -26px;
}

.about-stat {
    flex: 1;
    position: relative;
    padding-right: 18px;
}

.about-stat:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 2px;
    bottom: 2px;
    width: 1px;
    background: var(--border);
}

.about-stat-num {
    font-size: 27px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.about-stat-label {
    font-size: 12px;
    color: var(--secondary);
    margin-top: 7px;
    font-weight: 500;
}

/* Responsive Fix for Mobile/Tablets */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-visual {
        max-width: 420px;
        margin: 0 auto;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .about-badge-card {
        right: 12px;
        bottom: -24px;
    }
}

@media (max-width: 560px) {
    .about-checklist {
        grid-template-columns: 1fr;
    }

    .about-stats-strip {
        flex-wrap: wrap;
        gap: 20px;
    }

    .about-stat {
        flex: 1 1 40%;
        padding-right: 0;
    }

    .about-stat:not(:last-child)::after {
        display: none;
    }

    .about-badge-card {
        min-width: unset;
        padding: 14px 18px;
        right: 8px;
    }
}

/* ===== SCHEDULING SPLIT LAYOUT STYLES ===== */
.scheduling-split-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: start;
}

/* Left Side Typography */
.scheduling-content-left h2 {
    font-size: 34px;
    font-weight: 700;
    color: var(--text, #1A120B);
    margin-bottom: 20px;
}

.scheduling-content-left .section-desc {
    font-size: 16px;
    line-height: 1.65;
    color: var(--secondary, #64748B);
    margin-bottom: 40px;
}

/* Features List Items with bottom lines */
.scheduling-features-list {
    display: flex;
    flex-direction: column;
}

.sched-feature-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 24px 0;
    border-bottom: 1px solid #E2E8F0;
    transition: all 0.2s ease;
}

.sched-item-text {
    max-width: 85%;
}

.sched-item-text h3 {
    font-size: 17px;
    font-weight: 600;
    color: #1D7891;
    /* Teal Color Matching Image */
    margin-bottom: 8px;
}

.sched-item-text p {
    font-size: 16px;
    color: var(--secondary, #64748B);
    line-height: 1.5;
}

.sched-item-arrow {
    font-size: 22px;
    color: #1D7891;
    font-weight: 300;
    padding-bottom: 4px;
    transition: transform 0.25s ease;
}

.sched-feature-item:hover .sched-item-arrow {
    transform: translate(3px, -3px);
}

/* Right Side Premium White Form Card */
.premium-form-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.07);
    border: 1px solid #F1F5F9;
}

.form-card-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-card-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.3;
    margin-bottom: 10px;
}

.form-card-header p {
    font-size: 13.5px;
    color: var(--secondary, #64748B);
}

/* Input fields architecture */
.practice-growth-form .form-group-full {
    margin-bottom: 16px;
}

.practice-growth-form .form-row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.practice-growth-form input[type="text"],
.practice-growth-form input[type="email"],
.practice-growth-form input[type="tel"],
.practice-growth-form select,
.practice-growth-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #CBD5E1;
    border-radius: 6px;
    font-size: 14px;
    color: #334155;
    background-color: #FFFFFF;
    outline: none;
    transition: border-color 0.2s;
}

.practice-growth-form input:focus,
.practice-growth-form select:focus,
.practice-growth-form textarea:focus {
    border-color: #1D7891;
}

/* Compliance Consent Area */
.form-sms-consent-box {
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
}

.checkbox-container {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    cursor: pointer;
}

.checkbox-container input {
    margin-top: 3px;
}

.consent-text {
    font-size: 11px;
    line-height: 1.5;
    color: #64748B;
    text-align: left;
}

.policy-links-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 14px;
    padding-top: 10px;
    border-top: 1px solid #E2E8F0;
    font-size: 12px;
    font-weight: 500;
    color: #334155;
}

.policy-links-footer a {
    color: #1D7891;
    text-decoration: underline;
}

/* Primary Accent Submit Button */
.form-submit-green-btn {
    width: 100%;
    background-color: #92D030;
    /* Bright Green button from screenshot */
    color: #FFFFFF;
    border: none;
    padding: 16px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(146, 208, 48, 0.2);
    transition: background-color 0.25s, transform 0.2s;
}

.form-submit-green-btn:hover {
    background-color: #81BA26;
    transform: translateY(-1px);
}

/* Responsive breakpoints */
@media (max-width: 992px) {
    .scheduling-split-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .premium-form-card {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .practice-growth-form .form-row-split {
        grid-template-columns: 1fr;
    }

    .scheduling-content-left h2 {
        font-size: 28px;
    }
}

/* ===== RCM HERO & TIMING BASE ===== */
.rcm-banner-section {
    position: relative;
    background-color: #FFFFFF;
    padding-bottom: 80px;
}

.rcm-hero-bg {
    position: relative;
    background-image: url('assets/images/index/Belling_ Hero.webp');
    /* Aapka image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* ===== PARALLAX EFFECT KI KEY PROPERTY ===== */
    background-attachment: fixed;

    padding: 100px 0 200px 0;
    text-align: center;
    color: #FFFFFF;
}

.rcm-overlay {
    position: absolute;
    inset: 0;
    /* Yeh transparent dark color image ke upar layer banayega */
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.rcm-top-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.rcm-eyebrow {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.rcm-top-content h2 {
    color: #FFFFFF;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.rcm-lead {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.rcm-lead p {
    margin-bottom: 14px;
}

.rcm-lead p:last-child {
    margin-bottom: 0;
}

/* Overlapping Grid */
.rcm-cards-container {
    position: relative;
    z-index: 3;
    margin-top: -140px;
}

.rcm-flip-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* ===== CORE 3D FLIP EFFECT ===== */
.rcm-flip-card {
    background-color: transparent;
    height: 500px;
    /* Card ki consistent height balance karne ke liye */
    perspective: 1000px;
    /* 3D depth effect ke liye zaroori hai */
}

/* Card ka inner wrapper jo rotate hoga */
.rcm-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

/* Hover par 180 degree flip */
.rcm-flip-card:hover .rcm-card-inner {
    transform: rotateY(180deg);
}

/* Front aur Back sides ki common styles */
.rcm-card-front,
.rcm-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    /* Rotation ke waqt peeche ka hissa chhupane ke liye */
    backface-visibility: hidden;
    border-radius: 16px;
    padding: 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* FRONT SIDE STYLE (Solid Base Teal) */
.rcm-card-front {
    background-color: #1D7891;
    color: #FFFFFF;
}

.rcm-card-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

/* BACK SIDE STYLE (Premium Dark Transparent / Glass Look) */
.rcm-card-back {
    background: linear-gradient(135deg, rgba(29, 120, 145, 0.762) 0%, rgba(18, 80, 97, 0.98) 100%);
    color: #FFFFFF;
    transform: rotateY(180deg);
    /* Shuruat me yeh flipped hoti hai */
    border: 1.5px solid rgba(255, 255, 255, 0.15);
}

/* Headings & Paragraphs inside cards */
.rcm-flip-card h3 {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    min-height: 52px;
    width: 100%;
    margin-bottom: 16px;
}

.rcm-flip-card p {
    font-size: 14.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.rcm-card-back p {
    flex: 1;
}

.rcm-card-back .rcm-card-btn {
    margin-top: auto;
}

/* Learn More Button */
.rcm-card-btn {
    display: inline-block;
    margin-top: 24px;
    padding: 10px 28px;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    color: #FFFFFF;
    border-radius: 6px;
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
}

.rcm-card-btn:hover {
    background-color: #FFFFFF;
    color: #1D7891;
    border-color: #FFFFFF;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .rcm-flip-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .rcm-flip-card {
        height: 500px;
        /* Mobile screens par height settings optimization */
    }

    .rcm-cards-container {
        margin-top: -100px;
    }

    .rcm-top-content h2 {
        font-size: 30px;
    }
}

/* ===== 6TH SECTION: SPECIALTIES STYLES ===== */
.specialties-header {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 60px auto;
}

.spec-eyebrow {
    font-size: 22px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 16px;
}

.specialties-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 24px;
    line-height: 1.3;
}

.specialties-header p {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.7;
}

.specialties-header-copy p {
    margin-bottom: 14px;
    font-size: 16px;
}

.specialties-header-copy p:last-child {
    margin-bottom: 0;
}

.specialties-header-copy a {
    color: #c36;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.specialties-header-copy a:hover {
    color: #a32b55;
}

.specialties-header .highlight-link {
    color: #D25380;
    /* Pinkish tone matching screen text link */
    font-weight: 500;
    cursor: pointer;
}

/* Container framework alignment */
.specialties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Perfect alignment for SVG wrappers */
.spec-icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

/* Purani properties ko confirm karein aur nayi add karein */

/* White Circle Container */
.spec-card.teal-variant .spec-icon-wrapper.circle-bg {
    width: 100px;
    /* Ya jo bhi size reference image mein hai */
    height: 100px;
    border-radius: 50%;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    /* Centre the circle */
    position: relative;
    /* Base for inner alignment */
    overflow: hidden;
    /* Ensure nothing escapes the circle */
}

/* Naya frame jo icon ko target size par constraint karega */
.icon-inner-container {
    width: 70%;
    /* Icon white circle ka 70% area cover karega */
    height: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icon image precise styles */
.spec-icon-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* Aspect ratio maintain karte hue space mein fit karega */
    display: block;
}

/* Purple icon color override helper */
.spec-icon-wrapper svg {
    display: block;
    max-width: 100%;
}

/* Base Structure for Cards */
.spec-card {
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spec-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

/* Ensure all icons wrapper have consistent dimensions */
.spec-icon-wrapper {
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

/* White Circle setup inside Teal Card */
.spec-card.teal-variant .spec-icon-wrapper.circle-bg {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Align text vertically and keep "Learn More" at the bottom */
.spec-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.spec-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
}

.spec-card p {
    font-size: 14.5px;
    line-height: 1.65;
    margin-bottom: 28px;
    flex-grow: 1;
    /* Aligns buttons horizontally on the same line */
}

/* Variant A: White Background Cards */
.spec-card.white-variant {
    background-color: #FFFFFF;
    border: 1px solid #F1F5F9;
}

.spec-card.white-variant h3 {
    color: #0F172A;
}

.spec-card.white-variant p {
    color: #475569;
}

.spec-card.white-variant .spec-learn-more {
    color: #1D7891;
    border-bottom: 1.5px solid #1D7891;
}

/* Variant B: Teal Background Cards (As seen in snapshot) */
.spec-card.teal-variant {
    background-color: #1D7891;
    border: 1px solid #165E72;
    color: #FFFFFF;
}

.spec-card.teal-variant h3,
.spec-card.teal-variant p {
    color: #FFFFFF;
}

.spec-card.teal-variant .spec-icon-wrapper.circle-bg {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #FFFFFF;
}

.spec-card.teal-variant .spec-learn-more {
    color: #FFFFFF;
    border-bottom: 1.5px solid #FFFFFF;
}

/* Sleek Text Links Setup */
.spec-learn-more {
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding-bottom: 2px;
    transition: opacity 0.2s ease;
}

.spec-learn-more:hover {
    opacity: 0.8;
}

/* Screen Breakpoint Adaptations */
@media (max-width: 1024px) {
    .specialties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .specialties-grid {
        grid-template-columns: 1fr;
    }

    .specialties-header h2 {
        font-size: 26px;
    }
}

/* ===== SOFTWARE SHOWCASE STYLES ===== */
.software-showcase-section {
    background-color: #F8FAFC;
    /* Light neutral section background like reference image */
    padding: 80px 0 100px 0;
}

.software-header {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 55px auto;
}

/* Subtitle Tag Above Title */
.software-subtitle {
    display: inline-block;
    color: #1d7891;
    /* Accent Indigo/Purple color */
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.software-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 16px;
    line-height: 1.3;
}

.software-header p {
    font-size: 15px;
    color: #64748B;
    line-height: 1.6;
}

.software-header-copy p {
    margin-bottom: 16px;
    font-size: 16px;
}

.software-header-copy p:last-child {
    margin-bottom: 0;
}

/* 4 Columns Grid */
.software-logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: center;
    justify-items: center;
}

/* Card Styling Matching Reference Design */
.software-logo-card {
    width: 100%;
    height: 90px;
    background-color: #FFFFFF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.software-logo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.partner-logo {
    max-width: 100%;
    max-height: 48px;
    object-fit: contain;
}

/* Responsive Adaptation */
@media (max-width: 992px) {
    .software-logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .software-header h2 {
        font-size: 26px;
    }
}

@media (max-width: 640px) {
    .software-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .software-logo-card {
        height: 75px;
        padding: 15px;
    }
}

/* ===== UPDATED 8TH SECTION CSS ===== */
.challenges-split-wrapper {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

/* Left Side Header Styling */
.challenges-content-left h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 40px;
    line-height: 1.25;
    max-width: 520px;
}

/* List Architecture */
.challenges-list {
    display: flex;
    flex-direction: column;
}

.challenge-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 24px 0;
    border-bottom: 1px solid #E2E8F0;
    cursor: pointer;
    transition: all 0.25s ease;
}

.challenge-item-text {
    max-width: 88%;
}

.challenge-item-text h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1D7891;
    /* Signature Corporate Teal */
    margin-bottom: 6px;
}

.challenge-item-text p {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.challenge-item-arrow {
    font-size: 20px;
    color: #1D7891;
    font-weight: 300;
    padding-bottom: 4px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Interaction Hover System */
.challenge-item:hover {
    border-bottom-color: #1D7891;
    padding-left: 5px;
    /* Subtle organic movement */
}

.challenge-item:hover .challenge-item-arrow {
    transform: translate(5px, -5px);
}

/* Right Side HD Image Configuration */
.challenges-graphic-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.graphic-bg-wrapper-hd {
    width: 100%;
    max-width: 460px;
    /* Brain size standard maintenance */
    display: flex;
    justify-content: center;
    align-items: center;
    animation: smoothFloat 4s ease-in-out infinite;
    /* Premium floating feel */
}

.challenges-hd-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Premium Subtle Floating Animation */
@keyframes smoothFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Background Top Corner Decor (Matching snapshot fade lines) */
.challenges-decor-top {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(29, 120, 145, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* Responsive Systems Adaptive Layout */
@media (max-width: 992px) {
    .challenges-split-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .challenges-graphic-right {
        justify-content: center;
        margin-bottom: 20px;
    }

    .graphic-bg-wrapper-hd {
        max-width: 320px;
    }

    .challenges-content-left h2 {
        font-size: 28px;
    }
}

/* ===== 9TH SECTION: OVERLAPPING RESOURCES STYLES ===== */
.resources-overlap-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

/* Left Image Block Configuration */
.resources-image-block {
    width: 100%;
    max-width: 620px;
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    z-index: 1;
}

.resource-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.resources-overlap-wrapper:hover .resource-main-img {
    transform: scale(1.03);
    /* Soft interactive zoom */
}

/* Right Side: Elegant Floating Card Box */
.resources-content-floating-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 50px 45px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    /* Deep soft shadow to create realistic elevation */
    margin-left: -120px;
    /* Pulls the card to the left to overlap the image cleanly */
    position: relative;
    z-index: 2;
    /* Ensures content stays safely above the image layer */
    border: 1px solid rgba(241, 245, 249, 0.8);
}

/* Typography Alignments */
.resources-content-floating-card h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 20px;
    line-height: 1.25;
}

.resources-content-floating-card p {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Bright Green Button Signature Brand Style */
.resources-green-action-btn {
    display: inline-block;
    background-color: #92D030;
    /* Dynamic green tone matched from screenshot */
    color: #FFFFFF;
    text-decoration: none;
    padding: 12px 28px;
    font-size: 14.5px;
    font-weight: 600;
    border-radius: 6px;
    box-shadow: 0 4px 14px rgba(146, 208, 48, 0.25);
    transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.resources-green-action-btn:hover {
    background-color: #81BA26;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(146, 208, 48, 0.35);
}

/* Fully Adaptive Responsive Breakpoints */
@media (max-width: 992px) {

    /* Destroys overlap on tablets to prevent text squeeze and collapses into a clean single column layout */
    .resources-overlap-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .resources-image-block {
        max-width: 100%;
        height: 320px;
    }

    .resources-content-floating-card {
        margin-left: 0;
        /* Resets overlap spacing safely */
        padding: 35px 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .resources-content-floating-card h2 {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .resources-image-block {
        height: 240px;
    }
}

/* ===== 10TH SECTION: TESTIMONIALS STYLES ===== */
.testimonials-split-wrapper {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 65px;
    align-items: start;
}

/* Left Side Elements Configuration */
.testimonials-eyebrow {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 14px;
    text-transform: capitalize;
}

.testimonials-content-left h2 {
    font-size: 34px;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.25;
    margin-bottom: 24px;
    max-width: 500px;
}

.testimonials-content-left,
.testimonial-slider-container {
    min-width: 0;
}

.testimonials-main-desc {
    font-size: 16px;
    line-height: 1.65;
    color: #475569;
    margin-bottom: 35px;
}

/* Testimonial Quote Box Container */
.testimonial-quote-card {
    background-color: #F8FAFC;
    /* Soft clean neutral tint */
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
}

.testimonial-quote-card .quote-text {
    font-size: 16px;
    line-height: 1.6;
    color: #1E293B;
    margin-bottom: 24px;
    font-weight: 400;
}

/* Client Bio Meta Row */
.client-profile-meta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.client-avatar-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #CBD5E1;
}

.client-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details h4 {
    font-size: 14.5px;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 2px;
}

.client-details p {
    font-size: 12.5px;
    color: #1D7891;
    /* Teal identity accent for designation */
    margin: 0;
    font-weight: 500;
}

/* Container ko slide chhupane ke liye overflow hidden dein */
.testimonial-slider-container {
    overflow: hidden;
    width: 100%;
}

/* Track saare cards ko ek hi row mein rakhega */
.testimonial-slider-track {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease-in-out;
    /* Isse slide smoothly move hogi */
}

/* Har ek slide poori width legi aur shrink nahi hogi */
.testimonial-slide {
    min-width: 100%;
    width: 100%;
    box-sizing: border-box;
    opacity: 0.4;
    /* Jo active nahi hai wo thodi dundli dikhegi */
    transition: opacity 0.4s ease-in-out;
}

/* Active slide poori chamak ke sath dikhegi */
.testimonial-slide.active {
    opacity: 1;
}

/* Dots ki styling (agar pehle se nahi ki hui) */
.testimonial-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;

    margin-top: 20px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    background-color: #cccccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.testimonial-dot.active {
    background-color: #023e8a;
    /* Aapka theme color jo bhi ho */
}

/* Right Side Image Block Design */
.testimonial-image-cover {
    width: 100%;
    height: 520px;
    /* Matching the elevation height layout of text elements */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.testimonial-side-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tablet and Mobile Screen Adaptations */
@media (max-width: 992px) {
    .testimonials-split-wrapper {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .testimonial-image-cover {
        height: 360px;
    }

    .testimonials-content-left h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .testimonial-quote-card {
        padding: 25px;
    }

    .testimonial-image-cover {
        height: 280px;
    }
}

/* ===== 11TH SECTION: BLOGS & TRUSTPILOT STYLES ===== */
.blogs-header-wrapper {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

/* Trustpilot Dynamic Badge Link Box */
.trustpilot-badge-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #94A3B8;
    padding: 8px 16px;
    font-size: 13px;
    color: #334155;
    text-decoration: none;
    background-color: #FFFFFF;
    transition: background-color 0.2s, border-color 0.2s;
}

.trustpilot-badge-link:hover {
    background-color: #F8FAFC;
    border-color: #00B67A;
    /* Trustpilot Brand Green */
}

.tp-star {
    color: #00B67A;
    font-size: 14px;
}

/* Section Header */
.blogs-header-wrapper h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0F172A;
    margin: 0;
}

/* Matrix Grid System */
.blogs-three-column-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card Architecture */
.blog-post-card {
    background-color: transparent;
    display: flex;
    flex-direction: column;
}

/* Thumbnail Image Base & Floating Badges */
.blog-thumbnail-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 8px;
    overflow: hidden;
}

.blog-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post-card:hover .blog-thumb-img {
    transform: scale(1.04);
}

/* Overlapping Date Badge Design */
.blog-date-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: #92D030;
    /* Signature Light Green Accent */
    color: #FFFFFF;
    padding: 8px 12px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.blog-date-badge .day {
    font-size: 18px;
    font-weight: 700;
}

.blog-date-badge .month {
    font-size: 11px;
    font-weight: 500;
    text-transform: capitalize;
}

/* Text & Metadata Container */
.blog-info-content {
    padding: 20px 0 10px 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-tag {
    font-size: 11.5px;
    font-weight: 600;
    color: #1D7891;
    /* Teal Accent */
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.blog-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 14px;
}

.blog-title a {
    color: #0F172A;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-title a:hover {
    color: #1D7891;
}

/* Post Author & Date Meta Info Row */
.blog-meta-footer {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: #64748B;
    margin-bottom: 20px;
    align-items: center;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Sleek Text Link Button Link */
.blog-readmore-btn {
    font-size: 13.5px;
    font-weight: 600;
    color: #1D7891;
    text-decoration: none;
    margin-top: auto;
    /* Aligns read more neatly at the bottom edge */
    transition: opacity 0.2s;
    width: fit-content;
}

.blog-readmore-btn:hover {
    opacity: 0.8;
}

/* Tablet and Mobile Screen Adapters */
@media (max-width: 992px) {
    .blogs-three-column-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .blogs-header-wrapper h2 {
        font-size: 28px;
    }
}

@media (max-width: 640px) {
    .blogs-three-column-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== LAST SECTION: FLOATING CTA STYLES ===== */
.cta-floating-section .container {
    max-width: 1200px;
}

/* The Gradient Floating Card Layout */
.cta-gradient-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Implements the unique left-to-right white-to-teal gradient transitions */
    background: linear-gradient(to right, #FFFFFF 0%, #FFFFFF 30%, #A2C7D3 60%, #3B8B9B 100%);
    /* Distinctive Top-Left Large Border Radius along with subtle right roundings */
    border-radius: 40px 16px 0px 0px;
    padding: 50px 60px;
    box-shadow: 0 15px 45px rgba(15, 23, 42, 0.12);
    /* Gives the card its elevated 3D depth */
    position: relative;
    bottom: -5px;
    /* Pulls it down slightly to overlap seamlessly with your footer top line */
    border-left: 3px solid #1D7891;
    /* Highlighting the left border frame */
}

/* Heading Typography Setup */
.cta-text-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0F172A;
    /* High contrast dark slate */
    line-height: 1.35;
    margin: 0;
    letter-spacing: -0.5px;
}

/* Elegant Capsule Button */
.cta-capsule-btn {
    display: inline-block;
    background-color: #1A6C82;
    /* Deep solid teal-blue matching the inner container fill */
    color: #FFFFFF;
    text-decoration: none;
    padding: 16px 36px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    /* Capsule shape */
    box-shadow: 0 4px 15px rgba(26, 108, 130, 0.2);
    transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.cta-capsule-btn:hover {
    background-color: #145567;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 108, 130, 0.35);
}

/* Responsive Adjustments for Mobile & Tablets */
@media (max-width: 992px) {
    .cta-gradient-card {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 30px;
        /* Adjusts gradient vector behavior for stacked viewports */
        background: linear-gradient(to bottom, #FFFFFF 0%, #FFFFFF 45%, #A2C7D3 80%, #3B8B9B 100%);
        border-radius: 30px 12px 0px 0px;
    }

    .cta-text-content h2 {
        font-size: 22px;
    }

    .cta-capsule-btn {
        padding: 14px 30px;
        font-size: 14px;
    }
}

/* ===== FOOTER ===== */
footer {
    background: var(--text);
    color: #cfc9c1;
    padding: 70px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.footer-logo span {
    color: var(--accent);
}

footer p {
    font-size: 14px;
    color: #a79e93;
    margin-bottom: 20px;
}

footer h4 {
    color: #fff;
    font-size: 15px;
    margin-bottom: 18px;
}

footer ul li {
    margin-bottom: 11px;
    font-size: 14px;
}

footer ul li a:hover {
    color: var(--accent);
}

.footer-contact li {
    display: flex;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 14px;
    color: #cfc9c1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    color: #a79e93;
}

@media (max-width:1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .challenge-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .specialty-strip {
        grid-template-columns: repeat(3, 1fr);
    }

    .testi-grid,
    .blog-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .hero-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    nav.main-nav {
        display: none;
    }
}

@media (max-width: 900px) {
    .hero {
        margin-top: 0;
        padding-top: 50px;
    }
}

@media (max-width:640px) {
    .hero {
        min-height: auto;
        margin-top: 0;
        padding: 40px 0 40px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero p.lead,
    .header-right p,
    .about-lead,
    .section-head p {
        font-size: 15px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 18px;
    }

    .hero-slider-controls {
        bottom: 16px;
    }

    .hero-slide .slide-label,
    .hero-slide .slide-subtitle {
        left: 16px;
        right: 16px;
        max-width: unset;
    }

    .feature-grid,
    .about-grid,
    .services-new-grid,
    .testi-grid,
    .blog-grid,
    .specialty-strip,
    .scheduling-split-wrapper,
    .art-metrics,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .feature-visual {
        grid-template-columns: 1fr;
    }

    .about-visual {
        max-width: 100%;
        margin: 0 auto;
    }

    .about-badge-card {
        width: calc(100% - 24px);
        left: auto;
        right: 8px;
    }

    .about-checklist {
        grid-template-columns: 1fr;
    }

    .about-stats-strip {
        flex-wrap: wrap;
        gap: 18px;

    }

    .about-stat {
        flex: 1 1 100%;
        padding-right: 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .specialty-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-band {
        padding: 36px;
        flex-direction: column;
        text-align: center;
    }

    .topbar-links {
        display: none;
    }
}