/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Utility Classes for About Page */
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-10 { z-index: 10; }
.text-center { text-align: center; }
.text-white { color: white; }
.text-gray-900 { color: #1a1a1a; }
.text-gray-700 { color: #666666; }
.text-gray-800 { color: #4a4a4a; }
.text-gray-500 { color: #999999; }
.bg-white { background-color: white; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-200 { background-color: #e5e7eb; }
.bg-gray-900 { background-color: #1a1a1a; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.p-6 { padding: 1.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-12 { margin-top: 3rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.w-full { width: 100%; }
.h-80 { height: 20rem; }
.w-10 { width: 2.5rem; }
.h-10 { height: 2.5rem; }
.w-12 { width: 3rem; }
.h-12 { height: 3rem; }
.w-16 { width: 4rem; }
.h-16 { height: 4rem; }
.w-20 { width: 5rem; }
.h-20 { height: 5rem; }
.w-8 { width: 2rem; }
.h-8 { height: 2rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-full { border-radius: 9999px; }
.shadow-md { box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.space-x-4 > * + * { margin-left: 1rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.leading-relaxed { line-height: 1.75; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-lg { font-size: 1.125rem; }
.text-sm { font-size: 0.875rem; }
.opacity-90 { opacity: 0.9; }
.overflow-hidden { overflow: hidden; }
.transition { transition-property: all; transition-duration: 300ms; }
.duration-300 { transition-duration: 300ms; }
.hover\:bg-gray-100:hover { background-color: #f3f4f6; }
.hover\:bg-white:hover { background-color: white; }
.hover\:text-blue-800:hover { color: #1e40af; }

/* Grid utilities */
.grid { display: grid; }
.gap-4 { gap: 1rem; }

@media (min-width: 768px) {
    .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:text-5xl { font-size: 3rem; }
    .md\:text-xl { font-size: 1.25rem; }
}

@media (min-width: 640px) {
    .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
}

:root {
    --primary-blue: #0099D9;
    --primary-blue-dark: #007BB5;
    --primary-blue-light: #E6F5FC;
    --primary-blue-soft: #B8E4F7;
    --brand-charcoal: #4A4A4A;
    --text-dark: #1A1A1A;
    --text-gray: #666666;
    --text-light: #999999;
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-gray: #F5F5F5;
    --border-color: #E0E0E0;
    --success: #28A745;
    --error: #DC3545;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Solutions page CTA – logo blue */
.cta-section-logo-blue {
    background-color: var(--primary-blue) !important;
}
.cta-section-logo-blue-btn {
    color: var(--primary-blue) !important;
}

body {
    font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    padding-top: 0;
    margin-top: 0;
    overflow-x: hidden;
}

main {
    padding-top: 100px;
    margin-top: 0;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Navigation */
.navbar {
    background: var(--bg-white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.75rem 0;
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    width: 98%;
    max-width: 1600px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 2rem;
    box-sizing: border-box;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    padding: 0.5rem 0;
}

.logo-image {
    height: 28px;
    width: auto;
    max-width: 170px;
}

.logo-image-footer {
    height: 70px;
    width: auto;
    max-width: 280px;
    margin-bottom: 0.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.8rem;
    align-items: center;
    flex-wrap: nowrap;
    flex: 1;
    justify-content: center;
    margin: 0 2rem;
}

.nav-menu li {
    flex-shrink: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    white-space: nowrap;
    font-size: 0.95rem;
    display: inline-block;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-blue);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-blue);
}

.nav-menu a.btn-nav.active::after {
    display: none;
}

.btn-nav {
    background: var(--primary-blue);
    color: white !important;
    padding: 0.45rem 1.2rem;
    border-radius: 6px;
    transition: background 0.3s;
    white-space: nowrap;
    font-size: 0.9rem;
    display: inline-block;
    line-height: 1.4;
    flex-shrink: 0;
    margin-left: 1rem;
    border: none;
    cursor: pointer;
    font-weight: 500;
    text-decoration: none;
}

button.btn-nav,
.btn-nav button {
    background: var(--primary-blue);
    color: white !important;
    padding: 0.45rem 1.2rem;
    border-radius: 6px;
    transition: background 0.3s;
    white-space: nowrap;
    font-size: 0.9rem;
    display: inline-block;
    line-height: 1.4;
    flex-shrink: 0;
    margin-left: 1rem;
    border: none;
    cursor: pointer;
    font-weight: 500;
    font-family: inherit;
}

.btn-nav:hover,
button.btn-nav:hover,
.btn-nav button:hover {
    background: var(--primary-blue-dark);
}

.btn-nav::after {
    display: none !important;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.85);
    color: var(--brand-charcoal);
    border-color: var(--brand-charcoal);
}

.btn-outline:hover {
    background: var(--brand-charcoal);
    color: white;
}

.btn-white {
    background: white;
    color: var(--primary-blue);
}

.btn-white:hover {
    background: var(--bg-light);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(ellipse 70% 55% at 12% 18%, rgba(0, 153, 217, 0.45) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 88% 80%, rgba(0, 180, 230, 0.25) 0%, transparent 50%),
        linear-gradient(145deg, #004A6E 0%, #006390 38%, #007BB5 72%, #0099D9 100%);
    color: #ffffff;
    overflow: hidden;
    padding: 4rem 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08) 0%, transparent 42%),
        linear-gradient(180deg, rgba(0, 40, 70, 0.25) 0%, transparent 45%);
    z-index: 0;
    pointer-events: none;
    display: block;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.12;
    mix-blend-mode: soft-light;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 74, 110, 0.35) 0%, rgba(0, 123, 181, 0.2) 50%, rgba(0, 153, 217, 0.25) 100%);
    z-index: 1;
}

.hero-wrapper {
    width: 98%;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 4;
    padding: 0 2rem;
    box-sizing: border-box;
}

.hero-content {
    position: relative;
    z-index: 2;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

.hero-overlay {
    display: none;
}

/* Hero Animation Container */
.hero-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    overflow: hidden;
    pointer-events: none;
}

/* Animated Grid Background */
.animated-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.55;
    animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.45; }
    50% { opacity: 0.7; }
}

/* Network Nodes */
.network-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.network-node {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.node-core {
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.95), 0 0 32px rgba(126, 220, 255, 0.7);
    z-index: 2;
    position: relative;
}

.node-pulse-ring {
    position: absolute;
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    animation: nodePulse 2.5s ease-out infinite;
}

@keyframes nodePulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(5);
        opacity: 0;
    }
}

.node-1 { left: 12%; top: 22%; }
.node-2 { left: 75%; top: 28%; }
.node-3 { left: 22%; top: 65%; }
.node-4 { left: 80%; top: 72%; }
.node-5 { left: 48%; top: 45%; }

.node-1 .node-pulse-ring { animation-delay: 0s; }
.node-2 .node-pulse-ring { animation-delay: 0.5s; }
.node-3 .node-pulse-ring { animation-delay: 1s; }
.node-4 .node-pulse-ring { animation-delay: 1.5s; }
.node-5 .node-pulse-ring { animation-delay: 2s; }

/* Connection Lines */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    z-index: 1;
}

.connection-line {
    fill: none;
    stroke: rgba(180, 235, 255, 0.85);
    stroke-width: 1.5;
    stroke-dasharray: 6, 4;
    stroke-linecap: round;
    animation: connectionFlow 4s linear infinite;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.55));
}

.connection-line:nth-child(1) { animation-delay: 0s; }
.connection-line:nth-child(2) { animation-delay: 0.7s; }
.connection-line:nth-child(3) { animation-delay: 1.4s; }
.connection-line:nth-child(4) { animation-delay: 2.1s; }
.connection-line:nth-child(5) { animation-delay: 2.8s; }
.connection-line:nth-child(6) { animation-delay: 3.5s; }

@keyframes connectionFlow {
    0% {
        stroke-dashoffset: 0;
        opacity: 0.45;
    }
    50% {
        opacity: 1;
    }
    100% {
        stroke-dashoffset: 15;
        opacity: 0.45;
    }
}

/* Service Icons */
.service-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.service-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent 70%);
    animation: serviceGlow 3s ease-in-out infinite;
}

@keyframes serviceGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.75;
    }
    50% {
        transform: scale(1.25);
        opacity: 1;
    }
}

/* SMS Service Icon */
.service-sms {
    left: 8%;
    top: 20%;
    animation: floatIcon 10s ease-in-out infinite;
}

.service-sms .sms-bubble {
    width: 50px;
    height: 35px;
    background: rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(10px);
    border-radius: 18px 18px 18px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25), 0 0 16px rgba(255, 255, 255, 0.25);
}

.sms-dots {
    display: flex;
    gap: 4px;
}

.sms-dots span {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    animation: dotPulse 1.4s ease-in-out infinite;
}

.sms-dots span:nth-child(2) { animation-delay: 0.2s; }
.sms-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotPulse {
    0%, 100% { opacity: 0.4; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* SMS Messages */
.sms-message {
    position: absolute;
    background: #ffffff;
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 10px 16px;
    font-size: 0.95rem;
    color: #1a1a1a;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.35), 0 0 20px rgba(126, 220, 255, 0.35);
    animation: floatMessage 9s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.85);
    z-index: 4;
}

.sms-content {
    font-weight: 700;
    color: #005f87;
    letter-spacing: 0.01em;
}

.sms-content.typing {
    display: flex;
    gap: 3px;
}

.sms-content.typing span {
    width: 5px;
    height: 5px;
    background: #0099D9;
    border-radius: 50%;
    animation: typingDot 1.2s ease-in-out infinite;
}

.sms-content.typing span:nth-child(2) { animation-delay: 0.2s; }
.sms-content.typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDot {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-5px); }
}

.msg-1 {
    left: 4%;
    top: 18%;
    animation-delay: 1s;
}

.msg-2 {
    right: 4%;
    left: auto;
    top: 22%;
    animation-delay: 3s;
}

.msg-3 {
    left: 6%;
    top: 78%;
    animation-delay: 5s;
}

@keyframes floatMessage {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 1;
    }
    25% {
        transform: translateY(-35px) translateX(25px) rotate(2deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-50px) translateX(-15px) rotate(-2deg);
        opacity: 1;
    }
    75% {
        transform: translateY(-25px) translateX(10px) rotate(1deg);
        opacity: 1;
    }
}

/* Voice Service Icon */
.service-voice {
    left: 85%;
    top: 25%;
    animation: floatIcon 11s ease-in-out infinite;
    animation-delay: 1s;
}

.voice-waves {
    width: 60px;
    height: 60px;
    color: rgba(255, 255, 255, 0.95);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.55));
}

.wave-path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    animation: waveAnimate 2s ease-in-out infinite;
}

.wave-path:nth-child(2) {
    animation-delay: 0.3s;
}

@keyframes waveAnimate {
    0%, 100% {
        stroke-dasharray: 0, 100;
        opacity: 0.6;
    }
    50% {
        stroke-dasharray: 50, 50;
        opacity: 1;
    }
}

/* Data Service Icon */
.service-data {
    left: 88%;
    top: 70%;
    animation: floatIcon 12s ease-in-out infinite;
    animation-delay: 2s;
}

.data-chart {
    width: 50px;
    height: 40px;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
    padding: 8px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.2);
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, #ffffff, rgba(180, 235, 255, 0.85));
    border-radius: 2px 2px 0 0;
    animation: chartGrow 2s ease-in-out infinite;
}

.chart-bar:nth-child(1) { animation-delay: 0s; }
.chart-bar:nth-child(2) { animation-delay: 0.2s; }
.chart-bar:nth-child(3) { animation-delay: 0.4s; }
.chart-bar:nth-child(4) { animation-delay: 0.6s; }

@keyframes chartGrow {
    0%, 100% {
        transform: scaleY(0.8);
        opacity: 0.7;
    }
    50% {
        transform: scaleY(1.1);
        opacity: 1;
    }
}

/* Data Packets */
.data-packet-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.data-packet {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 14px rgba(255, 255, 255, 0.95), 0 0 24px rgba(126, 220, 255, 0.8);
    animation: packetMove 6s linear infinite;
    z-index: 2;
}

.packet-1 {
    left: 15%;
    top: 25%;
    animation-delay: 0s;
}

.packet-2 {
    left: 20%;
    top: 30%;
    animation-delay: 1.5s;
}

.packet-3 {
    left: 75%;
    top: 30%;
    animation-delay: 3s;
}

.packet-4 {
    left: 25%;
    top: 65%;
    animation-delay: 4.5s;
}

.packet-5 {
    left: 80%;
    top: 70%;
    animation-delay: 6s;
}

@keyframes packetMove {
    0% {
        transform: translate(0, 0) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    90% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        transform: translate(200px, 150px) scale(0.8);
        opacity: 0;
    }
}

/* Software Service Icon */
.service-software {
    left: 10%;
    top: 75%;
    animation: floatIcon 13s ease-in-out infinite;
    animation-delay: 3s;
}

.code-lines {
    width: 50px;
    height: 40px;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
    padding: 8px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.code-line {
    height: 3px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 2px;
    animation: codeBlink 2s ease-in-out infinite;
}

.code-line:nth-child(1) { width: 100%; animation-delay: 0s; }
.code-line:nth-child(2) { width: 75%; animation-delay: 0.3s; }
.code-line:nth-child(3) { width: 90%; animation-delay: 0.6s; }

@keyframes codeBlink {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Airtime/Power Service Icon */
.service-airtime {
    left: 82%;
    top: 15%;
    animation: floatIcon 10s ease-in-out infinite;
    animation-delay: 4s;
}

.lightning-bolt {
    width: 50px;
    height: 50px;
    color: #FFE566;
    filter: drop-shadow(0 0 14px rgba(255, 215, 0, 0.95));
    animation: lightningFlash 2s ease-in-out infinite;
}

@keyframes lightningFlash {
    0%, 100% {
        opacity: 0.9;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.12);
    }
}

/* Globe Service Icon */
.service-globe {
    left: 50%;
    top: 12%;
    transform: translateX(-50%);
    animation: floatIcon 14s ease-in-out infinite;
    animation-delay: 5s;
}

.globe-icon {
    width: 70px;
    height: 70px;
    color: rgba(255, 255, 255, 0.95);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.75));
    animation: globeRotate 20s linear infinite;
}

@keyframes globeRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Floating Particles */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.95), 0 0 18px rgba(126, 220, 255, 0.8);
    animation: particleFloat 15s linear infinite;
}

.particle-1 { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.particle-2 { left: 30%; animation-delay: 2s; animation-duration: 14s; }
.particle-3 { left: 60%; animation-delay: 4s; animation-duration: 13s; }
.particle-4 { left: 80%; animation-delay: 6s; animation-duration: 15s; }
.particle-5 { left: 45%; animation-delay: 8s; animation-duration: 11s; }
.particle-6 { left: 70%; animation-delay: 10s; animation-duration: 16s; }

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) translateX(8px) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(10vh) translateX(-8px) scale(1);
    }
    100% {
        transform: translateY(0) translateX(0) scale(0);
        opacity: 0;
    }
}

/* Icon Float Animation */
@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.95;
    }
    25% {
        transform: translateY(-30px) translateX(20px) rotate(5deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-45px) translateX(-15px) rotate(-5deg);
        opacity: 0.98;
    }
    75% {
        transform: translateY(-25px) translateX(10px) rotate(3deg);
        opacity: 1;
    }
}

.service-globe {
    animation-name: floatIconGlobe;
}

@keyframes floatIconGlobe {
    0%, 100% {
        transform: translateX(-50%) translateY(0) rotate(0deg);
        opacity: 0.95;
    }
    25% {
        transform: translateX(-50%) translateY(-30px) rotate(5deg);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) translateY(-45px) rotate(-5deg);
        opacity: 0.98;
    }
    75% {
        transform: translateX(-50%) translateY(-25px) rotate(3deg);
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    line-height: 1.15;
    color: #ffffff;
    max-width: 48rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 18px rgba(0, 40, 70, 0.35);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
    line-height: 1.55;
    max-width: 46rem;
    text-shadow: 0 1px 10px rgba(0, 40, 70, 0.3);
}

.hero-subtitle strong {
    font-weight: 700;
    color: #ffffff;
}

.hero-lead {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: rgba(230, 245, 252, 0.92);
    line-height: 1.65;
    max-width: 46rem;
    text-shadow: 0 1px 8px rgba(0, 40, 70, 0.25);
}

.hero-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
}

.hero-services li {
    position: relative;
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.03em;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(0, 153, 217, 0.3);
}

.hero-services li:not(:last-child)::after {
    content: none;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero .btn-primary {
    background: #ffffff;
    color: #007BB5;
    box-shadow: 0 6px 20px rgba(0, 40, 70, 0.3);
}

.hero .btn-primary:hover {
    background: #E6F5FC;
    color: #005f87;
}

.hero .btn-outline {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.85);
}

.hero .btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-color: #ffffff;
}

/* Page Hero */
.page-hero {
    padding: 5rem 0;
    background: white;
    text-align: center;
    width: 100%;
}

.page-hero-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: transparent;
    padding: 0 2rem;
    box-sizing: border-box;
    position: relative;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 0;
}

.page-hero-bg-light {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #F5F5F5;
    border-radius: 12px;
    z-index: 0;
}

.page-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #F5F5F5;
    border-radius: 12px;
    z-index: 0;
}

.page-hero-gradient-blue {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #F5F5F5;
    border-radius: 12px;
    z-index: 0;
}

.page-hero-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.page-hero-text {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

/* Awards hero – blue like About Us, larger box */
.awards-hero.page-hero {
    padding: 6.5rem 0;
}

.awards-hero .page-hero-wrapper {
    max-width: 1100px;
    padding: 3rem 3rem 4rem;
    position: relative;
}

.awards-hero .page-hero-gradient-blue {
    background: linear-gradient(135deg, #F0F9FD 0%, #E6F5FC 40%, #D6EFF9 70%, #E6F5FC 100%);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 153, 217, 0.08);
}

.awards-hero .page-hero-gradient-blue::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 153, 217, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 153, 217, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.awards-hero .page-hero-title {
    font-size: 2.15rem;
}

.awards-hero .page-hero-text {
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Statistics Section */
.stats-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    border: none;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    text-shadow: none;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 400;
}

/* Solutions Section */
.solutions-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #F0F9FD 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.solution-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 153, 217, 0.08);
    transition: all 0.3s;
    border: 1px solid rgba(0, 153, 217, 0.12);
    border-top: 3px solid var(--primary-blue);
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(0, 153, 217, 0.16);
    border-color: var(--primary-blue);
}

.solution-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-blue-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.solution-icon svg {
    width: 30px;
    height: 30px;
}

.solution-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.solution-description {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.solution-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.solution-link:hover {
    color: var(--primary-blue-dark);
}

/* MNO Connections Section */
.mno-section {
    padding: 5rem 0;
    background:
        radial-gradient(ellipse at top right, rgba(0, 153, 217, 0.12) 0%, transparent 50%),
        linear-gradient(180deg, #DFF3FB 0%, #EAF7FC 45%, #F5FBFE 100%);
}

.mno-section .section-title {
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--primary-blue-dark);
}

/* MNO Grid Container */
.mno-grid-container {
    margin-top: 3rem;
    overflow: visible;
    width: 100%;
}

/* Unified Countries Grid */
.mno-countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.mno-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
    overflow: visible;
}

.mno-region {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: visible;
}

.mno-region:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.mno-region-horizontal {
    overflow-x: visible;
    overflow-y: visible;
}

.mno-region-horizontal .country-cards-grid {
    overflow-x: auto;
}

.region-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-blue-light);
}

.africa-map-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    padding: 2rem;
}

/* Africa Map SVG */
.africa-map-svg {
    width: 100%;
    height: 100%;
    min-width: 900px;
    min-height: 1080px;
    z-index: 1;
    opacity: 1;
    pointer-events: none;
    filter: drop-shadow(0 4px 20px rgba(0, 153, 217, 0.4));
}

.africa-map-svg .africa-outline,
.africa-map-svg .africa-horn,
.africa-map-svg .madagascar {
    animation: mapPulse 5s ease-in-out infinite;
}

@keyframes mapPulse {
    0%, 100% {
        stroke-opacity: 0.7;
        fill-opacity: 1;
    }
    50% {
        stroke-opacity: 0.9;
        fill-opacity: 1;
    }
}

/* Ensure map is always visible */
.africa-outline,
.africa-horn,
.madagascar {
    opacity: 1 !important;
}

/* Country Cards Grid */
.country-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Horizontal layout for Southern Africa */
.country-cards-horizontal {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: visible;
    padding-bottom: 0.5rem;
    width: 100%;
    min-width: 100%;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-blue-light) transparent;
    -webkit-overflow-scrolling: touch;
}

.country-cards-horizontal::-webkit-scrollbar {
    height: 6px;
}

.country-cards-horizontal::-webkit-scrollbar-track {
    background: transparent;
}

.country-cards-horizontal::-webkit-scrollbar-thumb {
    background: var(--primary-blue-light);
    border-radius: 3px;
}

.country-cards-horizontal::-webkit-scrollbar-thumb:hover {
    background: var(--primary-blue);
}

.country-cards-horizontal .country-card {
    flex: 0 0 auto !important;
    min-width: 220px !important;
    max-width: none !important;
    width: auto !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    margin: 0 !important;
    white-space: normal !important;
    float: none !important;
    clear: none !important;
}

/* Ensure all country cards are visible in horizontal layout */
.country-cards-horizontal > .country-card {
    display: block !important;
    flex-shrink: 0 !important;
}

.country-card {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    border-left: 4px solid transparent;
    border-top: 3px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.country-card[data-status="active"] {
    border-left-color: var(--primary-blue);
    border-top-color: rgba(0, 153, 217, 0.2);
}

.country-card[data-status="pending"] {
    border-left-color: var(--primary-blue);
    border-top-color: rgba(0, 153, 217, 0.2);
}

.country-card:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.country-identity {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-width: 0;
}

.country-flag {
    width: 28px;
    height: 21px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.country-card .country-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.status-dot.active {
    background: var(--primary-blue);
    box-shadow: 0 0 6px rgba(0, 153, 217, 0.6);
}

.status-dot.pending {
    background: var(--primary-blue);
    box-shadow: 0 0 6px rgba(0, 153, 217, 0.6);
}

.operators-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: auto;
}

.operator-badge {
    display: inline-block;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    transition: all 0.2s;
    white-space: nowrap;
}

.operator-badge.active {
    background: var(--primary-blue-light);
    color: var(--primary-blue-dark);
    border: 1px solid var(--primary-blue);
}

.operator-badge.pending {
    background: var(--primary-blue-light);
    color: var(--primary-blue-dark);
    border: 1px solid var(--primary-blue);
    font-weight: 700;
    position: relative;
    cursor: help;
}

.operator-badge.pending:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.operator-badge.pending::after {
    content: "Coming soon";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 8px;
    padding: 6px 10px;
    background: #333;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    white-space: nowrap;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 1000;
}

.operator-badge.pending::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 2px;
    border: 5px solid transparent;
    border-top-color: #333;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 1000;
}

.operator-badge.pending:hover::after,
.operator-badge.pending:hover::before {
    opacity: 1;
}

.operator-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .mno-countries-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.75rem;
    }
    
    .country-card {
        min-height: 120px;
        padding: 0.85rem;
    }
    
    .country-card .country-name {
        font-size: 0.9rem;
    }
    
    .operator-badge {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .mno-countries-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1rem;
    }
}

@media (min-width: 1025px) {
    .mno-countries-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

/* MNO Statistics */
.mno-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(0, 153, 217, 0.2);
}

.mno-stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 153, 217, 0.1);
    border: 1px solid rgba(0, 153, 217, 0.15);
    border-bottom: 3px solid var(--primary-blue);
    transition: transform 0.3s, box-shadow 0.3s;
}

.mno-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(0, 153, 217, 0.18);
}

.mno-stat-item .stat-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.mno-stat-item .stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue-dark);
    margin-bottom: 0.25rem;
}

.mno-stat-item .stat-label {
    font-size: 1rem;
    color: var(--brand-charcoal);
    font-weight: 500;
}

/* Brands Section – standardized logo sizes, compact layout, transparent-PNG friendly */
.brands-section {
    padding: 3.5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #EAF7FC 100%);
    overflow: hidden;
}

.brands-scroll-wrapper {
    margin-top: 1.5rem;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.brands-scroll {
    display: flex;
    gap: 1rem;
    animation: scroll-logos 50s linear infinite;
    width: fit-content;
}

.brand-logo {
    background: rgba(248, 250, 252, 0.95);
    padding: 0.625rem 1rem;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-gray);
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    min-width: 110px;
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.brand-logo-img {
    width: auto;
    height: 36px;
    max-width: 100px;
    max-height: 36px;
    object-fit: contain;
    object-position: center;
    transition: all 0.25s;
}

.brand-logo:hover {
    background: var(--primary-blue-light);
    transform: translateY(-2px);
}

.brand-logo:hover .brand-logo-img {
    opacity: 1;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive – smaller boxes, more per row */
@media (max-width: 768px) {
    .brand-logo {
        min-width: 90px;
        min-height: 44px;
        padding: 0.5rem 0.75rem;
    }

    .brand-logo-img {
        max-height: 28px;
        max-width: 80px;
    }

    .brands-scroll {
        gap: 0.75rem;
        animation-duration: 40s;
    }
}

/* Foundation Section */
.foundation-section {
    padding: 5rem 0;
}

.foundation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.foundation-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.foundation-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--primary-blue);
}

.foundation-icon svg {
    width: 100%;
    height: 100%;
}

.foundation-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.foundation-text {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Leadership Section */
.leadership-section {
    padding: 5rem 0;
    background: white;
    width: 100%;
}

.leadership-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
    max-width: 100%;
    align-items: start;
}

.leadership-grid .leader-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.leader-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.leader-image {
    width: 150px;
    height: 150px;
    min-width: 150px;
    min-height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    background: var(--primary-blue-light);
    position: relative;
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    aspect-ratio: 1 / 1;
}

.leader-placeholder {
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    background: var(--primary-blue-light);
    aspect-ratio: 1 / 1;
}

.leader-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    word-wrap: break-word;
}

.leader-title {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.4;
    word-wrap: break-word;
}

.leader-bio {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--primary-blue);
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-description {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.contact-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-group textarea {
    resize: vertical;
}

.error-message {
    color: var(--error);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

/* Alerts */
.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 6px;
}

.alert-success {
    background: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

.alert-error {
    background: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
}

/* Blog Styles */
.blog-hero {
    padding: 4rem 0;
}

.blog-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.blog-hero-image {
    aspect-ratio: 16/9;
    background: var(--bg-gray);
    border-radius: 12px;
    overflow: hidden;
}

.blog-hero-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue-light), var(--primary-blue));
}

.blog-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.blog-hero-description {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.blog-filters {
    padding: 2rem 0;
    background: var(--bg-light);
}

.blog-search-wrapper {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.blog-search-form {
    flex: 1;
    min-width: 300px;
    display: flex;
    gap: 0.5rem;
}

.blog-search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
}

.blog-search-btn {
    padding: 0.75rem 1.5rem;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.blog-categories {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.blog-auth-actions {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.blog-auth-actions .btn {
    white-space: nowrap;
}

.category-btn {
    padding: 0.5rem 1.5rem;
    background: white;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.blog-posts {
    padding: 4rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

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

.blog-card-image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--bg-gray);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue-light), var(--primary-blue));
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--primary-blue-light);
    color: var(--primary-blue);
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-decoration: none;
}

.blog-card-category:hover,
.blog-card-category:focus-visible {
    background: var(--primary-blue);
    color: white;
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.blog-card-title a {
    color: var(--text-dark);
    text-decoration: none;
}

.blog-card-title a:hover {
    color: var(--primary-blue);
}

.blog-card-excerpt {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.blog-card-meta {
    font-size: 0.875rem;
    color: var(--text-light);
    display: flex;
    gap: 0.5rem;
}

/* Impact page – LinkedIn + CSR blocks (built on existing blog/awards styles) */
.impact-linkedin-grid {
    margin-top: 1.25rem;
}

.impact-group-nav {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}

.impact-group-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    border: 1px solid rgba(148, 163, 184, 0.45);
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.65);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.impact-group-chip:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(2, 6, 23, 0.10);
    border-color: rgba(0, 153, 217, 0.45);
    color: var(--primary-blue);
}

.impact-group {
    margin-top: 1.5rem;
    padding-top: 0.25rem;
}

.impact-group-title {
    margin: 0.25rem 0 0.5rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
}

.impact-linkedin-card .blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.impact-linkedin-cta {
    margin-top: 1rem;
}

.impact-linkedin-placeholder {
    background: linear-gradient(135deg, rgba(0, 153, 217, 0.18), rgba(45, 134, 89, 0.12));
    min-height: 160px;
}

.impact-gallery {
    margin-top: 1rem;
}

.impact-csr-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.25rem;
}

.impact-csr-card {
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 14px;
    padding: 1.1rem 1.1rem;
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 6px 18px rgba(2, 6, 23, 0.06);
}

.impact-csr-card h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
}

.impact-csr-card p {
    margin: 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.impact-quote {
    margin-top: 1.25rem;
    border-radius: 14px;
    padding: 1.1rem 1.1rem;
    border: 1px solid rgba(45, 134, 89, 0.25);
    background: linear-gradient(135deg, rgba(45, 134, 89, 0.08), rgba(0, 153, 217, 0.06));
}

.impact-quote-label {
    margin: 0 0 0.5rem 0;
    color: var(--text-dark);
}

.impact-quote blockquote {
    margin: 0;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.7;
}

.impact-actions {
    margin-top: 1.25rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

@media (max-width: 980px) {
    .impact-csr-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

/* Blog Post Page */
.blog-post-page {
    padding: 4rem 0;
}

.blog-post-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-post-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--primary-blue-light);
    color: var(--primary-blue);
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-post-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.blog-post-meta {
    font-size: 1rem;
    color: var(--text-gray);
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.blog-post-image {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 3rem;
    border-radius: 12px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-post-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* LinkedIn embed: fit page nicely and give video room to play */
.linkedin-embed-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-gray, #f1f5f9);
}

.linkedin-embed-iframe {
    width: 100% !important;
    min-height: 480px;
    height: 520px;
    max-height: 85vh;
    display: block;
    border: none;
}

@media (max-width: 640px) {
    .linkedin-embed-iframe {
        min-height: 400px;
        height: 460px;
    }
}

.blog-post-footer {
    text-align: center;
    margin-top: 4rem;
}

/* Admin Styles */
.admin-section {
    padding: 4rem 0;
    min-height: 80vh;
}

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

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.admin-stats .stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.admin-stats .stat-label {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.admin-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    background: white;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
    font-weight: 600;
}

.filter-tab:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.filter-tab.active {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.admin-title {
    font-size: 2.5rem;
    font-weight: 700;
}

.admin-table-wrapper {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.admin-table thead {
    background: var(--primary-blue);
    color: white;
}

.admin-table th,
.admin-table td {
    padding: 1rem;
    text-align: left;
}

.admin-table tbody tr {
    border-bottom: 1px solid var(--border-color);
}

.admin-table tbody tr:hover {
    background: var(--bg-light);
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
}

.status-badge.published {
    background: #D4EDDA;
    color: #155724;
}

.status-badge.draft {
    background: #FFF3CD;
    color: #856404;
}

.status-badge.pending {
    background: #CCE5FF;
    color: #004085;
}

.actions {
    display: flex;
    gap: 0.5rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-view {
    background: var(--primary-blue-light);
    color: var(--primary-blue);
}

.btn-edit {
    background: #FFF3CD;
    color: #856404;
}

.btn-delete {
    background: #F8D7DA;
    color: #721C24;
}

.btn-approve {
    background: #D4EDDA;
    color: #155724;
}

.btn-reject {
    background: #F8D7DA;
    color: #721C24;
}

.inline-form {
    display: inline;
}

.blog-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.current-image {
    margin-top: 1rem;
}

.current-image img {
    max-width: 300px;
    border-radius: 8px;
}

/* Pagination */
.pagination-wrapper {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

/* Single-row, aligned pagination (Tailwind view without Tailwind) */
.pagination-wrapper nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
}
/* Hide mobile-only block on desktop */
.pagination-wrapper nav > div:first-child {
    display: none;
}
@media (min-width: 640px) {
    .pagination-wrapper nav > div:first-child {
        display: none;
    }
    .pagination-wrapper nav > div:last-child {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
        width: 100%;
    }
}
/* "Showing X to Y of Z results" and page controls on one line */
.pagination-wrapper nav > div:last-child > div:first-child {
    margin: 0;
}
.pagination-wrapper nav > div:last-child > div:first-child p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-dark, #374151);
}
/* Page buttons in one straight line */
.pagination-wrapper nav [class*="inline-flex"] {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    border-radius: 6px;
    overflow: hidden;
}
.pagination-wrapper nav [class*="inline-flex"] > * {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Size prev/next SVG icons (Tailwind pagination view has no Tailwind loaded) */
.pagination-wrapper nav svg {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.pagination {
    display: flex;
    gap: 0.5rem;
    list-style: none;
}

.pagination a,
.pagination span {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-dark);
}

.pagination a:hover {
    background: var(--primary-blue-light);
    border-color: var(--primary-blue);
}

.pagination .active span {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

/* Filters Section */
.filters-section {
    padding: 2rem 0;
    background: var(--bg-light);
}

.solution-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: transparent;
    text-align: center;
    display: flex;
    justify-content: center;
}

.cta-wrapper {
    width: 98%;
    max-width: 1600px;
    margin: 0 auto;
    background: #F5F5F5;
    border-radius: 12px;
    padding: 4rem 2rem;
    box-sizing: border-box;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cta-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

/* Partners Section */
.partners-section {
    padding: 4rem 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.partner-logo {
    background: var(--bg-gray);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: var(--text-gray);
    transition: all 0.3s;
}

.partner-logo:hover {
    background: var(--primary-blue-light);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

/* Team Section */
.team-section {
    padding: 5rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
}

.team-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    background: var(--primary-blue-light);
}

.team-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.team-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.team-role {
    color: var(--primary-blue);
    font-weight: 500;
}

/* Awards Section */
.awards-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 12%);
}

.award-block-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem 2.25rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(19, 127, 236, 0.12);
    border-left: 4px solid var(--primary-blue);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.award-block-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 8px 24px rgba(19, 127, 236, 0.08);
    border-left-color: var(--primary-blue);
}

.award-block-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.award-block-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(19, 127, 236, 0.1);
    color: var(--primary-blue);
    flex-shrink: 0;
}

.award-block-card .award-block-title {
    margin-bottom: 0;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.award-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.award-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-gray);
}

.award-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    background: var(--primary-blue-light);
}

.award-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.award-subtitle {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.award-description {
    color: var(--text-gray);
    line-height: 1.6;
}

.award-block {
    margin-bottom: 3.5rem;
}

.award-block:last-of-type {
    margin-bottom: 0;
}

.award-block-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.award-block-intro {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    max-width: 72ch;
}

.award-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.award-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.award-list li::before {
    display: none;
}

.award-list-bullet {
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-blue);
    display: block;
}

.award-block-highlight.award-block-card {
    background: linear-gradient(135deg, rgba(19, 127, 236, 0.07) 0%, #f8fafc 100%);
}

.awards-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.awards-gallery-item {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--bg-gray, #f0f0f0);
}

.awards-gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.awards-gallery-item figcaption {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: var(--text-gray);
    background: white;
}

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

/* CSR Section */
.csr-hero {
    background: #F5F5F5;
}

.csr-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #F5F5F5;
    border-radius: 12px;
    z-index: 0;
}

.csr-stats {
    padding: 4rem 0;
}

.csr-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.csr-stat {
    text-align: center;
}

.csr-stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.csr-stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.csr-stat-label {
    font-size: 1.125rem;
    color: var(--text-gray);
}

.initiatives-section {
    padding: 5rem 0;
}

.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.initiative-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.initiative-image {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--bg-gray);
}

.initiative-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: var(--primary-blue-light);
}

.initiative-card .solution-title {
    padding: 1.5rem 1.5rem 0.5rem;
}

.initiative-description {
    padding: 0 1.5rem 1rem;
    color: var(--text-gray);
}

.initiative-link {
    padding: 0 1.5rem 1.5rem;
    display: block;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.testimonial-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    background: var(--primary-blue-light);
}

.testimonial-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.testimonial-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.testimonial-role {
    color: var(--text-gray);
}

.newsletter-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.newsletter-subtitle {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
}

.no-posts {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-gray);
}

/* Footer */
.footer {
    background: transparent;
    color: white;
    padding: 4rem 0 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-main {
    /* Click Mobile brand blue */
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.18) 0%, transparent 52%),
        radial-gradient(circle at 82% 78%, rgba(0, 123, 181, 0.45) 0%, transparent 55%),
        linear-gradient(180deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: rgba(255, 255, 255, 0.92);
    padding: 4rem 3rem 3.5rem;
    border-radius: 16px;
    width: 98%;
    max-width: 1600px;
    margin: 0 auto 0.75rem;
    box-sizing: border-box;
    box-shadow: 0 18px 45px rgba(0, 123, 181, 0.28);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    max-width: 1500px;
    margin: 0 auto;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col:first-child {
    grid-column: span 1;
}

.footer-col-about h4 {
    margin-top: 0;
}

.footer-col-about h4 a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
}

.footer-col-about h4 a:hover {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: underline;
}

.footer-col-about p {
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.footer-col h4 {
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 0.5rem;
    display: inline-block;
    width: 100%;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.82);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-col ul li i {
    font-size: 1rem;
    opacity: 0.7;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
}

.footer-col a:hover {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: underline;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    margin-top: 1rem;
    font-size: 0.95rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-bottom {
    /* Click Mobile brand blue */
    background: var(--primary-blue-dark);
    padding: 1rem 3rem;
    width: 98%;
    max-width: 1600px;
    border-radius: 12px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 2rem;
    box-sizing: border-box;
    min-height: 50px;
}

.footer-bottom-left {
    flex: 0 0 auto;
    white-space: nowrap;
}

.footer-bottom-left .copyright-text {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.footer-bottom-middle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    justify-content: center;
    min-width: 0;
}

.footer-bottom-middle a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
    white-space: nowrap;
}

.footer-bottom-middle a:hover {
    color: #ffffff;
}

.footer-bottom-middle .divider {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0 0.25rem;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 0 0 auto;
    white-space: nowrap;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.social-links a:hover {
    background: rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    border-color: rgba(0, 0, 0, 0.2);
}

.social-links svg {
    width: 16px;
    height: 16px;
    fill: rgba(0, 0, 0, 0.6);
    display: block;
}

/* Social Section */
.social-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.social-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.social-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.social-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon.whatsapp {
    background: #25D366;
    color: white;
}

.social-icon.linkedin {
    background: #0077B5;
    color: white;
}

.social-icon svg {
    width: 40px;
    height: 40px;
}

.social-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.social-description {
    color: var(--text-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 0;
    }

    .navbar .container {
        width: 95%;
        padding: 0.75rem 1rem;
        border-radius: 8px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid var(--border-color);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-title {
        font-size: 2.75rem;
        font-weight: 800;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .page-hero-wrapper {
        width: 95%;
        padding: 3rem 1.5rem;
    }

    .cta-wrapper {
        width: 95%;
        padding: 3rem 1.5rem;
    }

    .page-hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .blog-hero-content {
        grid-template-columns: 1fr;
    }

    .blog-hero-title {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .blog-search-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .blog-auth-actions {
        margin-left: 0;
        width: 100%;
    }

    .blog-auth-actions .btn {
        width: 100%;
    }

    .admin-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .footer-main {
        width: 98%;
        padding: 3rem 1.5rem;
        border-radius: 12px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-col:first-child {
        grid-column: span 1;
    }

    .footer-bottom {
        width: 98%;
        padding: 1rem 1.5rem;
        border-radius: 12px;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        flex-wrap: wrap;
        min-height: auto;
    }

    .footer-bottom-left,
    .footer-bottom-middle,
    .footer-bottom-right {
        width: 100%;
        justify-content: center;
    }

    .footer-bottom-left .copyright-text {
        white-space: normal;
    }

    .footer-bottom-middle {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-bottom-middle .divider {
        display: none;
    }

    .footer-bottom-right {
        flex-direction: column;
        gap: 1rem;
    }

    .social-links {
        justify-content: center;
    }

.newsletter-form {
    flex-direction: column;
}

/* Authentication Styles */
.auth-section {
    padding: 4rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.auth-container {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.auth-card {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.auth-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.auth-subtitle {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-group small {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.btn-block {
    width: 100%;
}

.auth-footer {
    margin-top: 2rem;
    text-align: center;
    color: var(--text-gray);
}

.auth-footer a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.alert-success {
    background: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

.alert-danger {
    background: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
}

.alert-info {
    background: #D1ECF1;
    color: #0C5460;
    border: 1px solid #BEE5EB;
}

.alert-warning {
    background: #FFF3CD;
    color: #856404;
    border: 1px solid #FFE082;
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
        font-weight: 800;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .stats-grid,
    .solutions-grid,
    .foundation-grid,
    .leadership-grid {
        grid-template-columns: 1fr;
    }

    .mno-map {
        min-height: 600px;
        padding: 1.5rem 1rem;
    }
    
    .africa-map-svg {
        min-width: 100%;
        min-height: 600px;
    }

    .country-card {
        position: relative;
        min-width: 150px;
        margin-bottom: 1rem;
    }

    .country-card[data-country] {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        display: block !important;
        visibility: visible !important;
    }
    
    .country-cards-horizontal .country-card[data-country] {
        position: relative !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .mno-map {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.5rem;
        position: relative;
    }

    .connection-map {
        display: none;
    }
}

/* About Page Styles */
.about-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 0;
}

.about-intro p {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--text-dark);
    font-weight: 400;
}

.about-section {
    padding: 3rem 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.about-section:nth-child(even) {
    background: var(--bg-light);
}

.about-section-wrapper {
    width: 98%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.about-section-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    border-top: 4px solid var(--primary-blue);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.about-section-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-blue-dark));
}

.about-section-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.about-section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-blue-light);
}

.about-section-title::before {
    content: '';
    width: 6px;
    height: 50px;
    background: linear-gradient(180deg, var(--primary-blue), var(--primary-blue-dark));
    border-radius: 3px;
    flex-shrink: 0;
}

.about-section-content {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.about-section-content p {
    margin-bottom: 1.25rem;
    font-weight: 400;
}

.about-section-content p:last-child {
    margin-bottom: 0;
}

.about-section-content strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.about-highlight-box {
    background: linear-gradient(135deg, var(--primary-blue-light) 0%, rgba(0, 153, 217, 0.05) 100%);
    padding: 1.75rem 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 5px solid var(--primary-blue);
    box-shadow: 0 2px 10px rgba(0, 153, 217, 0.1);
    position: relative;
}

.about-highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-blue), var(--primary-blue-dark));
    border-radius: 0 3px 3px 0;
}

.about-highlight-box p {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.125rem;
    line-height: 1.9;
    font-weight: 500;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.about-stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, white 0%, var(--bg-light) 100%);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--primary-blue-light);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.about-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-blue-dark));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.about-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 153, 217, 0.15);
    border-color: var(--primary-blue);
}

.about-stat-item:hover::before {
    transform: scaleX(1);
}

.about-stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.about-stat-label {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.countries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.country-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: white;
    color: var(--primary-blue);
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid var(--primary-blue-light);
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.country-badge:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 153, 217, 0.3);
    border-color: var(--primary-blue);
}

/* Reach Statistics Cards */
.reach-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
    max-width: 100%;
}

.reach-stat-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.reach-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.reach-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.reach-stat-label {
    font-size: 0.95rem;
    color: var(--text-gray);
    font-weight: 500;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .reach-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .reach-stat-card {
        padding: 1.5rem 1rem;
    }
    
    .reach-stat-number {
        font-size: 2rem;
    }
    
    .reach-stat-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .about-section-wrapper {
        width: 95%;
        padding: 0 1rem;
    }
    
    .about-section-card {
        padding: 2.5rem 2rem;
    }
    
    .about-section-title {
        font-size: 2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .about-section-title::before {
        width: 50px;
        height: 4px;
    }
    
    .about-intro p {
        font-size: 1.125rem;
    }
    
    .about-section-content {
        font-size: 1rem;
        line-height: 1.8;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-stat-item {
        padding: 2rem 1.5rem;
    }
    
    .about-stat-number {
        font-size: 2.5rem;
    }
    
    .countries-list {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .country-badge {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* About Philosophy Section */
.about-philosophy-section {
    padding: 6rem 0 4rem;
    background: white;
    margin-top: 90px;
    min-height: calc(100vh - 90px);
    width: 100%;
}

.about-philosophy-content {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: left;
}

.about-philosophy-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-philosophy-text {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--text-gray);
}

.about-geometric-graphic {
    width: 100%;
    max-width: 500px;
    margin: 4rem auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.about-geometric-graphic svg {
    width: 100%;
    height: auto;
    max-height: 600px;
    display: block;
}

/* About Page Hero with Dark Blue Background */
.about-hero {
    padding: 5rem 0;
    background: var(--primary-blue);
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    width: 100%;
}

.about-hero-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-blue);
    opacity: 1;
    z-index: 1;
    width: 100%;
}

.about-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.05) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.05) 75%);
    background-size: 30px 30px;
    background-position: 0 0, 0 15px, 15px -15px, -15px 0px;
    opacity: 0.3;
}

.about-hero .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    line-height: 1.2;
}

.about-hero-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Two Column Layout */
.about-two-column {
    padding: 5rem 0;
    background: white;
    width: 100%;
}

.about-two-column .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.about-columns-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    width: 100%;
    max-width: 100%;
    align-items: start;
}

.about-column {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
}

.about-column-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-column-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray);
}

/* Mission Card */
.about-mission-card {
    background: white;
    border: 2px solid var(--primary-blue-light);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
}

.about-mission-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
}

.about-mission-icon svg {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    display: block;
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
}

.about-mission-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.about-mission-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray);
}

/* Partner Features Section */
.about-partner-section {
    padding: 5rem 0;
    background: var(--bg-light);
    width: 100%;
}

.about-partner-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.partner-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
    max-width: 100%;
    align-items: start;
}

.partner-feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.partner-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.partner-feature-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
}

.partner-feature-icon svg {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    display: block;
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
}

.partner-feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
    word-wrap: break-word;
}

.partner-feature-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
    word-wrap: break-word;
}

/* About CTA Section */
.about-cta-section {
    padding: 5rem 0;
    background: var(--primary-blue-light);
    width: 100%;
}

.about-cta-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.about-cta-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 4rem 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    box-sizing: border-box;
}

.about-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-cta-text {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

.about-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .partner-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-philosophy-section {
        padding: 4rem 0 3rem;
        margin-top: 70px;
    }
    
    .about-philosophy-title {
        font-size: 2rem;
    }
    
    .about-philosophy-text {
        font-size: 1rem;
    }
    
    .about-geometric-graphic {
        max-width: 400px;
        margin: 3rem auto 0;
    }
    
    .about-hero {
        padding: 4rem 0 3rem;
        margin-top: 70px;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-text {
        font-size: 1rem;
    }
    
    .about-two-column {
        padding: 3rem 0;
    }
    
    .about-columns-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-column-title {
        font-size: 1.75rem;
    }
    
    .about-partner-section {
        padding: 3rem 0;
    }
    
    .leadership-section {
        padding: 3rem 0;
    }
    
    .about-cta-section {
        padding: 3rem 0;
    }
    
    .about-cta-wrapper {
        padding: 3rem 2rem;
    }
    
    .about-cta-title {
        font-size: 2rem;
    }
    
    .about-cta-buttons {
        flex-direction: column;
    }
    
    .about-cta-buttons .btn {
        width: 100%;
    }
}

