:root {
    --primary-blue: #1C2B5E;
    --primary-yellow: #FFC107;
    /* Deep Blue */
    --accent-green: #25D366;
    /* WhatsApp Green */
    --light-purple-bg: #FDF4FF;
    --hero-bg: #F3F4F6;
    --text-dark: #333333;
    --text-muted: #666666;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    /* Offset for fixed header */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--hero-bg);
    /* Default bg */
    color: var(--text-dark);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-blue);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Helper Classes */
.text-center {
    text-align: center;
}

.highlight-text {
    background: linear-gradient(90deg, #2962FF 0%, var(--primary-blue) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    /* Fallback color */
    color: var(--primary-blue);
}

.highlight-text2 {
    display: inline-block;
    position: relative;
    color: var(--primary-yellow);
}

/* Remove old after pseudo-element if we are using an actual SVG tag or if we want the SVG cleanly under */
.highlight-text::after {
    display: none;
}

.highlight-underline {
    position: absolute;
    bottom: -15px;
    /* Adjusted to give more space */
    left: 0;
    width: 100%;
    height: auto;
    z-index: -1;
    pointer-events: none;
}

.highlight-underline path {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    transition: stroke-dashoffset 1s ease-out;
    fill: none;
}

/* When the 'visible' class is added via JS */
.highlight-text.visible .highlight-underline path {
    animation: drawUnderline 1.5s ease-out forwards;
}

@keyframes drawUnderline {
    from {
        stroke-dasharray: 300;
        stroke-dashoffset: 300;
    }

    to {
        stroke-dashoffset: 0;
    }
}

.highlight-blue {
    color: var(--primary-blue);
}

.highlight-yellow {
    color: #FFC107;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-size: 15px;
}

.btn-primary {
    background-color: #3b5998;
    /* Slightly lighter blue for button */
    color: #fff;
    box-shadow: 0 4px 12px rgba(59, 89, 152, 0.3);
}

.btn-success {
    background-color: var(--accent-green);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    border-radius: 50px;
    /* Capsule shape */
}

/* Header */
header {
    background-color: transparent;
    /* Transparent to match body/hero */
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

header.header-scrolled {
    background-color: #ffffff;
    /* Translucent hero color */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* Glass effect */
    padding: 5px 0;
    /* Slightly thinner on scroll */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    /* Add subtle shadow when scrolling */
}

/* Adjust body to prevent content jump due to fixed header */
body {
    padding-top: 100px;
    /* Approx header height */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-blue);
}

.logo span {
    color: #7F8C8D;
    font-weight: 400;
}

.logo img {
    height: 45px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    z-index: 10;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: var(--primary-blue);
    margin: 5px;
    transition: all 0.3s ease;
}

.nav-links li a {
    font-size: 15px;
    color: #555;
    font-weight: 500;
}

.nav-links li a:hover {
    color: var(--primary-blue);
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-login {
    color: #555;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.btn-login:hover {
    color: var(--primary-blue);
}

.btn-register {
    background-color: var(--primary-blue);
    color: #fff;
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 4px 10px rgba(33, 150, 243, 0.2);
}

.btn-register:hover {
    background-color: #1565C0;
    transform: translateY(-2px);
}

.mobile-auth {
    display: none;
}

.search-bar {
    position: relative;
}

.search-bar input {
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 25px;
    width: 220px;
    outline: none;
    font-size: 14px;
}

.search-bar i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
    /* padding: 120px 0 60px; */
    /* Top padding for fixed header */
    background: linear-gradient(180deg, #F3F4F6 0%, #E3F2FD 100%);
    /* Gray to Light Blue Gradient */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.hero-text {
    flex: 1;
    z-index: 2;
    padding-right: 20px;
}

.badge-pill {
    display: inline-block;
    background-color: #E8EAF6;
    color: var(--primary-blue);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.25;
    margin-bottom: 25px;
    color: #111;
}

.hero-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 35px;
    max-width: 450px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    color: var(--primary-blue);
    transform: translateX(5px);
}

/* Image Wrapper */
.hero-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 500px;
    /* Fixed height container */
}

/* Big Blue Circle Background - using var(--primary-blue) but lighter opacity maybe? User asked for Blue. */
.hero-circle-bg {
    position: absolute;
    width: 450px;
    height: 450px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

/* Main Image */
.main-hero-img {
    max-height: 550px;
    width: auto;
    position: relative;
    z-index: 1;
    bottom: -40px;
    /* Slight offset */
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.card-students {
    bottom: 60px;
    left: 0px;
    flex-direction: column;
    align-items: flex-start;
    min-width: 160px;
}

.card-congrats {
    top: 120px;
    right: -20px;
    padding: 10px 15px;
}

.card-text h4 {
    font-size: 16px;
    margin: 0;
    color: #333;
}

.card-text p {
    font-size: 12px;
    margin: 0;
    color: #888;
}

.icon-circle {
    width: 40px;
    height: 40px;
    background: #FFF3E0;
    /* Light Orange accent */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F57C00;
}

.icon-check {
    width: 30px;
    height: 30px;
    background: #E8F5E9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2E7D32;
    font-size: 12px;
}

.avatars-row {
    display: flex;
}

.avatar {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #ddd;
    border: 2px solid #fff;
    margin-right: -8px;
}

.avatar:nth-child(1) {
    background-color: #FFCDD2;
}

.avatar:nth-child(2) {
    background-color: #C5CAE9;
}

.avatar:nth-child(3) {
    background-color: #B2DFDB;
}

/* Decorative Icons */
.floating-icon {
    position: absolute;
    font-size: 24px;
    color: var(--primary-blue);
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.icon-book {
    top: 40px;
    left: 80px;
    animation: float 5s ease-in-out infinite 1s;
}

.icon-bulb {
    bottom: 150px;
    right: 20px;
    animation: float 7s ease-in-out infinite 0.5s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}


/* Community Section */
.community-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
}

.community-container {
    display: flex;
    justify-content: flex-end;
    /* Content on right */
    position: relative;
}

.map-bg {
    position: absolute;
    left: -100px;
    top: 0;
    width: 60%;
    height: 100%;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/8/80/World_map_-_low_resolution.svg');
    /* Placeholder map */
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.community-content {
    width: 50%;
    /* Right half */
    z-index: 2;
    padding-left: 50px;
}

.community-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    font-size: 40px;
    color: #3b5998;
    /* Icon color */
    width: 60px;
    text-align: center;
}

.stat-info h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.stat-info p {
    color: #666;
    font-size: 14px;
}


/* Methods Section */
.methods-section {
    padding: 80px 0;
    background-color: #1a237e;
    /* Dark Blue Background */
    color: #fff;
    /* We need to mimic the dark blue curved section */
    background: linear-gradient(180deg, #1C2B5E 0%, #1C2B5E 100%);
}

.section-header h2 {
    color: #fff;
    margin-bottom: 50px;
    font-size: 32px;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.method-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    color: #333;
    padding-bottom: 30px;
}

.method-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.method-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    margin: -35px auto 20px;
    /* Overlap image */
    position: relative;
    border: 4px solid #fff;
}

.bg-orange {
    background-color: #F57C00;
}

.bg-purple {
    background-color: #8E24AA;
}

.bg-blue {
    background-color: #0288D1;
}

.method-body {
    padding: 0 25px;
}

.method-body h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.method-body p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Response */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 20px;
    }

    .hero-image {
        order: -1;
        margin-bottom: 40px;
        justify-content: center;
        width: 100%;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .community-container {
        flex-direction: column;
    }

    .community-content {
        width: 100%;
        padding-left: 0;
        text-align: center;
    }

    .stats-grid {
        align-items: center;
    }

    .stat-item {
        width: 100%;
        justify-content: center;
    }

    .methods-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile Nav */
    body {
        overflow-x: hidden;
    }

    .nav-links {
        position: absolute;
        right: 0px;
        height: 100vh;
        top: 8vh;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding-top: 50px;
        z-index: 99;
        /* Ensure on top */
    }

    .nav-links li {
        opacity: 0;

        /* Control vertical spacing here */
    }

    .hamburger {
        display: block;
    }

    .auth-buttons {
        display: none;
        /* Hide auth buttons on mobile for now */
    }
}

.nav-links.nav-active {
    transform: translateX(0%);
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media (max-width: 768px) {

    /* Ensure header has background on mobile to cover menu top */
    header {
        background-color: #ffffff;
    }

    .nav-links {
        width: 100%;
        z-index: -1;
        /* Place behind header */
        top: 0;
        position: fixed;
        /* Ensure it stays fixed on screen */
        height: 100vh;
        /* Full viewport height */
        overflow-y: auto;
        /* Enable scrolling if content exceeds height */
        padding-top: 100px;
        padding-bottom: 60px;
        /* More padding at bottom */
    }

    /* Mobile Auth Buttons */
    .mobile-auth {
        display: block !important;
        /* Force show on mobile */
        margin-top: 0px !important;
        /* Minimized completely */
        margin-bottom: 0px !important;
        /* Remove generic li spacing */
        width: 100%;
        text-align: center;
        padding: 0;
    }

    .btn-login-mobile {
        background-color: transparent;
        color: var(--primary-blue) !important;
        border: 2px solid var(--primary-blue);
        padding: 8px 30px;
        border-radius: 25px;
        display: inline-block;
        margin-top: 10px;
        font-weight: 600;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }

    .btn-register-mobile {
        background-color: var(--primary-blue);
        color: #fff !important;
        padding: 10px 30px;
        border-radius: 25px;
        display: inline-block;
        margin-top: 0px;
        /* Gap removed completely */
        box-shadow: 0 4px 10px rgba(33, 150, 243, 0.3);
    }

    /* Hero Mobile Updates */
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 20px;
    }

    .hero-text {
        padding-right: 0;
        margin-bottom: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        /* Stack buttons on small screens if needed, or keep row but smaller */
        gap: 10px;
        width: 100%;
        max-width: 300px;
        /* Constrain width */
    }

    .hero-buttons .btn,
    .hero-buttons .btn-outline {
        width: 100%;
        /* Full width buttons looks better on mobile usually */
        padding: 10px 20px;
        font-size: 14px;
        justify-content: center;
    }

    .hero-image-wrapper {
        width: 100%;
        height: 320px;
        /* Smaller height on mobile */
        margin-top: 20px;
    }

    .hero-circle-bg {
        width: 280px;
        height: 280px;
    }

    .main-hero-img {
        max-height: 340px;
        max-width: 85%;
    }

    .floating-card {
        transform: scale(0.7);
        /* Slightly larger than 0.65 for readability, effectively smaller due to content removal */
        transform-origin: center center;
        padding: 8px 12px;
        gap: 10px;
    }

    .card-students {
        left: -20px;
        bottom: 30px;
        flex-direction: row;
        /* Horizontal layout */
        min-width: auto;
        align-items: center;
    }

    .card-students .avatars-row {
        display: none;
        /* Hide avatars on mobile to save space */
    }

    .card-congrats {
        right: -20px;
        top: 0px;
        /* Moved up from 30px */
    }

    /* Ensure icons don't overlap too much */
    .icon-book {
        top: 0px;
        left: 10px;
        transform: scale(0.7);
    }

    .icon-bulb {
        display: none;
        /* Hide some decoration on mobile */
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .logo {
        position: relative;
        z-index: 101;
        /* Ensure logo is above mobile menu */
    }

    .hamburger {
        position: relative;
        z-index: 101;
    }
}

/* Programs Section */
.programs-section {
    padding: 100px 0;
    background-color: #fff;
}

.programs-container {
    display: flex;
    gap: 40px;
}

.programs-sidebar {
    width: 30%;
    padding-top: 20px;
    position: relative;
}

.sidebar-title-wrapper {
    position: relative;
    display: inline-block;
}

.programs-sidebar h2 {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.curly-arrow {
    position: absolute;
    right: -80px;
    bottom: 20px;
    transform: rotate(-10deg);
    width: 80px;
    height: auto;
}

/* Make the SVG path cyan/blue like in the image */
.curly-arrow path {
    stroke: #22d3ee;
    /* Cyan color */
}

.badge-blue {
    background: #E3F2FD;
    color: var(--primary-blue);
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

.highlight-decoration {
    width: 80px;
    height: 8px;
    background-color: #FFD54F;
    margin-bottom: 25px;
    border-radius: 4px 10px 4px 8px;
    /* Irregular radius for brush effect */
    transform: rotate(-2deg);
    /* Slight tilt */
}

.btn-primary-dark {
    background-color: #3f51b5;
    /* Darker blue */
    color: #fff;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(63, 81, 181, 0.4);
}

.programs-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.program-card {
    background: #F8FAFB;
    /* Very light subtle bg */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s;
    border: 1px solid #eee;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.card-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: #3f51b5;
    color: #fff;
    padding: 5px 15px;
    font-size: 10px;
    font-weight: 700;
    border-bottom-right-radius: 10px;
    border-top-left-radius: 12px;
}

.program-icon {
    width: 70px;
    height: 70px;
    background: #E8F5E9;
    /* Light green/mint placeholder */
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #2E7D32;
    position: relative;
}

/* Specific icon bg colors */
.programs-grid .program-card:nth-child(1) .program-icon {
    background: #E0F7FA;
    color: #00838F;
}

.programs-grid .program-card:nth-child(2) .program-icon {
    background: #E8F5E9;
    color: #2E7D32;
}

.programs-grid .program-card:nth-child(3) .program-icon {
    background: #F3E5F5;
    color: #8E24AA;
}

.programs-grid .program-card:nth-child(4) .program-icon {
    background: #FFF3E0;
    color: #EF6C00;
}

.program-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.program-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    min-height: 60px;
    /* Ensure even height */
}

.btn-link {
    color: #3f51b5;
    font-weight: 600;
    font-size: 14px;
}

/* Footer */
footer {
    background-color: #fff;
    padding: 60px 0 20px;
    border-top: 1px solid #eee;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: #666;
    margin: 15px 0;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--primary-blue);
    font-size: 18px;
}

.footer-links h4 {
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #666;
    font-size: 14px;
}

.footer-links ul li a:hover {
    color: var(--primary-blue);
}

.footer-bottom {
    border-top: 1px solid #eee;
    padding-top: 20px;
    font-size: 13px;
    color: #aaa;
}

/* Floating WA Button */
.float-wa {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    font-weight: 600;
    z-index: 900;
    /* Lower than header (1000) so menu covers it */
    display: flex;
    align-items: center;
    gap: 8px;
}

.float-wa:hover {
    transform: translateY(-2px);
}

/* Response Programs */
@media (max-width: 768px) {
    .programs-container {
        flex-direction: column;
    }

    .programs-sidebar {
        width: 100%;
        text-align: center;
        margin-bottom: 40px;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Modern Problem Section */
.problem-section.modern-layout {
    padding: 120px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
    position: relative;
    overflow: hidden;
}

.problem-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Left Content */
.problem-text {
    flex: 1;
    z-index: 2;
}

.label-badge {
    display: inline-block;
    background: #FFEBEE;
    color: #D32F2F;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-heading {
    font-size: 42px;
    margin-bottom: 10px;
    line-height: 1.25;
    color: #1e293b;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.6);

    /* Dark Slate */
}

.section-subheading {
    font-size: 16px;
    color: #64748b;
    /* Slate 500 */
    margin: 0 auto 40px;
    line-height: 1.7;
    max-width: 90%;
}

/* Modern Card List */
.modern-problem-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.modern-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    /* Tailwind-ish shadow */
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.modern-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.icon-confused {
    background: #FFEBEE;
    color: #D32F2F;
}

.icon-overthinking {
    background: #FFF3E0;
    color: #F57C00;
}

.icon-fear {
    background: #E3F2FD;
    color: #0288D1;
}

.card-content h4 {
    font-size: 18px;
    color: #334155;
    margin-bottom: 6px;
    font-weight: 700;
}

.card-content p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* Quote */
.modern-quote {
    position: relative;
    padding-left: 25px;
}

.quote-line {
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 4px;
    background: var(--primary-blue);
    border-radius: 2px;
}

.modern-quote p {
    font-size: 16px;
    color: #475569;
    font-style: italic;
    font-weight: 500;
}

.modern-quote strong {
    color: var(--primary-blue);
    font-weight: 700;
}

/* Image Section */
.problem-image-modern {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-illustration {
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.blob-shape {
    position: absolute;
    width: 500px;
    height: 500px;
    background: linear-gradient(45deg, #DBEAFE 0%, #EFF6FF 100%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    z-index: 1;
    animation: blob-bounce 8s infinite ease-in-out;
}

@keyframes blob-bounce {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: scale(1);
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: scale(1.05);
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: scale(1);
    }
}

/* Glass Float Elements */
.glass-float {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    padding: 12px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.glass-float i {
    font-size: 18px;
    color: var(--primary-blue);
}

.glass-float span {
    font-weight: 600;
    color: #334155;
    font-size: 13px;
}

.float-1 {
    bottom: 50px;
    left: -20px;
    animation-delay: 0s;
}

.float-2 {
    top: 60px;
    right: -30px;
    animation-delay: 2s;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 140px;
}

.loading-bar {
    width: 100%;
    height: 6px;
    background: #E2E8F0;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.loading-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 60%;
    background: var(--accent-green);
    border-radius: 3px;
}

/* Response */
@media (max-width: 992px) {
    .problem-section.modern-layout {
        padding: 60px 0;
    }

    .problem-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .problem-text {
        text-align: center;
    }

    .label-badge {
        margin: 0 auto 20px;
    }

    .section-heading {
        font-size: 32px;
    }

    .section-subheading {
        margin: 0 auto 30px;
    }

    .modern-card {
        text-align: left;
    }

    .modern-quote {
        padding-left: 15px;
        text-align: left;
        background: #fff;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    }

    .modern-quote p {
        font-size: 14px;
    }

    .quote-line {
        left: 0;
        width: 4px;
        border-radius: 4px 0 0 4px;
    }

    .problem-image-modern img {
        max-width: 80%;
    }

    .blob-shape {
        width: 300px;
        height: 300px;
    }

    .glass-float {
        transform: scale(0.85);
    }

    .float-1 {
        left: 0;
        bottom: 20px;
    }

    .float-2 {
        right: 0;
        top: 20px;
    }
}

/* Program Unggulan Section */
/* Program Unggulan Section */
.program-unggulan-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, #1C2B5E 0%, #101935 100%);
    overflow: hidden;
    color: #fff;
}

/* World Map Dots Overlay */
.program-unggulan-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-image: url('../images/world-map-dots.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
    filter: brightness(0) invert(1);
}

/* Top Blur Effect */
.program-unggulan-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, #1C2B5E 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

/* Bottom Blur Effect using a separate element or reusing pseudo? 
   Since ::after is used, let's add a bottom gradient using a child element or another way.
   Actually, let's use a mask or inset shadow on the container, or just add another div in HTML. 
   Or, I can combine gradients in ::after. 
*/
.program-unggulan-section .bg-blur-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, #101935 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.program-unggulan-section .container {
    position: relative;
    z-index: 2;
}

.program-unggulan-section .section-heading {
    color: #fff;
}

.program-unggulan-section .section-subheading {
    color: rgba(255, 255, 255, 0.85);
}

.program-unggulan-section .highlight-text {
    color: #FFD54F;
    /* Bright yellow for contrast */
}

.program-unggulan-section .highlight-text::after {
    background-color: rgba(255, 213, 79, 0.2);
}

.program-grid-unggulan {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 0;
}

.unggulan-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    /* Softer, deeper shadow */
    border: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.unggulan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.unggulan-card {
    animation: fadeUp 0.6s ease-out forwards;
    opacity: 0;
    /* meaningful start state for animation */
}

.unggulan-card:nth-child(1) {
    animation-delay: 0.1s;
}

.unggulan-card:nth-child(2) {
    animation-delay: 0.2s;
}

.unggulan-card:nth-child(3) {
    animation-delay: 0.3s;
}

.unggulan-card:nth-child(4) {
    animation-delay: 0.4s;
}

.unggulan-card:nth-child(5) {
    animation-delay: 0.5s;
}

.unggulan-card:nth-child(6) {
    animation-delay: 0.6s;
}

.unggulan-card:nth-child(7) {
    animation-delay: 0.7s;
}

.unggulan-card:nth-child(8) {
    animation-delay: 0.8s;
}

/* Card Header */
.card-header-dark {
    padding: 15px;
    color: #fff;
    text-align: left;
    position: relative;
    min-height: auto;
    display: block;
    z-index: 1;
    background: transparent !important;
    /* Overriding gradients to let image show or just use text overlay */
}

.unggulan-card-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.card-content-wrapper {
    padding: 0;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    /* Slight darken overlay */
    z-index: -1;
}

.card-icon-top {
    font-size: 24px;
    margin-bottom: 10px;
    color: #3b5998;
    /* Blue icon */
    opacity: 1;
    display: none;
    /* Hide icon if using image, or keep reasonable size */
}

.card-header-dark h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.3;
    color: #333;
    /* Dark text since we are moving away from dark header backgrounds */
}

.card-header-dark p {
    font-size: 12px;
    opacity: 0.8;
    margin: 0;
    line-height: 1.4;
    color: #666;
}

/* Gradients reusing existing variables or defining new deep ones */
.bg-header-1 {
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
}

/* Dark Tech */
.bg-header-2 {
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
}

/* Midnight City */
.bg-header-3 {
    background: linear-gradient(135deg, #1c1c1c 0%, #4a192c 100%);
}

/* Dark Red hint */
.bg-header-4 {
    background: linear-gradient(135deg, #141E30 0%, #243B55 100%);
}

/* Royal Blue Dark */

/* Card Body */
.card-body-light {
    background-color: #F8F9FA;
    /* Light Gray */
    padding: 15px;
    flex: 1;
    /* Pushes footer down */
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    font-size: 13px;
    color: #555;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.feature-list li:last-child {
    margin-bottom: 0;
}

.feature-list li i {
    color: #25D366;
    /* Checkmark Green */
    font-size: 14px;
    margin-top: 3px;
    /* Align with text */
}

/* Card Footer */
.card-footer-btn {
    padding: 10px 15px 15px;
    background-color: #fff;
    border-top: none;
}

.btn-full-width {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    color: #333;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s;
}

.btn-full-width:hover {
    background: var(--primary-blue);
    color: #fff;
    border-color: var(--primary-blue);
}

/* Response */
@media (max-width: 768px) {
    .program-unggulan-section {
        padding: 60px 0;
    }

    .unggulan-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .program-grid-unggulan {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 576px) {
    .program-grid-unggulan {
        grid-template-columns: 1fr;
        /* 1 column on mobile */
    }
}

/* Mentor Section */
.mentor-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #101935 0%, #007ac0 100%);
    overflow: hidden;
    color: #fff;
    position: relative;
    z-index: 1;
}

.mentor-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/geo-pattern.svg');
    background-size: 400px 400px;
    opacity: 1;
    pointer-events: none;
    z-index: -1;
}

.mentor-section .section-heading {
    color: #fff;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.6);
}

.mentor-section .section-subheading {
    color: rgba(255, 255, 255, 0.85);
}

.mentor-section .highlight-text {
    color: #FFD54F;
    /* Bright yellow */
}

.mentor-section .highlight-text::after {
    background-color: rgba(255, 213, 79, 0.2);
}

.mentor-scroll-container {
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.mentor-track {
    display: flex;
    width: max-content;
    animation: scrollMentors 40s linear infinite;
    /* Slowed down slightly for better readability */
}

/* Pause animation on click and hold */
.mentor-track:active {
    animation-play-state: paused;
}

.mentor-track:hover {
    animation-play-state: paused;
}

@keyframes scrollMentors {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.mentor-card {
    width: 200px;
    margin: 0 0px;
    text-align: center;
    flex-shrink: 0;
}

.mentor-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, border-color 0.3s;
}

.mentor-card:hover img {
    transform: scale(1.05);
    border-color: #FFD54F;
    /* Yellow border on hover to match theme */
}

.mentor-card h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #fff;
    /* White text for name */
    font-weight: 600;
}

.mentor-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    /* Light grey for university */
    margin: 0;
}

/* Alumni Section Styles */
.alumni-section {
    width: 100%;
    margin-top: 3rem;
    overflow: hidden;
    /* Hide scrollbars */
    padding-bottom: 2rem;
}

.marquee-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.marquee {
    display: flex;
    gap: 2rem;
    overflow: hidden;
    user-select: none;
    width: 100%;
    mask-image: linear-gradient(to right,
            transparent,
            black 10%,
            black 90%,
            transparent);
    -webkit-mask-image: linear-gradient(to right,
            transparent,
            black 10%,
            black 90%,
            transparent);
}

.marquee-group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 2rem;
    min-width: 100%;
    animation: scroll 25s linear infinite;
    animation-direction: var(--direction, normal);
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - 2rem));
    }
}

.marquee.paused .marquee-group {
    animation-play-state: paused;
}

.alumni-photo {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    background-color: #f0f0f0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.alumni-photo:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .marquee {
        gap: 1rem;
    }

    .marquee-group {
        gap: 1rem;
        animation-duration: 20s;
    }

    .alumni-photo {
        width: 140px;
        height: 140px;
    }

    @keyframes scroll {
        to {
            transform: translateX(calc(-100% - 1rem));
        }
    }
}

/* Promo Section */
.promo-section {
    padding: 80px 0;
    background-color: #F8FAFB;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.promo-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.promo-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.promo-card:hover .promo-image img {
    transform: scale(1.1);
}

.promo-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
}

.tag-yellow {
    background: #FFD54F;
    color: #333;
}

.tag-red {
    background: #FF4D6D;
    color: #fff;
}

.tag-cyan {
    background: #22D3EE;
    color: #fff;
}

.promo-content {
    padding: 25px;
}

.promo-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 700;
}

.promo-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.promo-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.promo-info {
    color: #25D366;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.promo-link {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.promo-link:hover {
    color: #FF4D6D;
}

/* Insight Section (Tips & Trik) */
.insight-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #101935 0%, #007ac0 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.insight-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/geo-pattern.svg');
    background-size: 400px 400px;
    opacity: 1;
    pointer-events: none;
    z-index: -1;
}

/* Insight Section Heading styles */
.insight-section .section-heading {
    color: #fff;

}

.insight-section .title {
    color: #fff !important;
    /* Override inline styles if present, or better to use class */
}

.insight-section .sub-title {
    color: #FFD54F !important;
    /* Yellow highlight */
}

.insight-section .section-subheading {
    color: rgba(255, 255, 255, 0.85);
}

.insight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.insight-card {
    background: #fff;
    /* Keep white card for contrast */
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.insight-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.insight-card:hover .insight-image img {
    transform: scale(1.05);
}

.insight-content {
    padding: 20px;
}

.insight-category {
    font-size: 11px;
    color: var(--primary-blue);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.insight-content h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    /* Dark text on white card */
    line-height: 1.4;
    font-weight: 700;
}

.insight-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    text-decoration: underline;
    color: #1a237e;
}

/* Update "Baca Insight Lainnya" button to be visible on dark background */
.insight-section .btn-outline {
    border: 2px solid #FFD54F !important;
    color: #FFD54F !important;
}

.insight-section .btn-outline:hover {
    background-color: #FFD54F !important;
    color: #1C2B5E !important;
}

/* Awardee Section (Blog) */
.awardee-section {
    padding: 80px 0;
    background-color: #F8FAFB;
}

.awardee-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.awardee-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.awardee-card:hover {
    transform: translateY(-5px);
}

.awardee-thumb {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.awardee-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.awardee-univ {
    font-size: 13px;
    color: #666;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.awardee-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .awardee-grid {
        grid-template-columns: 1fr;
    }
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0d1b3e 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-section h2 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.final-cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.btn-light-large {
    background: #fff;
    color: var(--primary-blue);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
    position: relative;
    z-index: 2;
}

.btn-light-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Background decorations for CTA */
.cta-blob {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.blob-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}


.blob-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
}

/* Solution Section */
.solution-section {
    padding: 100px 0;
    background-color: #fff;
    overflow: hidden;
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.solution-content {
    order: 1;
}

.solution-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.solution-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.solution-features {
    list-style: none;
    margin-top: 30px;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
    padding: 15px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s;
}

.solution-features li:hover {
    transform: translateX(10px);
    border-color: #e0e0e0;
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.icon-box-blue {
    background: #E3F2FD;
    color: #1976D2;
}

.icon-box-purple {
    background: #F3E5F5;
    color: #7B1FA2;
}

.icon-box-green {
    background: #E8F5E9;
    color: #388E3C;
}

.feature-text {
    font-weight: 700;
    color: #333;
    font-size: 1.1rem;
}

.solution-image {
    order: 2;
    position: relative;
}

.solution-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.solution-blob {
    position: absolute;
    width: 300px;
    height: 300px;
    background: #E3F2FD;
    filter: blur(80px);
    border-radius: 50%;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.6;
}

@media (max-width: 992px) {
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .solution-content {
        order: 2;
    }

    .solution-image {
        order: 1;
    }
}

.btn-hover-blue {
    border: 2px solid #ddd;
    color: #555;
    transition: all 0.3s ease;
}

.btn-hover-blue:hover {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue) !important;
    color: #fff !important;
    box-shadow: 0 5px 15px rgba(28, 43, 94, 0.2);
}