:root {
            --primary-blue: #0056a6;
            --secondary-teal: #00a3a1;
            --accent-gold: #f4b41a;
            --dark-navy: #002b5c;
            --light-gray: #f8f9fa;
            --text-dark: #333333;
        }
        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(--dark-navy);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-blue) !important;
        }
        .nav-link {
            font-weight: 600;
            padding: 0.5rem 1.2rem !important;
            transition: color 0.3s;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--secondary-teal) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 43, 92, 0.85), rgba(0, 86, 166, 0.9)), url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 8rem 0;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--secondary-teal);
        }
        .service-card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.4s, box-shadow 0.4s;
            height: 100%;
            background: white;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 86, 166, 0.15);
        }
        .icon-wrapper {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 1.8rem;
        }
        .stats-counter {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-blue);
            line-height: 1;
        }
        .btn-primary {
            background: linear-gradient(to right, var(--primary-blue), var(--secondary-teal));
            border: none;
            padding: 0.8rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-primary:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(0, 86, 166, 0.4);
        }
        .contact-info i {
            color: var(--secondary-teal);
            width: 40px;
            font-size: 1.3rem;
        }
        footer {
            background: var(--dark-navy);
            color: #ccc;
        }
        .flink {
            color: #aaa;
            text-decoration: none;
            padding: 0.3rem 0;
            display: inline-block;
            transition: color 0.3s;
        }
        .flink:hover {
            color: white;
            text-decoration: underline;
        }
        .friendlinks-section {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
        }
        .breadcrumb-item a {
            color: var(--primary-blue);
            text-decoration: none;
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(0, 86, 166, 0.1);
            color: var(--primary-blue);
        }
        .form-control:focus {
            border-color: var(--secondary-teal);
            box-shadow: 0 0 0 0.25rem rgba(0, 163, 161, 0.25);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .stats-counter {
                font-size: 2.2rem;
            }
        }
        .img-hover-zoom {
            overflow: hidden;
            border-radius: 10px;
        }
        .img-hover-zoom img {
            transition: transform 0.5s ease;
        }
        .img-hover-zoom:hover img {
            transform: scale(1.05);
        }
