:root {
            --primary-blue: #0a2c66;
            --secondary-teal: #1a9c9c;
            --accent-gold: #d4af37;
            --dark-bg: #121c2d;
            --light-bg: #f8fafc;
            --text-dark: #1e293b;
            --text-light: #64748b;
        }
        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            line-height: 1.8;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }
        .navbar {
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            padding: 1.2rem 0;
            transition: all 0.3s ease;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-blue);
        }
        .nav-link {
            font-weight: 500;
            color: var(--text-dark);
            margin: 0 0.5rem;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--secondary-teal);
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-bg) 100%);
            color: white;
            padding: 8rem 0 6rem;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            opacity: 0.15;
            z-index: 0;
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        .btn-primary-custom {
            background-color: var(--secondary-teal);
            border: none;
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-primary-custom:hover {
            background-color: #148a8a;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        .section-padding {
            padding: 6rem 0;
        }
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--primary-blue);
            position: relative;
            display: inline-block;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 70px;
            height: 4px;
            background-color: var(--accent-gold);
        }
        .service-card {
            background: white;
            border-radius: 12px;
            padding: 2.5rem 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: transform 0.4s, box-shadow 0.4s;
            height: 100%;
            border-top: 4px solid transparent;
        }
        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-top-color: var(--secondary-teal);
        }
        .icon-box {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--secondary-teal), #0a2c66);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        .icon-box i {
            font-size: 2rem;
            color: white;
        }
        .about-image {
            border-radius: 12px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            transition: transform 0.5s;
        }
        .about-image:hover {
            transform: scale(1.02);
        }
        .stats-box {
            text-align: center;
            padding: 2rem;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-blue);
            display: block;
        }
        .timeline {
            position: relative;
            padding-left: 30px;
            border-left: 2px solid var(--secondary-teal);
        }
        .timeline-item {
            margin-bottom: 2.5rem;
            position: relative;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -36px;
            top: 5px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background-color: var(--secondary-teal);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--secondary-teal);
        }
        .team-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.4s;
        }
        .team-card:hover {
            transform: translateY(-10px);
        }
        .team-img {
            height: 280px;
            object-fit: cover;
            width: 100%;
        }
        .contact-form {
            background: white;
            padding: 3rem;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        }
        .form-control {
            padding: 0.9rem 1.2rem;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            transition: all 0.3s;
        }
        .form-control:focus {
            border-color: var(--secondary-teal);
            box-shadow: 0 0 0 3px rgba(26, 156, 156, 0.2);
        }
        .friendlink {
            background-color: var(--light-bg);
            padding: 4rem 0;
        }
        .flink {
            display: inline-block;
            background: white;
            padding: 1rem 2rem;
            margin: 0.7rem;
            border-radius: 8px;
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        .flink:hover {
            background-color: var(--primary-blue);
            color: white;
            transform: translateY(-5px);
        }
        footer {
            background-color: var(--dark-bg);
            color: #cbd5e1;
            padding: 4rem 0 2rem;
        }
        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            display: block;
            margin-bottom: 0.7rem;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: white;
        }
        .social-icon {
            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: 0.8rem;
            color: white;
            transition: all 0.3s;
        }
        .social-icon:hover {
            background-color: var(--secondary-teal);
            transform: translateY(-3px);
        }
        .copyright {
            border-top: 1px solid #334155;
            padding-top: 2rem;
            margin-top: 3rem;
            font-size: 0.9rem;
            color: #94a3b8;
        }
        .mobile-adjust {
            padding-top: 5rem;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .section-padding {
                padding: 4rem 0;
            }
            .section-title {
                font-size: 2rem;
            }
            .contact-form {
                padding: 2rem;
            }
            .mobile-adjust {
                padding-top: 4rem;
            }
        }
        .accordion-button {
            font-weight: 600;
            padding: 1.2rem 1.5rem;
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(26, 156, 156, 0.1);
            color: var(--primary-blue);
        }
        .certs-logo {
            filter: grayscale(100%);
            opacity: 0.8;
            transition: all 0.4s;
        }
        .certs-logo:hover {
            filter: grayscale(0);
            opacity: 1;
        }
        .breadcrumb {
            background-color: transparent;
            padding: 1rem 0;
        }
        .breadcrumb-item a {
            color: var(--secondary-teal);
            text-decoration: none;
        }
