/* ====== CSS Reset & Base Styles ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* =========================================================
   ULTRA-PREMIUM HEADER STYLES - COMPLETELY NEW DESIGN
   ========================================================= */

/* Header Foundation */
.premium-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Elegant Announcement Strip */
.announcement-strip {
    background: linear-gradient(135deg, #002B49 0%, #001a2e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.announcement-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; transform: translateZ(0); }
    100% { left: 100%; transform: translateZ(0); }
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 10px 24px;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
}

.announcement-pulse {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); transform: translateZ(0); }
    50% { box-shadow: 0 0 0 8px rgba(255,255,255,0); transform: translateZ(0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); transform: translateZ(0); }
}

.announcement-label {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.announcement-text {
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.2px;
}

.announcement-dismiss {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin-left: auto;
}

.announcement-dismiss:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

/* Main Navigation - Ultra Premium */
.main-navigation {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.main-navigation.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 
        0 8px 32px -8px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.02);
}
.nav-container {
    max-width: none;
    margin: 0;
    padding: 0 20px;
    display: grid;
    grid-template-columns: minmax(180px, auto) 1fr auto;
    align-items: center;
    gap: 40px;
    min-height: 88px;
    width: 100%;
}

/* Brand Zone - Official Logo */
.brand-zone {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    min-width: 0;
    max-width: 500px;
    overflow: hidden;
}

.brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.brand-link:hover {
    transform: translateY(-1px);
}

.official-logo {
    height: 60px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Responsive logo sizing for mobile */
@media (max-width: 768px) {
    .official-logo {
        height: 45px;
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .official-logo {
        height: 35px;
        max-width: 140px;
    }
}

@media (max-width: 390px) {
    .official-logo {
        height: 30px;
        max-width: 120px;
    }
}

/* Old logo styles removed - now using official logo image */

/* Old brand hover effects removed */

/* Old brand content styles removed - now using official logo image only */

/* Navigation Links Zone - Masterpiece */
.nav-links-zone {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100%;
    overflow: visible;
    min-width: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 48px;
    align-items: center;
    height: 100%;
    position: relative;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    padding: 0 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.link-text {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    color: #000;
    font-weight: 500;
}

.link-effect {
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 0;
    height: 2px;
    background: #002B49;
    border-radius: 0;
    transform: translateX(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover .link-text {
    color: #002B49;
    transform: translateY(-1px);
}

.nav-link:hover .link-effect,
.nav-link.active .link-effect {
    width: 100%;
}

/* Hide active link's underline when hovering over other links */
.nav-menu:hover .nav-link.active:not(:hover) .link-effect {
    width: 0;
}

.nav-link.active .link-text {
    color: #002B49;
    font-weight: 600;
}

/* Dynamic highlight bar */
.nav-highlight {
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 40px;
    background: linear-gradient(135deg, rgba(0, 43, 73, 0.08), rgba(0, 43, 73, 0.12));
    border-radius: 20px;
    transform: translateY(-50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    z-index: 1;
}

.nav-menu:hover .nav-highlight {
    opacity: 1;
}
/* Action Zone - Spectacular */
.action-zone {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    flex-shrink: 0;
    min-width: fit-content;
}

.search-component {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 280px;
    height: 44px;
    padding: 0 48px 0 20px;
    border: 2px solid transparent;
    border-radius: 22px;
    background: #f8f9fa;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 2px 8px -2px rgba(0, 0, 0, 0.1) inset,
        0 0 0 1px rgba(0, 0, 0, 0.05) inset;
}

.search-input:focus {
    background: white;
    border-color: #002B49;
    box-shadow: 
        0 0 0 4px rgba(0, 43, 73, 0.1),
        0 2px 12px -4px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

.search-icon {
    position: absolute;
    right: 16px;
    width: 18px;
    height: 18px;
    color: #333;
    pointer-events: none;
    transition: color 0.3s ease;
}

.search-input:focus + .search-icon {
    color: #002B49;
}

.search-backdrop {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #002B49, #F1C400);
    border-radius: 24px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.search-input:focus ~ .search-backdrop {
    opacity: 0.1;
}

.login-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 24px;
    background: linear-gradient(135deg, #111 0%, #333 100%);
    color: white;
    text-decoration: none;
    border-radius: 22px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 16px -4px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.login-text {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.login-shimmer {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

.login-button:hover {
    background: linear-gradient(135deg, #002B49 0%, #F1C400 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 32px -8px rgba(0, 43, 73, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.login-button:hover .login-shimmer {
    transform: rotate(45deg) translateX(100%);
}

.login-button:hover .login-text {
    transform: translateY(-1px);
}

/* Beautiful Separator Line */
.header-separator {
    height: 1px;
    background: rgba(0, 0, 0, 0.2);
    margin: 0;
    position: relative;
    width: 100%;
}

/* Square Hamburger Menu */
.hamburger-toggle {
    width: 56px;
    height: 56px;
    display: none; /* Hidden by default on desktop */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.8);
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0;
}

.hamburger-toggle:hover {
    border-color: rgba(0, 0, 0, 0.9);
    background: rgba(0, 43, 73, 0.02);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.1);
}

.hamburger-line {
    width: 18px;
    height: 2px;
    background: #1a1a1a;
    border-radius: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-toggle:hover .hamburger-line {
    background: #002B49;
}

.hamburger-toggle[aria-expanded="true"] {
    border-color: rgba(0, 0, 0, 0.9);
    background: rgba(0, 43, 73, 0.08);
}

.hamburger-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
    background: #002B49;
}

.hamburger-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
    background: #002B49;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: transparent;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    cursor: pointer;
    gap: 4px;
    transition: all 0.3s ease;
}

.toggle-line {
    width: 20px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-toggle:hover {
    border-color: #002B49;
    background: rgba(0, 43, 73, 0.05);
}

.mobile-toggle.active .toggle-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-toggle.active .toggle-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-toggle.active .toggle-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 32px -8px rgba(0, 0, 0, 0.1);
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu-content {
    padding: 24px 32px;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-nav-link:hover {
    background: rgba(0, 43, 73, 0.08);
    color: #002B49;
    transform: translateX(8px);
}

.mobile-nav-link.active {
    background: rgba(0, 43, 73, 0.2);
    color: #ffffff;
    font-weight: 600;
    border-bottom: 2px solid #ffffff;
}

.mobile-nav-link.special {
    background: linear-gradient(135deg, #111 0%, #333 100%);
    color: white;
    margin-top: 16px;
}

.mobile-nav-link.special:hover {
    background: linear-gradient(135deg, #002B49 0%, #F1C400 100%);
    transform: translateX(0) scale(1.02);
}

/* Responsive Design */
@media (max-width: 1400px) {
    .nav-container {
        max-width: 1200px;
        grid-template-columns: minmax(180px, auto) 1fr minmax(auto, 360px);
        gap: 32px;
    }
    
    .nav-menu {
        gap: 32px;
    }
    
    .search-input {
        width: 240px;
    }
}

/* Additional breakpoint for smaller laptops */
@media (max-width: 1280px) {
    .nav-container {
        grid-template-columns: minmax(160px, auto) 1fr auto;
        gap: 32px;
    }
    
    .official-logo {
        height: 55px;
    }
    
    .nav-menu {
        gap: 28px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .search-input {
        width: 200px;
    }
    
    .action-zone {
        gap: 20px;
    }
}

@media (max-width: 1200px) {
    .nav-container {
        grid-template-columns: minmax(140px, auto) 1fr auto;
        gap: 24px;
        padding: 0 16px;
    }
    
    .nav-menu {
        gap: 24px;
    }
    
    .search-input {
        width: 180px;
    }
    
    .nav-link {
        font-size: 13px;
    }
}

/* Switch to hamburger menu before navigation overflows */
@media (max-width: 1150px) {
    .nav-container {
        grid-template-columns: 1fr auto;
        gap: 20px;
    }
    
    .nav-links-zone {
        display: none !important; /* Hide desktop navigation */
    }
    
    .search-component {
        display: none;
    }
    
    .login-button {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hamburger-toggle {
        display: flex !important; /* Show hamburger menu */
    }
    
    .action-zone {
        gap: 16px;
        justify-content: flex-end;
    }
}

@media (max-width: 1024px) {
    .nav-container {
        grid-template-columns: 1fr auto;
        gap: 24px;
        min-height: 72px;
    }
    
    .nav-links-zone {
        display: none;
    }
    
    .action-zone {
        gap: 16px;
        display: flex; /* Ensure action zone is visible */
    }
    
    .search-component {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hamburger-toggle {
        display: flex; /* Show hamburger on tablets and mobile */
    }
    
    .logo-inner {
        width: 56px;
        height: 56px;
        font-size: 20px;
    }
    
    .brand-name {
        font-size: 20px;
    }
    
    .brand-motto {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 16px;
        min-height: 64px;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px;
    }
    
    .announcement-content {
        padding: 8px 20px;
        font-size: 13px;
    }
    
    .announcement-label,
    .announcement-text {
        font-size: 13px;
    }
    
    .official-logo {
        height: 45px;
        max-width: 280px;
    }
    
    .brand-zone {
        display: flex; /* Ensure logo is visible */
        min-width: 0;
        max-width: 280px;
    }
    
    .action-zone {
        display: flex; /* Ensure hamburger area is visible */
    }
    
    .hamburger-toggle {
        display: flex; /* Show hamburger on mobile */
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 12px;
        min-height: 56px;
        gap: 10px;
    }
    
    .official-logo {
        height: 38px;
        max-width: 200px;
    }
    
    .brand-zone {
        flex-shrink: 1; /* Allow brand zone to shrink if needed */
        min-width: 0; /* Prevent overflow */
        max-width: 200px;
    }
    
    .hamburger-toggle {
        width: 44px;
        height: 44px;
        flex-shrink: 0; /* Prevent hamburger from shrinking */
    }
    
    .hamburger-line {
        width: 16px;
    }
}

@media (max-width: 390px) {
    .nav-container {
        padding: 0 10px;
        min-height: 52px;
        gap: 8px;
    }
    
    .official-logo {
        height: 32px;
        max-width: 160px;
    }
    
    .brand-zone {
        max-width: 160px;
    }
    
    .hamburger-toggle {
        width: 40px;
        height: 40px;
    }
    
    .hamburger-line {
        width: 14px;
    }
}

/* Header spacing offset for page content */
body {
    padding-top: 130px; /* Adjust based on header height */
}

@media (max-width: 1024px) {
    body {
        padding-top: 110px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 100px;
    }
}
.search-btn:hover {background:#002B49;color:#fff;transform:scale(1.05);}
.btn-login {background:linear-gradient(135deg,#111 0%,#1a1a1a 100%);color:#fff;padding:18px 36px;border-radius:26px;font-size:14px;font-weight:700;text-decoration:none;box-shadow:0 12px 32px -14px rgba(0,0,0,.6),0 4px 12px -2px rgba(0,0,0,.2);transition:all .4s cubic-bezier(.23,1,.32,1);letter-spacing:.5px;display:inline-flex;align-items:center;gap:10px;position:relative;overflow:hidden;}
.btn-login::before {content:'';position:absolute;inset:0;background:linear-gradient(135deg,#002B49,#F1C400);opacity:0;transition:opacity .4s;}
.btn-login:hover {transform:translateY(-4px);box-shadow:0 20px 44px -18px rgba(0,43,73,.6),0 8px 20px -4px rgba(0,0,0,.3);}
.btn-login:hover::before {opacity:1;}
.btn-login:hover > * {position:relative;z-index:1;}
.btn-login:active {transform:translateY(-2px);}
.nav-toggle {display:none;flex-direction:column;gap:6px;width:62px;height:62px;align-items:center;justify-content:center;border:1px solid #d1d1d1;background:#fff;border-radius:18px;cursor:pointer;transition:border-color .25s,background .25s,box-shadow .35s;}
.nav-toggle:hover {border-color:#002B49;}
.nav-toggle .bar {width:22px;height:2px;background:#222;transition:transform .4s,opacity .3s,background .3s;border-radius:2px;}
.nav-toggle.is-active .bar:nth-child(1){transform:translateY(7px) rotate(45deg);} 
.nav-toggle.is-active .bar:nth-child(2){opacity:0;} 
.nav-toggle.is-active .bar:nth-child(3){transform:translateY(-7px) rotate(-45deg);} 
.mobile-nav {background:#fff;border-top:1px solid #eee;box-shadow:0 14px 30px -14px rgba(0,0,0,.18);padding:20px 0;}
.mobile-nav ul {list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:6px;}
.mobile-nav a {padding:12px 24px;text-decoration:none;color:#222;font-weight:500;display:block;position:relative;}
.mobile-nav a:hover {background:#f5f5f7;color:#002B49;}
.mobile-nav a:active {background:#efefef;}
.mobile-nav[hidden]{display:none !important;}

/* Header spacing offset for rest of page */
body.has-header-offset .hero {margin-top:0;}

/* Responsive breakpoints for ultra-sophisticated layout */
@media (max-width:1400px){
    .nav-inner{grid-template-columns:300px minmax(700px,1fr) 380px;gap:60px;padding:0 50px;}
    .nav-list{gap:60px;}
    .search-field{width:280px;}
}
@media (max-width:1200px){
    .nav-inner{grid-template-columns:280px minmax(600px,1fr) 340px;gap:50px;padding:0 40px;}
    .nav-list{gap:48px;}
    .search-field{width:250px;}
    .logo-box{width:76px;height:76px;font-size:28px;}
    .brand-title{font-size:24px;}
}
@media (max-width:1100px){
    .nav-inner{grid-template-columns:260px minmax(500px,1fr) 320px;gap:40px;padding:0 32px;}
    .nav-list{gap:36px;}
    .search-field{width:220px;}
}
@media (max-width:1000px){
    .nav-list{gap:28px;}
    .nav-list .nav-link{font-size:14px;padding:14px 8px;}
}
@media (max-width:960px){
    .nav-list{display:none;}
    .nav-toggle{display:flex;}
    .search-shell{display:none;}
    .btn-login{display:none;}
    .brand-title{font-size:22px;}
    .logo-box{width:68px;height:68px;font-size:26px;}
    .nav-inner{min-height:100px;grid-template-columns:240px 1fr auto;gap:24px;padding:0 28px;}
    .hero{margin-top:140px;min-height:75vh;padding:70px 0 55px;}
    .hero-title{font-size:2.8rem;}
}
@media (max-width:560px){
    .brand-tagline{display:none;}
    .logo-box{width:48px;height:48px;font-size:18px;}
    .nav-inner{min-height:74px;}
    .annc-text{font-size:13px;}
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ====== Typography ====== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* ====== Top Notification Bar ====== */
.notification-bar {
    background: #002B49;
    color: white;
    padding: 8px 0;
    font-size: 14px;
    text-align: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
}

.notification-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.notification-icon {
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #002B49;
    font-weight: bold;
}

.notification-text {
    font-weight: 500;
}

/* ====== Navigation ====== */
.navbar {
    position: fixed;
    top: 42px; /* Account for notification bar */
    width: 100%;
    background: white;
    border-bottom: 1px solid #e5e5e5;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 80px;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.logo {
    width: 60px;
    height: 60px;
    background: #002B49;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 24px;
    font-weight: 700;
}

.brand-text {
    font-size: 20px;
    font-weight: 400;
    color: #333;
    letter-spacing: -0.02em;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
    color: #002B49;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.search-container {
    position: relative;
}

.search-input {
    width: 250px;
    padding: 8px 40px 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background: #f8f9fa;
}

.search-input:focus {
    outline: none;
    border-color: #002B49;
    background: white;
}

.search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 14px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 1px;
}

/* ====== ULTRA-BREATHTAKING HERO SECTION ====== */
.breathtaking-hero {
    position: relative;
    min-height: 85vh;
    background: #ffffff;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 20px;
    padding: 0;
}

.hero-container {
    max-width: none;
    margin: 0;
    padding: 0 clamp(15px, 2vw, 20px) 0 clamp(40px, 6vw, 60px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 8vw, 80px);
    align-items: center;
    min-height: 90vh;
    width: 100%;
}

/* Left Content Zone */
.hero-content-zone {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 3vw, 32px);
    animation: slideInLeft 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.eyebrow-text {
    font-size: clamp(12px, 1.4vw, 14px);
    font-weight: 600;
    color: #002B49;
    letter-spacing: clamp(1px, 0.2vw, 2px);
    text-transform: uppercase;
}

.eyebrow-line {
    width: clamp(40px, 6vw, 60px);
    height: 2px;
    background: linear-gradient(90deg, #002B49 0%, #F1C400 100%);
    border-radius: 2px;
}

/* Mega Title Styling */
.hero-mega-title {
    font-size: clamp(2.4rem, 5vw, 6rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.03em;
    color: #000;
    margin: 0;
}

.title-line {
    display: block;
    white-space: nowrap;
    animation: titleReveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(40px);
}

.title-line-1 { animation-delay: 0.3s; }
.title-line-2 { animation-delay: 0.5s; }
.title-line-3 { animation-delay: 0.7s; }

.title-blue {
    color: #002B49;
}

.highlight-word {
    background: linear-gradient(135deg, #002B49 0%, #F1C400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* Description */
.hero-description {
    max-width: clamp(400px, 50vw, 520px);
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.hero-text {
    font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.6;
    color: #666;
    margin: 0;
    font-weight: 400;
}

/* Action Zone */
.hero-action-zone {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.hero-cta-button {
    background: #002B49;
    color: white;
    border: none;
    padding: clamp(14px, 1.8vw, 18px) clamp(24px, 3.2vw, 32px);
    border-radius: clamp(6px, 0.8vw, 8px);
    font-size: clamp(14px, 1.6vw, 16px);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.2vw, 12px);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 32px -8px rgba(0, 43, 73, 0.3);
}

.hero-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 48px -8px rgba(0, 43, 73, 0.5);
    background: #001a2e;
}

.cta-arrow {
    transition: transform 0.3s ease;
}

.hero-cta-button:hover .cta-arrow {
    transform: translateX(4px);
}

.cta-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.hero-cta-button:hover .cta-shimmer {
    left: 100%;
}

.hero-secondary-button {
    background: none;
    border: none;
    color: #000;
    font-size: clamp(14px, 1.6vw, 16px);
    font-weight: 500;
    cursor: pointer;
    position: relative;
    padding: clamp(6px, 0.8vw, 8px) 0;
}

.secondary-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #002B49;
    transition: width 0.3s ease;
}

.hero-secondary-button:hover .secondary-underline {
    width: 100%;
}

/* Right Visual Zone - ELEGANT CURVED SHOWCASE */
.hero-visual-zone {
    position: relative;
    height: clamp(450px, 60vh, 650px);
    animation: slideInRight 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
    opacity: 0;
    transform: translateX(40px);
}

.elegant-showcase {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Curved Image Container */
.curved-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: clamp(600px, 60vw, 800px);
    max-height: clamp(500px, 50vh, 700px);
    border-radius: clamp(20px, 3vw, 30px);
    /* Curved bottom-left corner like your example */
    border-bottom-left-radius: clamp(80px, 10vw, 120px);
    overflow: hidden;
    background: #f8f9fa;
}

/* Golden Animated Border */
.golden-border {
    position: absolute;
    top: -18px;
    left: -18px;
    right: -18px;
    bottom: -18px;
    border-radius: clamp(25px, 4vw, 48px);
    border-bottom-left-radius: clamp(70px, 12vw, 138px);
    background: #F1C400;
    z-index: 1;
    border: clamp(3px, 0.5vw, 6px) solid #F1C400;
    box-shadow: 
        0 0 clamp(15px, 2vw, 25px) rgba(241, 196, 0, 0.8),
        inset 0 0 clamp(15px, 2vw, 25px) rgba(241, 196, 0, 0.3),
        0 0 clamp(30px, 4vw, 50px) rgba(241, 196, 0, 0.4);
    animation: goldenPulse 2s ease-in-out infinite alternate;
}

.golden-border::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 51px;
    border-bottom-left-radius: 141px;
    background: linear-gradient(45deg, 
        #F1C400 0%, 
        #FFD700 25%, 
        #FFA500 50%, 
        #FFD700 75%, 
        #F1C400 100%
    );
    background-size: 300% 300%;
    animation: goldenFlow 3s linear infinite;
    z-index: -1;
}

.golden-glow {
    position: absolute;
    top: -25px;
    left: -25px;
    right: -25px;
    bottom: -25px;
    border-radius: 55px;
    border-bottom-left-radius: 145px;
    background: radial-gradient(circle, 
        rgba(241, 196, 0, 0.8) 0%,
        rgba(255, 215, 0, 0.6) 30%,
        rgba(255, 165, 0, 0.4) 60%,
        transparent 100%
    );
    filter: blur(20px);
    animation: goldenGlow 3s ease-in-out infinite;
    z-index: -2;
}

/* Image Display Container */
.image-display {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    border-bottom-left-radius: 120px;
    overflow: hidden;
    z-index: 2;
    background: white;
}

/* Showcase Images */
.showcase-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.1) translateZ(0);
    transition: opacity 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(1.05) contrast(1.1) saturate(1.2);
    z-index: 1;
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    content-visibility: auto;
}

.showcase-image.active {
    opacity: 1;
    transform: scale(1) translateZ(0);
    z-index: 2;
}

.showcase-image.fade-out {
    opacity: 0;
    transform: scale(0.95) translateZ(0);
    z-index: 1;
}

.showcase-image.fade-in {
    opacity: 1;
    transform: scale(1) translateZ(0);
    z-index: 2;
}

/* Navigation Arrows - Always visible for better UX */
.showcase-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(0, 102, 204, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.8;
    pointer-events: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.curved-image-container:hover .showcase-arrow {
    opacity: 1;
    background: rgba(255, 255, 255, 1);
}

.showcase-arrow-prev {
    left: 20px;
}

.showcase-arrow-next {
    right: 20px;
}

.showcase-arrow:hover {
    background: rgba(0, 102, 204, 0.1);
    border-color: rgba(0, 102, 204, 0.6);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.2);
}

.showcase-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.showcase-arrow svg {
    color: #0066cc;
    transition: color 0.3s ease;
}

.showcase-arrow:hover svg {
    color: #004999;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 25px;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.carousel-indicator:hover {
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.5);
}

.carousel-indicator.active {
    width: 30px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 1);
}

/* Image Overlay */
.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    z-index: 3;
    pointer-events: none;
}

.gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to top, 
        rgba(0, 43, 73, 0.8) 0%, 
        rgba(0, 43, 73, 0.4) 50%,
        transparent 100%
    );
}

.content-label {
    position: absolute;
    bottom: 25px;
    left: 25px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.5px;
}

/* Golden Border Animations */
@keyframes goldenFlow {
    0% {
        background-position: 0% 0%;
        transform: rotate(0deg);
    }
    25% {
        background-position: 100% 0%;
        transform: rotate(0.5deg);
    }
    50% {
        background-position: 100% 100%;
        transform: rotate(0deg);
    }
    75% {
        background-position: 0% 100%;
        transform: rotate(-0.5deg);
    }
    100% {
        background-position: 0% 0%;
        transform: rotate(0deg);
    }
}

@keyframes goldenPulse {
    0% {
        opacity: 0.8;
        transform: scale(1);
        box-shadow: 
            0 0 25px rgba(241, 196, 0, 0.8),
            inset 0 0 25px rgba(241, 196, 0, 0.3),
            0 0 50px rgba(241, 196, 0, 0.4);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
        box-shadow: 
            0 0 35px rgba(241, 196, 0, 1),
            inset 0 0 35px rgba(241, 196, 0, 0.5),
            0 0 70px rgba(241, 196, 0, 0.6);
    }
    100% {
        opacity: 0.9;
        transform: scale(1);
        box-shadow: 
            0 0 30px rgba(241, 196, 0, 0.9),
            inset 0 0 30px rgba(241, 196, 0, 0.4),
            0 0 60px rgba(241, 196, 0, 0.5);
    }
}

@keyframes goldenGlow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .curved-image-container {
        max-width: 750px;
        max-height: 600px;
        border-bottom-left-radius: 100px;
    }
    
    .golden-border {
        border-bottom-left-radius: 118px;
        top: -15px;
        left: -15px;
        right: -15px;
        bottom: -15px;
        border-radius: 45px;
    }
    
    .golden-glow {
        border-bottom-left-radius: 122px;
        top: -19px;
        left: -19px;
        right: -19px;
        bottom: -19px;
        border-radius: 49px;
    }
    
    .image-display {
        border-bottom-left-radius: 100px;
    }
}

@media (max-width: 768px) {
    .hero-visual-zone {
        height: 400px;
    }
    
    .curved-image-container {
        max-width: 350px;
        max-height: 400px;
        border-bottom-left-radius: 80px;
    }
    
    .golden-border {
        border-bottom-left-radius: 84px;
    }
    
    .golden-glow {
        border-bottom-left-radius: 82px;
    }
    
    .image-display {
        border-bottom-left-radius: 80px;
    }
    
    .elegant-showcase {
        padding: 10px;
    }
    
    .content-label {
        font-size: 14px;
        bottom: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .curved-image-container {
        max-width: 280px;
        max-height: 320px;
        border-bottom-left-radius: 60px;
    }
    
    .golden-border {
        border-bottom-left-radius: 64px;
    }
    
    .golden-glow {
        border-bottom-left-radius: 62px;
    }
    
    .image-display {
        border-bottom-left-radius: 60px;
    }
}

/* Ambient Background Elements */
.hero-ambient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: drift 20s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 43, 73, 0.1) 0%, transparent 70%);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(241, 196, 0, 0.08) 0%, transparent 70%);
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

.ambient-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #002B49;
    border-radius: 50%;
    animation: particleFloat 15s linear infinite;
}

.particle-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.particle-2 {
    top: 60%;
    right: 25%;
    animation-delay: 5s;
}

.particle-3 {
    bottom: 30%;
    left: 60%;
    animation-delay: 10s;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    50% { transform: translateY(-20px) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(-1deg); }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.1; }
}

@keyframes drift {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(20px, -30px); }
    50% { transform: translate(-10px, -20px); }
    75% { transform: translate(30px, 10px); }
}

@keyframes particleFloat {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) translateX(50px); opacity: 0; }
}

/* Responsive Design */
@media (max-width: 1600px) {
    .hero-mega-title {
        font-size: clamp(2.2rem, 4.8vw, 5rem);
    }
}

@media (max-width: 1400px) {
    .hero-mega-title {
        font-size: clamp(2rem, 4.2vw, 4.2rem);
    }
}

@media (max-width: 1200px) {
    .hero-mega-title {
        font-size: clamp(1.8rem, 3.8vw, 3.6rem);
    }
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
        padding: 0 20px;
    }
    
    .hero-visual-zone {
        height: 400px;
    }
    
    .hero-mega-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
}

@media (max-width: 768px) {
    .breathtaking-hero {
        min-height: auto;
        padding: 40px 0;
    }
    
    .hero-container {
        min-height: auto;
        padding: 0 20px;
    }
    
    .hero-action-zone {
        flex-direction: column;
        gap: 20px;
    }
    
    .floating-card {
        padding: 16px;
    }
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ====== Buttons ====== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: #2c5aa0;
    color: white;
}

.btn-primary:hover {
    background: #1e3a5f;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #2c5aa0;
}

/* ====== Sections ====== */
.section {
    padding: 80px 0;
    content-visibility: auto;
    contain-intrinsic-size: auto 800px;
}

.section-gray {
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-title {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.2rem;
    color: #666;
}

/* Portfolio Action Button */
.portfolio-action-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 32px;
    margin-bottom: 48px;
}

.view-portfolio-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #F1C400 0%, #FFD700 100%);
    color: #002B49;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 24px -6px rgba(241, 196, 0, 0.5),
        0 4px 12px -2px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    letter-spacing: 0.5px;
}

.view-portfolio-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 16px 40px -8px rgba(241, 196, 0, 0.6),
        0 8px 20px -4px rgba(0, 0, 0, 0.3);
}

.view-portfolio-btn:active {
    transform: translateY(-1px);
}

.view-portfolio-btn .btn-text {
    position: relative;
    z-index: 2;
}

.view-portfolio-btn .btn-arrow {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.view-portfolio-btn:hover .btn-arrow {
    transform: translateX(4px);
}

.view-portfolio-btn .btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
    z-index: 1;
}

.view-portfolio-btn:hover .btn-shimmer {
    left: 100%;
}

@media (max-width: 768px) {
    .view-portfolio-btn {
        padding: 16px 32px;
        font-size: 0.95rem;
    }
}

/* ====== About Section ====== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h3 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5aa0;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}



/* ====== Events Section ====== */
.events-list {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.event-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    align-items: center;
}

.event-date {
    background: #2c5aa0;
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    min-width: 80px;
}

.event-date .day {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}

.event-date .month {
    font-size: 0.8rem;
    text-transform: uppercase;
}

.event-info h3 {
    color: #2c5aa0;
    margin-bottom: 5px;
}

.event-info p {
    color: #666;
    margin: 0;
}

.event-link {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
}

/* ====== Footer ====== */
.footer {
    background: #002B49;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: #fff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-logo {
    height: 40px;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

/* ====== Utility Classes ====== */
.text-center {
    text-align: center;
}

/* ====== Responsive Design ====== */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .nav-right {
        display: none;
    }

    .search-container {
        display: none;
    }

    .navbar .container {
        padding: 0 15px;
        height: 60px;
    }

    .navbar {
        top: 42px;
    }

    .hero {
        margin-top: 102px;
        height: calc(100vh - 102px);
    }

    .brand-text {
        font-size: 16px;
    }

    .logo {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    /* Footer Mobile Optimization */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .footer-section {
        padding: 0 20px;
    }

    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .footer-section p {
        font-size: 0.95rem;
        line-height: 1.6;
        max-width: 500px;
        margin: 0 auto;
    }

    .footer-section ul li {
        margin-bottom: 12px;
    }

    .footer-section a {
        font-size: 0.95rem;
        display: inline-block;
        padding: 5px 0;
    }

    .footer-logo {
        height: 50px;
        margin-bottom: 20px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .social-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .social-link {
        padding: 10px 16px;
        font-size: 0.95rem;
    }

    .footer-bottom {
        margin-top: 30px;
        padding-top: 20px;
        font-size: 0.9rem;
    }

    .event-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    .container {
        padding: 0 15px;
    }

    .section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    /* Footer Extra Small Mobile Optimization */
    .footer {
        padding: 30px 0 15px;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-section {
        padding: 0 15px;
    }

    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .footer-section p {
        font-size: 0.9rem;
    }

    .footer-section a {
        font-size: 0.9rem;
    }

    .footer-logo {
        height: 45px;
        margin-bottom: 15px;
    }

    .social-links {
        gap: 10px;
    }

    .social-link {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .footer-bottom {
        margin-top: 25px;
        padding-top: 15px;
        font-size: 0.85rem;
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* ==========================================
   INNOVATION CHALLENGE PREVIEW SECTION
========================================== */

.innovation-preview-section {
    padding: clamp(60px, 8vh, 80px) 0;
    background: #002B49;
    position: relative;
    overflow: hidden;
}

.innovation-preview-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 8vw, 80px);
    align-items: center;
    max-width: clamp(1200px, 90vw, 1600px);
    margin: 0 auto;
    padding: 0 clamp(15px, 3vw, 20px);
}

/* Left Video Zone */
.preview-video-zone {
    position: relative;
    animation: slideInLeft 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
    opacity: 0;
    transform: translateX(-40px);
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 10px 20px -4px rgba(0, 0, 0, 0.3);
    background: #000;
}

.youtube-iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

/* Right Content Zone */
.preview-content-zone {
    max-width: 500px;
    animation: slideInRight 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
    opacity: 0;
    transform: translateX(40px);
}

.preview-eyebrow {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    animation: slideInLeft 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    opacity: 0;
    transform: translateX(-30px);
}

.preview-eyebrow .eyebrow-text {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #F1C400;
    background: linear-gradient(135deg, #F1C400 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.preview-eyebrow .eyebrow-line {
    height: 2px;
    width: 60px;
    background: linear-gradient(90deg, #F1C400 0%, #FFD700 100%);
    border-radius: 2px;
}

/* Preview Title */
.preview-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: white;
}

/* Mission Content */
.mission-content {
    margin-bottom: 32px;
}

.mission-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: white;
    font-weight: 400;
    margin-bottom: 0;
}

/* Impact Metrics */
.impact-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 4vw, 40px);
    margin-bottom: 40px;
    padding: 32px 0;
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.metric-number {
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: #F1C400;
    display: inline-block;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #F1C400 0%, #FFD700 50%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    white-space: nowrap;
}

.impact-metrics .metric-label {
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    color: white !important;
    font-weight: 500;
    line-height: 1.4;
    max-width: none;
    display: block;
}

/* Count-up Animation Styles */
.metric-number {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.metric-number.counting {
    animation: glow 0.5s ease-in-out infinite alternate;
}

.metric-number.count-complete {
    animation: none;
}

.metric-number.bounce-effect {
    animation: bounceComplete 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes glow {
    0% {
        filter: drop-shadow(0 0 5px rgba(241, 196, 0, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 15px rgba(241, 196, 0, 0.6));
    }
}

@keyframes bounceComplete {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}

/* Learn More Button */
.preview-action {
    margin-top: 32px;
}

.learn-more-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
}

.learn-more-button:hover {
    color: white;
    transform: translateX(4px);
}

.learn-more-button .button-text {
    position: relative;
}

.learn-more-button .button-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #F1C400 0%, #FFD700 100%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 8px rgba(241, 196, 0, 0.4);
}

.learn-more-button:hover .button-text::after {
    width: 100%;
    box-shadow: 0 0 12px rgba(241, 196, 0, 0.6);
}

.learn-more-button .button-arrow {
    transition: transform 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.learn-more-button .button-arrow svg {
    color: white;
    width: 16px;
    height: 16px;
}

.learn-more-button:hover .button-arrow {
    transform: translateX(4px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Mission Content */
.mission-content {
    margin-bottom: 50px;
    animation: slideInLeft 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
    opacity: 0;
    transform: translateX(-30px);
}

.mission-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #002B49;
    margin-bottom: 20px;
}

.mission-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: white;
    font-weight: 400;
}

/* Impact Metrics */
.impact-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    animation: slideInLeft 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
    opacity: 0;
    transform: translateX(-30px);
}

.metric-card {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 
        0 10px 30px -8px rgba(0, 43, 73, 0.1),
        0 4px 12px -4px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #F1C400 0%, #FFD700 100%);
}

.metric-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px -8px rgba(0, 43, 73, 0.15),
        0 8px 20px -4px rgba(0, 0, 0, 0.1);
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #F1C400 0%, #FFD700 50%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Read More Button */
.preview-action {
    animation: slideInLeft 1s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
    opacity: 0;
    transform: translateX(-30px);
}

.read-more-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    background: #002B49;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 
        0 8px 24px -4px rgba(0, 43, 73, 0.3),
        0 4px 12px -2px rgba(0, 0, 0, 0.1);
}

.read-more-button:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 32px -4px rgba(0, 43, 73, 0.4),
        0 6px 16px -2px rgba(0, 0, 0, 0.15);
}

.read-more-button .button-arrow {
    transition: transform 0.3s ease;
}

.read-more-button:hover .button-arrow {
    transform: translateX(4px);
}

.button-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.6s ease;
}

.read-more-button:hover .button-shimmer {
    left: 100%;
}

/* Right Creative Image Zone */
.preview-image-zone {
    position: relative;
    height: 600px;
    animation: slideInRight 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
    opacity: 0;
    transform: translateX(40px);
}

.creative-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-image-frame {
    position: relative;
    width: 400px;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px -12px rgba(0, 43, 73, 0.25),
        0 10px 20px -4px rgba(0, 0, 0, 0.1);
    animation: floatGentle 6s ease-in-out infinite;
    z-index: 2;
}

.preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.floating-image-frame:hover .preview-image {
    transform: scale(1.05);
}

.image-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, 
        rgba(0, 43, 73, 0.8) 0%, 
        rgba(0, 43, 73, 0.4) 50%,
        transparent 100%
    );
    pointer-events: none;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        rgba(241, 196, 0, 0.2) 0%, 
        rgba(255, 215, 0, 0.3) 100%
    );
    filter: blur(1px);
}

.element-1 {
    width: 60px;
    height: 60px;
    top: 10%;
    right: -10%;
    animation: floatElement 8s ease-in-out infinite;
}

.element-2 {
    width: 40px;
    height: 40px;
    bottom: 20%;
    left: -5%;
    animation: floatElement 6s ease-in-out infinite 2s;
}

.element-3 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 10%;
    animation: floatElement 10s ease-in-out infinite 1s;
}

/* Creative Background */
.creative-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-shape {
    position: absolute;
    background: linear-gradient(135deg, 
        rgba(241, 196, 0, 0.1) 0%, 
        rgba(255, 215, 0, 0.15) 100%
    );
    border-radius: 50%;
    filter: blur(40px);
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation: driftSlow 20s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: 15%;
    animation: driftSlow 25s ease-in-out infinite 5s;
}

.bg-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(241, 196, 0, 0.05) 0%,
        transparent 70%
    );
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: breathe 8s ease-in-out infinite;
}

/* Animations */
@keyframes floatGentle {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
    }
    50% { 
        transform: translateY(-15px) rotate(1deg);
    }
}

@keyframes floatElement {
    0%, 100% { 
        transform: translateY(0) translateX(0);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-20px) translateX(10px);
        opacity: 1;
    }
}

@keyframes driftSlow {
    0%, 100% { 
        transform: translate(0, 0);
    }
    25% { 
        transform: translate(20px, -15px);
    }
    50% { 
        transform: translate(-10px, -25px);
    }
    75% { 
        transform: translate(15px, 10px);
    }
}

@keyframes breathe {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.5;
    }
}

/* ====== PREVIOUS WINNERS SECTION ====== */
.previous-winners-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: clamp(80px, 12vh, 120px) 0;
    position: relative;
    overflow: hidden;
}

.previous-winners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(241, 196, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 43, 73, 0.02) 0%, transparent 50%);
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.winners-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(60px, 8vh, 80px);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #002B49;
    margin: 0 0 20px 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: clamp(1.1rem, 1.5vw, 1.25rem);
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.winners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: clamp(30px, 4vw, 40px);
    align-items: start;
}

/* Winner Card Styling */
.winner-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 10px 30px -5px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    animation: cardEntrance 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    cursor: pointer;
}

.winner-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #F1C400 0%, #FFD700 100%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.winner-card:hover::after {
    width: 100%;
}

.winner-card:nth-child(1) { animation-delay: 0.1s; }
.winner-card:nth-child(2) { animation-delay: 0.2s; }
.winner-card:nth-child(3) { animation-delay: 0.3s; }

.winner-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(241, 196, 0, 0.2);
}

.winner-card:hover .business-name {
    color: #F1C400;
    transform: translateX(8px);
}

.winner-card:hover .business-description {
    color: #555;
}

.card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.winner-card:hover .card-image img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg, 
        rgba(0, 43, 73, 0) 0%, 
        rgba(0, 43, 73, 0.1) 60%,
        rgba(0, 43, 73, 0.3) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.winner-card:hover .card-overlay {
    opacity: 1;
}

.card-content {
    padding: clamp(24px, 3vw, 32px);
}

.business-name {
    font-size: clamp(1.4rem, 2vw, 1.6rem);
    font-weight: 700;
    color: #002B49;
    margin: 0 0 16px 0;
    line-height: 1.3;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.business-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0 0 24px 0;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.winner-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.winner-year {
    font-size: 0.9rem;
    color: #002B49;
    font-weight: 600;
    padding: 6px 12px;
    background: rgba(241, 196, 0, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(241, 196, 0, 0.2);
}

.category-tag {
    font-size: 0.85rem;
    color: white;
    font-weight: 500;
    padding: 6px 14px;
    background: linear-gradient(135deg, #002B49 0%, #1a4d6b 100%);
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.explore-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    background: transparent;
    color: #000;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-decoration: none;
}

.explore-more-btn .btn-text {
    position: relative;
}

.explore-more-btn .btn-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #000 0%, #333 100%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.explore-more-btn:hover .btn-text::after {
    width: 100%;
}

.explore-more-btn:hover {
    color: #333;
}

.btn-arrow {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #000;
}

.explore-more-btn:hover .btn-arrow {
    transform: translateX(4px);
    color: #333;
}

/* Winner Actions Container */
.winner-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

/* View Website Button */
.view-website-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    background: transparent;
    color: #002B49;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-decoration: none;
}

.view-website-btn .btn-text {
    position: relative;
}

.view-website-btn .btn-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #002B49 0%, #0066cc 100%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.view-website-btn:hover .btn-text::after {
    width: 100%;
}

.view-website-btn:hover {
    color: #0066cc;
}

.view-website-btn .btn-arrow {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #002B49;
}

.view-website-btn:hover .btn-arrow {
    transform: translate(2px, -2px);
    color: #0066cc;
}

@keyframes cardEntrance {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ====== UPCOMING EVENTS SECTION ====== */
.upcoming-events-section {
    background: #ffffff;
    padding: 120px 0;
    position: relative;
}

.events-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Section Header */
.events-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e7eb;
}

.events-title {
    font-size: 2.25rem;
    font-weight: 400;
    color: #111827;
    margin: 0;
    letter-spacing: -0.025em;
}

.browse-all-btn {
    color: #6b7280;
    text-decoration: underline;
    font-size: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 400;
    transition: color 0.2s ease;
}

.browse-all-btn:hover {
    color: #374151;
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Event Card - Matching Reference Design */
.event-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: #d1d5db;
}

/* Date Header */
.event-date-header {
    padding: 20px 24px 16px 24px;
    border-bottom: 1px solid #f3f4f6;
    background: #ffffff;
}

.event-day {
    font-size: 0.875rem;
    color: #9ca3af;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.025em;
}

/* Event Image - Large and Prominent */
.event-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.event-card:hover .event-image img {
    transform: scale(1.05);
}

/* Event Content */
.event-content {
    padding: 24px;
}

.event-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 24px 0;
    line-height: 1.4;
    letter-spacing: -0.025em;
}

.event-details {
    margin: 0;
}

.event-location {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    padding-top: 20px;
    border-top: 1px solid #f3f4f6;
}

.location-text {
    color: #374151;
    font-weight: 500;
}

.event-time {
    color: #6b7280;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .events-container {
        max-width: 1400px;
        padding: 0 40px;
    }
    
    .events-grid {
        gap: 35px;
    }
}

@media (max-width: 1024px) {
    .upcoming-events-section {
        padding: 100px 0;
    }
    
    .events-container {
        padding: 0 30px;
    }
    
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .events-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 60px;
    }
    
    .events-title {
        font-size: 2rem;
    }
    
    .event-image {
        height: 240px;
    }
}

@media (max-width: 768px) {
    .upcoming-events-section {
        padding: 80px 0;
    }
    
    .events-container {
        padding: 0 20px;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .events-title {
        font-size: 1.875rem;
    }
    
    .events-header {
        margin-bottom: 50px;
    }
    
    .event-image {
        height: 220px;
    }
    
    .event-content {
        padding: 20px;
    }
    
    .event-title {
        font-size: 1.25rem;
    }
}


/* Innovation Preview Responsive Design */
@media (max-width: 1024px) {
    .innovation-preview-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .preview-content-zone {
        max-width: 100%;
    }
    
    .video-container {
        max-width: 700px;
        height: 400px;
    }
    
    .impact-metrics {
        grid-template-columns: repeat(3, 1fr);
        gap: clamp(16px, 3vw, 24px);
        padding: 24px 0;
    }
    
    .floating-image-frame {
        width: 350px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .innovation-preview-section {
        padding: 80px 0;
    }
    
    .innovation-preview-container {
        gap: 40px;
        padding: 0 20px;
    }
    
    .video-container {
        max-width: 100%;
        height: 300px;
    }
    
    .impact-metrics {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
        padding: 20px 0;
    }
    
    .metric-item {
        align-items: center;
        text-align: center;
    }
    
    .floating-image-frame {
        width: 300px;
        height: 350px;
    }
    
    .preview-image-zone {
        height: 400px;
    }
}

/* Previous Winners Responsive Design */
@media (max-width: 1200px) {
    .winners-grid {
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .previous-winners-section {
        padding: 60px 0;
    }
    
    .winners-container {
        padding: 0 20px;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .winners-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .winner-card {
        border-radius: 16px;
    }
    
    .card-image {
        height: 240px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .winner-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .explore-more-btn {
        justify-content: flex-start;
    }
}

/* =========================================================
   ULTRA-DISTINGUISHED UPCOMING EVENTS SECTION
   ========================================================= */

/* Section Foundation */
.distinguished-events-section {
    position: relative;
    background: linear-gradient(135deg, #f8fffe 0%, #ffffff 50%, #f1f8ff 100%);
    padding: 120px 0;
    overflow: hidden;
}

/* Background Artwork */
.events-background-artwork {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(241, 196, 0, 0.3), transparent),
        radial-gradient(2px 2px at 40% 70%, rgba(0, 43, 73, 0.2), transparent),
        radial-gradient(1px 1px at 90% 40%, rgba(241, 196, 0, 0.4), transparent),
        radial-gradient(1px 1px at 10% 60%, rgba(0, 43, 73, 0.3), transparent);
    background-repeat: no-repeat;
    background-size: 300px 300px, 400px 400px, 200px 200px, 350px 350px;
    animation: floatParticles 20s ease-in-out infinite;
}

.gradient-mesh {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 180deg at 50% 50%, 
        rgba(241, 196, 0, 0.05) 0deg, 
        rgba(0, 43, 73, 0.08) 60deg, 
        rgba(241, 196, 0, 0.03) 120deg, 
        rgba(0, 43, 73, 0.06) 180deg, 
        rgba(241, 196, 0, 0.05) 240deg, 
        rgba(0, 43, 73, 0.04) 300deg, 
        rgba(241, 196, 0, 0.05) 360deg);
    animation: rotateMesh 30s linear infinite;
}

/* Container */
.events-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* Elegant Header */
.events-header {
    text-align: center;
    margin-bottom: 80px;
}

.header-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    gap: 20px;
}

.ornament-line {
    height: 1px;
    width: 80px;
    background: linear-gradient(90deg, transparent 0%, #F1C400 50%, transparent 100%);
}

.center-diamond {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #F1C400 0%, #e6b800 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 32px rgba(241, 196, 0, 0.3);
    animation: gentlePulse 3s ease-in-out infinite;
}

.events-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 700;
    color: #002B49;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #002B49 0%, #004080 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.events-subtitle {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Magnificent Events Gallery */
.events-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

/* Event Masterpiece Cards */
.event-masterpiece {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(241, 196, 0, 0.1);
}

.event-masterpiece::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(241, 196, 0, 0.05) 0%, 
        transparent 30%, 
        transparent 70%, 
        rgba(0, 43, 73, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.event-masterpiece:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 8px 20px rgba(241, 196, 0, 0.15);
}

.event-masterpiece:hover::before {
    opacity: 1;
}

/* Event Artwork */
.event-artwork {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.event-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-masterpiece:hover .event-image {
    transform: scale(1.05);
}

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.1) 0%, 
        rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 20px;
}

.event-date-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 12px 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.date-month {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #F1C400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.date-day {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #002B49;
    line-height: 1;
    margin-top: 2px;
}

.shimmer-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.4) 50%, 
        transparent 100%);
    animation: shimmerMove 3s ease-in-out infinite;
}

/* Event Details */
.event-details {
    padding: 32px;
    position: relative;
    z-index: 2;
}

.event-category {
    margin-bottom: 16px;
}

.category-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-badge.premium {
    background: linear-gradient(135deg, #F1C400 0%, #e6b800 100%);
    color: white;
}

.category-badge.exclusive {
    background: linear-gradient(135deg, #002B49 0%, #004080 100%);
    color: white;
}

.category-badge.ultimate {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    color: white;
}

.event-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #002B49;
    margin-bottom: 16px;
    line-height: 1.3;
}

.event-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
    padding: 20px;
    background: rgba(248, 250, 252, 0.8);
    border-radius: 12px;
    border-left: 3px solid #F1C400;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: #555;
}

.meta-icon {
    color: #F1C400;
    flex-shrink: 0;
}

/* Event Action Button */
.event-action-btn {
    width: 100%;
    background: linear-gradient(135deg, #002B49 0%, #004080 100%);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.event-action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        transparent 100%);
    transition: left 0.5s ease;
}

.event-action-btn:hover::before {
    left: 100%;
}

.event-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 43, 73, 0.3);
}

/* Elegant Call-to-Action */
.events-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.8) 0%, 
        rgba(248, 250, 252, 0.9) 100%);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(241, 196, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.events-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, 
        rgba(241, 196, 0, 0.1) 0deg, 
        transparent 60deg, 
        rgba(0, 43, 73, 0.1) 120deg, 
        transparent 180deg, 
        rgba(241, 196, 0, 0.1) 240deg, 
        transparent 300deg, 
        rgba(241, 196, 0, 0.1) 360deg);
    animation: rotateBackground 20s linear infinite;
    z-index: -1;
}

.cta-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #002B49;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #002B49 0%, #004080 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.master-cta-btn {
    background: linear-gradient(135deg, #F1C400 0%, #e6b800 100%);
    color: #002B49;
    border: none;
    padding: 20px 48px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.master-cta-btn:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-magic-border {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #F1C400, #002B49, #F1C400);
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.master-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(241, 196, 0, 0.4);
}

.master-cta-btn:hover .btn-magic-border {
    opacity: 1;
    animation: borderGlow 2s ease-in-out infinite;
}

/* Animations */
@keyframes floatParticles {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(-5px) rotate(-1deg); }
}

@keyframes rotateMesh {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes gentlePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 32px rgba(241, 196, 0, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 12px 40px rgba(241, 196, 0, 0.4); }
}

@keyframes shimmerMove {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

@keyframes rotateBackground {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes borderGlow {
    0%, 100% { background: linear-gradient(45deg, #F1C400, #002B49, #F1C400); }
    25% { background: linear-gradient(45deg, #002B49, #F1C400, #002B49); }
    50% { background: linear-gradient(45deg, #F1C400, #002B49, #F1C400); }
    75% { background: linear-gradient(45deg, #002B49, #F1C400, #002B49); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .events-gallery {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
    }
    
    .events-container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .distinguished-events-section {
        padding: 80px 0;
    }
    
    .events-container {
        padding: 0 20px;
    }
    
    .events-header {
        margin-bottom: 60px;
    }
    
    .events-title {
        font-size: 2.5rem;
    }
    
    .events-subtitle {
        font-size: 1.1rem;
    }
    
    .events-gallery {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 60px;
    }
    
    .event-artwork {
        height: 200px;
    }
    
    .event-details {
        padding: 24px;
    }
    
    .event-name {
        font-size: 1.3rem;
    }
    
    .event-meta {
        padding: 16px;
    }
    
    .events-cta {
        padding: 40px 20px;
    }
    
    .cta-content h3 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .master-cta-btn {
        padding: 16px 32px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .events-gallery {
        grid-template-columns: 1fr;
    }
    
    .event-masterpiece {
        border-radius: 16px;
    }
    
    .event-artwork {
        height: 180px;
    }
    
    .event-details {
        padding: 20px;
    }
    
    .header-ornament {
        gap: 15px;
    }
    
    .ornament-line {
        width: 60px;
    }
    
    .center-diamond {
        width: 40px;
        height: 40px;
    }
}

/* =========================================================
   HARVARD-STYLE UPCOMING EVENTS SECTION (EXACT REPLICA)
   ========================================================= */

.harvard-events-section {
    background-color: #ffffff;
    padding: 80px 0 100px;
    position: relative;
}

.harvard-events-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 80px;
}

/* Header with Browse Link */
.harvard-events-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 50px;
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 25px;
}

.harvard-events-title {
    font-size: 2.2rem;
    font-weight: 400;
    color: #333333;
    margin: 0;
    letter-spacing: -0.5px;
}

.harvard-browse-link {
    font-size: 1rem;
    color: #666666;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

.harvard-browse-link:hover {
    color: #333333;
}

/* Events Carousel Wrapper */
.events-carousel-wrapper {
    position: relative;
    padding: 0 60px;
}

@media (max-width: 768px) {
    .events-carousel-wrapper {
        padding: 0 50px;
    }
}

@media (max-width: 480px) {
    .events-carousel-wrapper {
        padding: 0 45px;
    }
}

/* Carousel Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .carousel-arrow {
        width: 44px;
        height: 44px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
    }
}

@media (max-width: 480px) {
    .carousel-arrow {
        width: 40px;
        height: 40px;
        border-width: 1.5px;
    }
}

.carousel-arrow:hover {
    background: #F1C400;
    border-color: #F1C400;
    box-shadow: 0 4px 12px rgba(241, 196, 0, 0.3);
}

.carousel-arrow:hover svg path {
    stroke: #002B49;
}

.carousel-arrow svg {
    width: 24px;
    height: 24px;
}

.carousel-arrow svg path {
    stroke: #333333;
    transition: stroke 0.3s ease;
}

.carousel-arrow-left {
    left: 0;
}

.carousel-arrow-right {
    right: 0;
}

.carousel-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-arrow:disabled:hover {
    background: #ffffff;
    border-color: #e8e8e8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Events Grid */
.harvard-events-grid {
    display: flex;
    gap: 40px;
    align-items: start;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    scroll-snap-type: x mandatory; /* Snap to cards on mobile */
}

.harvard-events-grid::-webkit-scrollbar {
    display: none;
}

/* Snap points for smooth card scrolling on mobile */
@media (max-width: 768px) {
    .harvard-events-grid {
        scroll-snap-type: x proximity;
        overscroll-behavior-x: contain;
    }
    
    .harvard-event-card {
        scroll-snap-align: start;
        scroll-snap-stop: normal;
    }
}

/* Individual Event Cards - 3 Cards Display */
.harvard-event-card {
    min-width: calc((100% - 80px) / 3);
    flex-shrink: 0;
    background: #ffffff;
    border: none;
    padding: 0;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* Hover effects - only on non-touch devices */
@media (hover: hover) and (pointer: fine) {
    .harvard-event-card:hover {
        transform: translateY(-2px);
    }
    
    .harvard-event-card:hover .event-square-image {
        transform: translateY(-3px);
        box-shadow: 
            0 12px 30px rgba(0, 0, 0, 0.4),
            0 8px 16px rgba(0, 0, 0, 0.25),
            0 4px 8px rgba(0, 0, 0, 0.15);
    }
}

/* Active state for touch devices */
@media (hover: none) and (pointer: coarse) {
    .harvard-event-card:active {
        opacity: 0.95;
    }
    
    .harvard-event-card:active .event-square-image {
        transform: scale(0.98);
    }
}

/* Event Date */
.harvard-event-date {
    margin-bottom: 6px;
}

.harvard-event-day {
    font-size: 0.8rem;
    font-weight: 400;
    color: #999999;
    letter-spacing: 0.5px;
}

/* Event Content */
.harvard-event-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.harvard-event-title {
    font-size: 1.2rem;
    font-weight: 400;
    color: #000000;
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.3px;
}

/* Event Details */
.harvard-event-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.harvard-event-venue {
    font-size: 0.8rem;
    color: #666666;
    font-weight: 400;
}

.harvard-event-time {
    font-size: 0.8rem;
    color: #666666;
    font-weight: 400;
    white-space: nowrap;
}

/* Large Event Image */
.harvard-event-image {
    margin-top: 12px;
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.event-square-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.2),
        0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: block;
}

/* Responsive Design */
@media (max-width: 1600px) {
    .harvard-events-container {
        max-width: 1400px;
        padding: 0 70px;
    }
    
    .harvard-events-grid {
        gap: 70px;
    }
}

@media (max-width: 1400px) {
    .harvard-events-container {
        max-width: 1200px;
        padding: 0 60px;
    }
    
    .harvard-events-grid {
        gap: 60px;
    }
    
    .harvard-event-card {
        min-width: 350px;
    }
    
    .harvard-event-image {
        height: 300px;
    }
    
    .event-square-image {
        height: 300px;
    }
}

@media (max-width: 1024px) {
    .harvard-events-container {
        padding: 0 40px;
    }
    
    .harvard-events-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .harvard-event-card {
        min-width: 280px;
    }
    
    .harvard-event-image {
        height: 260px;
    }
    
    .event-square-image {
        height: 260px;
    }
}

@media (max-width: 768px) {
    .harvard-events-section {
        padding: 50px 0 70px;
    }
    
    .harvard-events-container {
        padding: 0 20px;
    }
    
    .harvard-events-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 35px;
        padding-bottom: 20px;
    }
    
    .harvard-events-title {
        font-size: 1.8rem;
        letter-spacing: -0.8px;
    }
    
    .harvard-browse-link {
        font-size: 0.95rem;
    }
    
    .harvard-events-grid {
        gap: 35px;
    }
    
    .harvard-event-card {
        min-width: 85%;
        padding-right: 10px;
    }
    
    .harvard-event-date {
        margin-bottom: 8px;
    }
    
    .harvard-event-day {
        font-size: 0.85rem;
        font-weight: 500;
    }
    
    .harvard-event-content {
        gap: 8px;
        margin-bottom: 14px;
    }
    
    .harvard-event-title {
        font-size: 1.15rem;
        line-height: 1.4;
    }
    
    .harvard-event-details {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .harvard-event-venue,
    .harvard-event-time {
        font-size: 0.85rem;
    }
    
    .harvard-event-image {
        height: 220px;
        margin-top: 14px;
    }
    
    .event-square-image {
        height: 220px;
        border-radius: 2px;
    }
}

@media (max-width: 480px) {
    .harvard-events-section {
        padding: 40px 0 60px;
    }
    
    .harvard-events-container {
        padding: 0 15px;
    }
    
    .harvard-events-header {
        margin-bottom: 30px;
        padding-bottom: 18px;
    }
    
    .harvard-events-title {
        font-size: 1.5rem;
        letter-spacing: -0.6px;
    }
    
    .harvard-browse-link {
        font-size: 0.9rem;
    }
    
    .harvard-events-grid {
        gap: 30px;
    }
    
    .harvard-event-card {
        min-width: 90%;
    }
    
    .harvard-event-date {
        margin-bottom: 6px;
    }
    
    .harvard-event-day {
        font-size: 0.8rem;
    }
    
    .harvard-event-content {
        gap: 6px;
        margin-bottom: 12px;
    }
    
    .harvard-event-title {
        font-size: 1.1rem;
        line-height: 1.35;
    }
    
    .harvard-event-details {
        gap: 10px;
    }
    
    .harvard-event-venue,
    .harvard-event-time {
        font-size: 0.8rem;
    }
    
    .harvard-event-image {
        height: 200px;
        margin-top: 12px;
    }
    
    .event-square-image {
        height: 200px;
        border-radius: 2px;
    }
}

/* Extra small devices - Enhanced touch targets and better scroll */
@media (max-width: 375px) {
    .harvard-events-section {
        padding: 35px 0 50px;
    }
    
    .harvard-events-container {
        padding: 0 12px;
    }
    
    .events-carousel-wrapper {
        padding: 0 40px;
    }
    
    .carousel-arrow {
        width: 36px;
        height: 36px;
    }
    
    .carousel-arrow svg {
        width: 20px;
        height: 20px;
    }
    
    .harvard-events-header {
        margin-bottom: 25px;
        padding-bottom: 15px;
    }
    
    .harvard-events-title {
        font-size: 1.4rem;
    }
    
    .harvard-browse-link {
        font-size: 0.85rem;
    }
    
    .harvard-events-grid {
        gap: 25px;
    }
    
    .harvard-event-card {
        min-width: 95%;
    }
    
    .harvard-event-title {
        font-size: 1.05rem;
    }
    
    .harvard-event-image {
        height: 180px;
    }
    
    .event-square-image {
        height: 180px;
    }
}

/* =========================================================
   INNOVATION CHALLENGE FINALS CTA SECTION
   ========================================================= */

.finals-cta-section {
    background: linear-gradient(135deg, #002B49 0%, #001a2e 100%);
    padding: clamp(80px, 12vh, 120px) 0;
    position: relative;
    overflow: hidden;
    /* Completely disable all animations and transforms */
    animation: none !important;
    transform: none !important;
    transition: none !important;
}

.finals-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(241, 196, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.finals-cta-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(50px, 8vw, 80px);
    align-items: center;
    position: relative;
    z-index: 1;
    transform: none !important;
    animation: none !important;
    transition: none !important;
}

/* Left Content Area */
.finals-cta-content {
    opacity: 1;
    transform: none !important;
    animation: none !important;
    transition: none !important;
}

.cta-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.cta-eyebrow .eyebrow-text {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FFD700;
}

.cta-eyebrow .eyebrow-line {
    height: 2px;
    width: 60px;
    background: linear-gradient(90deg, #F1C400 0%, #FFD700 100%);
    border-radius: 2px;
}

.finals-cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
}

.finals-cta-title .title-line {
    display: block;
}

.finals-cta-title .title-line.highlight {
    background: linear-gradient(135deg, #F1C400 0%, #FFD700 50%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.finals-cta-description {
    font-size: clamp(1.1rem, 1.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
}

/* Finals Details Grid */
.finals-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(24px, 3vw, 32px);
    margin-bottom: 48px;
}

.finals-detail-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.finals-detail-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(241, 196, 0, 0.3);
}

.detail-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 10px;
    color: #002B49;
    box-shadow: 0 4px 12px rgba(0, 43, 73, 0.15);
}

.detail-icon svg {
    width: 24px;
    height: 24px;
}

.detail-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 1rem;
    color: white;
    font-weight: 600;
    line-height: 1.3;
}

/* CTA Actions */
.finals-cta-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.finals-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    background: linear-gradient(135deg, #F1C400 0%, #FFD700 100%);
    color: #002B49;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 30px -5px rgba(241, 196, 0, 0.4),
        0 0 0 0 rgba(241, 196, 0, 0);
    text-decoration: none;
}

.finals-primary-btn:hover {
    box-shadow: 
        0 20px 40px -8px rgba(241, 196, 0, 0.6),
        0 0 0 4px rgba(241, 196, 0, 0.2);
}

.finals-primary-btn .btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.finals-primary-btn .btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.finals-secondary-btn {
    display: inline-flex;
    align-items: center;
    padding: 18px 32px;
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

.finals-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Right Visual Area */
.finals-cta-visual {
    max-width: 750px;
    opacity: 1;
    position: relative;
    transform: none !important;
}

.finals-image-showcase {
    position: relative;
    border-radius: 32px;
    overflow: visible;
    padding: 8px;
    background: linear-gradient(45deg, #002B49, #F1C400, #002B49, #F1C400);
    background-size: 400% 400%;
    animation: borderFlow 3s ease infinite;
    box-shadow: 
        0 30px 60px -15px rgba(0, 0, 0, 0.5),
        0 10px 40px -8px rgba(241, 196, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    transform: none !important;
}

@keyframes borderFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.finals-image-showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    padding: 8px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, transparent 50%, rgba(255, 255, 255, 0.2) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}

.finals-image-showcase::after {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 28px;
    background: transparent;
    pointer-events: none;
    z-index: 1;
}

.finals-image-showcase:hover {
    box-shadow: 
        0 30px 60px -15px rgba(0, 0, 0, 0.5),
        0 10px 40px -8px rgba(241, 196, 0, 0.3),
        0 0 20px rgba(0, 43, 73, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.finals-hero-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
    min-height: 480px;
    border-radius: 24px;
    position: relative;
    z-index: 3;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transform: none !important;
    animation: none !important;
    transition: none !important;
    translate: none !important;
    rotate: none !important;
    scale: none !important;
    object-position: center !important;
    margin: 0 !important;
    will-change: auto !important;
}

/* Force Stop Any Inherited Animations */
.finals-cta-visual *,
.finals-image-showcase * {
    animation: none !important;
    transform: none !important;
    transition: none !important;
}

.finals-hero-image:hover {
    transform: none !important;
    animation: none !important;
}

.finals-overlay-badge {
    position: absolute;
    top: 32px;
    right: 32px;
    background: rgba(0, 43, 73, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 28px;
    border-radius: 16px;
    border: 3px solid #F1C400;
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: 
        0 10px 30px -5px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(241, 196, 0, 0.6);
}

.finals-overlay-badge .badge-text {
    font-size: 0.75rem;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.finals-overlay-badge .badge-date {
    font-size: 1.5rem;
    color: #F1C400;
    font-weight: 800;
    line-height: 1;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .finals-cta-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .finals-cta-content {
        max-width: 100%;
    }
    
    .finals-cta-visual {
        max-width: 100%;
    }
    
    .finals-details-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    
    .finals-hero-image {
        min-height: 400px;
        border-radius: 22px;
    }
    
    .finals-image-showcase {
        padding: 6px;
        border-radius: 28px;
    }
    
    .finals-image-showcase::after {
        inset: 3px;
        border-radius: 25px;
    }
}

@media (max-width: 768px) {
    .finals-cta-section {
        padding: 60px 0;
    }
    
    .finals-cta-title {
        font-size: 2rem;
    }
    
    .finals-cta-description {
        font-size: 1rem;
    }
    
    .finals-details-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .finals-detail-item {
        padding: 16px;
    }
    
    .finals-cta-actions {
        flex-direction: column;
        gap: 16px;
    }
    
    .finals-primary-btn,
    .finals-secondary-btn {
        width: 100%;
        justify-content: center;
    }
    
    .finals-overlay-badge {
        top: 16px;
        right: 16px;
        padding: 12px 18px;
    }
    
    .finals-hero-image {
        min-height: 350px;
    }
}

@media (max-width: 480px) {
    .finals-cta-title {
        font-size: 1.75rem;
    }
    
    .finals-cta-description {
        font-size: 0.95rem;
    }
    
    .detail-icon {
        width: 40px;
        height: 40px;
    }
    
    .detail-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .finals-overlay-badge .badge-date {
        font-size: 1.25rem;
    }
    
    .finals-hero-image {
        min-height: 300px;
        aspect-ratio: 16/9;
    }
}

@media (max-width: 480px) {
    .detail-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .finals-overlay-badge .badge-date {
        font-size: 1.25rem;
    }
}