/* Reset and Base Styles */
:root {
  --primary: #B7410E; /* Navy Blue - Trust & Authority */
  --accent: #B7410E; /* Rust - Gravitas & Premium Tone */
  --highlight: #D4AF37; /* Soft Gold - Premium Accent */
  --background: #F9F9F7; /* Bone/Ivory - Warm Background */
  --background-alt: #F4F4F1; /* Softer light gray for sections */
  --text: #333333; /* Slate for body text */
  --text-light: #666666; /* Lighter text variant */
  --gray: #E0E0DC; /* Muted Gray for contrast */
  --max-width: 1200px;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --border-radius: 2px;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.08);
}
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;700&family=Inter:wght@400;600;700&family=Lato:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hero-cta {
    background-color: #f9f9f7 !important;
    color: var(--accent) !important;
}
.hero-cta:hover {
    background-color: var(--highlight) !important;
    color: var(--accent) !important;
}

body {
    font-family: "IBM Plex Sans", sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--background);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Header & Navigation */
.header {
    background: var(--background);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    height: 80px;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--spacing-md);
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    position: relative;
}

.logo-container {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.logo-tagline {
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    color: var(--text-light);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-cta {
    margin-left: var(--spacing-sm);
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Mobile Menu Styles */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    position: relative;
    z-index: 1000;
}

.hamburger {
    display: block;
    position: relative;
    width: 24px;
    height: 24px;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    position: absolute;
    left: 0;
    transition: all 0.3s ease-in-out;
}

.hamburger-line:nth-child(1) {
    top: 6px;
}

.hamburger-line:nth-child(2) {
    top: 14px;
}

.hamburger-line:nth-child(3) {
    top: 22px;
}

/* Hamburger Animation */
.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-container {
        padding: 1rem;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--background);
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease-in-out;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 0.75rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-cta {
        width: 100%;
        margin: 0.5rem 0;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

/* Adjust main content to account for fixed header */
main {
    padding-top: 80px;
}



/* Hero Section */


.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.07;
    pointer-events: none;
    mix-blend-mode: soft-light;
}

.hero h1 {
    color: var(--background);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: var(--spacing-md);
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-weight: 800;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    color: var(--gray);
    font-size: clamp(1.1rem, 1.8vw, 1.3rem);
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    opacity: 0.9;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Hero mobile adjustments */
@media (max-width: 768px) {
    .hero {
        padding: calc(2rem + 180px) 0 3rem; /* Adjusted for mobile header height */
    }

    .hero h1 {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
        padding: 0 var(--spacing-sm);
    }

    .hero-subtitle {
        padding: 0 var(--spacing-sm);
        font-size: clamp(1rem, 4vw, 1.2rem);
    }
}

/* Buttons */
.cta-button {
    background: var(--accent);
    color: var(--background);
    border: none;
    padding: 1rem 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-radius: 0; /* Square buttons for elegance */
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    color: var(--accent);
    background: #FFFDD0;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* Stats Section */
.stats {
    background: var(--background-alt);
    padding: var(--spacing-lg) 0;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQ0MCIgaGVpZ2h0PSI4MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTMyNSAzNTBMMzc1IDI3NUw0NzUgMzI1TDU3NSAyMjVMNjI1IDI3NUw3MjUgMTc1IiBzdHJva2U9IiMxQjNDNUEiIHN0cm9rZS13aWR0aD0iMiIgZmlsbD0ibm9uZSIgc3Ryb2tlLW9wYWNpdHk9IjAuMSIvPjwvc3ZnPg==');
    opacity: 0.1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    text-align: center;
}

.stat-card {
    background: var(--background);
    padding: var(--spacing-md);
    border-radius: 0;
    box-shadow: var(--shadow-sm);
    border: none;
    border-left: 2px solid var(--accent);
    border-right: none;
    border-top: 1px solid rgba(27, 60, 90, 0.1);
    border-bottom: 1px solid rgba(27, 60, 90, 0.1);
    transition: all 0.3s ease;
}

.stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-feature-settings: "tnum";
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.stat-number .counter {
    display: inline-block;
    transition: color 0.3s ease;
}

.stat-number .prefix,
.stat-number .suffix {
    font-size: 0.8em;
    opacity: 0.9;
    color: var(--accent);
}

/* Animation states */
.stat-card.animate .counter {
    animation: countUp 2s ease-out forwards;
}

.stat-card.animate {
    animation: cardPop 0.5s ease-out forwards;
}

@keyframes countUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes cardPop {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.02);
        box-shadow: var(--shadow-md);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Enhanced hover effect */
.stat-card:hover {
    box-shadow: var(--shadow-md);
    border-left-color: var(--highlight);
}

.stat-description {
    color: var(--text-light);
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
}

/* Focus Areas Section */
.focus {
    padding: var(--spacing-lg) 0;
}


.focus h2 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    font-size: 2.5rem;
    color: var(--primary);
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.focus-card {
    background: var(--background);
    padding: var(--spacing-md);
    border-radius: 0;
    border: none;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease;
    border-left: 2px solid var(--accent);
    border-right: none;
    border-top: 1px solid rgba(27, 60, 90, 0.1);
    border-bottom: 1px solid rgba(27, 60, 90, 0.1);
}

.focus-card:hover {
    box-shadow: var(--shadow-md);
    border-left-color: var(--highlight);
}

.focus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        var(--accent) 0%, 
        transparent 100%
    );
    opacity: 0.2;
}

.focus-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--highlight);
}

.focus-card h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* Why Afrexia Section */
.why-afrexia {
    background: var(--background-alt);
    padding: var(--spacing-lg) 0;
    position: relative;
    overflow: hidden;
}

.why-afrexia h2 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    font-size: 2.5rem;
    color: var(--primary);
}

.benefits-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.benefit-item {
    background: var(--background);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.benefit-item.animate {
    transform: translateY(0);
    opacity: 1;
}

.benefit-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.benefit-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-icon .icon {
    width: 24px;
    height: 24px;
    stroke: white;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    transition: transform 0.3s ease;
}

.benefit-content {
    flex: 1;
}

.benefit-content h3 {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s ease;
    transition-delay: 0.1s;
}

.benefit-content p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s ease;
    transition-delay: 0.2s;
}

/* Animation states */
.benefit-item.animate .benefit-content h3,
.benefit-item.animate .benefit-content p {
    transform: translateY(0);
    opacity: 1;
}

/* Hover animations */
.benefit-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.05);
}

.benefit-item:hover .benefit-icon::before {
    opacity: 1;
}

.benefit-item:hover .benefit-icon .icon {
    transform: scale(1.1);
}

/* Animation delays for sequential appearance */
.benefit-item:nth-child(1) { transition-delay: 0s; }
.benefit-item:nth-child(2) { transition-delay: 0.1s; }
.benefit-item:nth-child(3) { transition-delay: 0.2s; }
.benefit-item:nth-child(4) { transition-delay: 0.3s; }
.benefit-item:nth-child(5) { transition-delay: 0.4s; }

/* Mobile adjustments */
@media (max-width: 768px) {
    .benefit-item {
        padding: 1.5rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 1rem;
    }

    .benefit-content h3 {
        font-size: 1.1rem;
    }

    .benefit-content p {
        font-size: 0.95rem;
    }
}

/* Animation keyframes */
@keyframes slideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Add smooth scrolling to the whole page */
html {
    scroll-behavior: smooth;
}

/* Trust Badges */
.trust-badges {
    padding: var(--spacing-lg) 0;
}

.badge-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.badge {
    background: var(--background);
    color: var(--primary);
    border: 1px solid var(--accent);
    border-radius: 0;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent);
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.3s ease;
}

.badge:hover::after {
    opacity: 0.1;
    transform: translateX(0);
}

.badge:hover {
    background: var(--accent);
    color: var(--background);
}

/* Final CTA Section */
.final-cta {
    background: var(--primary);
    color: var(--background);
    padding: var(--spacing-lg) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQ0MCIgaGVpZ2h0PSI4MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTAgMEwxNDQwIDgwMEgwVjBaIiBmaWxsPSIjRTU1OTM0IiBmaWxsLW9wYWNpdHk9IjAuMSIvPjwvc3ZnPg==');
    opacity: 0.1;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--background);
}

.contact-info {
    margin-top: var(--spacing-md);
}

.contact-info a {
    color: var(--background);
    text-decoration: none;
    opacity: 0.9;
}

.contact-info a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--background);
    padding: var(--spacing-md) 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-md: 1.5rem;
    }

    .hero {
        padding: calc(3rem + 60px) 0 3rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .focus-grid {
        grid-template-columns: 1fr;
    }

    .badge-container {
        flex-direction: column;
        align-items: center;
    }

    .logo {
        font-size: 0.9rem;
    }
    
    .nav-container {
        padding: 0.75rem var(--spacing-sm);
    }
    
    .nav-cta {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .hero h1 {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
        padding: 0 var(--spacing-sm);
    }
    
    .hero-subtitle {
        padding: 0 var(--spacing-sm);
    }

    .stat-card,
    .focus-card,
    .benefit-item {
        box-shadow: var(--shadow-sm);
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero, .stats-grid, .focus-grid, .benefits-list {
    animation: fadeIn 1s ease-out;
}

/* Additional African-themed elements */
.section-divider {
    height: 1px;
    background: linear-gradient(to right, 
        transparent,
        var(--accent) 30%,
        var(--highlight) 70%,
        transparent
    );
    opacity: 0.2;
    margin: var(--spacing-md) auto;
    width: 80%;
    max-width: 800px;
}

/* Elegant line decorations */
.hero h1::after,
.focus h2::after,
.why-afrexia h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--accent);
    margin: 1rem auto 0;
    opacity: 0.5;
}

/* Enhanced African Theme */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--accent),
        var(--highlight)
    );
    opacity: 0.3;
}

/* Refined Typography */
.hero h1 {
    letter-spacing: -0.02em;
    font-weight: 800;
}

.stat-number {
    font-feature-settings: "tnum";
    letter-spacing: -0.03em;
}

/* Additional Decorative Elements */
.focus h2::before,
.why-afrexia h2::before {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--accent);
    margin: 0 auto 1rem;
    transform: translateX(-100px);
    opacity: 0.3;
}

.focus h2::after,
.why-afrexia h2::after {
    transform: translateX(100px);
}

/* Additional UI Elements */
.benefit-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

/* Focus styles for accessibility */
.menu-toggle:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.nav-links a:focus {
    outline: 0px 2px solid var(--accent);
}

/* Skip to main content link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent);
    color: white;
    padding: 8px;
    z-index: 1001;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
} 



.partners-section {
  background-color: var(--background);
  padding: var(--spacing-lg) var(--spacing-sm);
}

.partners-section h2 {
  font-family: 'IBM Plex Sans', sans-serif !important;
  color: var(--accent);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
}

.partner-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
}

.partner-card {
  background-color: #fff;
  border-left: 4px solid var(--highlight);
  box-shadow: var(--shadow-sm);
  padding: var(--spacing-md);
  border-radius: var(--border-radius);
}

.partner-card h3 {
  font-family: 'IBM Plex Sans', sans-serif !important;
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.partner-card p {
  font-family: 'IBM Plex Sans', sans-serif !important;
  color: var(--text);
  line-height: 1.6;
}
.cta-context {
  font-family: 'IBM Plex Sans', sans-serif !important;
  color: var(--highlight);
  font-size: 0.95rem;
  margin-top: 0.5rem;
  text-align: center;
}


.contact-info a {
  color: var(--highlight);
  text-decoration: none;
  font-weight: 500;
}

.contact-info a:hover {
  text-decoration: underline;
}


.linkedin-icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  transition: transform 0.2s ease;
  background-color: #E0E0DC;
  padding: 2px;
  border-radius: 20%;
}

.linkedin-icon:hover {
  transform: scale(1.1);
}
#who, #why, #focus {
  scroll-margin-top: 100px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: calc(4rem + 80px) 0 4rem;
  text-align: center;
  background-color: #000;
}

/* Slideshow container */
.hero .slides {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
}

/* Each background slide */
.hero .slide {
  position: absolute;
  inset: 0;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-color: #000;
  opacity: 0;
  animation: crossfade 12s infinite ease-in-out !important;
  z-index: -99;
}

.hero .slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* dark overlay on each image */
  z-index: 1;
}

/* Slide timing */
.hero .slide:nth-child(1) { animation-delay: 0s !important; }
.hero .slide:nth-child(2) { animation-delay: 6s !important; }

@keyframes crossfade {
  0%   { opacity: 0; }
  5%   { opacity: 1; }
  45%  { opacity: 1; }
  50%  { opacity: 0; }
  100% { opacity: 0; }
}

/* Gradient overlay on top of all background slides */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.6)
  );
  z-index: -1;
}

/* Map SVG overlay */
.map-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.07;
  pointer-events: none;
  mix-blend-mode: soft-light;
}

/* Hero content on top */
.hero .container {
  position: relative;
  z-index: 2;
}







/* Mobile responsiveness */
@media (max-width: 768px) {

  .hero h1 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    padding: 0 1rem;
  }

  .hero-subtitle {
    font-size: clamp(1rem, 4vw, 1.2rem);
    padding: 0 1rem;
  }
}
