:root {
    /* Absolute Branding - Do Not Override */
    --primary-red: #D71920;
    --secondary-red: #b3141a;
    --primary-dark: #1a1112;
    --primary-light: #2a1d1e;
    --bg-navy: #1a1112;
    --accent: #D71920;

    --white: #ffffff;
    --text-dark: #1a1112;
    --text-light: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.6);

    /* Layout */
    --section-padding: 100px 0;
    --transition: all 0.3s ease;
}

/* Global Background Controls */
.bg-navy,
.bg-dark,
.bg-dark-alt {
    background-color: var(--primary-dark) !important;
    color: var(--text-light) !important;
}

.bg-white,
.bg-light {
    background-color: var(--white) !important;
    color: var(--text-dark) !important;
}

/* Pro Map Fix - No Image fallback */
.map-container {
    /* background: radial-gradient(circle at center, rgba(215, 25, 32, 0.05) 0%, rgba(26, 17, 18, 1) 100%) !important; */
    border: 1px solid rgba(255, 25, 32, 0.1);
}

.map-svg {
    opacity: 0.9;
}

/* Hard Visibility Fix for Info Boxes */
.bg-light p.small {
    color: #444 !important;
    font-weight: 500 !important;
}

/* Force Dark Footer */
footer,
.footer {
    background-color: #0a0f14 !important;
    color: #fff !important;
}

/* Hard Contrast Rules */
.bg-white h1,
.bg-white h2,
.bg-white h3,
.bg-white h4,
.bg-white h5,
.bg-white p,
.bg-light h1,
.bg-light h2,
.bg-light h3,
.bg-light h4,
.bg-light h5,
.bg-light p {
    color: var(--text-dark) !important;
}

.bg-navy h1,
.bg-navy h2,
.bg-navy h3,
.bg-navy h4,
.bg-navy h5,
.bg-navy p,
.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark p,
.bg-dark-alt h1,
.bg-dark-alt h2,
.bg-dark-alt h3,
.bg-dark-alt h4,
.bg-dark-alt h5,
.bg-dark-alt p {
    color: var(--text-light) !important;
}

/* Specific Accent Enforcement */
.text-accent,
.text-gold {
    color: var(--primary-red) !important;
}

.bg-accent,
.bg-gold {
    background-color: var(--primary-red) !important;
}

/* Map Dot Fix */
.map-dot {
    fill: var(--primary-red) !important;
}

/* Spacing Variants */
.py-large {
    padding: var(--section-padding) !important;
}

.py-medium {
    padding: 80px 0 !important;
}

.py-small {
    padding: 40px 0 !important;
}

/* Subtext visibility in dark sections */
.bg-navy .opacity-75,
.bg-dark .opacity-75,
.bg-dark-alt .opacity-75 {
    color: rgba(255, 255, 255, 0.8) !important;
}
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.brand-text {
    font-size: 1.4rem;
    letter-spacing: 0.15em;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-white);
}

.hero-title {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 800;
    line-height: 0.95;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent);
}

.text-center.section-title::after,
.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.text-gradient {
    background: linear-gradient(45deg, var(--white), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* General Utilities */
.section-padding {
    padding: var(--section-padding);
}

.bg-dark-alt {
    background-color: var(--primary);
}

.bg-gradient-dark {
    background: linear-gradient(0deg, rgba(5, 8, 11, 1) 0%, transparent 100%);
}

.text-accent {
    color: var(--accent) !important;
}

/* Hero Section */
.gp-hero,
.inner-page-hero {
    position: relative;
    background-color: var(--primary-dark) !important;
    color: var(--text-light) !important;
    padding-top: 140px !important;
    padding-bottom: 70px !important;
    margin-top: 0 !important;
}

@media (max-width: 991px) {

    .gp-hero,
    .inner-page-hero {
        padding-top: 115px !important;
        padding-bottom: 50px !important;
    }
}

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-dark);
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    opacity: 0.5;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(75deg, rgba(5, 8, 11, 0.95) 0%, rgba(5, 8, 11, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
}

.underline-accent {
    position: relative;
    display: inline-block;
}

.underline-accent::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--accent);
    opacity: 0.3;
    z-index: -1;
}

/* World Map Component */
.map-container {
    background-color: #0b1118;
    border-radius: 20px;
    padding: 40px;
    position: relative;
}

.map-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.2));
}

/* Map Dot Glow */
@keyframes map-pulse {
    0% {
        r: 5;
        opacity: 0.8;
    }

    50% {
        r: 10;
        opacity: 0.4;
    }

    100% {
        r: 5;
        opacity: 0.8;
    }
}

.map-dot {
    cursor: pointer;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 0 10px var(--accent));
}

.map-dot:hover {
    fill: var(--text-white);
    r: 12;
    filter: drop-shadow(0 0 20px var(--accent));
}

.map-dot.pulse {
    animation: map-pulse 2s infinite;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 25px;
}

.bento-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.bento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.bento-item-1 {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-item-2 {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-item-3 {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-item-4 {
    grid-column: span 1;
    grid-row: span 1;
}

@media (max-width: 991px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-item-1 {
        grid-column: span 2;
    }
}

/* Footer Utilities */
.glass-icon-sm {
    width: 32px;
    height: 32px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.glass-icon-sm:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.hover-accent:hover {
    color: var(--accent) !important;
    opacity: 1 !important;
}
/* Executive Header Branding */
.navbar {
    background: #fff !important;
    padding: 10px 0;
    border: none !important;
    box-shadow: none !important;
}

.navbar-nav .nav-link {
    color: #1a1112 !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.8px;
    padding: 12px 18px !important;
    text-transform: uppercase;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-red) !important;
}

/* Pro-Level Spacing Utilities */
.py-large {
    padding: 140px 0 !important;
}

/* ── Inner Page Hero Title Section Standardized Spacing ── */
.gp-hero,
.inner-page-hero {
    position: relative;
    background-color: var(--primary-dark) !important;
    color: var(--text-light) !important;
    padding-top: 140px !important;
    padding-bottom: 70px !important;
    margin-top: 0 !important;
}

@media (max-width: 991px) {

    .gp-hero,
    .inner-page-hero {
        padding-top: 115px !important;
        padding-bottom: 50px !important;
    }
}


/* Button Branding - Force Red */
.btn-primary,
.btn-accent,
.bg-accent {
    background-color: var(--primary-red) !important;
    border-color: var(--primary-red) !important;
    color: #fff !important;
    font-weight: 600;
}

.btn-primary:hover,
.btn-accent:hover {
    background-color: var(--secondary-red) !important;
    border-color: var(--secondary-red) !important;
    transform: translateY(-4px) scale(1.02) !important;
    box-shadow: 0 15px 30px rgba(215, 25, 32, 0.3) !important;
    color: #fff !important;
}

.btn-contact {
    background-color: var(--primary-red) !important;
    border-color: var(--primary-red) !important;
    color: #fff !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(215, 25, 32, 0.3);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.9) !important;
    color: #fff !important;
    font-weight: 600 !important;
}

.btn-outline-light:hover {
    background: #fff !important;
    color: var(--primary-dark) !important;
}

/* Map Refinement */
.map-container {
    position: relative;
    min-height: 400px;
    overflow: hidden;
    border-radius: 12px;
}

.map-svg {
    filter: drop-shadow(0 0 10px rgba(215, 25, 32, 0.4));
}

.map-dot {
    fill: var(--primary-red) !important;
    filter: drop-shadow(0 0 10px rgba(215, 25, 32, 0.8));
    transition: transform 0.3s ease;
}

.map-dot:hover {
    transform: scale(1.5);
}

/* Footer Premium - Clean Styling */
.footer {
    background-color: #0a0f14 !important;
    color: #fff !important;
}

.footer-heading-plain {
    color: #fff !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.footer a {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none !important;
    transition: 0.3s;
}

.footer .footer-link:hover {
    transition: 1s;
    padding-left: 5px;
    text-decoration: underline !important;
    color: var(--accent) !important;
}

.footer-logo-box {
    background: transparent;
    padding: 0;
    display: inline-block;
}

.social-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--primary-red) !important;
    border-color: var(--primary-red) !important;
    transform: translateY(-5px);
    color: #fff !important;
}

/* Visibility Fixes */
.glass-panel {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 25, 32, 0.1);
}

.bg-white .glass-panel {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

/* Floating Actions - FIXED POSITIONS */
.whatsapp-float {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    background-color: #25d366 !important;
    color: #FFF !important;
    border-radius: 50px !important;
    text-align: center !important;
    font-size: 30px !important;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2) !important;
    z-index: 9999 !important;
    width: 60px !important;
    height: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: transform 0.3s ease, background-color 0.3s ease !important;
    text-decoration: none !important;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg) !important;
    background-color: #128c7e !important;
    color: #fff !important;
}

.back-to-top {
    position: fixed !important;
    bottom: 30px !important;
    left: 30px !important;
    background-color: var(--primary-red) !important;
    color: #fff !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
    z-index: 9999 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.back-to-top:hover {
    background-color: #000 !important;
    transform: translateY(-5px) !important;
    color: #fff !important;
}

/* Service Vertical Cards */
.service-vertical-card {
    background-color: var(--primary-light, #2a1d1e) !important;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.service-vertical-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(215, 25, 32, 0.2) !important;
    border-color: rgba(215, 25, 32, 0.4) !important;
}

.service-card-img-wrap {
    position: relative;
    width: 100%;
    padding-top: 63.33%;
    /* 600x380 aspect ratio */
    overflow: hidden;
}

.service-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-vertical-card:hover .service-card-img {
    transform: scale(1.08);
}

.service-card-body {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    background-color: var(--primary-light, #2a1d1e) !important;
}

.service-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03) !important;
    position: absolute;
    top: 1rem;
    right: 2rem;
    line-height: 1;
    transition: color 0.3s ease;
}

.service-vertical-card:hover .service-number {
    color: rgba(215, 25, 32, 0.15) !important;
}

.service-vertical-card .service-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white) !important;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.service-vertical-card .service-card-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85) !important;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-card-cta {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-red) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.service-card-cta:hover {
    color: var(--white) !important;
}

.service-card-cta .cta-arrow {
    transition: transform 0.3s ease;
    display: inline-block;
}

.service-vertical-card:hover .service-card-cta .cta-arrow {
    transform: translateX(6px);
}

/* Client Logo UI/UX Refinement */
.client-logo-img {
    max-height: 55px;
    /* Medium-big scale as requested */
    width: auto;
    max-width: 100%;
    object-fit: contain;
    /* filter: grayscale(100%) opacity(0.75);
   Clean, high-legibility monochrome tint on white bg */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.client-logo-img:hover {
    /* filter: grayscale(0%) opacity(1); */
    transform: scale(1.08);
}

/* Project Cards (Bento Grid & Case Studies) Refinements */
.project-card {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 280px;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--primary-dark) !important;
    text-decoration: none !important;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(215, 25, 32, 0.2);
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-card:hover img {
    transform: scale(1.06);
}

.project-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2.5rem 2rem;
    background: linear-gradient(180deg, rgba(26, 17, 18, 0) 40%, rgba(26, 17, 18, 0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white) !important;
    z-index: 2;
    transition: all 0.4s ease;
}

.project-card-overlay h4,
.project-card-overlay h3,
.project-card-overlay .h2,
.project-card-overlay .h3 {
    margin-bottom: 0.35rem;
    font-weight: 700;
    color: var(--white) !important;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.project-card:hover .project-card-overlay {
    background: linear-gradient(180deg, rgba(26, 17, 18, 0.1) 20%, rgba(26, 17, 18, 0.98) 100%);
}

.project-card:hover .project-card-overlay h4,
.project-card:hover .project-card-overlay h3,
.project-card:hover .project-card-overlay .h2,
.project-card:hover .project-card-overlay .h3 {
    color: var(--accent) !important;
}

/* Industry Cards */
.industry-card-item {
    background: #f8f9fa !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    border-left: 4px solid var(--accent) !important;
    border-radius: 4px;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    cursor: pointer;
}

.industry-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    background: #ffffff !important;
    border-left-color: var(--primary-dark) !important;
}

.industry-card-item h6 {
    color: var(--primary-dark) !important;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.industry-card-item p {
    color: #555555 !important;
}

/* Glass Testimonials */
.testimonial-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(215, 25, 32, 0.25) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3) !important;
}

/* Why Choose RAA Cards */
.why-card {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: rgba(215, 25, 32, 0.2) !important;
    background-color: var(--white) !important;
}

/* ── Shared Utility Classes (Replacing Inline Styles) ── */
.letter-spacing-sm {
    letter-spacing: 1px !important;
}

.letter-spacing-md {
    letter-spacing: 1.5px !important;
}

.letter-spacing-lg {
    letter-spacing: 2px !important;
}

.border-accent-left {
    border-left: 3px solid var(--accent) !important;
}

.border-accent-top {
    border-top: 3px solid var(--accent) !important;
}

.bg-glass-subtle {
    background: rgba(255, 255, 255, 0.03) !important;
}

.line-height-relaxed {
    line-height: 2.3 !important;
}

.line-height-normal {
    line-height: 1.8 !important;
}

.font-size-hero {
    font-size: clamp(2.5rem, 5vw, 3.5rem) !important;
}

.font-size-section {
    font-size: clamp(2rem, 4vw, 2.8rem) !important;
    letter-spacing: -0.02em !important;
}

.font-size-subheading {
    font-size: 1.8rem !important;
}

.max-w-600 {
    max-width: 600px !important;
}

.max-w-750 {
    max-width: 750px !important;
}

.icon-bullet-sm {
    font-size: 0.7rem !important;
}

.timeline-connector {
    border-left: 2px solid rgba(215, 25, 32, 0.2) !important;
    padding-left: 2.5rem !important;
    margin-left: 1rem !important;
}

.timeline-badge-node {
    width: 32px !important;
    height: 32px !important;
    position: absolute !important;
    left: -53px !important;
    top: 0 !important;
    box-shadow: 0 0 0 5px rgba(215, 25, 32, 0.1) !important;
}
/* Pulse Animation for WhatsApp */
@keyframes pulse-whatsapp {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-pulse {
    animation: pulse-whatsapp 2s infinite;
}

/* Hover Grow */
.hover-grow {
    transition: var(--transition-smooth);
}

.hover-grow:hover {
    transform: translateY(-10px);
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

/* Reveal Animation */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}
/* Responsive Adjustments */

@media (max-width: 1200px) {
    :root {
        --section-padding: 80px;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }

    .navbar-collapse {
        background: var(--primary);
        padding: 20px;
        margin-top: 20px;
        border-radius: 10px;
    }

    .section-padding {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .stats-bar h2 {
        font-size: 1.5rem;
    }

    .map-container {
        padding: 20px;
    }

    .project-card {
        height: 300px;
    }
}

@media (max-width: 575px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}
