:root {
            --primary: #1e40af;
            --secondary: #dc2626;
            --accent: #f59e0b;
            --dark: #111827;
            --light: #f8fafc;
            --gray: #6b7280;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.7;
            color: var(--dark);
            overflow-x: hidden;
            background-color: #ffffff;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--dark);
        }
        .hero-section {
            background: linear-gradient(135deg, rgba(30, 64, 175, 0.95) 0%, rgba(37, 99, 235, 0.9) 100%), url('https://images.unsplash.com/photo-1551958219-acbc608c6377?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
            color: white;
            padding: 180px 0 120px;
            position: relative;
        }
        .nav-brand {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--primary);
        }
        .nav-brand span {
            color: var(--secondary);
        }
        .navbar {
            padding-top: 1.5rem;
            padding-bottom: 1.5rem;
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        .navbar.scrolled {
            padding-top: 0.8rem;
            padding-bottom: 0.8rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        .nav-link {
            font-weight: 600;
            color: var(--dark) !important;
            margin: 0 10px;
            transition: color 0.3s;
            position: relative;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--primary) !important;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            padding: 12px 32px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background-color: #1e3a8a;
            border-color: #1e3a8a;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(30, 64, 175, 0.2);
        }
        .btn-secondary {
            background-color: var(--secondary);
            border-color: var(--secondary);
            padding: 12px 32px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        .btn-secondary:hover {
            background-color: #b91c1c;
            border-color: #b91c1c;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(220, 38, 38, 0.2);
        }
        .section-padding {
            padding: 100px 0;
        }
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        .section-title h2 {
            font-size: 2.8rem;
            display: inline-block;
            position: relative;
        }
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 5px;
            background: var(--secondary);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 5px;
        }
        .icon-box {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: rgba(30, 64, 175, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            transition: all 0.3s ease;
        }
        .icon-box i {
            font-size: 2rem;
            color: var(--primary);
        }
        .feature-card, .program-card, .team-card {
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            background: white;
            height: 100%;
            border: 1px solid #e5e7eb;
        }
        .feature-card:hover, .program-card:hover, .team-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
        }
        .feature-card .icon-box {
            margin: 30px auto 25px;
        }
        .program-card img, .blog-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }
        .team-card img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .team-card:hover img {
            transform: scale(1.05);
        }
        .team-info {
            padding: 25px;
        }
        .blog-card {
            border-radius: 15px;
            overflow: hidden;
            background: white;
            border: 1px solid #e5e7eb;
            transition: transform 0.3s ease;
            height: 100%;
        }
        .blog-card:hover {
            transform: translateY(-10px);
        }
        .blog-content {
            padding: 25px;
        }
        .stats-counter {
            background: linear-gradient(rgba(30, 64, 175, 0.95), rgba(30, 64, 175, 0.95)), url('https://images.unsplash.com/photo-1575361204480-aadea25e6e68?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
            color: white;
            padding: 100px 0;
        }
        .stat-box {
            text-align: center;
            padding: 30px;
        }
        .stat-box h3 {
            font-size: 3.5rem;
            font-weight: 900;
            color: white;
            margin-bottom: 10px;
        }
        .contact-info-box {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
            height: 100%;
            border-top: 5px solid var(--primary);
            transition: transform 0.3s ease;
        }
        .contact-info-box:hover {
            transform: translateY(-10px);
        }
        .contact-info-box i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        .footer {
            background-color: var(--dark);
            color: white;
            padding: 80px 0 30px;
        }
        .footer h5 {
            color: white;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }
        .footer h5::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background: var(--secondary);
            bottom: 0;
            left: 0;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #d1d5db;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        .copyright {
            border-top: 1px solid #374151;
            padding-top: 30px;
            margin-top: 60px;
            text-align: center;
            color: #9ca3af;
        }
        .friendlink {
            background-color: #f9fafb;
            padding: 70px 0;
        }
        .flink {
            display: inline-block;
            background: white;
            padding: 15px 30px;
            border-radius: 10px;
            margin: 10px;
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            border: 1px solid #e5e7eb;
            transition: all 0.3s ease;
        }
        .flink:hover {
            background-color: var(--primary);
            color: white;
            border-color: var(--primary);
            transform: translateY(-5px);
        }
        .form-control {
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #d1d5db;
            transition: all 0.3s;
        }
        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.25rem rgba(30, 64, 175, 0.25);
        }
        .map-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            height: 100%;
        }
        .map-container iframe {
            width: 100%;
            height: 100%;
            min-height: 450px;
            border: 0;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            text-decoration: none;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background-color: var(--secondary);
            transform: translateY(-5px);
        }
        @media (max-width: 992px) {
            .hero-section {
                padding: 150px 0 100px;
            }
            .section-padding {
                padding: 80px 0;
            }
            .section-title h2 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 120px 0 80px;
            }
            .section-padding {
                padding: 60px 0;
            }
            .section-title h2 {
                font-size: 1.8rem;
            }
            .stat-box h3 {
                font-size: 2.5rem;
            }
        }
