/* ============================================
   ABOUT PAGE CSS
   Extracted from: Homepage/About/about.blade.php
============================================ */

        :root {
            --hc-navy: #001f49;
            --hc-cyan: #00aeef;
            --hc-dark: #0a1628;
            --hc-light: #f8fafc;
            --hc-gray: #64748b;
            --spacing-xs: 0.5rem;
            --spacing-sm: 1rem;
            --spacing-md: 1.5rem;
            --spacing-lg: 2rem;
            --spacing-xl: 3rem;
            --spacing-2xl: 4rem;
            --radius-sm: 0.5rem;
            --radius-md: 1rem;
            --radius-lg: 1.5rem;
            --radius-xl: 2rem;
            --shadow-sm: 0 2px 8px rgba(0, 31, 73, 0.08);
            --shadow-md: 0 4px 16px rgba(0, 31, 73, 0.12);
            --shadow-lg: 0 8px 32px rgba(0, 31, 73, 0.16);
            --shadow-xl: 0 12px 48px rgba(0, 31, 73, 0.2);
        }

        * {
            font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        /* ===== HERO SECTION ===== */
        .hero-about {
            position: relative;
            min-height: 70vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-bg-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg,
                    rgba(0, 31, 73, 0.88) 0%,
                    rgba(0, 31, 73, 0.82) 50%,
                    rgba(0, 174, 239, 0.75) 100%);
            z-index: 1;
        }

        .hero-bg-image {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            filter: brightness(0.75);
            z-index: 0;
        }

        /* Parallax Shapes */
        .hero-parallax {
            position: absolute;
            inset: 0;
            z-index: 1;
            overflow: hidden;
        }

        .parallax-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.06;
        }

        .parallax-1 {
            width: 500px;
            height: 500px;
            background: var(--hc-cyan);
            top: -150px;
            right: -150px;
        }

        .parallax-2 {
            width: 350px;
            height: 350px;
            background: white;
            bottom: -100px;
            left: -100px;
        }

        .hero-container {
            z-index: 2;
            padding-top: var(--spacing-xl);
            padding-bottom: var(--spacing-xl);
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 600;
            color: white;
            letter-spacing: 0.3px;
        }

        .hero-title {
            font-size: clamp(2.25rem, 6vw, 3.75rem);
            font-weight: 700;
            line-height: 1.15;
            letter-spacing: -0.02em;
        }

        .text-gradient {
            background: linear-gradient(135deg, #00aeef 0%, #4dd4ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: clamp(1.1rem, 2.5vw, 1.35rem);
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
            max-width: 780px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-wave {
            position: absolute;
            bottom: -1px;
            left: 0;
            right: 0;
            z-index: 2;
            line-height: 0;
        }

        .hero-wave svg {
            width: 100%;
            height: auto;
        }

        /* ===== SECTION COMMON ===== */
        .py-6 {
            padding-top: 5rem;
            padding-bottom: 5rem;
        }

        .section-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--hc-navy), var(--hc-cyan));
            color: white;
            padding: 0.5rem 1.25rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-title {
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            font-weight: 700;
            color: var(--hc-navy);
            line-height: 1.25;
        }

        .section-subtitle {
            font-size: clamp(1rem, 2vw, 1.15rem);
            color: var(--hc-gray);
            max-width: 720px;
            margin: 0 auto;
        }

        .lead-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--hc-gray);
            margin-bottom: 1.5rem;
        }

        /* ===== VALUES SECTION ===== */
        .values-section {
            background: linear-gradient(180deg, white 0%, #f8fafc 100%);
        }

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

        .value-card {
            background: white;
            border-radius: var(--radius-xl);
            padding: 2.5rem 2rem;
            height: 100%;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(0, 31, 73, 0.06);
            text-align: center;
        }

        .value-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: var(--hc-cyan);
        }

        .value-icon-wrapper {
            width: 80px;
            height: 80px;
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, var(--hc-navy), var(--hc-cyan));
            box-shadow: 0 4px 16px rgba(0, 174, 239, 0.25);
        }

        .value-icon-wrapper i {
            font-size: 2rem;
            color: white;
        }

        .bg-success {
            background: linear-gradient(135deg, #10b981, #14b8a6) !important;
        }

        .bg-warning {
            background: linear-gradient(135deg, #f59e0b, #eab308) !important;
        }

        .bg-info {
            background: linear-gradient(135deg, #0ea5e9, #06b6d4) !important;
        }

        .value-title {
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--hc-navy);
            margin-bottom: 0.5rem;
        }

        .value-subtitle {
            font-size: 1rem;
            font-weight: 600;
            color: var(--hc-cyan);
            margin-bottom: 1rem;
        }

        .value-desc {
            font-size: 0.975rem;
            color: var(--hc-gray);
            line-height: 1.7;
            margin: 0;
        }

        /* ===== STATS SECTION ===== */
        .stats-section {
            background: linear-gradient(135deg, var(--hc-navy), #003066);
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 174, 239, 0.15) 0%, transparent 70%);
            border-radius: 50%;
        }

        .stats-card {
            position: relative;
            z-index: 1;
        }

        .stats-grid {
            display: flex;
            align-items: center;
            justify-content: space-evenly;
            gap: 2rem;
            flex-wrap: nowrap;
        }

        .stat-item {
            text-align: center;
            padding: 2rem 1rem;
            flex: 1;
            min-width: 0;
        }

        .stat-icon {
            font-size: 2.5rem;
            color: var(--hc-cyan);
            margin-bottom: 1rem;
            opacity: 0.8;
        }

        .stat-number {
            font-size: clamp(3rem, 6vw, 4rem);
            font-weight: 700;
            color: white;
            line-height: 1;
            display: inline-block;
        }

        .stat-plus,
        .stat-suffix {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 700;
            color: var(--hc-cyan);
            display: inline-block;
            margin-left: 0.25rem;
        }

        .stat-label {
            font-size: 1rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.85);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 0.75rem;
        }

        .stat-divider {
            width: 2px;
            height: 80px;
            background: linear-gradient(to bottom, transparent, rgba(0, 174, 239, 0.3), transparent);
            flex-shrink: 0;
        }

        /* ===== CONTENT SECTIONS ===== */
        .history-section,
        .network-section,
        .technology-section {
            background: white;
        }

        .network-section {
            background: linear-gradient(180deg, white 0%, #f8fafc 100%);
        }

        .content-wrapper {
            padding: 1rem 0;
        }

        /* History Section Redesign */
        .history-image-wrapper {
            position: relative;
        }

        .history-logo-container {
            background: white;
            border-radius: var(--radius-xl);
            padding: 3rem 2rem;
            box-shadow: var(--shadow-lg);
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .history-logo {
            max-width: 100%;
            height: auto;
        }

        .history-year-display {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            padding: 2rem;
            background: linear-gradient(135deg, rgba(0, 31, 73, 0.05), rgba(0, 174, 239, 0.05));
            border-radius: var(--radius-xl);
            border: 2px solid var(--hc-cyan);
        }

        .year-item {
            text-align: center;
        }

        .year-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--hc-navy);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .year-label {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--hc-cyan);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .year-connector {
            position: relative;
            flex: 1;
            max-width: 120px;
        }

        .connector-line {
            height: 3px;
            background: linear-gradient(90deg, var(--hc-navy), var(--hc-cyan));
            border-radius: 2px;
        }

        .connector-dot {
            width: 12px;
            height: 12px;
            background: var(--hc-cyan);
            border-radius: 50%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.2);
        }

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

        .highlight-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.5rem;
            background: linear-gradient(135deg, rgba(0, 31, 73, 0.03), rgba(0, 174, 239, 0.03));
            border-radius: var(--radius-lg);
            border: 1px solid rgba(0, 174, 239, 0.15);
            transition: all 0.3s ease;
        }

        .highlight-item:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
            border-color: var(--hc-cyan);
        }

        .highlight-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--hc-navy), var(--hc-cyan));
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .highlight-icon i {
            font-size: 1.5rem;
            color: white;
        }

        .highlight-number {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--hc-navy);
            line-height: 1;
        }

        .highlight-label {
            font-size: 0.9rem;
            color: var(--hc-gray);
            margin-top: 0.25rem;
        }

        /* Network Section Redesign */
        .network-image-card {
            position: relative;
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            height: 100%;
            min-height: 400px;
        }

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

        .network-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0, 31, 73, 0.3), rgba(0, 174, 239, 0.3));
            display: flex;
            align-items: flex-end;
            padding: 2rem;
        }

        .network-badge-float {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            background: white;
            padding: 1rem 1.5rem;
            border-radius: 50px;
            box-shadow: var(--shadow-lg);
            font-weight: 700;
            color: var(--hc-navy);
        }

        .network-badge-float i {
            font-size: 1.5rem;
            color: var(--hc-cyan);
        }

        .countries-card {
            background: white;
            border-radius: var(--radius-xl);
            padding: 2.5rem;
            box-shadow: var(--shadow-lg);
            border: 1px solid rgba(0, 31, 73, 0.08);
            height: 100%;
            min-height: 400px;
        }

        .countries-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--hc-navy);
            margin-bottom: 1.5rem;
        }

        .countries-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .country-badge {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 1.25rem;
            background: linear-gradient(135deg, rgba(0, 31, 73, 0.03), rgba(0, 174, 239, 0.03));
            border: 2px solid rgba(0, 174, 239, 0.15);
            border-radius: var(--radius-md);
            font-weight: 600;
            color: var(--hc-navy);
            transition: all 0.3s ease;
        }

        .country-badge:hover {
            background: linear-gradient(135deg, rgba(0, 31, 73, 0.05), rgba(0, 174, 239, 0.05));
            border-color: var(--hc-cyan);
            transform: translateX(4px);
        }

        .country-badge i {
            color: var(--hc-cyan);
            font-size: 1.25rem;
        }

        .timeline-badge {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            background: linear-gradient(135deg, rgba(0, 31, 73, 0.05), rgba(0, 174, 239, 0.05));
            border: 2px solid var(--hc-cyan);
            border-radius: var(--radius-lg);
            padding: 1rem 2rem;
            margin-top: 2rem;
        }

        .timeline-badge .year {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--hc-navy);
        }

        .timeline-badge .separator {
            font-size: 1.5rem;
            color: var(--hc-cyan);
        }

        /* Countries Grid */
        .countries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            gap: 1rem;
        }

        .country-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1rem;
            background: rgba(0, 174, 239, 0.05);
            border: 1px solid rgba(0, 174, 239, 0.15);
            border-radius: var(--radius-md);
            font-weight: 600;
            color: var(--hc-navy);
            transition: all 0.3s ease;
        }

        .country-item:hover {
            background: rgba(0, 174, 239, 0.1);
            border-color: var(--hc-cyan);
            transform: translateX(4px);
        }

        .country-item i {
            color: var(--hc-cyan);
            font-size: 1.1rem;
        }

        /* Tech Features */
        .tech-features {
            display: grid;
            gap: 1rem;
            margin-top: 2rem;
        }

        .tech-feature-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--hc-navy);
        }

        .tech-feature-item i {
            color: var(--hc-cyan);
            font-size: 1.35rem;
        }

        /* Image Wrappers */
        .image-wrapper {
            position: relative;
        }

        .image-frame {
            position: relative;
            z-index: 1;
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

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

        .image-decoration {
            position: absolute;
            width: 100%;
            height: 100%;
            border: 3px solid var(--hc-cyan);
            border-radius: var(--radius-xl);
            top: 20px;
            left: 20px;
            z-index: 0;
        }

        .image-decoration.decoration-right {
            left: auto;
            right: 20px;
        }

        /* ===== CTA SECTION ===== */
        .cta-section {
            background: white;
        }

        .cta-card {
            background: linear-gradient(135deg, var(--hc-navy), #003066);
            border-radius: var(--radius-xl);
            padding: 3rem 2.5rem;
            box-shadow: var(--shadow-xl);
            position: relative;
            overflow: hidden;
        }

        .cta-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(0, 174, 239, 0.15) 0%, transparent 70%);
            border-radius: 50%;
        }

        .cta-title {
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            font-weight: 700;
            color: white;
        }

        .cta-text {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.6;
        }

        .cta-card .btn-light {
            background: white;
            color: var(--hc-navy);
            border: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
        }

        .cta-card .btn-light:hover {
            background: var(--hc-cyan);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 174, 239, 0.4);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 991px) {
            .hero-about {
                min-height: 60vh;
            }

            .py-6 {
                padding-top: 3.5rem;
                padding-bottom: 3.5rem;
            }

            .values-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .stats-grid {
                flex-wrap: wrap;
                gap: 2rem;
            }

            .stat-item {
                flex: 0 0 calc(50% - 1rem);
            }

            .stat-divider {
                display: none;
            }

            .history-highlights {
                grid-template-columns: 1fr;
            }

            .network-image-card {
                min-height: 300px;
            }

            .countries-card {
                min-height: auto;
                padding: 2rem 1.5rem;
            }

            .countries-list {
                grid-template-columns: 1fr;
            }

            .image-decoration {
                top: 15px;
                left: 15px;
            }

            .image-decoration.decoration-right {
                right: 15px;
            }

            .cta-card {
                padding: 2.5rem 2rem;
            }
        }

        @media (max-width: 767px) {
            .hero-container {
                padding-top: var(--spacing-lg);
                padding-bottom: var(--spacing-lg);
            }

            .hero-badge {
                font-size: 0.85rem;
                padding: 0.625rem 1.25rem;
            }

            .section-badge {
                font-size: 0.75rem;
                padding: 0.4rem 1rem;
            }

            .value-card {
                padding: 2rem 1.5rem;
            }

            .value-icon-wrapper {
                width: 64px;
                height: 64px;
            }

            .value-icon-wrapper i {
                font-size: 1.5rem;
            }

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

            .stat-icon {
                font-size: 2rem;
            }

            .timeline-badge {
                padding: 0.75rem 1.5rem;
            }

            .timeline-badge .year {
                font-size: 1.25rem;
            }

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

            .image-decoration {
                top: 10px;
                left: 10px;
                border-width: 2px;
            }

            .image-decoration.decoration-right {
                right: 10px;
            }

            .cta-card {
                padding: 2rem 1.5rem;
            }

            .cta-card .btn-light {
                width: 100%;
                margin-top: 1rem;
            }
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        [data-aos] {
            opacity: 0;
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        [data-aos].aos-animate {
            opacity: 1;
        }

        [data-aos="fade-up"].aos-animate {
            animation: fadeInUp 0.6s ease forwards;
        }

        [data-aos="fade-down"].aos-animate {
            animation: fadeInUp 0.6s ease forwards reverse;
        }

        [data-aos="fade-right"].aos-animate {
            animation: fadeInUp 0.6s ease forwards;
        }

        [data-aos="fade-left"].aos-animate {
            animation: fadeInUp 0.6s ease forwards;
        }

        /* ===== UTILITY CLASSES ===== */
        .d-none {
            display: none !important;
        }

        /* ===== ACCESSIBILITY ===== */
        @media (prefers-reduced-motion: reduce) {

            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* Focus visible for keyboard navigation */
        *:focus-visible {
            outline: 2px solid var(--hc-cyan);
            outline-offset: 2px;
        }
    </style>