/* ================= HERO SECTION STYLES ================= */
.hero-section {
    position: relative;
    padding: 60px 0 20px 0; 
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}


.hero-bg-glow {
    position: absolute;
    top: 10%;
    left: -15%;
    width: 800px;
    height: 800px;

    background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, rgba(37, 99, 235, 0.05) 40%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

/* --- Top Split Layout --- */
.hero-content-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 70px;
}

/* --- Left Content --- */
.hero-left {
    flex: 1;
    max-width: 520px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #7DA6FF; 
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-badge svg { width: 12px; height: 12px; }

.hero-left h1 {
    font-size: clamp(2.4rem, 4vw, 3.4rem); 
    color: #111827;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.text-blue { color: #1D4ED8; } 

.hero-desc {
    font-size: 1.05rem; 
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 90%;
}


.btn-demo {
    display: inline-block;
    background: linear-gradient(90deg, #0EA5E9, #2563EB); 
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.35); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-demo:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(14, 165, 233, 0.45);
}

/* --- Right Content  --- */
.hero-right {
    flex: 1.2;
    position: relative;
    height: 400px; 
}

.visual-composition {
    position: relative;
    width: 100%;
    height: 100%;
}

.float-img {
    position: absolute;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-radius: 16px;

    background-color: #f1f5f9; 
    color: transparent; 
}


.img-users { top: -8%; left: 25%; width: 55%; min-height: 150px; z-index: 2; }
.img-percent { top: 25%; right: 0%; width: 25%; min-height: 100px; z-index: 3; }
.img-price { bottom: 4%; left: 20px; width: 35%; min-height: 60px; z-index: 4; }
.img-main-video { bottom: -37%; right: 0px; width: 65%; min-height: 200px; z-index: 1; border-radius: 20px;}

/* --- Bottom Stats Row --- */
.hero-stats-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: none; 
    padding-top: 10%;
    max-width: 1100px; 
    margin: 0 auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    flex: 1;
}


.stat-graphic {
    position: relative;
    width: 90px;  
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.solid-circle {
    position: relative;
    width: 72px; 
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    z-index: 2;
}

.light-bg {
    background-color: #E0F2FE;
    color: #1E3A8A;
}

.dark-bg {
    background-color: #2563EB; 
    color: #ffffff;
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.25); 
}

/* --- THE TRACE LINE  --- */
.dashed-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px; 
    height: 80px;
    border: 1px dashed #60A5FA; 
    border-radius: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
}

.offset-tl .dashed-ring { 
    transform: translate(calc(-50% - 5px), calc(-50% - 5px)); 
}
.offset-br .dashed-ring { 
    transform: translate(calc(-50% + 5px), calc(-50% + 5px)); 
}
.offset-tr .dashed-ring { 
    transform: translate(calc(-50% + 5px), calc(-50% - 5px)); 
}
.offset-bl .dashed-ring { 
    transform: translate(calc(-50% - 5px), calc(-50% + 5px)); 
}

.stat-label {
    font-size: 1rem;
    font-weight: 800;
    color: #111827;
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 1024px) {
    .hero-stats-row { max-width: 100%; padding-top: 40px; }
}

@media (max-width: 768px) {
    .hero-stats-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px 10px;
    }
}
/* ================= ANIMATIONS ================= */
.float-gentle { animation: float1 6s ease-in-out infinite; }
.float-slower { animation: float2 8s ease-in-out infinite; }

@keyframes float1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.reveal-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 1024px) {
    .hero-content-split { flex-direction: column; text-align: center; gap: 50px; }
    .hero-left { margin: 0 auto; }
    .hero-desc { margin: 0 auto 35px auto; }
    .hero-right { width: 100%; max-width: 650px; margin: 0 auto; height: 350px; }
    .hero-bg-glow { left: 50%; transform: translateX(-50%); width: 100%; top: 0; }
}

@media (max-width: 768px) {
    .hero-left h1 { font-size: 2rem; }
    .hero-right { height: 280px; }
    .hero-stats-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px 10px;
        border-top: none; 
    }
}


@media (max-width: 768px) {
    .hero-content-split { flex-direction: column !important; text-align: center !important; gap: 0 !important; }
    .hero-left { margin: 0 auto !important; width: 100% !important; }
    .hero-left h1 { font-size: 2.2rem !important; line-height: 1.2 !important; }


    .hero-right {
        width: 100% !important;
        height: auto !important;         
        margin-top: 50px !important;     
        margin-bottom: -40px !important; 
        display: block !important;
    }

    
    .visual-composition {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important; 
        gap: 25px 15px !important; 
        width: 100% !important;
        max-width: 400px !important;
        margin: 0 auto !important;
        align-items: center !important;
    }


    .float-img {
        position: relative !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        margin: 0 !important;
        width: 100% !important;
        height: auto !important;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
    }

    /* --- ROW 1: Main Video --- */
    .img-main-video {
        grid-column: 1 / -1 !important; 
        order: 1 !important;
        width: 100% !important;
    }

    /* --- ROW 2: The Small Accents --- */
    .img-price {
        grid-column: 1 / 2 !important; 
        order: 2 !important;
        width: 95% !important;
        justify-self: center !important;
    }

    .img-percent {
        grid-column: 2 / 3 !important; 
        order: 3 !important;
        width: 75% !important;
        justify-self: center !important;
    }

    /* --- ROW 3: Users Card --- */
    .img-users {
        grid-column: 1 / -1 !important; 
        order: 4 !important;
        width: 95% !important;
        justify-self: center !important;
        margin-top: 5px !important; 
    }

    .hero-stats-row { margin-top: 20px !important; }
}

@media (max-width: 380px) {
    .hero-left h1 { font-size: 1.9rem !important; }
    .visual-composition { gap: 20px 10px !important; }
}

/* ================= TOUGHEST CHALLENGES STYLES ================= */
.chal-section {
    position: relative;
    padding: 100px 0;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.chal-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* --- Decorative Backgrounds --- */
.chal-bg-wave {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    z-index: 0;
    pointer-events: none;
}
.chal-bg-wave svg { width: 100%; height: auto; }

/* --- Decorative Background Rings--- */
.chal-bg-rings {
    position: absolute;
    bottom: -150px; 
    left: -150px;   
    width: 370px;   
    z-index: 0;
    pointer-events: none; 
    opacity: 0.5;
}

.chal-bg-rings img {
    width: 100%;
    height: 600px;
    display: block;

}
/* --- Header --- */
.chal-header {
    text-align: center;
    margin-bottom: 50px;
}

.chal-header h2 {
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    color: #111827;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.text-blue { color: #3B82F6; }

.chal-header p {
    font-size: 1.05rem;
    color: #4B5563;
    line-height: 1.6;
}

/* --- Tab Controls --- */
.chal-tabs-wrapper {
    border-top: 1px solid #F3F4F6;
    border-bottom: 1px solid #F3F4F6;
    padding: 25px 0;
    margin-bottom: 60px;
}

.chal-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.chal-tab {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    color: #4B5563;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chal-tab:hover {
    border-color: #D1D5DB;
    background: #F9FAFB;
}

.chal-tab.active {
    background: #0F172A;
    color: #ffffff;
    border-color: #0F172A;
}

/* --- Tab Content & Grid --- */
.chal-content {
    display: none;
    animation: fadeInTab 0.4s ease forwards;
}

.chal-content.active {
    display: block;
}

@keyframes fadeInTab {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.chal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* --- Cards --- */
.chal-card {
    background: #ffffff;
    border: 1px solid #F3F4F6;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.chal-img-wrap {
    position: relative;
    height: 200px;
    width: 100%;
}

.chal-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chal-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(15, 23, 42, 0.85);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 50px;
    z-index: 2;
}

.chal-card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.chal-card-body h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* The exact gray stat box design */
.chal-stat-box {
    background: #F3F4F6;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-big {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0284C7; 
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: #4B5563;
    font-weight: 500;
}

.chal-card-body p {
    font-size: 0.95rem;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 1024px) {
    .chal-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .chal-grid { grid-template-columns: 1fr; }
    .chal-tabs { padding: 0 10px; }
    .chal-header p { display: none;  }
}


.text-blue { color: #2563EB; }
.container { max-width: 1250px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 2;}

/* ================= ENGINEERED SECTION ================= */
.engineered-section {
    padding: 30px 0 60px 0;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.eng-header {
    text-align: center;
    margin-bottom: 60px;
}

.eng-header h2 {
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    color: #111827;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.eng-header p {
    font-size: 1.05rem;
    color: #4B5563;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- 3-Column Grid --- */
.eng-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.eng-card {
    background: #ffffff;
    border: 1px solid #F1F5F9;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eng-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

.eng-icon-box {
    width: 45px;
    height: 45px;
    background: #E0F2FE; 
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}
.eng-icon-box svg { width: 22px; height: 22px; }

.eng-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
}

.eng-card p {
    font-size: 0.95rem;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 30px;
}

.eng-card-footer {
    margin-top: auto; 
    padding-top: 25px;
    border-top: 1px solid #F1F5F9;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

/* Mini Graphics inside Cards */
.growth-text { display: flex; flex-direction: column; gap: 5px; }
.growth-text .label { font-size: 0.65rem; font-weight: 800; color: #94A3B8; letter-spacing: 1px;}
.growth-text .value { font-size: 1.5rem; font-weight: 800; color: #2563EB; }

.mini-bar-chart { display: flex; align-items: flex-end; gap: 4px; height: 35px; }
.mini-bar-chart .bar { width: 8px; border-radius: 4px 4px 0 0; }
.bar-1 { height: 12px; background: #DBEAFE; }
.bar-2 { height: 18px; background: #93C5FD; }
.bar-3 { height: 25px; background: #3B82F6; }
.bar-4 { height: 35px; background: #1D4ED8; }

.data-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.data-pill { background: #F1F5F9; color: #475569; font-size: 0.75rem; font-weight: 700; padding: 6px 12px; border-radius: 50px; }

.system-opt { font-size: 0.65rem; font-weight: 800; color: #64748B; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; letter-spacing: 1px;}
.sys-dot { width: 6px; height: 6px; background: #10B981; border-radius: 50px; }
.sys-progress-bg { width: 100%; height: 6px; background: #F1F5F9; border-radius: 10px; overflow: hidden; }
.sys-progress-fill { width: 80%; height: 100%; background: linear-gradient(90deg, #4F46E5, #3B82F6); border-radius: 10px; }

/* ================= STOP REPORTING SECTION ================= */
.future-section {
    position: relative;
    padding: 10px 0 10px 0;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.future-bg-wave { position: absolute; top: 0; left: 0; width: 100%; pointer-events: none; }
.future-bg-grid { position: absolute; bottom: 0; right: 0; width: 400px; height: 400px; background-image: radial-gradient(#E2E8F0 1px, transparent 1px); background-size: 30px 30px; opacity: 0.5; z-index: 0; }

.future-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* --- Left: Custom CSS UI Visuals --- */
.future-visual {
    flex: 1;
    position: relative;
    padding-bottom: 40px; 
}

.css-browser-window {
    width: 100%;
    max-width: 450px;
    height: 320px;
    background: #ffffff;
    border: 2px solid #6366F1; 
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(99, 102, 241, 0.1);
    overflow: hidden;
}

.browser-header { display: flex; justify-content: space-between; align-items: center; padding: 12px 15px; border-bottom: 1px solid #F1F5F9; }
.dots { display: flex; gap: 6px; }
.dots span { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #EF4444; } .dot-y { background: #F59E0B; } .dot-g { background: #10B981; }
.url-bar { background: #F1F5F9; color: #94A3B8; font-size: 0.7rem; font-weight: 600; padding: 4px 40px; border-radius: 20px; }
.arrows { color: #94A3B8; font-size: 0.8rem; font-weight: 700; letter-spacing: 2px;}

.browser-body { display: flex; height: 100%; }
.ui-sidebar { width: 60px; border-right: 1px solid #F1F5F9; padding: 20px 0; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.ui-circle { width: 24px; height: 24px; border: 2px solid #DBEAFE; border-radius: 50%; }
.ui-box { width: 20px; height: 20px; border: 2px solid #DBEAFE; border-radius: 4px; }
.ui-triangle { width: 0; height: 0; border-left: 12px solid transparent; border-right: 12px solid transparent; border-bottom: 20px solid #DBEAFE; }

.ui-content { padding: 40px; flex: 1; }
.ui-line { height: 12px; background: #E0F2FE; border-radius: 10px; margin-bottom: 20px; }
.long { width: 80%; } .medium { width: 60%; } .short { width: 40%; }
.mt-big { margin-top: 60px; }

/* Overlapping Card */
.css-floating-card {
    position: absolute;
    bottom: 60px;
    right: -20px;
    width: 260px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    overflow: hidden;
    z-index: 2;
}

.float-card-img { width: 100%; height: 140px; background-size: cover; background-position: center; background-color: #0F172A; }
.float-card-profile { display: flex; align-items: center; gap: 12px; padding: 15px; }
.avatar { width: 24px; height: 24px; border-radius: 50%; background: #CBD5E1; object-fit: cover;}
.name { font-size: 0.85rem; font-weight: 600; color: #111827; }

.discover-link {
    display: inline-block;
    margin-top: 25px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0284C7;
    text-decoration: none;
    transition: color 0.3s ease;
}
.discover-link:hover { color: #0369A1; }

/* --- Right: Content Area --- */
.future-content {
    flex: 1;
    max-width: 550px;
}

.badge-blue {
    display: inline-block;
    background: #DBEAFE;
    color: #1D4ED8;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.future-content h2 {
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    color: #111827;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.future-desc {
    font-size: 1.05rem;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 40px;
}

.feature-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 25px; }
.feature-list li { display: flex; align-items: center; gap: 15px; font-size: 1rem; color: #334155; font-weight: 500; }
.feat-icon-bg { width: 36px; height: 36px; background: #EEF2FF; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;}
.feat-icon-bg svg { width: 18px; height: 18px; color: #4F46E5; }


/* ================= ANIMATIONS & RESPONSIVE ================= */
.float-anim { animation: floatBox 6s ease-in-out infinite; }
@keyframes floatBox {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.reveal-up { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal-up.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

@media (max-width: 1024px) {
    .eng-grid { grid-template-columns: repeat(2, 1fr); }
    .future-split { flex-direction: column; gap: 80px; }
    .future-visual { width: 100%; display: flex; flex-direction: column; align-items: center; }
    .css-floating-card { right: 10%; }
}

@media (max-width: 768px) {
    .eng-grid { grid-template-columns: 1fr; }
    .css-browser-window { max-width: 100%; }
    .css-floating-card { right: 0; bottom: 80px; width: 220px;}
    .future-content h2 { font-size: 2rem; }
}


@media (max-width: 768px) {
 
    .future-content {
        margin-bottom: 130px !important;
        position: relative !important;
    }


    .css-floating-card {
        width: 85% !important; 
        max-width: 260px !important;
        right: 5% !important; 
        bottom: -30px !important; 
        z-index: 5 !important;
    }

    .float-card-img {
        height: 120px !important;
    }

    .discover-link {
        position: absolute !important;
        bottom: -100px !important;
        left: 0 !important;
        width: 100% !important;
        text-align: center !important;
        margin-top: 0 !important;  
        z-index: 10 !important;
    }
}


@media (max-width: 380px) {
    .future-content {
        margin-bottom: 110px !important; 
    }
    
    .css-floating-card {
        width: 90% !important;
        right: 5% !important; 
        bottom: -20px !important;
    }
    
    .discover-link {
        bottom: -60px !important; 
    }
}
/* ================= DEPARTMENTAL SECTION ================= */
.departmental-section {
    position: relative;
    padding: 30px 0;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* --- Subtle Green Grid Background --- */
.dept-bg-grid {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background-image: 
        linear-gradient(to right, rgba(167, 243, 208, 0.3) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(167, 243, 208, 0.3) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 0;
    pointer-events: none;
    mask-image: radial-gradient(circle at 80% 20%, black 20%, transparent 60%);
    -webkit-mask-image: radial-gradient(circle at 80% 20%, black 20%, transparent 60%);
}

/* --- Header & Controls --- */
.dept-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.dept-title-area h2 {
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    color: #111827;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.text-blue { color: #314CA3; } 
.text-green { color: #047857; }
.text-red { color: #E11D48 !important; }

.dept-title-area p {
    font-size: 1.05rem;
    color: #64748B;
}

.dept-controls { display: flex; gap: 12px; }

.arrow-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #E2E8F0;
    background: #ffffff;
    color: #64748B;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.arrow-btn svg { width: 20px; height: 20px; }

.arrow-btn:hover {
    background: #005A8C; 
    border-color: #005A8C;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 90, 140, 0.3);
}

.arrow-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #ffffff;
    border-color: #E2E8F0;
    color: #94A3B8;
    box-shadow: none;
}

/* --- Cards Slider Wrapper --- */
.dept-slider-viewport {
    overflow: hidden;
    padding: 10px 10px 40px 10px; 
    margin: 0 -10px;
}

.dept-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    user-select: none;
}

/* --- Cards Shared Styles --- */
.dept-card {
    flex: 0 0 calc(50% - 15px); 
    min-width: 320px;
    background: #ffffff;
    border: 1px solid #F1F5F9;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.dept-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.dept-icon { width: 26px; height: 26px; }
.card-header h3 { font-size: 1.4rem; font-weight: 700; color: #111827; }
.dept-desc { font-size: 1rem; color: #475569; line-height: 1.6; margin-bottom: 30px; flex-grow: 1; }

/* --- Finance Card Specifics --- */
.finance-stats { display: flex; gap: 15px; }
.stat-pill {
    background: #EBF1FF; 
    border-radius: 12px;
    padding: 15px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
    z-index: 2;
}
.stat-label { font-size: 0.75rem; font-weight: 700; color: #64748B; }
.stat-value { font-size: 1.1rem; font-weight: 700; color: #475569; }

.watermark-icon {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 120px;
    height: 120px;
    color: #F1F5F9; 
    z-index: 1;
}

/* --- Operations Card Specifics --- */
.ops-stats-box {
    background: #ECFDF5; 
    border-radius: 16px;
    padding: 25px;
}
.ops-box-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.ops-label { font-size: 0.85rem; font-weight: 700; color: #065F46; }
.ops-badge { background: #047857; color: #ffffff; font-size: 0.6rem; font-weight: 800; padding: 4px 10px; border-radius: 50px; }

.ops-bars { display: flex; gap: 6px; height: 24px; }
.ops-bar { flex: 1; border-radius: 4px; background: #047857; }
.op-1 { opacity: 0.3; } .op-2 { opacity: 0.45; } .op-3 { opacity: 0.6; } .op-4 { opacity: 0.8; } .op-5 { opacity: 1; }

/* --- Strategy Card --- */
.strategy-card-wrapper {
    width: 100%;
}

.strategy-card {
    background: #194695;
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(25, 70, 149, 0.2);
}

.strategy-card .card-header h3, .strategy-card .dept-icon { color: #ffffff; }

.strategy-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 45%;
}

.strat-desc {
    font-size: 1.1rem;
    color: #E2E8F0; 
    line-height: 1.6;
    margin-bottom: 40px;
}

.btn-strategy {
    display: inline-block;
    align-self: flex-start;
    background: #0076A8;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-strategy:hover { background: #005A8C; }

.strategy-visual {
    flex: 1.2;
    padding: 30px 30px 30px 0;
    display: flex;
    align-items: center;
}

.strategy-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 1024px) {
    .strategy-card { flex-direction: column; }
    .strategy-content { max-width: 100%; padding: 40px; }
    .strategy-visual { padding: 0 40px 40px 40px; height: 350px;}
}

@media (max-width: 768px) {
    .dept-header { 
        flex-direction: column; 
        align-items: flex-start; 
        gap: 20px; 
    }

    .dept-track .dept-card { 
        flex: 0 0 100% !important; 
        min-width: 0 !important;   
        width: 100% !important;    
        box-sizing: border-box !important;
    } 
    
    .strategy-content, .strategy-visual { 
        padding: 30px; 
    }
    
    .strategy-visual { 
        padding-top: 0; 
        height: 250px; 
    }
}


@media (max-width: 380px) {
    .dept-track .dept-card {
        padding: 25px !important; 
    }
    .strategy-content {
        padding: 25px !important;
    }
}
/* ================= CUSTOM USE CASE SECTION ================= */
.custom-usecase-section {
    padding: 60px 0;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    position: relative;
  
    background-image: 
        linear-gradient(to right, rgba(167, 243, 208, 0.2) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(167, 243, 208, 0.2) 1px, transparent 1px);
    background-size: 60px 60px;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

.usecase-card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 40px; 
    padding: 50px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

/* --- The Curved Arrow Position --- */
.curve-arrow-img {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 80px;
    transform: rotate(-10deg);
    z-index: 5;
    pointer-events: none;
}

.usecase-split {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* --- Left Content --- */
.usecase-left {
    flex: 1;
}

.usecase-left h2 {
    font-size: clamp(2.2rem, 3.5vw, 2.8rem);
    color: #0F172A;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.text-blue { color: #536DE6; }

.usecase-desc {
    font-size: 1.1rem;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 40px;
}

.usecase-list {
    list-style: none;
    padding: 0;
}

.usecase-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: #334155;
    font-weight: 500;
}

.check-icon {
    width: 22px;
    height: 22px;
    color: #0284C7;
    flex-shrink: 0;
}

/* --- Right Form Card --- */
.usecase-right {
    flex: 1;
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06); 
    border: 1px solid #F1F5F9;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748B;
}

.form-group input, .select-wrapper select {
    background: #F1F5F9;
    border: none;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #1E293B;
    outline: none;
    transition: background 0.3s ease;
}

.form-group input:focus { background: #E2E8F0; }

/* Custom Select Arrow */
.select-wrapper { position: relative; }
.select-wrapper select {
    width: 100%;
    appearance: none;
    cursor: pointer;
}
.select-wrapper::after {
    content: "▼";
    font-size: 0.7rem;
    color: #64748B;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.btn-schedule {
    width: 100%;
    background: #0F172A; 
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 10px;
}

.btn-schedule:hover { background: #1E293B; }

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 1024px) {
    .usecase-card { padding: 50px; }
    .usecase-split { flex-direction: column; gap: 50px; }
    .usecase-left, .usecase-right { width: 100%; }
}

@media (max-width: 768px) {
    .usecase-card { padding: 40px 10px; border-radius: 24px; }
    .form-row { flex-direction: column; gap: 0; }
    .curve-arrow-img { top: -30px; left: 10px; width: 60px; }
}