    :root {
        /* Exact Brand Colors from Presentation */
        --primary-color: #0a1f44;        /* Dark Navy */
        --secondary-color: #00b4a0;      /* Teal Accent */
        --highlight-color: #ff9900;      /* Orange Highlight */
        --text-light: #ffffff;           /* White Text */
        --text-dark: #1a1a1a;            /* Dark Text for light backgrounds */
        --bg-light: #f8f9fa;             /* Light Background */
        --bg-gradient-start: #0a1f44;
        --bg-gradient-end: #174060;
        --navbar-bg-color: #ffffff;
        --p-color: #6c757d;

        /* Layout & UI tokens */
        --radius: 12px;
        --radius-sm: 8px;
        --gap: 1.25rem;
        --transition: 300ms;
        --elevation-1: 0 6px 24px rgba(10,26,47,0.08);
        --elevation-2: 0 12px 40px rgba(10,26,47,0.12);
    }

/* Typography - Clean Sans-Serif */
    html { scroll-behavior: smooth; }

    body {
        font-family: 'DM Sans', 'Segoe UI', Arial, 'Helvetica Neue', sans-serif;
        color: var(--text-dark);
        line-height: 1.6;
        background: linear-gradient(180deg, #fbfcfd 0%, var(--bg-light) 100%);
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        transition: background var(--transition) ease;
    }

    h1, h2, h3, h4, h5, h6 {
        font-family: 'DM Sans', 'Segoe UI', Arial, 'Helvetica Neue', sans-serif;
        font-weight: 700;
        color: var(--primary-color);
        letter-spacing: -0.5px;
    }

/* Navbar */
    .navbar {
        background-color: var(--navbar-bg-color) !important;
        background: var(--navbar-bg-color) !important;
        box-shadow: var(--elevation-1);
        backdrop-filter: blur(6px);
        padding: 0.6rem 1rem;
    }

    /* Ensure consistent height and center alignment */
    .navbar {
        min-height: 72px;
        align-items: center;
    }

    .navbar .container,
    .navbar .container-fluid {
        display: flex;
        align-items: center;
        gap: var(--gap);
    }

    .navbar-brand {
        color: var(--primary-color) !important;
        font-weight: 700;
        letter-spacing: 0.8px;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    /* Logo sizing */
    .navbar-brand img {
        height: 64px;
        width: auto;
        display: block;
        transition: height var(--transition) ease;
    }

    /* Responsive logo: scale down on smaller screens */
    @media (max-width: 768px) {
        .navbar-brand img {
            height: 48px;
        }
        .navbar {
            padding: 0.5rem 1rem;
        }
    }

    .nav-link {
        color: var(--primary-color) !important;
        font-weight: 600;
        transition: color var(--transition) ease, transform var(--transition) ease;
    }

    /* Vertically center nav items and push nav to the right */
    .navbar-nav {
        display: flex;
        align-items: center;
        margin-left: auto;
    }

    .navbar-nav .nav-item {
        display: flex;
        align-items: center;
    }

    .nav-link {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        line-height: 1.2;
    }
    .nav-link:hover {
        color: var(--secondary-color) !important;
        transform: translateY(-2px);
    }

    /* Ensure collapsed/expanded menu uses the same dark background so links remain visible on mobile */
    .navbar .navbar-collapse {
        background-color: var(--navbar-bg-color) !important;
    }

    /* Toggler icon should be default (dark) on white navbar */
    .navbar .navbar-toggler-icon {
        filter: none;
    }

    .navbar-toggler {
    border: 1px solid black;
}
    /* Nav spacing and CTA overrides */
    .navbar-nav .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.95rem;
    }

    /* Keep CTA button colors intact even though nav-link has !important color */
    .nav-link.custom-btn {
        color: var(--text-light) !important;
        background: linear-gradient(135deg, rgba(0,180,160,0.98) 0%, rgba(255,153,0,0.95) 100%);
        border: none;
        padding: 8px 18px !important;
        border-radius: 999px;
        box-shadow: 0 10px 30px rgba(0,184,169,0.12);
    }

    /* Make CTA stand out in desktop nav */
    @media (min-width: 992px) {
        .navbar-nav .nav-item:last-child .nav-link.custom-btn {
            margin-left: 12px;
        }
    }

    /* Mobile: make collapsed menu full-width and visible on white background */
    @media (max-width: 991px) {
        .navbar .navbar-collapse {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            z-index: 1050;
            padding: 1rem;
            box-shadow: var(--elevation-2);
        }

        .navbar-nav {
            background: var(--navbar-bg-color);
            border-radius: 0 0 var(--radius) var(--radius);
            padding: 0.5rem 0;
        }

        .navbar-nav .nav-link.custom-btn {
            display: inline-block;
            width: 100%;
            text-align: center;
            margin-top: 0.5rem;
        }
    }

/* Buttons - Updated to Match Brand */
    .custom-btn,
    .btn-primary {
        background: linear-gradient(135deg, rgba(0,180,160,0.98) 0%, rgba(255,153,0,0.95) 100%);
        border: none;
        color: var(--text-light);
        padding: 12px 28px;
        border-radius: var(--radius);
        font-weight: 700;
        transition: transform var(--transition) ease, box-shadow var(--transition) ease;
        box-shadow: 0 8px 30px rgba(0, 184, 169, 0.12);
        letter-spacing: 0.4px;
    }
    .custom-btn:hover,
    .btn-primary:hover {
        transform: translateY(-4px) scale(1.02);
        box-shadow: 0 18px 50px rgba(0, 184, 169, 0.18);
    }

    .btn-outline-primary {
        border: 2px solid var(--secondary-color);
        color: var(--secondary-color);
        background: transparent;
        font-weight: 700;
        transition: color var(--transition) ease, background var(--transition) ease;
    }
    .btn-outline-primary:hover {
        background: var(--secondary-color);
        color: var(--text-light);
        border-color: var(--secondary-color);
    }

/* Hero Section */
.hero {
    height: 93vh;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

/* Ensure there's no overlay applied via ::after (legacy or external CSS) */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: none !important;
    z-index: 1;
    pointer-events: none;
}

.hero-carousel-img {
    object-fit: fit;
    object-position: center;
    height: 93vh;
    width: 100%;
    min-height: 420px;
    max-height: 100vh;
    display: block;
        filter: saturate(1.06) contrast(1.08) brightness(1.02);
    transition: transform 12s linear;
}

.carousel-item.active .hero-carousel-img { transform: scale(1.02); }

.hero-text h1 {
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.55);
}

.hero h1 u {
    text-decoration: none;
    background: linear-gradient(270deg,
        rgba(0,180,160,1),
        rgba(0,150,130,1),
        rgba(255,153,0,1));
    background-size: 600% 600%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Section Underlines */
h2 u {
    text-decoration: none;
    background: linear-gradient(90deg, var(--secondary-color), var(--highlight-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.carousel-control-prev,
.carousel-control-next {
    z-index: 10;
}

.hero-text {
    z-index: 5;
}

/* Date/Location Text in Hero */
.date-text,
.location-text {
    color: var(--text-light);
    font-weight: 500;
    padding: 8px 20px;
    margin: 0 10px;
    background: rgba(26, 58, 95, 0.7);
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

/* Highlight Section */
.highlight {
    background: var(--bg-light);
    padding: 60px 0;
}

.highlight-thumb {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--elevation-1);
    transition: transform 0.3s ease;
}

.highlight-thumb:hover {
    transform: translateY(-10px);
}

.highlight-info {
    background: linear-gradient(to top, var(--primary-color), transparent);
}

.highlight-icon {
    color: var(--secondary-color);
}

/* Technology Icons */
.technology-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Stats */
.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.stat-label {
    text-transform: uppercase;
    font-size: 0.9rem;
    color: var(--p-color);
    font-weight: 600;
}

/* Technology Section */
    .technology-unified {
        background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    }

.tech-highlights .highlight-badge {
    padding: 10px 15px;
    background: linear-gradient(135deg, rgba(0, 184, 169, 0.1) 0%, rgba(0, 184, 169, 0.05) 100%);
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Metric Cards */
.metric-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 184, 169, 0.2);
    border-color: var(--secondary-color);
}

/* Process Stages */
.process-stage {
    transition: transform 0.3s ease;
    border: 1px solid #e9ecef;
}

.process-stage:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 184, 169, 0.15) !important;
}

.stage-number {
    font-size: 1.5rem;
    background: var(--secondary-color) !important;
}

/* Tables */
.table-primary {
    background-color: var(--primary-color) !important;
    color: var(--text-light) !important;
}

.table-primary th {
    color: var(--text-light) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 184, 169, 0.05);
}

.table-success {
    background-color: rgba(0, 184, 169, 0.1) !important;
}

/* Application Cards */
.application-card {
    border: none;
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255,255,255,0.6);
    box-shadow: var(--elevation-1);
    transition: transform var(--transition) ease, box-shadow var(--transition) ease;
    backdrop-filter: blur(6px) saturate(120%);
}

.application-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--elevation-2);
}

.card-img-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.application-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.application-card:hover .application-img {
    transform: scale(1.05);
}

.application-card .card-body {
    padding: 1.5rem;
}

.application-card .card-title {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.application-card .card-text {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Data Center Solutions */
    .datacenter-solutions {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--bg-gradient-end) 100%);
        color: var(--text-light);
    }

.datacenter-solutions h2,
.datacenter-solutions p {
    color: var(--text-light);
}

.feature-item {
    display: flex;
    align-items: start;
    margin-bottom: 1.5rem;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-icon i {
    color: var(--text-light);
    font-size: 1.5rem;
}

.feature-text {
    color: var(--text-dark);
    line-height: 1.5;
}

/* Resources Section */
.pdf-section {
    background: linear-gradient(180deg, var(--bg-light) 0%, #ffffff 100%);
}

.resource-category-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-color);
    border-bottom: 3px solid var(--secondary-color);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.featured-resource {
    background: linear-gradient(135deg, #ffffff 0%, var(--bg-light) 100%);
    border: 2px solid var(--secondary-color);
    box-shadow: 0 10px 40px rgba(0, 184, 169, 0.15);
    position: relative;
    overflow: hidden;
}

.featured-resource::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--highlight-color) 100%);
}

.resource-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255,255,255,0.85);
    box-shadow: var(--elevation-1);
    transition: transform var(--transition) ease, box-shadow var(--transition) ease;
    height: 100%;
    backdrop-filter: blur(6px);
}

.resource-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--elevation-2);
}

.resource-thumbnail-large {
    position: relative;
    height: 100%;
    min-height: 300px;
    background: linear-gradient(135deg, #e9ecef 0%, var(--bg-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.resource-thumbnail-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--highlight-color) 0%, #ff8555 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
}

.resource-thumbnail {
    height: 180px;
    background: linear-gradient(135deg, #e9ecef 0%, var(--bg-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid #dee2e6;
}

.resource-thumbnail-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    opacity: 0.6;
}

.resource-type-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.resource-content {
    padding: 1.5rem;
}

.resource-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.resource-title {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.featured-resource .resource-title {
    font-size: 1.5rem;
}

.resource-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.resource-highlights {
    background: rgba(0, 184, 169, 0.05);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlight-list li {
    padding: 0.25rem 0;
    font-size: 0.9rem;
}

.resource-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.meta-item {
    font-size: 0.85rem;
    color: #6c757d;
    display: inline-flex;
    align-items: center;
}

.resource-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
    min-width: 180px;
    text-align: center;
    flex-direction: column;
}

.resource-download-btn:hover {
    background: #008c7a;
    border-color: #008c7a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 184, 169, 0.3);
}

.resource-download-btn.btn-outline-primary {
    background: white;
    color: var(--secondary-color);
}

.resource-download-btn.btn-outline-primary:hover {
    background: var(--secondary-color);
    color: white;
}

.resource-card:not(.featured-resource) .resource-download-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    min-width: auto;
    flex-direction: row;
}

.additional-resources-cta {
    border: 2px dashed var(--secondary-color);
}

/* Global Reach Section */
.global-reach {
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-light) 100%);
    position: relative;
}

.global-map-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.global-map-container img {
    width: 100%;
    height: auto;
    display: block;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.pulse-marker {
    position: absolute;
    width: 15px;
    height: 15px;
    background: var(--secondary-color);
    border-radius: 50%;
    opacity: 0.8;
    animation: pulse 2s infinite;
    cursor: pointer;
    pointer-events: auto;
}

.pulse-marker::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

.pulse-marker::after {
    content: attr(data-region);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(26, 58, 95, 0.9);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.pulse-marker:hover::after {
    opacity: 1;
}

.marker-usa { top: 43.7%; left: 20.3%; }
.marker-europe { top: 34.3%; left: 51.4%; }
.marker-india { top: 48.7%; left: 67%; }
.marker-africa { top: 54.7%; left: 48%; }
.marker-australia { top: 75.8%; left: 87.6%; }
.marker-middleeast { top: 46.5%; left: 58.5%; }

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

.regions-list {
    background: white;
    padding: 1.3rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.region-item {
    display: flex;
    align-items: start;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.region-item:last-child {
    border-bottom: none;
}

.region-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #008c7a 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.region-icon i {
    color: white;
    font-size: 1.25rem;
}

.region-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.region-content p {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

.global-stats-container {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--bg-gradient-end) 100%);
    box-shadow: 0 10px 30px rgba(26, 58, 95, 0.2);
    border-radius: 10px;
}

.stat-circle {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.stat-circle i {
    font-size: 2rem;
    color: white;
}

.global-stats-container .stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
}

.global-stats-container .stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.global-quote {
    background: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    border-left: 5px solid var(--secondary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.quote-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
    opacity: 0.2;
    position: absolute;
    top: 30px;
    left: 20px;
}

.quote-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--primary-color);
    line-height: 1.8;
    margin: 0 0 1rem 0;
}

.quote-footer {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

/* Footer */
    .site-footer {
        background: var(--primary-color);
        color: rgba(255, 255, 255, 0.8);
    }

.footer-menu-link {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-menu-link:hover {
    color: var(--secondary-color);
}

.social-icon-link {
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.social-icon-link:hover {
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Contact Form */
.contact {
    background: linear-gradient(180deg, var(--bg-light) 0%, #ffffff 100%);
}

.contact-form {
    border-radius: var(--radius);
    background: rgba(255,255,255,0.85);
    padding: 1.5rem;
    box-shadow: var(--elevation-1);
    backdrop-filter: blur(6px);
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 184, 169, 0.25);
}

#submitBtn {
    background: var(--secondary-color);
    border: none;
    transition: all 0.3s ease;
}

#submitBtn:hover {
    background: #008c7a;
    transform: translateY(-2px);
}

/* Badges */
.badge.bg-primary {
    background-color: var(--secondary-color) !important;
}

.badge.bg-secondary {
    background-color: var(--highlight-color) !important;
}

/* Alert Success */
.alert-success {
    background-color: rgba(0, 184, 169, 0.1);
    border-color: var(--secondary-color);
    color: #008c7a;
}

/* Gradient Backgrounds */
.bg-primary.bg-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--bg-gradient-end) 100%) !important;
}

.text-primary {
    color: var(--secondary-color) !important;
}

/* Responsive Design */
@media (max-width: 992px) {
    .pulse-marker {
        width: 15px;
        height: 15px;
    }
    
    .regions-list {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .card-img-wrapper {
        height: 200px;
    }
    
    .global-map-container {
        margin-bottom: rem;
    }
    
    .pulse-marker::after {
        font-size: 0.65rem;
        padding: 3px 8px;
    }
    
    .region-item {
        padding: 0.75rem 0;
    }
    
    .stat-circle {
        width: 60px;
        height: 60px;
    }
    
    .stat-circle i {
        font-size: 1.5rem;
    }
    
    .global-stats-container .stat-number {
        font-size: 2rem;
    }
    
    .quote-text {
        font-size: 1.1rem;
    }
    
    .resource-thumbnail-large {
        min-height: 200px;
    }
    
    .featured-resource .resource-title {
        font-size: 1.25rem;
    }
    
    .resource-download-btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .resource-highlights .row {
        display: block;
    }
}

@media (max-width: 576px) {
    .card-img-wrapper {
        height: 180px;
    }
    
    .application-card .card-body {
        padding: 1.25rem;
    }
    
    .global-stats-container {
        padding: 2rem 1rem !important;
    }
    
    .global-quote {
        padding: 2rem 1.5rem;
    }
    
    .quote-icon {
        font-size: 2rem;
    }
    
    .resource-category-title {
        font-size: 1.5rem;
    }
    
    .featured-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}

/* Contact Section - Clean Modern Design */
.contact-section {
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-light) 100%);
    padding: 80px 0;
}

.contact-info-card,
.contact-form-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-header h3 {
    color: var(--primary-color);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(0, 184, 169, 0.05);
    transform: translateX(5px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #008c7a 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.25rem;
}

.contact-text {
    flex: 1;
}

.contact-text h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-text p {
    margin: 0;
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-text a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: #008c7a;
    text-decoration: underline;
}

.founder-letter {
    padding-top: 1.5rem;
    border-top: 2px solid var(--bg-light);
}

.contact-form-card h3 {
    color: var(--primary-color);
    font-size: 1.75rem;
    font-weight: 700;
}

.contact-form-card .form-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-form-card .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-form-card .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 184, 169, 0.15);
}

.contact-form-card textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

#submitBtn {
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#submitBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 184, 169, 0.25);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .contact-info-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 2rem;
    }
    
    .contact-item {
        padding: 0.875rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon i {
        font-size: 1.1rem;
    }
}