:root {
            --primary: #003366;
            --secondary: #e6a700;
            --accent: #00509e;
            --light: #f8f9fa;
            --dark: #212529;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #333;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5 {
            font-weight: 700;
            color: var(--primary);
        }
        .navbar {
            background-color: rgba(255, 255, 255, 0.95) !important;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary) !important;
        }
        .nav-link {
            font-weight: 600;
            color: var(--dark) !important;
            margin: 0 0.5rem;
            transition: color 0.3s;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--secondary) !important;
        }
        .hero {
            background: linear-gradient(rgba(0, 51, 102, 0.85), rgba(0, 80, 158, 0.9)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            color: white;
            padding: 8rem 0;
        }
        .hero h1 {
            color: white;
            font-size: 3.5rem;
        }
        .section-padding {
            padding: 5rem 0;
        }
        .section-title {
            position: relative;
            margin-bottom: 3rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 70px;
            height: 4px;
            background-color: var(--secondary);
        }
        .text-center .section-title::after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card {
            border: none;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .icon-box {
            width: 80px;
            height: 80px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
        }
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            padding: 0.75rem 2rem;
            font-weight: 600;
        }
        .btn-primary:hover {
            background-color: var(--accent);
            border-color: var(--accent);
        }
        .btn-secondary {
            background-color: var(--secondary);
            border-color: var(--secondary);
            color: var(--dark);
            padding: 0.75rem 2rem;
            font-weight: 600;
        }
        .btn-secondary:hover {
            background-color: #d69900;
            border-color: #d69900;
        }
        .team-img {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border: 5px solid var(--light);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        .testimonial-card {
            border-left: 5px solid var(--secondary);
            background: var(--light);
        }
        .flink {
            display: inline-block;
            margin: 0.5rem 1rem;
            padding: 0.5rem 1rem;
            background: var(--light);
            border-radius: 5px;
            color: var(--primary);
            text-decoration: none;
            transition: all 0.3s;
            font-weight: 600;
        }
        .flink:hover {
            background: var(--primary);
            color: white;
            transform: scale(1.05);
        }
        .footer {
            background: var(--dark);
            color: white;
            padding: 3rem 0 1.5rem;
        }
        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: var(--secondary);
        }
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin: 0 0.5rem;
            transition: background 0.3s;
        }
        .social-icons a:hover {
            background: var(--secondary);
            color: var(--dark);
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.3s;
        }
        .back-to-top.show {
            opacity: 1;
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            .section-padding {
                padding: 3rem 0;
            }
        }
