:root {
            --primary-blue: #1a3a8f;
            --accent-teal: #00c9b7;
            --dark-navy: #0a1a4a;
            --light-gray: #f8f9fa;
            --medium-gray: #6c757d;
            --success-green: #28a745;
            --warning-orange: #fd7e14;
            --font-heading: 'Montserrat', sans-serif;
            --font-body: 'Open Sans', sans-serif;
        }
        body {
            font-family: var(--font-body);
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 700;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-blue) !important;
        }
        .navbar-brand span {
            color: var(--accent-teal);
        }
        .hero-section {
            background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-blue) 100%);
            color: white;
            padding: 8rem 0 6rem;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 70%;
            height: 200%;
            background: rgba(255, 255, 255, 0.03);
            transform: rotate(30deg);
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
        }
        .section-padding {
            padding: 6rem 0;
        }
        .section-title {
            color: var(--dark-navy);
            margin-bottom: 3rem;
            position: relative;
            display: inline-block;
        }
        .section-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -12px;
            width: 70px;
            height: 4px;
            background: var(--accent-teal);
            border-radius: 2px;
        }
        .icon-box {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
            display: inline-block;
            transition: all 0.3s ease;
        }
        .service-card, .product-card, .team-card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            height: 100%;
            background: white;
        }
        .service-card:hover, .product-card:hover, .team-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 18px 40px rgba(0,0,0,0.12);
        }
        .service-card .icon-box:hover {
            color: var(--accent-teal);
            transform: scale(1.1);
        }
        .team-card img {
            height: 280px;
            object-fit: cover;
            object-position: top;
        }
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--primary-blue);
            line-height: 1;
        }
        .bg-light-custom {
            background-color: #f0f8ff !important;
        }
        .contact-info-box {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.05);
            height: 100%;
            border-left: 5px solid var(--accent-teal);
        }
        .btn-primary-custom {
            background-color: var(--primary-blue);
            border-color: var(--primary-blue);
            padding: 0.75rem 2rem;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s;
        }
        .btn-primary-custom:hover {
            background-color: var(--dark-navy);
            border-color: var(--dark-navy);
            transform: translateY(-2px);
            box-shadow: 0 7px 15px rgba(26, 58, 143, 0.2);
        }
        footer {
            background-color: var(--dark-navy);
            color: #ddd;
        }
        footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        footer a:hover {
            color: var(--accent-teal);
        }
        .flink {
            display: inline-block;
            padding: 0.5rem 1rem;
            margin: 0.3rem;
            background: rgba(255,255,255,0.1);
            border-radius: 6px;
            color: #ddd !important;
            text-decoration: none;
            transition: all 0.3s;
        }
        .flink:hover {
            background: var(--accent-teal);
            color: var(--dark-navy) !important;
            transform: scale(1.05);
        }
        .breadcrumb {
            background-color: transparent;
            padding: 0;
        }
        .testimonial-card {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 8px 20px rgba(0,0,0,0.06);
            height: 100%;
            border-top: 4px solid var(--accent-teal);
        }
        .testimonial-card .quote-icon {
            color: var(--accent-teal);
            font-size: 1.8rem;
            margin-bottom: 1rem;
            opacity: 0.7;
        }
        .timeline-item {
            border-left: 3px solid var(--accent-teal);
            padding-left: 2rem;
            padding-bottom: 2rem;
            position: relative;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -9px;
            top: 0;
            width: 15px;
            height: 15px;
            background: var(--primary-blue);
            border-radius: 50%;
        }
        .img-hover-zoom {
            overflow: hidden;
            border-radius: 10px;
        }
        .img-hover-zoom img {
            transition: transform 0.6s ease;
        }
        .img-hover-zoom:hover img {
            transform: scale(1.05);
        }
        .navbar-nav .nav-link {
            font-weight: 500;
            margin: 0 0.5rem;
            border-radius: 6px;
            transition: all 0.3s;
        }
        .navbar-nav .nav-link:hover {
            background-color: rgba(26, 58, 143, 0.05);
            color: var(--primary-blue) !important;
        }
        .form-control:focus {
            border-color: var(--accent-teal);
            box-shadow: 0 0 0 0.25rem rgba(0, 201, 183, 0.25);
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(0, 201, 183, 0.1);
            color: var(--dark-navy);
            font-weight: 600;
        }
        .accordion-button:focus {
            box-shadow: 0 0 0 0.25rem rgba(0, 201, 183, 0.25);
        }
        .map-container {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: 100%;
            min-height: 300px;
        }
        .sticky-nav {
            transition: all 0.4s ease;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }
