:root {
            --primary: #1a237e;
            --secondary: #ff5722;
            --accent: #4caf50;
            --light: #f5f5f5;
            --dark: #212121;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            color: var(--dark);
            line-height: 1.7;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary) !important;
        }
        .navbar-brand span {
            color: var(--secondary);
        }
        .hero-section {
            background: linear-gradient(rgba(26, 35, 126, 0.85), rgba(26, 35, 126, 0.9)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
            color: white;
            padding: 10rem 0;
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
            font-weight: 700;
            color: var(--primary);
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--secondary);
        }
        .text-center .section-title:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card {
            border: none;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }
        .icon-box {
            width: 70px;
            height: 70px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin: 0 auto 1.5rem;
        }
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            padding: 0.75rem 2rem;
            font-weight: 600;
        }
        .btn-primary:hover {
            background-color: #151a5c;
            border-color: #151a5c;
        }
        .btn-secondary {
            background-color: var(--secondary);
            border-color: var(--secondary);
            padding: 0.75rem 2rem;
            font-weight: 600;
        }
        .btn-secondary:hover {
            background-color: #e64a19;
            border-color: #e64a19;
        }
        footer {
            background-color: var(--dark);
            color: #ccc;
        }
        footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .friendlink a.flink {
            display: inline-block;
            background: var(--light);
            padding: 0.5rem 1.5rem;
            margin: 0.5rem;
            border-radius: 50px;
            color: var(--primary);
            font-weight: 500;
            border: 1px solid #ddd;
            transition: all 0.3s;
        }
        .friendlink a.flink:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            transform: scale(1.05);
        }
        .timeline {
            position: relative;
            padding-left: 2rem;
        }
        .timeline:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--primary);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 2.5rem;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -2.5rem;
            top: 0.5rem;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--secondary);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--secondary);
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
        }
        .team-img {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border-radius: 50%;
            border: 5px solid white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 6rem 0;
                text-align: center;
            }
            .display-4 {
                font-size: 2.2rem;
            }
            .stats-number {
                font-size: 2.2rem;
            }
        }
