﻿/* ----------------------------------------
   ABOUT SECTION — Premium Re-design
----------------------------------------- */
.about-section {
    padding: 100px 0;
    background: #ffffff;
}

.about-img-wrapper {
    position: relative;
    padding: 10px;
}

    /* Added a subtle mint accent border behind the image */
    .about-img-wrapper::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 70%;
        height: 70%;
        border: 8px solid #92F1C4;
        border-radius: 30px;
        z-index: -1;
        transform: translate(-20px, -20px);
    }

    .about-img-wrapper img {
        border-radius: 22px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        width: 100%;
        transition: transform 0.5s ease;
    }

    .about-img-wrapper:hover img {
        transform: scale(1.02);
    }

/* Right-side content */
.about-content {
    padding-left: 30px;
}

.about-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-desc {
    font-size: clamp(1rem, 2vw, 1.05rem);
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Checklist style with #92F1C4 */
.about-list {
    list-style: none;
    padding-left: 0;
    margin: 25px 0 40px 0;
}

    .about-list li {
        font-size: 1.05rem;
        color: #2d3748;
        padding-left: 35px;
        margin-bottom: 12px;
        position: relative;
        font-weight: 600;
    }

        .about-list li::before {
            content: "\f00c"; /* FontAwesome check */
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 2px;
            width: 24px;
            height: 24px;
            background: #92F1C4; /* Your custom color */
            color: #0e1622;
            font-size: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

/* Mobile Polish */
@media (max-width: 991px) {
    .about-content {
        padding-left: 0;
        margin-top: 30px;
        text-align: center;
    }

    .about-list li {
        text-align: left;
        display: inline-block;
        width: 100%;
        max-width: 400px;
    }

    .about-img-wrapper::after {
        display: none; /* Clean up mobile view */
    }
}





/* ===========================================
   Services SECTION (Professional Re-design)
   =========================================== */
.services-section {
    background: #f8fafc; /* Slightly cleaner off-white */
    padding: 100px 0;
}

.service-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 30px;
    border: 1px solid rgba(15, 23, 42, 0.05); /* Very subtle border */
    position: relative;
    z-index: 1;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

    /* The "Imagination" Replacement: Suble Glow instead of Cheap Line */
    .service-card::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 24px;
        background: linear-gradient(135deg, rgba(0,188,212,0.1) 0%, transparent 50%);
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: -1;
    }

    .service-card:hover {
        transform: translateY(-10px);
        border-color: rgba(0, 188, 212, 0.2);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }

        .service-card:hover::after {
            opacity: 1;
        }

/* Modern Icon Styling */
.service-icon-box {
    width: 60px;
    height: 60px;
    background: #f0fdfa; /* Soft teal background */
    color: var(--accent-teal);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-box {
    background: #92F1C4;
    color: #fff;
    transform: rotate(-5deg) scale(1.1);
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
    letter-spacing: -0.01em;
}

.service-card p {
    color: #576574;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Polish */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 15px;
    }

    .service-card {
        padding: 30px 25px;
        text-align: center; /* Center content on mobile for better balance */
    }

    .service-icon-box {
        margin-left: auto;
        margin-right: auto;
    }

    /* Scaling down titles so they don't break awkwardly */
    .service-card h3 {
        font-size: 1.25rem;
    }
}






/* ----------------------------------------
   CASE MANAGER SECTION (Refined)
----------------------------------------- */
.case-manager-section {
    padding: 80px 0; /* Changed from 20px to 0 since container handles side padding */
}

/* Beautiful box with subtle green tint */
.case-box {
    max-width: 950px;
    margin: 0 auto;
    background: #f4fff0; /* soft mint tint */
    /* Fluid padding: 60px on desktop, scales down to 30px on mobile */
    padding: clamp(30px, 6vw, 60px) clamp(20px, 5vw, 50px);
    border-radius: 28px;
    text-align: center;
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
    border: 1px solid #e1f6dc;
}

/* Icon */
.case-icon {
    width: 80px;
    height: 80px;
    background: #e9ffe1;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d4efcb;
}

    .case-icon i {
        font-size: 32px;
        color: var(--primary-blue);
    }

/* Title */
.case-title {
    /* Responsive font size */
    font-size: clamp(1.5rem, 4vw, 1.9rem);
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
    line-height: 1.3;
}

/* Description & Highlight */
.case-desc,
.case-highlight {
    /* Slightly smaller base font for mobile readability */
    font-size: clamp(1rem, 2.5vw, 1.05rem);
    color: #3c3c3c;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Strong highlight */
.case-highlight {
    color: #2a322d;
    font-weight: 500;
    margin-bottom: 0; /* Reset for last element */
}

/* Mobile Specific Tweaks */
@media (max-width: 768px) {
    .case-manager-section {
        padding: 60px 15px; /* Ensure box doesn't touch screen edges */
    }

    .case-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 15px;
    }

        .case-icon i {
            font-size: 26px;
        }

    .case-desc, .case-highlight {
        text-align: left; /* Optional: Left-align long text on mobile is often easier to read */
        hyphens: auto;
    }
}



/* ---------------------------------------------
   RESULTS SECTION (Modern Tech Aesthetic)
   --------------------------------------------- */
.results-section {
    padding: 60px 0;
    background: #ffffff; /* Clean white background for the section itself */
}

/* Inner box with premium dark gradient */
.results-box {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(50px, 8vw, 100px) clamp(20px, 5vw, 60px);
    background: radial-gradient(circle at top left, #1e293b, #0f172a);
    border-radius: 48px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Tag - Refined to match your mint color */
.results-tag {
    display: table;
    margin: 0 auto 25px;
    padding: 6px 20px;
    background: rgba(146, 241, 196, 0.1);
    border: 1px solid rgba(146, 241, 196, 0.3);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #92F1C4;
}

/* Title - Fluid & Bold */
.results-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

/* Subtext */
.results-subtext {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    font-size: clamp(1rem, 2vw, 1.1rem);
    opacity: 0.8;
    color: #cbd5e1;
    line-height: 1.6;
}

/* Stats Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* result-card with Glassmorphism */
.result-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 20px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

    .result-card:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.07);
        border-color: #92F1C4; /* Using your mint color on hover */
        box-shadow: 0 15px 30px rgba(146, 241, 196, 0.1);
    }

/* The Numbers - Clean, no cheap gradients */
.result-value {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 8px;
    color: #92F1C4; /* Solid mint color for clarity */
    display: block;
}

/* Labels */
.result-label {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.4;
    font-weight: 500;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .results-box {
        border-radius: 35px;
    }
}

@media (max-width: 576px) {
    .results-grid {
        grid-template-columns: 1fr; /* Stack on small mobile for readability */
        gap: 15px;
    }

    .result-card {
        padding: 12px 20px;
    }

    .results-title br {
        display: none; /* Let text wrap naturally on small screens */
    }
}



/* ---------------------------------------------
   COMPARISON SECTION (Minimalist & Smooth)
   --------------------------------------------- */
.comparison-section {
    padding: 100px 0;
    background: #ffffff;
}

.compare-tag {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #94a3b8; /* Subtle slate */
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.compare-title {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 60px;
    color: var(--primary-blue);
    font-weight: 800;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    line-height: 1.3;
}

.comparison-wrapper {
    display: flex;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.compare-box {
    flex: 1;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    background: #ffffff;
    transition: all 0.3s ease;
}

/* Subtle elevation for our service box */
.pro-box {
    background: #f8fafc;
    border: 1px solid #92F1C4; /* Using your Mint color */
    box-shadow: 0 10px 30px rgba(146, 241, 196, 0.1);
}

.compare-heading {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-blue);
}

.compare-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .compare-list li {
        display: flex;
        align-items: flex-start;
        padding: 16px 0;
        font-size: 16px;
        color: #475569;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

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

.icon {
    margin-right: 15px;
    font-size: 18px;
    flex-shrink: 0;
}

    .icon.yes {
        color: #2ecc71;
    }
    /* Classic green or your #92F1C4 */
    .icon.no {
        color: #ef4444;
    }

/* MOBILE RESPONSIVE FIX */
@media (max-width: 768px) {
    .comparison-section {
        padding: 60px 15px;
    }

    .comparison-wrapper {
        flex-direction: row; /* Keeping them side-by-side as requested */
        gap: 10px;
    }

    .compare-box {
        padding: 20px 12px;
        border-radius: 16px;
    }

    .compare-heading {
        font-size: 14px;
        margin-bottom: 15px;
        min-height: 40px; /* Aligns headings if one wraps */
    }

    .compare-list li {
        font-size: 12px; /* Smaller text to prevent heavy wrapping */
        padding: 10px 0;
        line-height: 1.3;
    }

    .icon {
        margin-right: 8px;
        font-size: 14px;
    }
}


/* ===========================================
   WHY CHOOSE US (Refined & Modern)
   =========================================== */
.why-choose-nri {
    padding: 100px 0;
    background: #ffffff;
}

.eyebrow-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 12px;
}

.why-choose-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
}

/* Individual Item Styling */
.why-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

    /* Subtle hover effect for interactivity */
    .why-item:hover {
        background: #f8fafc;
        border-color: #e2e8f0;
    }

/* Icon box using your #92F1C4 Mint */
.why-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(146, 241, 196, 0.2); /* Soft mint tint */
    color: #2d3748;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.why-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-bottom: 6px;
    font-weight: 700;
}

.why-text p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .why-choose-nri {
        padding: 60px 15px;
    }

    .why-item {
        padding: 15px 10px;
        gap: 15px;
    }

    .why-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .why-text strong {
        font-size: 1rem;
    }
}



/* ===========================================
   MISCONCEPTIONS (Modern Split Card Design)
   =========================================== */
.misconceptions-section {
    padding: 100px 0;
    background: #fcfcfc;
}

.miscon-subtitle {
    max-width: 600px;
    margin: 0 auto;
    color: #64748b;
    font-size: 1.1rem;
}

.miscon-card {
    display: flex;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

    .miscon-card:hover {
        transform: scale(1.01);
    }

.myth-side, .fact-side {
    padding: 30px 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Myth Side - Subtle & Muted */
.myth-side {
    background: #ffffff;
    border-right: 1px dashed #e2e8f0;
}

    .myth-side p {
        color: #94a3b8;
        text-decoration: line-through;
        font-weight: 500;
        margin: 0;
        font-size: 1.05rem;
    }

/* Fact Side - Vibrant & Clear */
.fact-side {
    background: rgba(146, 241, 196, 0.05); /* Very light tint of #92F1C4 */
}

    .fact-side p {
        color: #0f172a;
        font-weight: 700;
        margin: 0;
        font-size: 1.1rem;
        line-height: 1.4;
    }

/* Status Labels (The Pill Tags) */
.status-label {
    display: inline-block;
    width: fit-content;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.myth-label {
    background: #fee2e2;
    color: #ef4444;
}

.fact-label {
    background: #92F1C4; /* Your Brand Color */
    color: #064e3b;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .miscon-card {
        flex-direction: column;
    }

    .myth-side {
        border-right: none;
        border-bottom: 1px dashed #e2e8f0;
        padding: 20px;
    }

    .fact-side {
        padding: 25px 20px;
    }

        .myth-side p, .fact-side p {
            font-size: 1rem;
        }
}


/* CTA-1 */
.nri-cta-wrapper {
    padding: 100px 0;
    background: #ffffff;
}

.nri-modern-card {
    position: relative;
    background: #0f172a; /* Deep charcoal/navy */
    border-radius: 32px;
    padding: 80px 60px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.cta-upper-label {
    color: #FF9933;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: block;
}

.cta-main-title {
    color: #ffffff;
    font-size: 3.5rem; /* Desktop size */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.cta-sub-text {
    color: #94a3b8;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

/* MOBILE FIXES: THE "ANTI-FAT" OVERRIDE */
@media (max-width: 767px) {
    .nri-modern-card {
        padding: 40px 20px; /* Snug padding */
        border-radius: 20px;
        margin: 0 10px;
    }

    .cta-main-title {
        font-size: 1.85rem; /* Tight, readable headline */
        margin-bottom: 15px;
    }

    .cta-upper-label {
        font-size: 0.6rem;
    }

    .cta-sub-text {
        font-size: 0.95rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }
}





/* --- CTA design 2 --- */

.nri-cta-compact {
    padding: 40px 80px; /* Significantly less padding than the 100px version */
    background: #ffffff;
}

.nri-compact-inner {
    background: #f8fafc; /* Light cool grey */
    padding: 30px 40px; /* Slimmer internal padding */
    border-radius: 16px;
    border-left: 5px solid #FF9933; /* Color accent on the side */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Minimal shadow */
}

.compact-label {
    color: #FF9933;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 5px;
}

.compact-title {
    color: #1e293b;
    font-size: 1.5rem; /* Smaller headline */
    font-weight: 700;
    margin-bottom: 5px;
}

.compact-text {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 0; /* Removes bottom spacing for a tighter look */
}

/* --- Mobile Optimization --- */
@media (max-width: 767px) {
    .nri-cta-compact {
        padding: 10px 10px; /* Significantly less padding than the 100px version */
    }
    .nri-compact-inner {
        padding: 30px 20px;
        text-align: center;
        border-left: none;
        border-top: 5px solid #FF9933; /* Move accent to top for mobile */
    }

    .compact-title {
        font-size: 1.3rem;
    }
}