@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Primary Color Palette - Blue + Ice Blue + White */
    --navy-deep: #0B1B3D;
    --navy-main: #0F2C59;
    --navy-light: #163A70;
    --blue-medium: #1D4ED8;
    --blue-royal: #2563EB;
    --blue-accent: #3B82F6;
    --blue-highlight: #60A5FA;
    
    /* Soft Panels & Backgrounds */
    --ice-bg: #F0F6FF;
    --ice-surface: #E6F0FA;
    --ice-panel: #D9E8F5;
    --ice-border: #CBDDEE;
    
    /* Clean Cards & Content */
    --white: #FFFFFF;
    --white-soft: #F9FAFB;
    
    /* Typography */
    --charcoal-dark: #0F172A;
    --charcoal-body: #1E293B;
    --charcoal-muted: #475569;
    --text-on-navy: #F8FAFC;

    /* Fonts */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Shadows & Micro-effects */
    --shadow-sm: 0 2px 4px rgba(11, 27, 61, 0.05);
    --shadow-md: 0 4px 12px rgba(11, 27, 61, 0.08);
    --shadow-lg: 0 10px 25px rgba(11, 27, 61, 0.12);
    --navy-shadow: 0 8px 24px rgba(11, 27, 61, 0.25);
    --glow-blue: 0 0 15px rgba(59, 130, 246, 0.4);
    
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Setup */
*, *::before, *::after {
    box-sizing: border-box !important;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
    scroll-behavior: smooth;
    scroll-padding-top: 85px;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal-body);
    background-color: var(--ice-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section, header, footer, main, .top-notice-bar, .main-header {
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1280px !important;
    margin: 0 auto;
    padding: 0 1.5rem;
    box-sizing: border-box !important;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR (CONTINUOUS SCROLLING MARQUEE TICKER)
   ========================================================================== */
.top-notice-bar {
    background: linear-gradient(90deg, #0B1B3D 0%, #0F2C59 50%, #0B1B3D 100%);
    border-bottom: 1px solid rgba(96, 165, 250, 0.25);
    padding: 0.45rem 0;
    font-size: 0.78rem;
    color: #94A3B8;
    font-weight: 500;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: continuous-ticker 30s linear infinite;
}

.ticker-track:hover {
    animation-play-state: paused;
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-right: 1.5rem;
}

.top-badge {
    background: rgba(59, 130, 246, 0.25);
    border: 1px solid rgba(96, 165, 250, 0.45);
    color: #60A5FA;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.15rem 0.65rem;
    border-radius: var(--radius-full);
}

.top-notice-text {
    color: #F8FAFC;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
}

.top-link {
    color: #CBD5E1;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    transition: var(--transition);
}

.top-link:hover {
    color: #60A5FA;
    text-decoration: underline;
}

.ticker-dot {
    color: #60A5FA;
    font-size: 0.85rem;
    opacity: 0.8;
}

@keyframes continuous-ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ==========================================================================
   MAIN NAVIGATION HEADER (WHITE GLASSMORPHISM THEME)
   ========================================================================== */
.main-header {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid #E2E8F0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.75rem;
    padding: 0.75rem 2rem;
    max-width: 1440px;
    margin: 0 auto;
}

/* Brand Branding Logo */
.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.logo-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    flex-shrink: 0;
    transition: var(--transition);
}

.logo-frame:hover {
    transform: scale(1.04);
}

.logo-img {
    height: 48px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    border-radius: 0;
    display: block;
}

.brand-text {
    display: flex;
    flex-direction: column;
    white-space: nowrap;
}

.brand-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    color: #0F2C59;
    line-height: 1.1;
    text-transform: uppercase;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: initial;
}

.brand-subtitle {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    color: #2563EB;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-top: 0.15rem;
}

/* Navigation Links */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.nav-item {
    position: relative;
    white-space: nowrap;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.86rem;
    color: #1E293B;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    padding: 0.45rem 0.95rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    letter-spacing: 0.01em;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.nav-link:hover {
    color: #FFFFFF;
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    border-color: #2563EB;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
    transform: translateY(-1px);
}

.nav-link.active {
    color: #FFFFFF;
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    border-color: #2563EB;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

/* Right Action Section */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    background: #F8FAFC;
    border: 1px solid #CBD5E1;
    border-radius: var(--radius-full);
    padding: 0.42rem 0.85rem 0.42rem 2.1rem;
    color: #0F172A;
    font-size: 0.82rem;
    font-family: var(--font-body);
    width: 150px;
    transition: var(--transition);
}

.search-input::placeholder {
    color: #64748B;
}

.search-input:focus {
    outline: none;
    width: 190px;
    background: #FFFFFF;
    border-color: #2563EB;
    box-shadow: 0 0 12px rgba(37, 99, 235, 0.2);
}

.search-icon {
    position: absolute;
    left: 0.75rem;
    width: 13px;
    height: 13px;
    fill: #64748B;
    pointer-events: none;
}

.btn-primary {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    color: var(--white);
    background: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1D4ED8 0%, #2563EB 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 0.5rem;
}

/* ==========================================================================
   HERO / HEADER SECTION
   ========================================================================== */
.hero-section {
    background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-main) 65%, var(--ice-bg) 100%);
    color: var(--text-on-navy);
    padding: 4.5rem 0 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 30%, rgba(59, 130, 246, 0.18) 0%, transparent 40%),
        radial-gradient(circle at 85% 70%, rgba(37, 99, 235, 0.14) 0%, transparent 45%);
    pointer-events: none;
}

.hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.hero-tag {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(96, 165, 250, 0.3);
    color: var(--blue-highlight);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 3rem;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
    text-align: center;
}

.hero-title span {
    color: var(--blue-highlight);
    background: linear-gradient(135deg, #60A5FA 0%, #93C5FD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.125rem;
    color: #DCE9F6;
    margin: 0 auto 2rem auto;
    max-width: 760px;
    line-height: 1.7;
    text-align: center;
}

.hero-welcome-note {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-top: 3px solid var(--blue-highlight);
    border-radius: var(--radius-md);
    padding: 1.35rem 1.75rem;
    margin: 0 auto 1.75rem auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(8px);
    max-width: 780px;
    width: 100%;
    text-align: center;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 0 auto 2.5rem auto;
}

.btn-secondary {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.55rem 1.25rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
}

/* Feature Badge Strip */
.feature-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin: 0 auto;
}

.feature-pill {
    background: rgba(11, 27, 61, 0.65);
    border: 1px solid rgba(96, 165, 250, 0.25);
    padding: 0.6rem 1rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--ice-bg);
    backdrop-filter: blur(8px);
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: var(--blue-royal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* Hero Showcase Card */
.hero-showcase {
    position: relative;
    display: flex;
    justify-content: center;
}

.showcase-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg), 0 0 30px rgba(59, 130, 246, 0.15);
    border: 2px solid var(--ice-surface);
    position: relative;
    max-width: 420px;
    width: 100%;
}

.showcase-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--ice-surface);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.showcase-tag {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--blue-medium);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.showcase-logo-box {
    text-align: center;
    padding: 1rem 0;
}

.showcase-img {
    max-width: 260px;
    margin: 0 auto;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--ice-surface);
    transition: var(--transition);
}

.showcase-img:hover {
    transform: scale(1.03);
}

.showcase-footer {
    background: var(--ice-bg);
    border-radius: var(--radius-md);
    padding: 0.85rem;
    text-align: center;
    margin-top: 1rem;
    border: 1px solid var(--ice-border);
}

.showcase-footer-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--navy-deep);
}

.showcase-subtext {
    font-size: 0.78rem;
    color: var(--charcoal-muted);
    margin-top: 0.2rem;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .nav-menu {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }
}

@media (max-width: 640px) {
    .top-notice-links {
        display: none;
    }

    .hero-title {
        font-size: 1.85rem;
    }

    .search-box {
        display: none;
    }
}

/* ==========================================================================
   ABOUT US SECTION STYLES
   ========================================================================== */
.about-section {
    background-color: var(--white);
    padding: 4rem 0 2rem 0;
    position: relative;
    border-bottom: 1px solid var(--ice-border);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3.5rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--ice-surface);
    background: var(--navy-deep);
}

.about-lens-img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.about-lens-img:hover {
    transform: scale(1.03);
}

.about-image-badge {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
    background: rgba(11, 27, 61, 0.88);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(96, 165, 250, 0.35);
    border-radius: var(--radius-md);
    padding: 0.85rem 1.2rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.85rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.badge-icon-glow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.4);
    border: 1px solid var(--blue-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
    box-shadow: var(--glow-blue);
}

.badge-text-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--white);
}

.badge-text-sub {
    font-size: 0.75rem;
    color: var(--blue-highlight);
}

/* Right Content Column */
.about-tag {
    color: var(--blue-royal);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.about-heading {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.25rem;
    color: var(--navy-deep);
    line-height: 1.25;
    margin-bottom: 1.25rem;
}

.about-intro {
    font-size: 1.05rem;
    color: var(--charcoal-body);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Quote Callout Box */
.quote-callout {
    background: linear-gradient(135deg, var(--ice-bg) 0%, var(--ice-surface) 100%);
    border-left: 4px solid var(--blue-royal);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.quote-text {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--navy-main);
    font-style: italic;
    line-height: 1.6;
}

.about-paragraph {
    font-size: 0.98rem;
    color: var(--charcoal-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Flavours Grid */
.flavours-section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--navy-deep);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.85rem;
}

.flavours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.flavour-card {
    background: var(--ice-bg);
    border: 1px solid var(--ice-border);
    border-radius: var(--radius-md);
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.flavour-card:hover {
    background: var(--white);
    border-color: var(--blue-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.flavour-emoji {
    font-size: 1.4rem;
}

.flavour-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--navy-deep);
}

/* Packaging Concept Card */
.packaging-card {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-main) 100%);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.packaging-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.25);
    border: 1px solid var(--blue-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.packaging-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 0.2rem;
}

.packaging-desc {
    font-size: 0.85rem;
    color: #DCE9F6;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .flavours-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   TEAM MEMBERS SECTION STYLES
   ========================================================================== */
.team-section {
    background-color: var(--ice-bg);
    background: linear-gradient(180deg, var(--ice-bg) 0%, var(--ice-surface) 100%);
    padding: 5.5rem 0;
    position: relative;
    border-bottom: 1px solid var(--ice-border);
}

.team-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3.5rem auto;
}

.team-tag {
    color: var(--blue-royal);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.team-section-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.25rem;
    color: var(--navy-deep);
    line-height: 1.2;
    margin-bottom: 0.85rem;
}

.team-section-subtitle {
    font-size: 1rem;
    color: var(--charcoal-muted);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--ice-border);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(59, 130, 246, 0.15);
    border-color: var(--blue-accent);
}

.team-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.team-index-badge {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--blue-royal);
    background: var(--ice-bg);
    border: 1px solid var(--ice-border);
    padding: 0.2rem 0.65rem;
    border-radius: var(--radius-full);
}

.team-role-badge {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    color: var(--white);
    background: var(--navy-deep);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
}

.team-avatar-container {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.25rem auto;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, var(--blue-accent) 0%, var(--navy-main) 100%);
    box-shadow: var(--shadow-md);
}

.team-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: var(--navy-deep);
}

.team-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--navy-deep);
    text-align: center;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.team-description {
    font-size: 0.88rem;
    color: var(--charcoal-body);
    text-align: center;
    line-height: 1.55;
    background: var(--ice-bg);
    padding: 0.85rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--ice-border);
    margin-top: auto;
}

@media (max-width: 1100px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   PROBLEM, SOLUTION & MATERIALS SECTION STYLES
   ========================================================================== */
.mission-section {
    background-color: var(--white);
    padding: 2.5rem 0 4.5rem 0;
    position: relative;
    border-bottom: 1px solid var(--ice-border);
}

.mission-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3.5rem auto;
}

.mission-tag {
    color: var(--blue-royal);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.mission-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.25rem;
    color: var(--navy-deep);
    line-height: 1.2;
    margin-bottom: 0.85rem;
}

.mission-subtitle {
    font-size: 1rem;
    color: var(--charcoal-muted);
}

/* Problem vs Solution 2-Column Grid */
.ps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.ps-card {
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.ps-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Problem Card - Dark Navy Space Style with Warning Accent */
.problem-card {
    background: linear-gradient(135deg, #0B1B3D 0%, #102A54 100%);
    color: var(--white);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.ps-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.ps-badge {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-full);
}

.badge-problem {
    background: rgba(239, 68, 68, 0.2);
    color: #FCA5A5;
    border: 1px solid rgba(239, 68, 68, 0.4);
}

.badge-cost {
    background: rgba(59, 130, 246, 0.2);
    color: var(--blue-highlight);
    border: 1px solid rgba(96, 165, 250, 0.3);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
}

.ps-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.problem-card .ps-title {
    color: var(--white);
}

.ps-text {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.problem-card .ps-text {
    color: #DCE9F6;
}

.ps-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: auto;
}

.ps-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.ps-item-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.icon-warning {
    background: rgba(239, 68, 68, 0.25);
    color: #FCA5A5;
}

.icon-check {
    background: var(--blue-royal);
    color: var(--white);
}

/* Solution Card - Clean Ice Blue / Royal Blue Style */
.solution-card {
    background: linear-gradient(135deg, var(--ice-bg) 0%, var(--ice-surface) 100%);
    border: 2px solid var(--blue-royal);
    color: var(--charcoal-body);
}

.badge-solution {
    background: var(--blue-royal);
    color: var(--white);
}

.solution-card .ps-title {
    color: var(--navy-deep);
}

.solution-card .ps-text {
    color: var(--charcoal-body);
}

/* Materials & Lab Ingredients Component */
.materials-wrapper {
    background: var(--ice-bg);
    border: 1px solid var(--ice-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.materials-header {
    text-align: center;
    margin-bottom: 2rem;
}

.materials-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--navy-deep);
    margin-bottom: 0.35rem;
}

.materials-subtitle {
    font-size: 0.92rem;
    color: var(--charcoal-muted);
}

.materials-body-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 2.5rem;
    align-items: center;
}

.materials-img-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-md);
}

.materials-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.materials-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.material-item-card {
    background: var(--white);
    border: 1px solid var(--ice-border);
    border-radius: var(--radius-md);
    padding: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: var(--transition);
}

.material-item-card:hover {
    border-color: var(--blue-accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.material-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--ice-surface);
    border: 1px solid var(--ice-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.material-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--navy-deep);
    margin-bottom: 0.2rem;
}

.material-role {
    font-size: 0.82rem;
    color: var(--charcoal-muted);
    line-height: 1.4;
}

@media (max-width: 992px) {
    .ps-grid {
        grid-template-columns: 1fr;
    }
    .materials-body-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .materials-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   UNIT ECONOMICS, SAFETY & REVENUE SECTION STYLES
   ========================================================================== */
.economics-section {
    background-color: var(--ice-bg);
    background: linear-gradient(180deg, var(--ice-bg) 0%, var(--ice-surface) 100%);
    padding: 5.5rem 0;
    position: relative;
    border-bottom: 1px solid var(--ice-border);
}

.economics-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3.5rem auto;
}

.economics-tag {
    color: var(--blue-royal);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.economics-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.25rem;
    color: var(--navy-deep);
    line-height: 1.2;
    margin-bottom: 0.85rem;
}

.economics-subtitle {
    font-size: 1rem;
    color: var(--charcoal-muted);
}

/* Cost Breakdown & Table Layout */
.economics-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
}

.table-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--ice-border);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.table-card-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--navy-deep);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cost-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.25rem;
}

.cost-table th {
    background: var(--navy-deep);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.85rem 1rem;
    text-align: left;
}

.cost-table th:first-child {
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.cost-table th:last-child {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    text-align: right;
}

.cost-table td {
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
    color: var(--charcoal-body);
    border-bottom: 1px solid var(--ice-border);
}

.cost-table td:last-child {
    text-align: right;
    font-weight: 700;
    color: var(--blue-royal);
}

.cost-table tr:hover td {
    background: var(--ice-bg);
}

.packet-price-box {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-main) 100%);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-md);
}

.packet-price-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
}

.packet-price-val {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    color: #60A5FA;
}

/* Side Cards: Unit Materials & Capital Equipment */
.materials-summary-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--ice-border);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.base-cost-item {
    background: var(--ice-bg);
    border: 1px solid var(--ice-border);
    border-radius: var(--radius-md);
    padding: 0.95rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.base-cost-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--navy-deep);
}

.base-cost-detail {
    font-size: 0.78rem;
    color: var(--charcoal-muted);
}

.base-cost-price {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    color: var(--navy-deep);
}

/* Safety & Monetization 2-Column Grid */
.safety-monetization-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.sm-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--ice-border);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
}

.sm-card-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
}

.sm-icon-badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.icon-safety {
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid var(--blue-royal);
    color: var(--blue-royal);
}

.icon-revenue {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid #10B981;
    color: #10B981;
}

.sm-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--navy-deep);
}

.sm-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sm-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--charcoal-body);
}

.sm-bullet {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--ice-surface);
    color: var(--navy-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

@media (max-width: 992px) {
    .economics-grid, .safety-monetization-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   FUTURE SCOPE & STRATEGIC ROADMAP SECTION STYLES
   ========================================================================== */
.future-section {
    background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-main) 100%);
    color: var(--text-on-navy);
    padding: 5.5rem 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(59, 130, 246, 0.3);
}

.future-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 50% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.future-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3.5rem auto;
    position: relative;
    z-index: 2;
}

.future-tag {
    color: var(--blue-highlight);
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(96, 165, 250, 0.3);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.future-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.35rem;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 0.85rem;
}

.future-subtitle {
    font-size: 1rem;
    color: #DCE9F6;
}

/* 3 Pillar Cards Grid */
.future-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 2;
}

.future-card {
    background: rgba(11, 27, 61, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(96, 165, 250, 0.25);
    border-radius: var(--radius-lg);
    padding: 2rem 1.6rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.future-card:hover {
    transform: translateY(-6px);
    border-color: var(--blue-accent);
    box-shadow: var(--glow-blue), 0 12px 30px rgba(0, 0, 0, 0.3);
    background: rgba(15, 44, 89, 0.85);
}

.future-card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--blue-royal) 0%, var(--blue-medium) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.future-card-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.future-card-desc {
    font-size: 0.92rem;
    color: #DCE9F6;
    line-height: 1.65;
}

/* ISRO Partnership Banner */
.isro-banner {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(11, 27, 61, 0.9) 100%);
    border: 2px solid rgba(96, 165, 250, 0.4);
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
    box-shadow: var(--glow-blue);
}

.isro-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #FF9933;
    color: #000080;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.85rem;
}

.isro-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.isro-desc {
    font-size: 0.95rem;
    color: #E2EEFD;
    line-height: 1.65;
}

.isro-img-box {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid rgba(96, 165, 250, 0.4);
    box-shadow: var(--shadow-md);
}

.isro-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

@media (max-width: 992px) {
    .future-grid {
        grid-template-columns: 1fr;
    }
    .isro-banner {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   OUR MISSION BANNER IN ABOUT US SECTION
   ========================================================================== */
.mission-statement-box {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-main) 100%);
    border: 2px solid rgba(59, 130, 246, 0.35);
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    margin-top: 3rem;
    box-shadow: var(--shadow-lg), 0 0 25px rgba(59, 130, 246, 0.15);
    color: var(--white);
}

.mission-statement-header {
    margin-bottom: 1.5rem;
}

.mission-statement-badge {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(96, 165, 250, 0.4);
    color: var(--blue-highlight);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.85rem;
}

.mission-statement-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.45rem;
    line-height: 1.4;
    color: var(--white);
    max-width: 950px;
}

.mission-combine-wrapper {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
}

.mission-combine-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--blue-highlight);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.85rem;
}

.mission-formula-grid {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.formula-pill {
    background: rgba(11, 27, 61, 0.85);
    border: 1px solid rgba(96, 165, 250, 0.35);
    padding: 0.55rem 1.1rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.formula-pill:hover {
    background: var(--blue-royal);
    border-color: var(--white);
    transform: translateY(-2px);
}

.formula-icon {
    font-size: 1.1rem;
}

.formula-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
}

.formula-plus {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--blue-highlight);
}

/* ==========================================================================
   OUR VISION BANNER IN ABOUT US SECTION
   ========================================================================== */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.vision-statement-box {
    background: linear-gradient(135deg, var(--ice-bg) 0%, var(--ice-surface) 100%);
    border: 2px solid var(--blue-royal);
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    box-shadow: var(--shadow-md);
    color: var(--charcoal-body);
    display: flex;
    flex-direction: column;
}

.vision-statement-badge {
    background: var(--blue-royal);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.85rem;
}

.vision-statement-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.35rem;
    line-height: 1.4;
    color: var(--navy-deep);
    margin-bottom: 1rem;
}

.vision-statement-desc {
    font-size: 0.95rem;
    color: var(--charcoal-body);
    line-height: 1.65;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.1rem 1.25rem;
    border: 1px solid var(--ice-border);
    margin-top: auto;
}

@media (max-width: 992px) {
    .mv-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   CEO MESSAGE SECTION STYLES
   ========================================================================== */
.ceo-section {
    background-color: var(--white);
    padding: 4rem 0 2rem 0;
    position: relative;
    border-bottom: 1px solid var(--ice-border);
}

.ceo-card {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-main) 100%);
    border: 2px solid rgba(59, 130, 246, 0.35);
    border-radius: var(--radius-lg);
    padding: 3.5rem 3rem;
    box-shadow: var(--shadow-lg), 0 0 30px rgba(11, 27, 61, 0.2);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.ceo-card-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.ceo-tag {
    color: var(--blue-highlight);
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(96, 165, 250, 0.4);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.ceo-quote-mark {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 0.8;
    color: var(--blue-accent);
    opacity: 0.6;
    margin-bottom: 1rem;
    display: block;
}

.ceo-quote-text {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.7;
    color: #F8FAFC;
    margin-bottom: 2.25rem;
    font-style: italic;
    max-width: 960px;
}

.ceo-author-wrapper {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1.5rem;
}

.ceo-avatar-frame {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, var(--blue-accent) 0%, var(--blue-highlight) 100%);
    box-shadow: var(--glow-blue);
    flex-shrink: 0;
}

.ceo-avatar-frame img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.ceo-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--white);
    line-height: 1.2;
}

.ceo-role {
    font-size: 0.88rem;
    color: var(--blue-highlight);
    font-weight: 600;
    margin-top: 0.2rem;
}

@media (max-width: 768px) {
    .ceo-card {
        padding: 2rem 1.5rem;
    }
    
    .ceo-quote-text {
        font-size: 1.05rem;
    }
}

/* ==========================================================================
   OUR PROJECT SECTION STYLES
   ========================================================================== */
.project-overview-section {
    background-color: var(--ice-bg);
    background: linear-gradient(180deg, var(--ice-bg) 0%, var(--ice-surface) 100%);
    padding: 5rem 0;
    position: relative;
    border-bottom: 1px solid var(--ice-border);
}

.project-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
}

.project-tag {
    color: var(--blue-royal);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.project-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.35rem;
    color: var(--navy-deep);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.project-challenge-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.12);
    border: 1px solid var(--blue-royal);
    color: var(--blue-royal);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.82rem;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.25rem;
}

.project-desc {
    font-size: 1.05rem;
    color: var(--charcoal-body);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.project-question-box {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-main) 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.75rem;
    margin-top: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.project-question-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--white);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.project-question-sub {
    font-size: 0.85rem;
    color: var(--blue-highlight);
    font-weight: 600;
}

/* Right Concept Cards */
.concept-card-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.concept-card-item {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--ice-border);
    padding: 1.35rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.concept-card-item:hover {
    border-color: var(--blue-accent);
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.concept-icon-box {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--ice-surface);
    border: 1px solid var(--ice-border);
    color: var(--blue-royal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.concept-item-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--navy-deep);
    margin-bottom: 0.25rem;
}

.concept-item-text {
    font-size: 0.88rem;
    color: var(--charcoal-muted);
    line-height: 1.5;
}

@media (max-width: 992px) {
    .project-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ==========================================================================
   PROPOSED SOLUTION BENEFITS & TESTING SCOPE STYLES
   ========================================================================== */
.solution-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 3.5rem;
}

.benefit-card {
    background: var(--white);
    border: 1px solid var(--ice-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: var(--blue-royal);
    box-shadow: var(--shadow-md);
}

.benefit-icon-badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ice-surface);
    border: 1px solid var(--blue-accent);
    color: var(--blue-royal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.benefit-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--navy-deep);
    margin-bottom: 0.5rem;
    letter-spacing: 0.03em;
}

.benefit-desc {
    font-size: 0.88rem;
    color: var(--charcoal-body);
    line-height: 1.5;
}

/* Scientific Testing Scope Box */
.testing-scope-box {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-main) 100%);
    border: 2px solid rgba(59, 130, 246, 0.35);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    margin-top: 3.5rem;
}

.testing-scope-header {
    margin-bottom: 1.5rem;
}

.testing-scope-badge {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(96, 165, 250, 0.4);
    color: var(--blue-highlight);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.testing-scope-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.testing-scope-subtitle {
    font-size: 0.95rem;
    color: #DCE9F6;
}

.testing-pills-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.testing-pill {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-md);
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--white);
    transition: var(--transition);
}

.testing-pill:hover {
    background: rgba(59, 130, 246, 0.25);
    border-color: var(--blue-accent);
}

.disclaimer-note-box {
    background: rgba(11, 27, 61, 0.6);
    border-left: 4px solid var(--blue-highlight);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    color: #E2EEFD;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

@media (max-width: 1100px) {
    .solution-benefits-grid, .testing-pills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .solution-benefits-grid, .testing-pills-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   CONTACT US SECTION STYLES
   ========================================================================== */
.contact-section {
    background-color: var(--white);
    padding: 5.5rem 0;
    position: relative;
    border-bottom: 1px solid var(--ice-border);
}

.contact-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3.5rem auto;
}

.contact-tag {
    color: var(--blue-royal);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.35rem;
    color: var(--navy-deep);
    line-height: 1.2;
    margin-bottom: 0.85rem;
}

.contact-subtitle {
    font-size: 1rem;
    color: var(--charcoal-muted);
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: flex-start;
}

/* Contact Form Card */
.contact-form-card {
    background: var(--ice-bg);
    border: 1px solid var(--ice-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--navy-deep);
    margin-bottom: 0.4rem;
}

.form-control {
    width: 100%;
    background: var(--white);
    border: 1px solid var(--ice-border);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--charcoal-dark);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--blue-accent);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

textarea.form-control {
    min-height: 130px;
    resize: vertical;
}

.file-attach-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.btn-attach {
    background: var(--white);
    border: 1px solid var(--ice-border);
    color: var(--navy-deep);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 0.55rem 1.1rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-attach:hover {
    border-color: var(--blue-accent);
    color: var(--blue-royal);
    background: var(--ice-surface);
}

.attach-counter-badge {
    font-size: 0.82rem;
    color: var(--charcoal-muted);
    font-weight: 600;
}

.recaptcha-text {
    font-size: 0.78rem;
    color: var(--charcoal-muted);
    line-height: 1.5;
    margin-top: 1.25rem;
}

.recaptcha-text a {
    color: var(--blue-royal);
    text-decoration: underline;
}

/* Right Side: Organization & Hours Info */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.info-box-card {
    background: var(--white);
    border: 1px solid var(--ice-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.info-box-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--navy-deep);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.1rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--charcoal-body);
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--ice-surface);
    border: 1px solid var(--ice-border);
    color: var(--blue-royal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.hours-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--charcoal-body);
}

.hours-row.active-day {
    background: var(--ice-bg);
    font-weight: 600;
    color: var(--navy-deep);
}

.hours-day {
    font-family: var(--font-heading);
    font-weight: 700;
}

.hours-time {
    font-family: var(--font-body);
}

.closed-badge {
    color: #EF4444;
    font-weight: 700;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   INNOVATION TEAM & EXECUTIVE PROFILE CARDS
   ========================================================================== */
.team-section {
    background-color: var(--ice-bg);
    padding: 2rem 0 4.5rem 0;
    position: relative;
    border-bottom: 1px solid var(--ice-border);
}

.team-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3.5rem auto;
}

.team-section-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.35rem;
    color: var(--navy-deep);
    line-height: 1.2;
    margin-bottom: 0.85rem;
}

.team-section-subtitle {
    font-size: 1rem;
    color: var(--charcoal-muted);
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

/* Futuristic Executive Profile Card */
.team-card {
    background: linear-gradient(145deg, var(--navy-deep) 0%, #0D224A 100%);
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: var(--radius-lg);
    padding: 2rem 1.6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 25px rgba(11, 27, 61, 0.25);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: var(--blue-accent);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.35), 0 0 20px rgba(59, 130, 246, 0.2);
}

.team-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 1.5rem;
}

.team-index-badge {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.82rem;
    color: var(--blue-highlight);
    background: rgba(59, 130, 246, 0.18);
    border: 1px solid rgba(96, 165, 250, 0.35);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-role-badge {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    background: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-full);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
}

.profile-monogram {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(37, 99, 235, 0.8) 100%);
    border: 2px solid var(--blue-highlight);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.45rem;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.team-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--white);
    letter-spacing: 0.04em;
    margin-bottom: 0.85rem;
    line-height: 1.25;
}

.team-description {
    font-size: 0.88rem;
    color: #DCE9F6;
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 1.1rem 1.2rem;
    margin-top: auto;
    width: 100%;
}

@media (max-width: 1100px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   EXECUTIVE PROFESSIONAL FOOTER
   ========================================================================== */
.main-footer {
    background: linear-gradient(180deg, #0B1B3D 0%, #061127 100%);
    color: #94A3B8;
    padding: 4.5rem 0 2.5rem 0;
    border-top: 1px solid rgba(96, 165, 250, 0.25);
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25%;
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--blue-accent) 50%, transparent 100%);
    box-shadow: 0 0 15px var(--blue-accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 3.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 2rem;
}

.footer-brand-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.footer-logo-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.footer-logo-img {
    height: 48px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    border-radius: 0;
    display: block;
}

.footer-brand-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--white);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.1;
}

.footer-brand-subtitle {
    font-family: var(--font-heading);
    font-size: 0.68rem;
    color: var(--blue-highlight);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 0.15rem;
}

.footer-brand-desc {
    font-size: 0.9rem;
    color: #CBD5E1;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.footer-tag-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-tag-pill {
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(96, 165, 250, 0.25);
    color: var(--blue-highlight);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.72rem;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-full);
}

.footer-column-heading {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--white);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.35rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--blue-royal);
    border-radius: 2px;
}

.footer-info-block {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-info-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--blue-highlight);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.25rem;
}

.footer-info-value {
    font-size: 0.88rem;
    color: #E2EEFD;
    line-height: 1.65;
}

.footer-phone-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(37, 99, 235, 0.18);
    border: 1px solid var(--blue-royal);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 0.4rem 0.85rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: var(--transition);
    width: fit-content;
}

.footer-phone-badge:hover {
    background: var(--blue-royal);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-nav-link {
    color: #CBD5E1;
    text-decoration: none;
    font-size: 0.9rem;
    font-family: var(--font-heading);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.footer-nav-link:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-nav-link.highlight {
    color: var(--blue-highlight);
    font-weight: 700;
}

.footer-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #64748B;
}

.footer-copyright {
    font-family: var(--font-heading);
    font-weight: 600;
    color: #94A3B8;
}

.footer-project-status {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--blue-highlight);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom-bar {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}
