/* ========================================
   CCE INDEX PAGE STYLES
   Clean & Professional Hero Design (ILO-Inspired)
   ======================================== */

:root {
    --primary-color: #ff8800;
    --primary-dark: #e67600;
    --primary-light: #ffb74d;
    --secondary-color: #252163;
    --secondary-dark: #1a0b3d;
    --text-primary: #1a202c;
    --text-secondary: #6b7280;
    --background-light: #f7fafc;
    --border-color: #e2e8f0;
}

/* ========================================
   HERO SECTION - Simple & Professional
   ======================================== */

.hero-section {
    position: relative;
    height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #252163;
}

/* Hero Image Slider */
.hero-slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.hero-overlay {
    display: none;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 75rem;
    text-align: left;
    padding: 0 2rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.hero-container {
    width: 100%;
    max-width: 37.5rem;
    position: relative;
    z-index: 2;
    padding: 2rem 2.5rem;
    background: rgba(37, 33, 99, 0.4);
    backdrop-filter: blur(0.5rem);
    border-radius: 0.375rem;
}

.hero-content-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(1.875rem);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    visibility: hidden;
}

.hero-content-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
    position: relative;
}

/* Reset animations for inactive slides */
.hero-content-slide:not(.active) .hero-kicker,
.hero-content-slide:not(.active) .hero-title,
.hero-content-slide:not(.active) .hero-subtitle,
.hero-content-slide:not(.active) .hero-actions {
    animation: none;
    opacity: 0;
    transform: translateY(1.25rem);
}

/* Animate content when slide becomes active */
.hero-content-slide.active .hero-kicker {
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-content-slide.active .hero-title {
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-content-slide.active .hero-subtitle {
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-content-slide.active .hero-actions {
    animation: fadeInUp 0.6s ease 0.4s both;
}

/* Slide Content Styles */
.hero-slide-content {
    text-align: center;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-kicker {
    font-size: 0.75rem;
    font-weight: 600;
    color: #ff8800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: block;
    position: relative;
    z-index: 10;
}



.hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    text-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.6);
    max-width: 100%;
    position: relative;
    z-index: 10;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-bottom: 0;
    max-width: 100%;
    font-weight: 400;
    text-shadow: 0 0.0625rem 0.3125rem rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 10;
}

/* Hero Actions */
.hero-actions {
    display: none;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
    border: 0.125rem solid transparent;
    position: relative;
    z-index: 15;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #ff8800 0%, #ff9900 100%);
    color: #ffffff;
    border: 0.125rem solid #ff8800;
    box-shadow: 0 0.25rem 0.9375rem rgba(255, 136, 0, 0.4);
}

.hero-btn-primary:hover {
    background: #e67600;
    border-color: #e67600;
    color: #ffffff;
    transform: translateY(-0.125rem);
    box-shadow: 0 0.5rem 1rem rgba(255, 136, 0, 0.3);
}

.hero-btn-secondary {
    background: transparent;
    color: #ff8800;
    border: 0.125rem solid #ff8800;
    box-shadow: 0 0.25rem 0.9375rem rgba(255, 136, 0, 0.2);
}

.hero-btn-secondary:hover {
    background: #ff8800;
    border-color: #ff8800;
    color: #ffffff;
    transform: translateY(-0.125rem);
    box-shadow: 0 0.375rem 1.25rem rgba(255, 136, 0, 0.4);
}

/* Hero Controls */
.hero-controls {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    display: flex;
    gap: 1rem;
}

.hero-control {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.2);
}

.hero-control.active {
    background: #ff8800;
    transform: scale(1.2);
    box-shadow: 0 0 1.25rem rgba(255, 136, 0, 0.6);
}

.hero-control:hover {
    background: #ff8800;
    transform: scale(1.1);
}

/* Mobile Responsiveness */
@media (max-width: 48rem) {
    .hero-section {
        height: 100vh;
        min-height: 80vh;
    }
    
    .hero-content {
        padding: 0 1.5rem;
        text-align: center;
        min-height: 80vh;
    }
    
    .hero-container {
        max-width: 100%;
        padding: 1.5rem 2rem;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 8vw, 2.5rem);
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: clamp(0.85rem, 3vw, 1rem);
        margin-bottom: 0;
        max-width: 100%;
    }
    
    .hero-kicker {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-actions {
        display: none;
    }
    
    .hero-controls {
        bottom: 2rem;
    }
    
    .hero-content-slide {
        transform: translateY(1.25rem);
    }
    
    .hero-content-slide.active {
        transform: translateY(0);
    }
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.hero-slider-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.slider-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 0.125rem solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(0.625rem);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.slider-dot.active {
    background: #ff8800;
    border-color: #ff8800;
    transform: scale(1.3);
    box-shadow: 0 0 1.25rem rgba(255, 136, 0, 0.5);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 11, 61, 0.85) 0%,
        rgba(46, 16, 101, 0.75) 25%,
        rgba(58, 23, 119, 0.7) 50%,
        rgba(46, 16, 101, 0.75) 75%,
        rgba(26, 11, 61, 0.85) 100%
    );
    background-size: 400% 400%;
    animation: heroGradient 20s ease infinite;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(245, 124, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(245, 124, 0, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 60% 90%, rgba(245, 124, 0, 0.08) 0%, transparent 50%);
    opacity: 0.9;
}

.hero-container {
    position: relative;
    z-index: 4;
    max-width: 87.5rem;
    margin: 0 auto;
    width: 100%;
}

.hero-content-wrapper {
    text-align: center;
    margin-bottom: 5rem;
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-badge-wrapper {
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: rgba(245, 124, 0, 0.2);
    border: 0.125rem solid rgba(245, 124, 0, 0.4);
    border-radius: 3.125rem;
    color: #ffcc80;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    backdrop-filter: blur(0.9375rem);
    margin-bottom: 3rem;
    box-shadow: 
        0 0.5rem 2rem rgba(245, 124, 0, 0.25),
        inset 0 0.0625rem 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.hero-badge:hover {
    background: rgba(245, 124, 0, 0.3);
    border-color: rgba(245, 124, 0, 0.6);
    transform: translateY(-0.1875rem) scale(1.05);
    box-shadow: 
        0 0.75rem 2.5rem rgba(245, 124, 0, 0.35),
        inset 0 0.0625rem 0 rgba(255, 255, 255, 0.2);
}

.hero-main-content {
    max-width: 56.25rem;
    margin: 0 auto;
}

.hero-main-title {
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.title-line-1,
.title-line-2 {
    display: block;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.title-line-1 {
    font-size: clamp(3rem, 8vw, 6rem);
    color: #ffffff;
    text-shadow: 0 0.25rem 1.875rem rgba(0, 0, 0, 0.3);
}

.title-line-2 {
    font-size: clamp(3.5rem, 9vw, 7rem);
    background: linear-gradient(135deg, #f57c00 0%, #ffb74d 50%, #ff9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0.25rem 1.25rem rgba(245, 124, 0, 0.4));
}

.hero-tagline {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    line-height: 1.4;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 43.75rem;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 1s both;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem 3rem;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
    z-index: 10;
    white-space: nowrap;
}

.hero-btn::before {
    display: none;
}

.hero-btn span {
    position: relative;
    z-index: 1;
}

.hero-btn svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.hero-btn:hover svg {
    transform: translateX(0.3125rem);
}

.hero-btn-primary {
    background: linear-gradient(135deg, #f57c00 0%, #e67600 100%);
    color: white !important;
    box-shadow: 0 0.5rem 1.5625rem rgba(245, 124, 0, 0.6);
    border: none;
    font-weight: 700;
}

.hero-btn-primary:hover {
    transform: translateY(-0.1875rem);
    box-shadow: 0 0.75rem 2.1875rem rgba(245, 124, 0, 0.8);
    background: linear-gradient(135deg, #ff9800 0%, #ffb74d 100%);
    color: white !important;
}

.hero-btn-secondary {
    background: white;
    color: #f57c00 !important;
    border: 0.125rem solid white;
    box-shadow: 0 0.5rem 1.5625rem rgba(255, 255, 255, 0.3);
    font-weight: 700;
}

.hero-btn-secondary:hover {
    background: #ffffff;
    border-color: white;
    transform: translateY(-0.1875rem);
    box-shadow: 0 0.75rem 2.1875rem rgba(255, 255, 255, 0.4);
    color: #f57c00 !important;
}

.hero-stats-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
    gap: 2rem;
    max-width: 62.5rem;
    margin: 0 auto;
    animation: fadeInScale 1s ease 1.4s both;
}

.hero-stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(1.25rem);
    border: 0.0625rem solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
}

.hero-stat-card:hover {
    transform: translateY(-0.3125rem) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 136, 0, 0.3);
    box-shadow: 0 0.75rem 2.5rem rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: rgba(255, 136, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon svg {
    color: #ffb74d;
    width: 1.5rem;
    height: 1.5rem;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* Enhanced Floating Elements */
.hero-floating-element {
    position: absolute;
    z-index: 5;
    opacity: 0.6;
    color: rgba(255, 136, 0, 0.7);
    animation: heroFloat 8s ease-in-out infinite;
    transition: all 0.3s ease;
}

.hero-floating-element:hover {
    opacity: 1;
    color: #ff8800;
    transform: scale(1.2);
}

.hero-float-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.hero-float-2 {
    top: 25%;
    right: 15%;
    animation-delay: -3s;
    animation-duration: 10s;
}

.hero-float-3 {
    bottom: 30%;
    left: 5%;
    animation-delay: -6s;
    animation-duration: 14s;
}

.hero-float-4 {
    bottom: 20%;
    right: 8%;
    animation-delay: -9s;
    animation-duration: 11s;
}

.hero-stat-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(1.25rem);
    border: 0.0625rem solid rgba(255, 255, 255, 0.15);
    border-radius: 1.25rem;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245, 124, 0, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-stat-card:hover {
    transform: translateY(-0.5rem);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(245, 124, 0, 0.4);
    box-shadow: 0 1.25rem 3.75rem rgba(245, 124, 0, 0.3);
}

.hero-stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    flex-shrink: 0;
    width: 3.75rem;
    height: 3.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f57c00 0%, #ff9800 100%);
    border-radius: 0.9375rem;
    color: white;
    box-shadow: 0 0.5rem 1.875rem rgba(245, 124, 0, 0.4);
    transition: all 0.4s ease;
}

.hero-stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0.75rem 2.5rem rgba(245, 124, 0, 0.6);
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    display: block;
}

/* Floating Elements */
.hero-floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: heroFloat 6s ease-in-out infinite;
}

.hero-float-1 {
    width: 18.75rem;
    height: 18.75rem;
    background: radial-gradient(circle, #f57c00 0%, transparent 70%);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.hero-float-2 {
    width: 12.5rem;
    height: 12.5rem;
    background: radial-gradient(circle, #ffb74d 0%, transparent 70%);
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.hero-float-3 {
    width: 15.625rem;
    height: 15.625rem;
    background: radial-gradient(circle, #ff9800 0%, transparent 70%);
    bottom: 15%;
    left: 15%;
    animation-delay: 4s;
}

/* Legacy button styles for compatibility */
.btn-primary {
    background: linear-gradient(90deg, #ff8800 0%, #ff9900 100%);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 3.125rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0.625rem 1.875rem rgba(255, 136, 0, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(90deg, #e67600 0%, #ff8800 100%);
    box-shadow: 0 0.9375rem 2.5rem rgba(255, 136, 0, 0.4);
    transform: translateY(-0.125rem);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 3.125rem;
    font-weight: 700;
    text-decoration: none;
    border: 0.125rem solid #fff;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #fff;
    color: #252163;
    transform: translateY(-0.125rem);
}

/* Hero Mobile Responsiveness - Maintains desktop appearance */
@media (max-width: 64em) {
    .hero-content {
        max-width: 90%;
        padding: 0 1.5rem;
    }
    
    .hero-container {
        max-width: 100%;
        padding: 1.75rem 2rem;
        background: rgba(37, 33, 99, 0.45);
    }
    
    .hero-kicker {
        font-size: 0.7rem;
        margin-bottom: 0.6rem;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.8rem);
        margin-bottom: 0.9rem;
    }
    
    .hero-subtitle {
        font-size: clamp(0.85rem, 2vw, 1rem);
        line-height: 1.5;
    }
}

@media (max-width: 48em) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 0;
    }
    
    .hero-content {
        padding: 2rem 1rem;
        min-height: 100vh;
        max-width: 100%;
    }
    
    .hero-container {
        max-width: 100%;
        padding: 1.5rem 1.75rem;
        background: rgba(37, 33, 99, 0.5);
        border-radius: 0.25rem;
    }
    
    .hero-kicker {
        font-size: 0.65rem;
        letter-spacing: 0.08em;
        margin-bottom: 0.5rem;
    }
    
    .hero-title {
        font-size: clamp(1.6rem, 7vw, 2.4rem);
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: clamp(0.8rem, 2.2vw, 0.95rem);
        line-height: 1.5;
    }
    
    .hero-controls {
        bottom: 2rem;
        gap: 0.8rem;
    }
    
    .hero-control {
        width: 0.65rem;
        height: 0.65rem;
    }
}

@media (max-width: 30em) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 0;
    }
    
    .hero-content {
        padding: 1.5rem 1rem;
        min-height: 100vh;
        max-width: 100%;
    }
    
    .hero-container {
        max-width: 100%;
        padding: 1.25rem 1.5rem;
        background: rgba(37, 33, 99, 0.55);
    }
    
    .hero-kicker {
        font-size: 0.6rem;
        letter-spacing: 0.08em;
        margin-bottom: 0.5rem;
    }
    
    .hero-title {
        font-size: clamp(1.4rem, 8vw, 2.2rem);
        line-height: 1.15;
        margin-bottom: 0.7rem;
    }
    
    .hero-subtitle {
        font-size: clamp(0.75rem, 2.5vw, 0.9rem);
        line-height: 1.4;
    }
    
    .hero-controls {
        bottom: 1.5rem;
        gap: 0.6rem;
    }
    
    .hero-control {
        width: 0.55rem;
        height: 0.55rem;
    }
}

/* ========================================
   WHO WE ARE SECTION
   ======================================== */

.who-we-are-section {
    padding: 6rem 0;
    background-color: #ffffff;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: block; /* Ensure it's not hidden */
}

.who-we-are-container {
    max-width: 90rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.who-we-are-header {
    text-align: center;
    max-width: 50rem;
    margin: 0 auto 4rem auto;
}

.who-we-are-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #252163;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.who-we-are-subtitle {
    font-size: 1.125rem;
    color: #4a4a4a;
    line-height: 1.6;
}

/* Content Layout */
.who-we-are-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
}

@media (min-width: 64em) {
    .who-we-are-content {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 5rem;
        align-items: flex-start;
    }
}

/* Text Styling */
.who-we-are-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.who-we-are-text h4 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #252163;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid #ff8800;
    line-height: 1.3;
}

.who-we-are-text p {
    font-size: 1.05rem;
    color: #333333;
    line-height: 1.7;
    margin: 0;
    text-align: justify;
}

/* Image Styling */
.who-we-are-image {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 1rem 2rem rgba(37, 33, 99, 0.1);
    background: #fff;
    height: fit-content;
}

.who-we-are-image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.who-we-are-image:hover img {
    transform: scale(1.03);
}

.image-caption {
    background: #252163;
    padding: 1.5rem;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 2;
}

.image-caption h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #ffffff;
}

.image-caption p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* Coordinator Message */
.coordinator-message {
    background: #f8f9fa;
    border-top: 4px solid #ff8800;
    padding: 3rem 2rem;
    border-radius: 0;
    box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.05);
    position: relative;
}

.message-title {
    font-size: 1.75rem;
    color: #252163;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.message-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3rem;
    height: 3px;
    background: #ff8800;
}

.message-content {
    max-width: 65rem;
    margin: 0 auto;
}

.message-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #333333;
    font-size: 1.05rem;
    text-align: justify;
}

.message-content p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 48em) {
    .who-we-are-section {
        padding: 2.5rem 0;
    }

    .who-we-are-container {
        padding: 0 1rem;
    }

    .who-we-are-header {
        margin: 0 auto 2rem auto;
    }
    
    .who-we-are-title {
        font-size: 2rem;
    }

    .who-we-are-content {
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .who-we-are-text {
        gap: 1.25rem;
    }
    
    .coordinator-message {
        padding: 1.5rem 1rem;
        margin: 0;
    }

    .message-content {
        max-width: 100%;
    }

    .message-title {
        font-size: 1.5rem;
    }
}

/* ========================================
   FACULTY ENDEAVOURS SECTION
   ======================================== */

.faculty-endeavours-section {
    width: 100%;
    background: #fff;
    padding: 5rem 2rem;
}

.faculty-endeavours-container {
    max-width: 100%;
    margin: 0;
    padding: 0 2rem;
}

.faculty-endeavours-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faculty-endeavours-title {
    font-size: 3rem;
    font-weight: 800;
    color: #252163;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.faculty-endeavours-subtitle {
    font-size: 1.3rem;
    color: #666;
    max-width: 50rem;
    margin: 0 auto;
    line-height: 1.8;
}

.faculty-endeavours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 1.5rem;
}

.faculty-endeavours-card {
    background: #fff;
    border-radius: 0;
    padding: 1.5rem;
    box-shadow: 0 0.625rem 2.5rem rgba(37, 33, 99, 0.08);
    border: 0.0625rem solid rgba(37, 33, 99, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.faculty-endeavours-card:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.9375rem 3.125rem rgba(37, 33, 99, 0.15);
    border-color: #ff8800;
}

.faculty-endeavours-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
}

.faculty-endeavours-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.faculty-endeavours-body {
    flex: 1;
}

.faculty-endeavours-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #252163;
    margin-bottom: 0.75rem;
    text-align: center;
}

.faculty-endeavours-body p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: justify;
}

.faculty-endeavours-actions {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 0.0625rem solid rgba(37, 33, 99, 0.1);
}

.faculty-endeavours-link {
    color: #ff8800;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.faculty-endeavours-link:hover {
    color: #252163;
}

/* Square corners for all index cards */
.faculty-endeavours-card,
.hero-stat-card,
.people-card,
.people-card-image,
.people-card-image img,
.company-carousel-card,
.company-carousel-logo,
.company-carousel-logo img,
.event-compact-card,
.event-compact-image,
.event-compact-image img,
.news-compact-card,
.news-compact-image,
.news-compact-image img,
.news-card,
.news-card-media,
.news-card-media img,
.involvement-card {
    border-radius: 0;
}

/* ========================================
   CCE PEOPLE SECTION
   ======================================== */

/* ===================================
   CCE People Section - Modern Carousel
   =================================== */

.cce-people-section {
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
    padding: 6rem 2rem;
}

.people-section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.people-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.people-section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--secondary-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.people-section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Carousel Container */
.people-carousel-container {
    position: relative;
    width: 100%;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
}

.people-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 1rem 0;
    margin: 0;
}

.people-carousel::-webkit-scrollbar {
    height: 6px;
}

.people-carousel::-webkit-scrollbar-track {
    background: rgba(46, 16, 101, 0.08);
}

.people-carousel::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 3px;
}

.people-carousel::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #d94600 100%);
}

/* People Card */
.people-card {
    flex: 0 0 280px;
    scroll-snap-align: center;
    background: white;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(46, 16, 101, 0.08);
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.people-card:hover {
    box-shadow: 0 12px 32px rgba(46, 16, 101, 0.15);
    transform: translateY(-6px);
    border-color: var(--primary-light);
}

.people-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-color) 100%);
}

.people-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.4s ease;
}

.people-card:hover .people-card-image img {
    transform: scale(1.08);
}

.people-card-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.people-card-name {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
    line-height: 1.2;
}

.people-card-role {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.people-card-bio {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0 0 0.75rem 0;
    flex: 1;
}

.people-card-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
}

.people-card-link {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.75rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.people-card-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 124, 0, 0.3);
}

.people-card-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--background-light);
    color: var(--primary-color);
    text-decoration: none;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.people-card-social:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.people-card-social svg {
    flex-shrink: 0;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-control-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0;
}

.carousel-control-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.carousel-control-btn:active {
    transform: scale(0.95);
}

.carousel-control-btn svg {
    flex-shrink: 0;
}

.profile-link {
    color: #252163;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.profile-link:hover {
    color: #ff8800;
}

.email-link,
.linkedin-link {
    color: #666;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.email-link:hover,
.linkedin-link:hover {
    color: #ff8800;
}

/* ========================================
   CCE COMPANIES SECTION
   ======================================== */

/* ===================================
   CCE Companies Section - Infinite Carousel
   =================================== */

.companies-section {
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
    padding: 6rem 2rem;
}

.companies-section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.companies-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.companies-section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--secondary-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.companies-section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Carousel Container */
.companies-carousel-container {
    position: relative;
    width: 100%;
}

.companies-carousel-wrapper {
    position: relative;
    width: 100%;
}

.companies-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 1.5rem 0;
    margin: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.companies-carousel::-webkit-scrollbar {
    display: none;
}

/* Company Carousel Card - Minimal Design */
.company-carousel-card {
    flex: 0 0 140px;
    scroll-snap-align: center;
    background: white;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(46, 16, 101, 0.08);
    border: 1px solid var(--border-color);
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.company-carousel-card:hover {
    box-shadow: 0 8px 24px rgba(46, 16, 101, 0.12);
    transform: translateY(-4px);
    border-color: var(--primary-light);
}

.company-carousel-card:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.company-carousel-logo {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.company-carousel-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.company-carousel-card:hover .company-carousel-logo img {
    transform: scale(1.1);
}

.company-carousel-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}

/* Carousel Controls - Hidden */
.companies-carousel-controls {
    display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .companies-section {
        padding: 4rem 2rem;
    }
    
    .company-carousel-card {
        flex: 0 0 130px;
    }
}

@media (max-width: 768px) {
    .companies-section {
        padding: 3rem 1rem;
    }
    
    .companies-section-title {
        font-size: 2rem;
    }
    
    .companies-section-subtitle {
        font-size: 1rem;
    }
    
    .companies-carousel {
        gap: 1.5rem;
    }
    
    .company-carousel-card {
        flex: 0 0 120px;
        padding: 1.25rem 0.75rem;
    }
    
    .company-carousel-logo {
        height: 70px;
    }
    
    .companies-control-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .companies-section {
        padding: 2rem 1rem;
    }
    
    .companies-section-title {
        font-size: 1.75rem;
    }
    
    .companies-section-header {
        margin-bottom: 2rem;
    }
    
    .company-carousel-card {
        flex: 0 0 110px;
        padding: 1rem 0.5rem;
    }
    
    .company-carousel-logo {
        height: 60px;
    }
    
    .company-carousel-name {
        font-size: 0.75rem;
    }
    
    .companies-control-btn {
        width: 36px;
        height: 36px;
    }
    
    .companies-carousel-controls {
        gap: 0.75rem;
        margin-top: 1.5rem;
    }
}

.company-body {
    width: 100%;
}

.company-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #252163;
    margin: 0;
}

/* ========================================
   CONFERENCES & EVENTS SECTION
   ======================================== */

/* ========================================
   HOME EVENTS SECTION - MODERN DESIGN
   ======================================== */

.home-events-section {
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 5rem 0;
}

.section-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3.5rem;
    gap: 2rem;
}

.header-content-wrapper {
    flex: 1;
}

.section-label-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ff8800;
    background: rgba(255, 136, 0, 0.1);
    padding: 0.375rem 0.875rem;
    margin-bottom: 0.875rem;
}

.section-title-modern {
    font-size: 2.5rem;
    font-weight: 800;
    color: #252163;
    margin-bottom: 0.875rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.0625rem;
    color: #6b7280;
    line-height: 1.6;
    max-width: 700px;
    text-align: justify;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: #ff8800;
    border: 2px solid #ff8800;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: #ff8800;
    color: white;
    transform: translateX(5px);
}

.home-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Compact Event Card */
.event-compact-card {
    background: white;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.event-compact-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-6px);
    border-color: #ffb74d;
}

.event-compact-card.past-event {
    opacity: 0.8;
}

.event-compact-card.past-event:hover {
    opacity: 1;
}

.event-compact-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.event-compact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-compact-card:hover .event-compact-image img {
    transform: scale(1.08);
}

.event-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.event-compact-card:hover .event-image-overlay {
    opacity: 1;
}

.event-compact-badge {
    position: absolute;
    top: 0.875rem;
    right: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.875rem;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.event-compact-badge.upcoming {
    background: rgba(16, 185, 129, 0.95);
    color: white;
}

.event-compact-badge.past {
    background: rgba(107, 114, 128, 0.95);
    color: white;
}

.event-compact-badge.featured {
    background: rgba(255, 136, 0, 0.95);
    color: white;
}

.event-compact-body {
    padding: 1.375rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.event-compact-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.875rem;
    font-size: 0.75rem;
    color: #9ca3af;
}

.compact-date,
.compact-location {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.event-compact-title {
    margin-bottom: 0.75rem;
}

.event-compact-title a {
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.3;
    color: #1a202c;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.15s ease;
}

.event-compact-title a:hover {
    color: #ff8800;
}

.event-compact-excerpt {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: #6b7280;
    margin-bottom: 1.125rem;
    flex: 1;
}

.event-compact-actions {
    display: flex;
    gap: 0.625rem;
    padding-top: 0.875rem;
    border-top: 1px solid #e2e8f0;
}

.btn-compact-learn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    background: #f7fafc;
    color: #ff8800;
    font-weight: 600;
    font-size: 0.8125rem;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
}

.btn-compact-learn:hover {
    background: #ff8800;
    color: white;
    border-color: #ff8800;
    transform: translateX(2px);
}

.btn-compact-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #ff8800 0%, #ff9900 100%);
    color: white;
    font-weight: 600;
    font-size: 0.8125rem;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.btn-compact-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 136, 0, 0.3);
}

/* Home Events Pagination */
.home-events-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid #e2e8f0;
}

.pagination-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: white;
    color: #1a202c;
    border: 1px solid #e2e8f0;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-arrow:hover {
    background: #ff8800;
    color: white;
    border-color: #ff8800;
}

.pagination-arrow.prev:hover svg {
    transform: translateX(-3px);
}

.pagination-arrow.next:hover svg {
    transform: translateX(3px);
}

.pagination-page-numbers {
    display: flex;
    gap: 0.375rem;
}

.page-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.5rem;
    background: white;
    color: #1a202c;
    border: 1px solid #e2e8f0;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-num:hover {
    background: #f7fafc;
    border-color: #ff8800;
    color: #ff8800;
}

.page-num.active {
    background: #ff8800;
    color: white;
    border-color: #ff8800;
    pointer-events: none;
}

.page-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    color: #9ca3af;
    font-weight: 600;
}

/* Legacy Events Section Styles - Kept for backward compatibility */
.events-section {
    width: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 5rem 2rem;
}

.events-section .container {
    max-width: 100%;
    margin: 0;
    padding: 0 2rem;
}

.events-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.events-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(22rem, 1fr));
    gap: 2.5rem;
}

/* Event Card Styling - Modern Vertical Layout */
.event-row {
    background: #fff;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 0.625rem 2.5rem rgba(37, 33, 99, 0.08);
    border: 0.0625rem solid rgba(37, 33, 99, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.event-row:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1.25rem 3.75rem rgba(37, 33, 99, 0.15);
    border-color: #ff8800;
}

.event-row.featured {
    border: 0.125rem solid #ff8800;
    background: linear-gradient(135deg, #fff 0%, #fffaf5 100%);
}

.event-row.featured::before {
    content: 'Featured';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ff8800 0%, #ff9900 100%);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 3;
    box-shadow: 0 0.25rem 0.75rem rgba(255, 136, 0, 0.3);
}

.event-row.past {
    opacity: 0.6;
}

.event-row.past::after {
    content: 'Past Event';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(102, 102, 102, 0.9);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 3;
}

.event-row-media {
    width: 100%;
    height: 14rem;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

.event-row-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-row:hover .event-row-media img {
    transform: scale(1.08);
}

.event-row-body {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.event-row-body h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #252163;
    margin-bottom: 1rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-row-body .meta {
    font-size: 0.9rem;
    color: #ff8800;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-row-body .meta::before {
    content: '📅';
    font-size: 1rem;
}

.event-row-body .excerpt {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-row-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding-top: 1rem;
    border-top: 0.0625rem solid rgba(37, 33, 99, 0.1);
}

.event-cta {
    background: linear-gradient(90deg, #ff8800 0%, #ff9900 100%);
    color: #fff;
    padding: 0.75rem 1.75rem;
    border-radius: 3.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0.3125rem 1.25rem rgba(255, 136, 0, 0.25);
    font-size: 0.95rem;
}

.event-cta:hover {
    background: linear-gradient(90deg, #e67600 0%, #ff8800 100%);
    box-shadow: 0 0.5rem 1.5625rem rgba(255, 136, 0, 0.35);
    transform: translateY(-0.125rem);
    color: #fff;
}

.event-link {
    color: #252163;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    padding: 0.5rem;
}

.event-link:hover {
    color: #ff8800;
}

/* ========================================
   NEWS & MEDIA SECTION - MODERN DESIGN
   ======================================== */

.home-news-section {
    width: 100%;
    background: white;
    padding: 5rem 0;
}

.home-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Compact News Card */
.news-compact-card {
    background: white;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.news-compact-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-6px);
    border-color: #ffb74d;
}

.news-compact-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.news-compact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-compact-card:hover .news-compact-image img {
    transform: scale(1.08);
}

.news-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-compact-card:hover .news-image-overlay {
    opacity: 1;
}

.news-compact-body {
    padding: 1.375rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-compact-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.875rem;
    font-size: 0.75rem;
    color: #9ca3af;
}

.compact-date,
.compact-author {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.news-compact-title {
    margin-bottom: 0.75rem;
}

.news-compact-title a {
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.3;
    color: #1a202c;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.15s ease;
}

.news-compact-title a:hover {
    color: #ff8800;
}

.news-compact-excerpt {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: #6b7280;
    margin-bottom: 1.125rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-compact-actions {
    display: flex;
    gap: 0.625rem;
    padding-top: 0.875rem;
    border-top: 1px solid #e2e8f0;
}

.btn-compact-read {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    background: #f7fafc;
    color: #ff8800;
    font-weight: 600;
    font-size: 0.8125rem;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
}

.btn-compact-read:hover {
    background: #ff8800;
    color: white;
    border-color: #ff8800;
    transform: translateX(2px);
}

/* Home News Pagination */
.home-news-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid #e2e8f0;
}

/* Legacy News Section Styles */
.news-section {
    width: 100%;
    background: #fff;
    padding: 5rem 2rem;
}

.news-section .container {
    max-width: 100%;
    margin: 0;
    padding: 0 2rem;
}

.news-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(17.5rem, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* News Card Styling */
.news-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 0.625rem 2.5rem rgba(37, 33, 99, 0.15);
    border: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 0.9375rem 3.125rem rgba(37, 33, 99, 0.25);
}

.news-card-media {
    width: 100%;
    height: 17.5rem;
    overflow: hidden;
    background: #f5f5f5;
}

.news-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-card-media img {
    transform: scale(1.05);
}

.news-card-body {
    background: linear-gradient(135deg, #252163 0%, #3a0ca3 100%);
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-card-body h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-card-body .meta {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    display: none;
}

.news-card-body .excerpt {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0;
    display: none;
}

.news-card-actions {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    display: none;
}

.news-link {
    color: #ff8800;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-link:hover {
    color: #fff;
}

.news-actions {
    text-align: center;
    margin-top: 3rem;
}

.hero-btn {
    display: inline-block;
    background: transparent;
    color: #252163;
    padding: 1rem 2.5rem;
    border-radius: 0;
    border: 0.125rem solid #252163;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: none;
}

.hero-btn:hover {
    background: #252163;
    color: #fff;
    box-shadow: none;
    transform: translateY(0);
}

/* ========================================
   GET INVOLVED SECTION
   ======================================== */

.get-involved-section {
    width: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 5rem 2rem;
}

.get-involved-container {
    max-width: 75rem;
    margin: 0 auto;
}

.get-involved-header {
    text-align: center;
    margin-bottom: 4rem;
}

.get-involved-title {
    font-size: 3rem;
    font-weight: 800;
    color: #252163;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.get-involved-subtitle {
    font-size: 1.3rem;
    color: #666;
    max-width: 50rem;
    margin: 0 auto;
    line-height: 1.8;
}

.involvement-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
    gap: 2.5rem;
}

.involvement-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    box-shadow: 0 0.625rem 2.5rem rgba(37, 33, 99, 0.08);
    border: 0.0625rem solid rgba(37, 33, 99, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.involvement-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 0.9375rem 3.125rem rgba(37, 33, 99, 0.15);
    border-color: #ff8800;
}

.involvement-icon {
    width: 5rem;
    height: 5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.involvement-card-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #252163;
    margin-bottom: 1rem;
}

.involvement-card-desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
    flex: 1;
}

.involvement-btn {
    background: linear-gradient(90deg, #ff8800 0%, #ff9900 100%);
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 3.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0.3125rem 1.25rem rgba(255, 136, 0, 0.2);
    display: inline-block;
}

.involvement-btn:hover {
    background: linear-gradient(90deg, #e67600 0%, #ff8800 100%);
    box-shadow: 0 0.5rem 1.5625rem rgba(255, 136, 0, 0.3);
    transform: translateY(-0.125rem);
    color: #fff;
}

/* ========================================
   GLOBAL IMPACT SECTION
   ======================================== */

.global-impact-section {
    width: 100%;
    background: linear-gradient(135deg, #252163 0%, #3a0ca3 100%);
    padding: 5rem 2rem;
    color: #fff;
    text-align: center;
}

.global-impact-section .section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.global-impact-section .section-desc {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 56.25rem;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.global-impact-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.global-impact-section .who-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
    gap: 3rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 1.5rem;
    backdrop-filter: blur(0.625rem);
    border: 0.0625rem solid rgba(255, 255, 255, 0.2);
    max-width: 75rem;
    margin: 0 auto;
}

.global-impact-section .who-stats .stat {
    text-align: center;
}

.global-impact-section .who-stats .stat-number {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    color: #ff8800;
    margin-bottom: 1rem;
    line-height: 1;
}

.global-impact-section .who-stats .stat-label {
    display: block;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}




/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1200px) {
    .hero-stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 64em) {
    .hero-section {
        min-height: 90vh;
        padding: 7rem 2rem 5rem;
    }
    
    .hero-content-wrapper {
        margin-bottom: 4rem;
    }
    
    .title-line-1 {
        font-size: clamp(2.5rem, 7vw, 5rem);
    }
    
    .title-line-2 {
        font-size: clamp(3rem, 8vw, 6rem);
    }
    
    .hero-tagline {
        font-size: clamp(1.125rem, 2.2vw, 1.5rem);
    }
    
    .hero-description {
        font-size: clamp(0.9375rem, 1.8vw, 1.125rem);
    }
    
    .hero-stat-card {
        padding: 1.5rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
    }
    
    .stat-number {
        font-size: 1.875rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-title .accent {
        font-size: 2rem;
    }
    
    .hero-title .accent {
        font-size: 2rem;
    }
}

@media (max-width: 48em) {
    .hero-section {
        min-height: 80vh;
        padding: 6rem 1.5rem 4rem;
    }
    
    .hero-content-wrapper {
        margin-bottom: 3rem;
    }
    
    .hero-badge {
        padding: 0.625rem 1.5rem;
        font-size: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .title-line-1 {
        font-size: 2.5rem;
    }
    
    .title-line-2 {
        font-size: 3rem;
    }
    
    .hero-tagline {
        font-size: 1.125rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-btn {
        width: 100%;
        justify-content: center;
        padding: 1.125rem 2rem;
    }
    
    .hero-stats-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-stat-card {
        padding: 1.25rem;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.875rem;
    }
    
    .hero-floating-element {
        display: none;
    }
    
    .hero-slider {
        height: 31.25rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-title .accent {
        font-size: 1.6rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .get-involved-title,
    .who-we-are-title,
    .faculty-endeavours-title,
    .section-title {
        font-size: 2.2rem;
    }
    
    .get-involved-subtitle,
    .who-we-are-subtitle,
    .faculty-endeavours-subtitle,
    .lead {
        font-size: 1.1rem;
    }
    
    .get-involved-section,
    .who-we-are-section,
    .faculty-endeavours-section,
    .people-section,
    .companies-section,
    .events-section,
    .news-section,
    .global-impact-section {
        padding: 3rem 1.5rem;
    }
    
    .involvement-options {
        grid-template-columns: 1fr;
    }
    
    .faculty-endeavours-grid {
        grid-template-columns: 1fr;
    }

    .faculty-endeavours-card {
        width: 100%;
    }
    
    .people-carousel {
        grid-template-rows: auto;
        grid-auto-columns: 17.5rem;
    }
}

/* People Section Responsive */
@media (max-width: 1024px) {
    .cce-people-section {
        padding: 4rem 2rem;
    }
    
    .people-card {
        flex: 0 0 250px;
    }
    
    .people-card-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .section-header-modern {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
        margin-bottom: 2.5rem;
    }

    .section-title-modern {
        font-size: 2rem;
    }

    .section-description {
        max-width: none;
        text-align: left;
    }

    .view-all-btn {
        width: 100%;
        justify-content: center;
    }

    .faculty-endeavours-section {
        padding: 2.5rem 1rem;
    }

    .faculty-endeavours-container {
        padding: 0;
    }

    .faculty-endeavours-header {
        margin-bottom: 2rem;
    }

    .faculty-endeavours-card,
    .people-card,
    .company-carousel-card,
    .event-compact-card,
    .news-compact-card,
    .news-card,
    .involvement-card,
    .event-row {
        width: 100%;
        margin: 0;
    }

    .people-card,
    .company-carousel-card {
        flex: 0 0 100%;
    }

    .faculty-endeavours-card,
    .event-compact-card,
    .news-compact-card,
    .news-card,
    .involvement-card,
    .people-card-content,
    .event-compact-body,
    .news-compact-body,
    .news-card-body,
    .company-carousel-card {
        padding: 1rem;
    }

    .global-impact-section .section-title {
        font-size: 2.2rem;
    }

    .global-impact-section .section-desc {
        font-size: 1.05rem;
        margin-bottom: 2rem;
        text-align: left;
    }

    .global-impact-content {
        padding: 0 1rem;
    }

    .global-impact-section .who-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
        border-radius: 1rem;
    }

    .global-impact-section .who-stats .stat-number {
        font-size: 3rem;
    }

    .global-impact-section .who-stats .stat-label {
        font-size: 1.05rem;
    }

    .cce-people-section {
        padding: 3rem 1rem;
    }
    
    .people-section-title {
        font-size: 2rem;
    }
    
    .people-section-subtitle {
        font-size: 1rem;
    }
    
    .people-carousel {
        gap: 1rem;
    }
    
    .people-card {
        flex: 0 0 220px;
    }
    
    .people-card-image {
        height: 11.25rem; /* 180px = 11.25rem (assuming 16px base) */
    }
    
    .people-card-content {
        padding: 1.25rem;
    }
    
    .carousel-control-btn {
        width: 2.5rem;
        height: 2.5rem;
    }
    .companies-grid {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .event-row {
        grid-template-columns: 1fr;
    }
    
    .event-row-media {
        height: 12.5rem;
    }
    
    .events-list {
        grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 30em) {
    .section-title-modern {
        font-size: 1.8rem;
    }

    .section-description {
        font-size: 0.98rem;
    }

    .view-all-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    .faculty-endeavours-card,
    .event-compact-card,
    .news-compact-card,
    .news-card,
    .involvement-card,
    .people-card-content,
    .event-compact-body,
    .news-compact-body,
    .news-card-body,
    .company-carousel-card {
        padding: 0.85rem;
    }

    .global-impact-section {
        padding: 2.5rem 1rem;
    }

    .global-impact-section .section-title {
        font-size: 2rem;
    }

    .global-impact-section .section-desc {
        font-size: 1rem;
    }

    .global-impact-section .who-stats {
        padding: 1.5rem 1.25rem;
        gap: 1.25rem;
    }

    .global-impact-section .who-stats .stat-number {
        font-size: 2.6rem;
    }

    .global-impact-section .who-stats .stat-label {
        font-size: 1rem;
    }

    .hero-slider {
        height: 28.125rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-title .accent {
        font-size: 1.4rem;
    }
    
    .btn-primary,
    .btn-secondary,
    .hero-btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
    }
    
    .who-we-are-title,
    .faculty-endeavours-title,
    .section-title {
        font-size: 1.8rem;
    }
    
    .who-we-are-stats .stat-number,
    .who-stats .stat-number {
        font-size: 2.2rem;
    }
    
    /* Mobile People Section */
    .cce-people-section {
        padding: 2rem 1rem;
    }
    
    .people-section-title {
        font-size: 1.75rem;
    }
    
    .people-section-header {
        margin-bottom: 2rem;
    }
    
    .people-card {
        flex: 0 0 200px;
    }
    
    .people-card-image {
        height: 160px;
    }
    
    .people-card-content {
        padding: 1rem;
    }
    
    .people-card-name {
        font-size: 1rem;
    }
    
    .carousel-control-btn {
        width: 36px;
        height: 36px;
    }
    
    .carousel-controls {
        gap: 0.75rem;
        margin-top: 1.5rem;
    }
}
