:root {
            --primary-dark: #1a1a2e;
            --primary-blue: #16213e;
            --accent-teal: #0ea5e9;
            --accent-purple: #8b5cf6;
            --light-bg: #f8fafc;
            --text-light: #e2e8f0;
            --text-dark: #1e293b;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--primary-dark);
        }
        .navbar {
            background-color: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            padding-top: 1rem;
            padding-bottom: 1rem;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(14, 165, 233, 0.2);
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--text-light) !important;
        }
        .navbar-brand span {
            color: var(--accent-teal);
        }
        .nav-link {
            color: var(--text-light) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--accent-teal) !important;
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
            color: var(--text-light);
            padding: 8rem 0 6rem;
            position: relative;
            overflow: hidden;
        }
        .hero-section h1 {
            font-size: 3.5rem;
            color: white;
            margin-bottom: 1.5rem;
        }
        .hero-section p.lead {
            font-size: 1.4rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            color: #cbd5e1;
        }
        .btn-primary {
            background: linear-gradient(to right, var(--accent-teal), var(--accent-purple));
            border: none;
            padding: 0.8rem 2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(14, 165, 233, 0.3);
        }
        .btn-outline-light {
            border-radius: 50px;
            padding: 0.8rem 2rem;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-outline-light:hover {
            background-color: white;
            color: var(--primary-dark);
        }
        .section-title {
            position: relative;
            margin-bottom: 3rem;
        }
        .section-title:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background: linear-gradient(to right, var(--accent-teal), var(--accent-purple));
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        .card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(14, 165, 233, 0.15);
        }
        .card-icon {
            font-size: 2.5rem;
            color: var(--accent-teal);
            margin-bottom: 1rem;
        }
        .service-card {
            padding: 2rem;
            text-align: center;
        }
        .stats-section {
            background-color: var(--primary-dark);
            color: white;
            padding: 5rem 0;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--accent-teal);
            margin-bottom: 0.5rem;
        }
        .team-member img {
            border-radius: 15px;
            margin-bottom: 1.5rem;
            transition: transform 0.3s;
        }
        .team-member:hover img {
            transform: scale(1.03);
        }
        .footer {
            background-color: var(--primary-dark);
            color: var(--text-light);
            padding: 4rem 0 2rem;
        }
        .footer a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: var(--accent-teal);
        }
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s;
        }
        .social-icons a:hover {
            background-color: var(--accent-teal);
            transform: translateY(-3px);
        }
        .friendlink a.flink {
            display: inline-block;
            padding: 0.5rem 1rem;
            margin: 0.3rem;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            color: #94a3b8;
            border: 1px solid rgba(148, 163, 184, 0.2);
            transition: all 0.3s;
        }
        .friendlink a.flink:hover {
            background-color: rgba(14, 165, 233, 0.1);
            color: var(--accent-teal);
            border-color: var(--accent-teal);
        }
        .form-control, .form-select {
            padding: 0.8rem 1rem;
            border-radius: 10px;
            border: 1px solid #cbd5e1;
        }
        .form-control:focus, .form-select:focus {
            border-color: var(--accent-teal);
            box-shadow: 0 0 0 0.25rem rgba(14, 165, 233, 0.25);
        }
        .news-card {
            border-left: 4px solid var(--accent-teal);
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            .hero-section p.lead {
                font-size: 1.1rem;
            }
            .navbar-brand {
                font-size: 1.5rem;
            }
        }
        .floating-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.05;
            z-index: 0;
        }
        .shape-1 {
            width: 300px;
            height: 300px;
            background: var(--accent-teal);
            top: 10%;
            right: 5%;
        }
        .shape-2 {
            width: 200px;
            height: 200px;
            background: var(--accent-purple);
            bottom: 20%;
            left: 5%;
        }
