:root {
            --primary-blue: #0d1b36;
            --accent-orange: #ff6b35;
            --dark-gray: #2a2d3e;
            --light-gray: #f8f9fa;
            --text-gray: #6c757d;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: #333;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5 {
            font-weight: 700;
            color: var(--primary-blue);
        }
        .navbar {
            background-color: rgba(13, 27, 54, 0.95) !important;
            backdrop-filter: blur(10px);
            padding-top: 1rem;
            padding-bottom: 1rem;
            transition: all 0.3s ease;
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            color: white !important;
        }
        .navbar-brand span {
            color: var(--accent-orange);
        }
        .nav-link {
            color: rgba(255,255,255,0.85) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--accent-orange) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(13, 27, 54, 0.85), rgba(42, 45, 62, 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;
            background-size: cover;
            color: white;
            padding: 10rem 0;
            position: relative;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        .highlight {
            color: var(--accent-orange);
        }
        .btn-primary-custom {
            background-color: var(--accent-orange);
            border: none;
            color: white;
            padding: 0.8rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .btn-primary-custom:hover {
            background-color: #e05a2b;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 107, 53, 0.2);
        }
        .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-color: var(--accent-orange);
        }
        .section-title.text-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .service-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: transform 0.4s, box-shadow 0.4s;
            height: 100%;
            background-color: white;
        }
        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        }
        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-gray));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 2rem auto 1.5rem;
            color: white;
            font-size: 2rem;
        }
        .stats-section {
            background-color: var(--primary-blue);
            color: white;
            padding: 5rem 0;
        }
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--accent-orange);
            line-height: 1;
        }
        .testimonial-card {
            background-color: white;
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            margin-bottom: 2rem;
            height: 100%;
        }
        .client-logo {
            height: 50px;
            margin-bottom: 1.5rem;
            object-fit: contain;
        }
        .team-member {
            text-align: center;
            margin-bottom: 3rem;
        }
        .team-img {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid var(--light-gray);
            margin-bottom: 1.5rem;
            transition: all 0.3s;
        }
        .team-member:hover .team-img {
            border-color: var(--accent-orange);
        }
        .flink {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background-color: var(--light-gray);
            border-radius: 50px;
            margin: 0.5rem;
            color: var(--dark-gray);
            text-decoration: none;
            transition: all 0.3s;
            font-weight: 500;
        }
        .flink:hover {
            background-color: var(--accent-orange);
            color: white;
            transform: translateY(-3px);
        }
        footer {
            background-color: var(--primary-blue);
            color: rgba(255,255,255,0.8);
            padding-top: 4rem;
        }
        footer a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.3s;
        }
        footer a:hover {
            color: var(--accent-orange);
        }
        .copyright {
            background-color: rgba(0,0,0,0.2);
            padding: 1.5rem 0;
            margin-top: 3rem;
        }
        .contact-info li {
            margin-bottom: 1rem;
            display: flex;
            align-items: flex-start;
        }
        .contact-info i {
            color: var(--accent-orange);
            margin-right: 1rem;
            margin-top: 0.2rem;
        }
        .form-control-custom {
            border-radius: 10px;
            padding: 0.8rem 1.2rem;
            border: 1px solid #dee2e6;
            transition: all 0.3s;
        }
        .form-control-custom:focus {
            border-color: var(--accent-orange);
            box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.25);
        }
        .news-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            transition: transform 0.3s;
            height: 100%;
            background-color: white;
        }
        .news-card:hover {
            transform: translateY(-10px);
        }
        .news-img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .navbar-nav {
                background-color: var(--primary-blue);
                padding: 1rem;
                border-radius: 10px;
                margin-top: 1rem;
            }
            .stat-number {
                font-size: 2.5rem;
            }
        }
