/* Aluna-Inspired Modern Design System */
:root {
    /* Colors based on logo: Green (#0E5D0C) and Black (#010101) */
    --primary-color: #0E5D0C;
    /* Deep Forest Green */
    --primary-light: #157312;
    /* Lighter Green */
    --secondary-color: #FFB606;
    /* Golden/Amber */
    --accent-color: #2ECC71;
    /* Bright Green for highlights/success */

    --text-dark: #1A1A1A;
    --text-body: #505050;
    --text-light: #888888;

    --bg-light: #F4F7FC;
    /* Very light blue-grey */
    --white: #FFFFFF;

    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-card: 0 5px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.12);

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    --radius-sm: 5px;
    --radius-md: 10px;
    --radius-lg: 30px;

    --transition: all 0.3s ease-in-out;
}

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Poppins:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    font-size: 16px;
    line-height: 1.8;
    background-color: var(--white);
    overflow-x: hidden;
}

/* Layout Utilities (Added for Hero Split) */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.row-flex {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.col {
    flex: 1;
    padding: 0 15px;
}

@media (max-width: 768px) {
    .row-flex {
        flex-direction: column;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    transition: var(--transition);
    color: inherit;
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* --- Top Bar (New) --- */
.top-bar {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info span {
    margin-right: 20px;
}

.top-info i {
    color: var(--secondary-color);
    margin-right: 8px;
}

.top-social a {
    margin-left: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.top-social a:hover {
    color: var(--secondary-color);
}

/* --- News Marquee --- */
.news-marquee-section {
    background: #f1f1f1;
    border-bottom: 1px solid #ddd;
    padding: 8px 0;
    font-size: 0.85rem;
    font-weight: 600;
}

.marquee-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.marquee-label {
    background: var(--primary-color);
    color: white;
    padding: 3px 12px;
    border-radius: 4px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blink-tag {
    background: #ff3e3e;
    color: white;
    font-size: 0.65rem;
    padding: 1px 5px;
    border-radius: 3px;
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.news-marquee-section marquee {
    vertical-align: middle;
    color: #333;
}

/* --- Navbar (Aluna Style) --- */
header {
    background: var(--white);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 60px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    color: var(--primary-color);
    font-family: var(--font-heading);
    position: relative;
    padding: 10px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    border-radius: 8px;
    top: 100%;
    left: -10px;
    /* Slight offset */
    padding: 10px 0;
    border: 1px solid #f0f0f0;
}

/* Invisible bridge to prevent closing when moving mouse */
.dropdown-content::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-content a {
    color: var(--text-body);
    padding: 12px 25px;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
}

.dropdown-content a::after {
    display: none;
    /* Remove underline effect for dropdown items */
}

.dropdown-content a:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
    padding-left: 30px;
    /* Slide effect */
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

.dropbtn i {
    font-size: 0.8em;
    margin-left: 5px;
    transition: transform 0.3s;
}

.dropdown:hover .dropbtn i {
    transform: rotate(180deg);
}

.apply-btn {
    padding: 14px 40px;
    background: linear-gradient(135deg, var(--secondary-color), #f39c12);
    color: var(--primary-color) !important;
    border-radius: 50px;
    font-weight: 800;
    font-family: var(--font-heading);
    box-shadow: 0 10px 25px rgba(255, 182, 6, 0.3);
    border: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.apply-btn:hover {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(135deg, #f39c12, var(--secondary-color));
    box-shadow: 0 15px 35px rgba(255, 182, 6, 0.5);
    color: var(--primary-color) !important;
}

.apply-btn i {
    font-size: 0.9rem;
    transition: 0.3s;
}

.apply-btn:hover i {
    transform: translateX(5px);
}


.btn-nav {
    padding: 12px 30px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    color: var(--white) !important;
    border-radius: 30px;
    font-weight: 700;
    font-family: var(--font-heading);
    box-shadow: 0 5px 15px rgba(14, 93, 12, 0.4);
    border: 2px solid transparent;
    transition: 0.3s ease;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(14, 93, 12, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(14, 93, 12, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(14, 93, 12, 0);
    }
}

.btn-nav:hover {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color) !important;
    transform: translateY(-3px);
    animation: none;
    box-shadow: 0 5px 15px rgba(14, 93, 12, 0.2);
}

.btn-nav::after {
    display: none;
    /* Remove underline effect */
}

.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* --- Hero Section (New Static Modern) --- */
.hero-section {
    position: relative;
    padding: 140px 0 100px;
    background: linear-gradient(120deg, #f0f2f5 0%, #e1e4e8 40%, #d1d5db 100%);
    /* Silver Grey Mesh Gradient */
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

/* Background Abstract Shapes */
.hero-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.6;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(14, 93, 12, 0.08);
    /* Soft Dark Green */
    top: -100px;
    left: -50px;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: rgba(255, 182, 6, 0.1);
    /* Soft Yellow */
    bottom: -100px;
    right: -100px;
}

/* Hero Content */
.hero-text {
    position: relative;
    z-index: 2;
    padding-right: 30px;
    flex: 1.2;
    /* Takes up slightly more space than image */
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.highlight-text {
    position: relative;
    display: inline-block;
}

.scribble-underline {
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 20px;
    stroke: var(--secondary-color);
    stroke-width: 4;
    fill: none;
    stroke-linecap: round;
    z-index: -1;
    opacity: 0.8;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-body);
    margin-bottom: 40px;
    max-width: 550px;
}

/* New Button Variants */
.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    margin-left: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn i {
    transition: margin-left 0.3s;
}

.btn:hover i {
    margin-left: 5px;
}

/* Hero Visual & Floating Cards */
.hero-image-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    flex: 0.8;
}

.hero-img-wrapper {
    position: relative;
    max-width: 450px;
    /* Adjust based on image aspect ratio */
}

.main-hero-img {
    width: 100%;
    /* Remove height 100% to prevent stretching */
    max-height: 550px;
    object-fit: cover;
    border-radius: 20px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}



.floating-card {
    position: absolute;
    background: var(--white);
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Soft shadow */
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 180px;
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

.card-top-left {
    top: 15%;
    left: -60px;
    animation-delay: 0s;
}

.card-right {
    top: 25%;
    right: -50px;
    animation-delay: 1.5s;
}

.card-bottom {
    bottom: 50px;
    right: -20px;
    min-width: 200px;
    animation-delay: 1s;
}

.icon-box {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.card-text h4 {
    font-size: 1.2rem;
    margin: 0;
    color: var(--primary-color);
    line-height: 1;
}

.card-text p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 5px 0 0;
    font-weight: 600;
}

/* --- Standard Page Header --- */
.page-header {
    background: linear-gradient(rgba(11, 46, 10, 0.85), rgba(11, 46, 10, 0.7)), url('../images/header-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: white;
    position: relative;
    margin-bottom: 0;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    animation: fadeInUp 0.8s ease;
}

.page-header p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 20px;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease;
}

/* Breadcrumb Styles */
.breadcrumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    margin-top: 20px;
    animation: fadeInUp 1.2s ease;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.3s;
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

.breadcrumb i {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb .current {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 0.9rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.avatar:first-child {
    margin-left: 0;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Mobile Adjustments */
@media (max-width: 900px) {
    .hero-section {
        padding: 100px 0 60px;
        text-align: center;
    }

    .hero-text {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        margin: 0 auto 30px;
    }

    .floating-card {
        position: static;
        margin: 10px auto;
        transform: none !important;
        /* Disable float on mobile for layout stability */
        animation: none;
        max-width: 250px;
    }

    .hero-img-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .card-top-left,
    .card-right,
    .card-bottom {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
    }
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-family: var(--font-heading);
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    margin-left: 15px;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* --- Features / Stats --- */
/* --- Features / Stats (Highlights) --- */
.highlights-section {
    position: relative;
    margin-top: -80px;
    /* Overlap the hero more aggressively */
    z-index: 10;
    padding-bottom: 60px;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s ease;
    border-bottom: 3px solid transparent;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-bottom: 3px solid var(--secondary-color);
}



/* --- Back to Top Button --- */
#backToTop {
    display: none;
    position: fixed;
    bottom: 30px;
    left: 30px;
    /* Left side to avoid WhatsApp widget collision */
    z-index: 999;
    border: none;
    outline: none;
    background: var(--primary-color);
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

#backToTop:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-5px);
}

/* --- Glassmorphism Navbar --- */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
}

/* Card Hover Enhancements */
.card {
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-item {
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    background: var(--bg-light);
    border-radius: var(--radius-sm);
}

.stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.icon-blue {
    background: rgba(14, 42, 71, 0.1);
    color: var(--primary-color);
}

.stat-card:hover .icon-blue {
    background: var(--primary-color);
    color: var(--white);
}

.icon-yellow {
    background: rgba(255, 182, 6, 0.15);
    color: #e6a200;
}

.stat-card:hover .icon-yellow {
    background: var(--secondary-color);
    color: var(--white);
}

.icon-teal {
    background: rgba(32, 201, 151, 0.15);
    color: var(--accent-color);
}

.stat-card:hover .icon-teal {
    background: var(--accent-color);
    color: var(--white);
}

.stat-content h3 {
    font-size: 2.2rem;
    margin: 0;
    color: var(--primary-color);
    line-height: 1.1;
    font-weight: 700;
}

.stat-content p {
    margin: 5px 0 0;
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Section Global --- */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    display: block;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
}

/* --- Cards (Focus Areas, Programs) --- */
.card,
.program-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid #eee;
    transition: var(--transition);
}

.card:hover,
.program-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-10px);
}

.card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* --- About Section (Why Choose Us) --- */
.why-choose-section {
    position: relative;
    background: white;
}

.about-image-wrapper {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}

.about-main-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 20px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 182, 6, 0.3);
    border: 5px solid white;
}

.badgenumber {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}

.badgetext {
    font-size: 0.9rem;
    font-weight: 600;
}

.sub-title {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    background: rgba(255, 182, 6, 0.1);
    padding: 5px 15px;
    border-radius: 50px;
}

.about-heading {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    border-left: 4px solid var(--secondary-color);
    padding-left: 15px;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-body);
    margin-bottom: 25px;
    line-height: 1.7;
}

.check-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 35px;
}

.check-list li {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 500;
    display: flex;
    align-items: center;
}

.check-list li i {
    color: var(--accent-color);
    /* Teal checkmarks */
    font-size: 1.2rem;
    margin-right: 12px;
}

/* Features Grid Small */
.features-grid-small {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.f-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: 0.3s;
}

.feature-item:hover .f-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: rotateY(180deg);
}

.feature-item span {
    font-weight: 600;
    color: var(--primary-color);
}


/* --- Core Values Section --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: 0.4s ease;
    border-top: 5px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-top: 5px solid var(--secondary-color);
}

.value-card .v-icon {
    width: 60px;
    height: 60px;
    background: rgba(14, 42, 71, 0.05);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
    transition: 0.3s;
}

.value-card:hover .v-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* --- Footer --- */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding-top: 80px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    /* Accent Line */
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    /* Muted white for text */
    margin-bottom: 20px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    display: block;
    margin-bottom: 12px;
    transition: 0.3s;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
    /* Slight drift effect */
}

.footer-section i {
    width: 25px;
    color: var(--secondary-color);
}

.copyright {
    text-align: center;
    padding: 25px 0;
    background: #0b2239;
    /* Slightly darker shade */
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* --- Services Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    border-color: transparent;
}

/* Service Card Contents */
.s-icon-bg {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: 0.3s;
}

.service-card:hover .s-icon-bg {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-body);
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Service List */
.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
    color: var(--primary-light);
    display: flex;
    align-items: center;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li i {
    color: var(--accent-color);
    margin-right: 12px;
    font-size: 0.8rem;
}

/* Tags */
.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: #f4f7fc;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
}

/* Process Section */
.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    flex-wrap: wrap;
    gap: 20px;
}

.step-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
    position: relative;
    z-index: 2;
}

.step-circle {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.step-item:hover .step-circle {
    background: var(--secondary-color);
    color: var(--white);
    transform: scale(1.1);
}

.step-item h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.step-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.step-arrow {
    color: #ddd;
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
}

/* --- Collaborations Page --- */
.partners-grid-styled {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.partner-logo-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid #eee;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.partner-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.partner-logo-img {
    max-height: 80px;
    max-width: 100%;
    margin-bottom: 20px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.3s;
}

.partner-logo-card:hover .partner-logo-img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.partner-logo-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

/* Feature List (Why Collaborate) */
.feature-list-check {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.check-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.check-item i {
    width: 50px;
    height: 50px;
    background: rgba(14, 42, 71, 0.1);
    /* Primary light */
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.check-item h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.check-item p {
    font-size: 0.95rem;
    color: var(--text-body);
}

/* --- Page Headers (Internal Pages) --- */
.page-header {
    background: linear-gradient(rgba(14, 42, 71, 0.9), rgba(14, 42, 71, 0.9)), url('../images/hero-bg.jpg');
    /* Reuse generic bg */
    padding: 100px 0;
    text-align: center;
    color: var(--white);
    margin-bottom: 60px;
}

.page-header h1 {
    color: var(--white);
    font-size: 3rem;
}

/* --- Programs Page --- */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.program-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.program-img-wrapper {
    position: relative;
    height: 200px;
    background: #f0f0f0;
    overflow: hidden;
}

.program-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.program-card:hover .program-img-wrapper img {
    transform: scale(1.1);
}

/* Fallback Icon Placeholders */
.no-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.icon-bg-1 {
    background: linear-gradient(135deg, #FF9966, #FF5E62);
}

/* Orange/Red */
.icon-bg-2 {
    background: linear-gradient(135deg, #56CCF2, #2F80ED);
}

/* Blue */
.icon-bg-3 {
    background: linear-gradient(135deg, #11998e, #38ef7d);
}

/* Green */
.icon-bg-4 {
    background: linear-gradient(135deg, #8E2DE2, #4A00E0);
}

/* Purple */
.icon-bg-5 {
    background: linear-gradient(135deg, #2c3e50, #4ca1af);
}

/* Steel/Slate */

.category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.program-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.program-content h3 {
    margin: 0 0 15px;
    font-size: 1.25rem;
    color: var(--primary-color);
}

.program-content p {
    color: var(--text-body);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.read-more-btn {
    align-self: flex-start;
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.read-more-btn:hover {
    gap: 12px;
    color: var(--primary-color);
}


/* Modern Stat Card */
.modern-stat-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #001a33 100%);
    border-radius: 30px;
    padding: 50px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(11, 34, 57, 0.3);
    transition: transform 0.3s;
}

.modern-stat-card:hover {
    transform: translateY(-10px);
}

.stat-bg-overlay {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    animation: rotate 20s linear infinite;
    z-index: 1;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.stat-content-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-circle-large {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.icon-circle-large i {
    font-size: 3.5rem;
    color: var(--secondary-color);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    margin: 0;
    line-height: 1;
    background: linear-gradient(to right, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    /* Fix lint */
    -webkit-text-fill-color: transparent;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 10px;
    font-weight: 500;
}

.stat-decoration-line {
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    margin-top: 25px;
    border-radius: 2px;
}

.benefit-cards {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #f5f5f5;
    transition: 0.3s;
}

.benefit-card:hover {
    transform: translateX(10px);
    border-color: var(--secondary-color);
}

.benefit-card i {
    font-size: 1.5rem;
    margin-top: 3px;
    background: rgba(255, 193, 7, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.benefit-card h4 {
    margin: 0 0 5px;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.benefit-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-body);
}

/* --- Contact Page --- */
.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
}

.info-card .icon-box {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-card h4 {
    margin: 0 0 5px;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.info-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.5;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.contact-form-wrapper h3 {
    margin-bottom: 25px;
    color: var(--primary-color);
    font-size: 1.5rem;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--bg-light);
}

.styled-form .form-group {
    margin-bottom: 20px;
}

.styled-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
    font-size: 0.9rem;
}

.styled-form input,
.styled-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    transition: 0.3s;
    font-family: inherit;
}

.styled-form input:focus,
.styled-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    background: #fcfcfc;
}

/* --- Mobile --- */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        box-shadow: var(--shadow-card);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .btn-nav {
        display: none;
    }

    /* Hide CTA on mobile or keep if small */
    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .highlights {
        margin-top: 0;
        padding-top: 50px;
    }
}

/* --- CTA Redesign --- */
.cta-redesign-section {
    padding: 100px 0;
    background: #f4f7fc;
}

.cta-card-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--primary-color);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(14, 93, 12, 0.2);
}

.cta-text-side {
    padding: 60px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-text-side h2 {
    color: white !important;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-text-side p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 35px;
    line-height: 1.7;
}

.cta-image-side {
    position: relative;
    min-height: 400px;
}

.cta-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 15px 25px;
    border-radius: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 14px 35px;
    margin-left: 15px;
    border-radius: 30px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-color);
}

@media (max-width: 991px) {
    .cta-card-wrapper {
        grid-template-columns: 1fr;
    }

    .cta-text-side {
        padding: 40px;
        order: 2;
    }

    .cta-image-side {
        min-height: 300px;
        order: 1;
    }
}

/* --- News Premium Split Section --- */
.row-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
}

.col {
    flex: 1;
}


.section-title-left {
    margin-bottom: 20px;
}

.section-title-left .sub-title {
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.section-title-left h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 0;
}

.news-list-premium {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-item-horizontal {
    display: flex;
    align-items: stretch;
    /* Ensure height matches for alignment */
    background: #fdfdfd;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.4s;
    border: 1px solid #f0f0f0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.news-item-horizontal:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--secondary-color);
}

.ni-img {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
}

.ni-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ni-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ni-date {
    font-size: 0.8rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.ni-content h4 {
    margin: 0 0 10px;
    font-size: 1.15rem;
    color: var(--primary-color);
    transition: 0.3s;
}

.news-item-horizontal:hover h4 {
    color: var(--secondary-color);
}

.ni-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #777;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .row-flex {
        flex-direction: column;
    }

    .news-intro-side {
        text-align: center;
    }

    .section-title-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .news-item-horizontal {
        flex-direction: column;
    }

    .ni-img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }
}

/* --- Programs Modern UI --- */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 35px;
}

.program-card-modern {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
    min-width: 0;
    /* Standard Grid Fix */
}

.program-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 50, 0, 0.1);
    border-color: rgba(14, 93, 12, 0.1);
}

.prog-image-box {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    overflow: hidden;
}

.prog-image-box img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.8s ease;
}

.program-card-modern:hover .prog-image-box img {
    transform: scale(1.1) rotate(1deg);
}

.prog-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4.5rem;
}

.prog-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 6px 18px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.prog-info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.prog-info h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.6rem;
    font-weight: 700;
}

.prog-desc {
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.prog-features {
    margin-bottom: 30px;
    padding: 20px;
    background: #f9fff8;
    border-radius: 12px;
    border: 1px solid #edf7ed;
}

.prog-features h4 {
    font-size: 0.85rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.prog-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.prog-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #444;
}

.prog-features li:last-child {
    margin-bottom: 0;
}

.prog-features li i {
    color: var(--accent-color);
    font-size: 0.85rem;
}

.prog-footer {
    margin-top: auto;
}

.btn-apply-main {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a9c17 100%);
    color: white !important;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(14, 93, 12, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-apply-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: 0.3s;
}

.btn-apply-main:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(14, 93, 12, 0.35);
    gap: 18px;
    background: linear-gradient(135deg, #1a9c17 0%, var(--primary-color) 100%);
}

.btn-apply-main:hover::before {
    opacity: 1;
}

/* Benefit Cards in Programs */
.benefit-card-simple {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.benefit-card-simple:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 50, 0, 0.05);
}

.benefit-card-simple i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: 0.3s;
}

.benefit-card-simple:hover i {
    transform: scale(1.1);
    color: var(--secondary-color);
}

.benefit-card-simple h4 {
    margin-bottom: 12px;
    color: var(--primary-color);
    font-size: 1.25rem;
}

.benefit-card-simple p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* --- Advanced UI Utilities --- */
.bg-shell {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.3;
    pointer-events: none;
}

.shell-1 {
    width: 600px;
    height: 600px;
    background: rgba(14, 93, 12, 0.05);
    top: -200px;
    left: -100px;
}

.shell-2 {
    width: 500px;
    height: 500px;
    background: rgba(255, 182, 6, 0.05);
    bottom: -100px;
    right: -50px;
}

.mesh-bg {
    background-image: radial-gradient(var(--primary-color) 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    opacity: 0.05;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Glassmorphism Refinement */
.program-card-modern {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 35px rgba(0, 50, 0, 0.04);
}

.program-card-modern:hover {
    box-shadow: 0 30px 60px rgba(0, 40, 0, 0.12);
    border-color: var(--primary-color);
}

/* Benefit Card Halos */
.benefit-card-simple {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.benefit-card-simple::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 182, 6, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: 0.5s;
    z-index: -1;
}

.benefit-card-simple:hover::before {
    width: 300px;
    height: 300px;
}

/* --- News Premium Overhaul --- */
.news-item-horizontal {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    margin-bottom: 25px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.news-item-horizontal:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.calendar-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    min-width: 60px;
    height: 70px;
    border-radius: 12px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
    border-top: 5px solid var(--primary-color);
    margin-right: 20px;
}

.calendar-badge .day {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.calendar-badge .month {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #888;
}

.btn-view-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: 0.3s;
}

.btn-view-all:hover {
    color: var(--secondary-color);
    gap: 15px;
}

/* Image Scaling Normalization & Overflow Fixes */
.news-side-img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    display: block;
}

.news-side-image {
    margin-top: 35px;
    position: relative;
    z-index: 1;
}

.main-about-img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    border-radius: 30px;
    display: block;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.about-visuals {
    position: relative;
    padding-right: 20px;
}

.main-img-wrapper {
    position: relative;
    border-radius: 30px;
}

.news-intro-side {
    padding-right: 40px;
    margin-bottom: 40px;
}

.news-items-side {
    padding-left: 10px;
}


.about-text-content {
    padding-left: 20px;
}




@media (max-width: 768px) {

    .main-hero-img,
    .news-side-img,
    .main-about-img {
        max-height: 350px;
    }
}

/* --- Projects Section --- */
.projects-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.filter-btn {
    padding: 10px 25px;
    border: 1px solid #ddd;
    border-radius: 30px;
    background: white;
    color: var(--text-body);
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.project-img-box {
    width: 100%;
    height: 160px;
    /* Reduced height for standard card look */
    overflow: hidden;
    position: relative;
    background: #f0f0f0;
    border-bottom: 1px solid #eee;
}

.project-logo-overlay {
    position: absolute;
    bottom: -20px;
    right: 15px;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border: 2px solid white;
}

.project-logo-overlay img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain !important;
    width: auto !important;
    height: auto !important;
    object-position: center;
}

.project-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    object-position: top center;
    /* Focus on top of image */
    transition: 0.5s;
    display: block;
}

.project-card:hover .project-img-box img {
    transform: scale(1.05);
}

.project-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-year {
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.project-title {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.project-abstract {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-project-details {
    margin-top: auto;
    align-self: flex-start;
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 2px;
    transition: 0.3s;
}

.btn-project-details:hover {
    color: var(--secondary-color);
}

/* Project Details Page */
.project-details-hero {
    background: var(--bg-light);
    padding: 60px 0;
    margin-bottom: 50px;
}

.project-info-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 40px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .project-info-grid {
        grid-template-columns: 1fr;
    }
}