/* ==========================================================================
   PharmaNext Global Summit 2026 - Premium CSS Architecture (Light Theme)
   ========================================================================== */

/* --- Variables & Theming --- */
/*
:root {
    --color-bg: #F8FAFC; 
    --color-bg-elevated: rgba(255, 255, 255, 0.85); 
    --color-primary: #104392; 
    --color-primary-dark: #0c2e8b; 
    --color-primary-glow: rgba(16, 67, 146, 0.25);
    --color-secondary: #3ea05f; 
    --color-secondary-dark: #09823b; 
    --color-text-main: #0c2e8b; 
    --color-text-muted: #899fae; 
    --color-border: rgba(137, 159, 174, 0.25); 
    
    --font-primary: 'Inter', sans-serif;
    
    --container-max: 1200px;
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --radius-md: 12px;
    --radius-lg: 24px;
}
*/
/* // Set logo branding colors and modern light layout variables starts */
:root {
    /* Color Palette (Brand - Matching Green & Blue Logo) */
    --color-bg: #FAFDFB; /* Fresh professional biotech light tinted green-white */
    --color-bg-elevated: rgba(255, 255, 255, 0.95); 
    --color-primary: #104392; /* Logo Royal Blue */
    --color-primary-dark: #0A1C33; /* Slate Deep Blue for professional text contrast */
    --color-primary-glow: rgba(16, 67, 146, 0.12);
    --color-secondary: #09823b; /* Logo Vibrant Green */
    --color-secondary-dark: #065F2B; 
    --color-text-main: #0B192C; 
    --color-text-muted: #4B5563; 
    --color-border: rgba(16, 67, 146, 0.12); 
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    
    /* Layout & Utilities */
    --container-max: 1200px;
    --transition-fast: 0.25s ease;
    --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --radius-md: 12px;
    --radius-lg: 20px;
}
/* // Set logo branding colors and modern light layout variables ends */

/* --- Base mesh gradient shapes */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Marquee / Partners Section */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee::before, .marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.marquee::before {
    left: 0;
    background: linear-gradient(to right, #FFFFFF 0%, transparent 100%);
}

.marquee::after {
    right: 0;
    background: linear-gradient(to left, #FFFFFF 0%, transparent 100%);
}

.marquee-track {
    display: inline-block;
    animation: scroll-marquee 25s linear infinite;
}

.partner-logo {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-text-muted);
    opacity: 0.4;
    padding: 0 4rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.partner-logo:hover {
    opacity: 1;
    color: var(--color-primary);
    transform: scale(1.05);
}

@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/*
body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
*/
/* Set body background grid pattern and dynamic medical blobs starts */
html {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    background-image: 
        radial-gradient(rgba(16, 67, 146, 0.04) 1.5px, transparent 1.5px),
        radial-gradient(rgba(9, 130, 59, 0.03) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
    width: 100%;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 67, 146, 0.06) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: absolute;
    top: 800px;
    right: 10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(9, 130, 59, 0.05) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}
/* Set body background grid pattern and dynamic medical blobs ends */

.vision-card {
    background: #FFFFFF;
    border: 1px solid rgba(137, 159, 174, 0.2);
    border-radius: 20px;
    padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.btn-primary-pill {
    background-color: var(--color-primary-dark);
    color: #FFFFFF;
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-pill:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
    color: #FFFFFF;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 3vw, 3rem);
}

p {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.text-accent {
    color: var(--color-secondary); /* Vibrant Green */
}

/* --- Layout Utilities --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/*
.section-padding {
    padding: 6rem 0;
}
*/
.section-padding {
    padding: clamp(3rem, 8vw, 6rem) 0;
}


/* --- Components --- */

/* Glass Header */
.header-glass {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    transition: all var(--transition-smooth);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    gap: 2rem;
}

.header-logo-wrapper {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.header-nav {
    display: flex;
    justify-content: center;
    flex: 1;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    white-space: nowrap;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    text-decoration: none;
    color: #0F172A;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    white-space: nowrap;
}

.nav-links a {
    color: var(--color-text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--color-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Buttons */
/*
.btn-premium {
    background-color: var(--color-primary);
    color: #FFFFFF;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-premium:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--color-primary-glow);
    color: #FFFFFF;
}
*/
/* Set distinctive logo-matching gradient buttons starts */
.btn-premium {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: #FFFFFF;
    padding: 0.875rem 2.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(16, 67, 146, 0.2);
    letter-spacing: 0.02em;
}

.btn-premium:hover {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(9, 130, 59, 0.25);
    color: #FFFFFF;
}
/* Set distinctive logo-matching gradient buttons ends */

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    background: transparent;
    color: var(--color-primary);
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid var(--color-primary);
    transition: all var(--transition-smooth);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Enhancements for newly added sections starts */
.highlight-card {
    position: relative;
    background: linear-gradient(to right, rgba(16, 67, 146, 0.04) 0%, #ffffff 100%);
    border: 1px solid rgba(16, 67, 146, 0.1);
    border-left: 4px solid var(--color-primary);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(16, 67, 146, 0.08);
    border-left-color: var(--color-secondary);
    border-color: rgba(9, 130, 59, 0.2);
    background: linear-gradient(to right, rgba(9, 130, 59, 0.05), transparent);
}

.benefit-item {
    background: linear-gradient(to right, rgba(9, 130, 59, 0.03) 0%, transparent 100%);
    border-left: 3px solid rgba(9, 130, 59, 0.1);
}

.benefit-item:hover {
    background: linear-gradient(to right, rgba(9, 130, 59, 0.08) 0%, transparent 100%);
    border-left-color: var(--color-secondary);
    transform: translateX(5px);
}

.award-badge {
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    font-size: 1rem;
    color: var(--color-primary-dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all var(--transition-fast);
    cursor: default;
}

.award-badge:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(9, 130, 59, 0.1);
    border-color: var(--color-secondary);
    background: linear-gradient(to right, #FFFFFF 0%, rgba(9, 130, 59, 0.03) 100%);
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    transition: all var(--transition-fast);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icon:hover {
    background: var(--color-secondary);
    color: #FFFFFF !important;
    border-color: var(--color-secondary);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(9, 130, 59, 0.3);
}

.social-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}
/* Enhancements for newly added sections ends */

.btn-sm {
    padding: 0.6rem 1.25rem;
    font-size: 0.875rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 140px 1rem 60px 1rem; 
    overflow: hidden;
    background: url('../img/hero-bg.png') no-repeat center center/cover;
    box-sizing: border-box;
    width: 100%;
}

/* Premium Hero for Inner Pages */
.inner-hero {
    min-height: 45vh;
    display: flex;
    align-items: center;
    padding: 160px 0 80px;
    background: linear-gradient(135deg, rgba(12, 46, 139, 0.92), rgba(9, 130, 59, 0.88)), url('../images/hero-bg.jpg') no-repeat center center/cover;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.inner-hero h1 {
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    margin-bottom: 1rem;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.inner-hero .text-accent {
    color: #facc15;
}

.inner-hero p {
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.25rem;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

/* Set branding gradient for hero overlay starts */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16, 67, 146, 0.45) 0%, rgba(9, 130, 59, 0.35) 100%);
    z-index: 1;
}
/* Set branding gradient for hero overlay ends */

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 900px;
    margin: auto;
}

.hero-content h1 {
    color: #FFFFFF;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1.1;
}

.hero-content h2 {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    font-weight: 400;
}

.text-highlight {
    color: #facc15; /* Golden Yellow */
}

.hero-badge {
    display: inline-block;
    background-color: #09823b;
    color: #FFFFFF;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.hero-date-box {
    display: inline-block;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid #facc15;
    color: #facc15;
    padding: clamp(0.5rem, 2vw, 0.75rem) clamp(1rem, 4vw, 2rem);
    border-radius: 8px;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    font-weight: 600;
    margin-top: 1rem;
    box-sizing: border-box;
    width: 100%;
    max-width: fit-content;
}

.hero-countdown-box {
    background: rgba(15, 23, 42, 0.8);
    border-radius: 12px;
    padding: clamp(1rem, 4vw, 2rem);
    width: 100%;
    max-width: 600px;
    margin: 2rem auto 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
}

.countdown-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(0.75rem, 2vw, 0.85rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    text-transform: uppercase;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: clamp(1rem, 4vw, 3rem);
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-item .count {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.countdown-item .label {
    font-size: clamp(0.7rem, 2vw, 0.85rem);
    font-weight: 700;
    color: #facc15;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/*
.btn-green-pill {
    background-color: #09823b;
    color: #FFFFFF;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-green-pill:hover {
    background-color: #0f6f35;
    transform: translateY(-2px);
    color: #FFFFFF;
}

.btn-dark-outline {
    background-color: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.btn-dark-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF;
}
*/
/* Set branding gradient for green button starts */
.btn-green-pill {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    color: #FFFFFF;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(9, 130, 59, 0.2);
    letter-spacing: 0.03em;
}

.btn-green-pill:hover {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(16, 67, 146, 0.25);
    color: #FFFFFF;
}
/* Set branding gradient for green button ends */

/* Set branding dark outline button starts */
.btn-dark-outline {
    background-color: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.03em;
}

.btn-dark-outline:hover {
    background-color: var(--color-primary-glow);
    border-color: var(--color-primary-dark);
    color: var(--color-primary-dark);
    transform: translateY(-2px);
}
/* Set branding dark outline button ends */

/* Glass Cards */
.glass-card {
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
    border-color: rgba(37, 99, 235, 0.2);
}

/*
Grids
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    align-items: center;
}
*/

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 2.5rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: 2rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 3rem;
    align-items: center;
}

/* List Styling */
.premium-list {
    list-style: none;
}

.premium-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: var(--color-text-muted);
}

.premium-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

/* Footer */
.footer-glass {
    background: #FFFFFF;
    border-top: 1px solid var(--color-border);
    padding: 4rem 0 2rem;
    box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.02);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-muted);
    font-size: 0.875rem;
    font-weight: 500;
}

/* --- Comprehensive Responsive Styles --- */
@media (max-width: 1200px) {
    .container {
        padding: 0 2rem;
    }
}

@media (max-width: 991px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-aside-title {
        font-size: 2.5rem !important;
    }
    
    [style*="position: sticky"] {
        position: static !important;
    }
}

@media (max-width: 768px) {
    body::before, body::after {
        display: none !important;
    }

    .hero {
        padding: 120px 1rem 40px 1rem;
    }
    
    h1 { font-size: 2.2rem !important; }
    h2 { font-size: 1.8rem !important; }
    
    .hero-content h1 {
        font-size: 2rem !important;
    }
    
    .hero-date-box {
        padding: 0.8rem 1rem !important;
        font-size: 0.95rem !important;
        white-space: normal !important;
        display: block !important;
        margin: 1rem auto !important;
    }
    
    .hero-date-box span {
        display: block;
        margin: 0.25rem 0;
    }
    
    .hero-date-box .separator-dash {
        display: none !important;
    }
    
    .btn-green-pill, .btn-dark-outline, .btn-premium, .btn-primary-pill {
        width: 100% !important;
        text-align: center;
        padding: 1rem !important;
        margin-bottom: 0.5rem;
    }
    
    .section-padding {
        padding: 4rem 0 !important;
    }
    
    .vision-card {
        padding: 2rem 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        height: 70px;
    }
    
    .header-logo-wrapper img {
        height: 40px !important;
    }
    
    h1 { font-size: 1.8rem !important; }
    h2 { font-size: 1.5rem !important; }
    
    .award-premium-card, .highlight-card-premium {
        padding: 1.5rem 1rem !important;
    }
}

/* Mobile Menu Toggle Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2.5px;
    background-color: var(--color-primary-dark);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* Hamburger open animation */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Navigation Drawer */
.mobile-drawer {
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    height: calc(100vh - 90px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    display: none;
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 2rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.3s;
    border-bottom: 1px solid var(--color-border);
    overflow-y: auto;
}

.mobile-drawer.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
}

.mobile-nav-links a {
    color: var(--color-text-main);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    transition: color var(--transition-fast);
}

.mobile-nav-links a:hover {
    color: var(--color-primary);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
    padding-bottom: 2rem;
}

.mobile-actions .btn-outline,
.mobile-actions .btn-premium {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
}

/* Global Responsive Adjustments */
@media (max-width: 991px) {
    .header-nav, .header-actions {
        display: none !important;
    }
    .menu-toggle {
        display: flex;
    }
    .nav-container {
        height: 70px;
    }
    .mobile-drawer {
        display: flex;
        top: 70px;
        height: calc(100vh - 70px);
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 110px 1rem 40px 1rem;
    }
    .hero-countdown-box {
        padding: 1rem;
    }
    .countdown-timer {
        gap: 1.5rem;
    }
    .btn-green-pill, .btn-dark-outline {
        width: 100%;
        text-align: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .hero-date-box {
        max-width: 100% !important;
        font-size: 1rem;
    }
    .hero-date-box .separator-dash {
        display: none !important;
    }
    .hero-date-box span {
        display: block;
        margin: 0.25rem 0;
    }
}

/* Add premium split-screen hero layout and modern overlay card styles starts */
.split-hero {
    display: grid;
    grid-template-columns: 4.5fr 5.5fr;
    min-height: 100vh;
    width: 100%;
    position: relative;
    background-color: var(--color-bg);
}

.split-hero-content {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, var(--color-secondary) 100%);
    padding: clamp(6rem, 10vw, 10rem) clamp(2rem, 5vw, 4rem) clamp(4rem, 6vw, 6rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #FFFFFF;
    position: relative;
    z-index: 10;
}

.split-hero-content h1 {
    color: #FFFFFF;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    text-align: left;
}

.split-hero-content p {
    color: rgba(255, 255, 255, 0.9);
}

.split-hero-media {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.split-hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 28, 51, 0.4) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

/* Asymmetric About Typography Styles */
.about-aside-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    color: var(--color-primary-dark);
    font-weight: 800;
}

.about-aside-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.8rem);
    line-height: 1.4;
    color: var(--color-secondary);
    font-weight: 700;
    margin-top: 1.5rem;
}

/* Image Overlay Card Styles */
.overlay-card {
    position: relative;
    height: 380px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.25rem;
    color: #FFFFFF;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
    border: 1px solid var(--color-border);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.overlay-card img.card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform var(--transition-smooth);
}

.overlay-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 25, 44, 0.95) 0%, rgba(11, 25, 44, 0.5) 60%, transparent 100%);
    z-index: 1;
}

.overlay-card .card-content {
    position: relative;
    z-index: 2;
    transform: translateY(20px);
    transition: transform var(--transition-smooth);
}

.overlay-card h3 {
    color: #FFFFFF;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.overlay-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.overlay-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(16, 67, 146, 0.25);
    border-color: rgba(9, 130, 59, 0.3);
}

.overlay-card:hover img.card-bg {
    transform: scale(1.08);
}

.overlay-card:hover .card-content {
    transform: translateY(0);
}

.overlay-card:hover p {
    opacity: 1;
}

/* Premium Dark Footer Override */
.footer-premium {
    background: #0A1120 !important;
    border-top: 1px solid rgba(16, 67, 146, 0.2) !important;
    padding: 5rem 0 2.5rem !important;
    color: #F1F5F9 !important;
}

.footer-premium h4 {
    color: #FFFFFF !important;
    font-weight: 700;
}

.footer-premium p, 
.footer-premium span, 
.footer-premium a {
    color: #94A3B8 !important;
}

.footer-premium a:hover {
    color: var(--color-secondary) !important;
}

.footer-premium .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #64748B !important;
}

@media (max-width: 991px) {
    .split-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .split-hero-content {
        padding: 100px 1.5rem 3rem 1.5rem;
    }
    .split-hero-media {
        height: 380px;
        min-height: auto;
    }
    .split-hero-overlay {
        background: linear-gradient(to bottom, rgba(10, 28, 51, 0.4) 0%, transparent 100%);
    }
}
/* Add premium split-screen hero layout and modern overlay card styles ends */

/* --- Custom classes for new redesign blocks --- */
.highlight-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(16, 67, 146, 0.1) !important;
    border-color: rgba(9, 130, 59, 0.3) !important;
}

.award-premium-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 25px rgba(250, 204, 21, 0.15) !important;
    border-color: rgba(250, 204, 21, 0.4) !important;
    background: rgba(255, 255, 255, 0.15) !important;
}

.premium-contact-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.premium-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(16, 67, 146, 0.1) !important;
}

.contact-member {
    transition: all 0.3s ease;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid transparent;
}

.contact-member:hover {
    background: rgba(16, 67, 146, 0.02);
    border-color: rgba(16, 67, 146, 0.08);
}

/* New Fixes from task list */
.hero-logo-heading {
    margin-bottom: 1rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 800;
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 4px 15px rgba(0,0,0,0.8), 0 8px 35px rgba(0,0,0,0.6);
}

.logo-accent {
    color: #3ea05f; /* brand green */
}

.hero-era-text {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    font-size: clamp(1.2rem, 3.5vw, 1.6rem);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-desc-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.popup-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.popup-modal-content {
    background: #fff;
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: popupFadeIn 0.5s ease;
}

.popup-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: rgba(255,255,255,0.8);
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    width: 30px; height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    z-index: 2;
}

@keyframes popupFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
/* ===== Latest Mobile Fix ===== */

@media (max-width:768px){

    .hero{
        min-height:550px !important;
        height:auto !important;
        padding:100px 15px 40px !important;
    }

    .inner-hero{
        min-height:250px !important;
        padding:110px 15px 50px !important;
    }

    .hero h1,
    .inner-hero h1{
        font-size:32px !important;
        line-height:1.2 !important;
    }

    .header-logo-wrapper img{
        max-width:140px !important;
        height:auto !important;
    }

    .nav-container{
        padding:0 15px !important;
    }
}