:root {
            --primary: #e50914;
            --secondary: #221f1f;
            --accent: #00a8ff;
            --light: #f5f5f1;
            --dark: #000000;
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            overflow-x: hidden;
            background-color: var(--light);
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--secondary);
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--primary) !important;
        }
        .nav-link {
            font-weight: 600;
            padding: 0.5rem 1.2rem !important;
            transition: var(--transition);
            border-radius: 4px;
        }
        .nav-link:hover, .nav-link.active {
            background-color: rgba(229, 9, 20, 0.1);
            color: var(--primary) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.85), rgba(34,31,31,0.9)), url('https://images.unsplash.com/photo-1536440136628-849c177e76a1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1925&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 10rem 0;
            min-height: 90vh;
            display: flex;
            align-items: center;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            color: white;
        }
        @media (max-width: 768px) {
            .hero-title { font-size: 2.5rem; }
        }
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            padding: 0.8rem 2rem;
            font-weight: 600;
            border-radius: 30px;
            transition: var(--transition);
        }
        .btn-primary:hover {
            background-color: #b20710;
            border-color: #b20710;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(229, 9, 20, 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-color: var(--primary);
        }
        .service-card, .project-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: var(--transition);
            height: 100%;
            border: none;
        }
        .service-card:hover, .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        .service-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }
        .stats-section {
            background-color: var(--secondary);
            color: white;
            padding: 5rem 0;
        }
        .stat-number {
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--primary);
            display: block;
            line-height: 1;
        }
        .team-card img {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border: 5px solid white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        footer {
            background-color: var(--dark);
            color: var(--light);
        }
        .footer-link {
            color: #aaa;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-link:hover {
            color: white;
            padding-left: 5px;
        }
        .flink {
            display: inline-block;
            background: rgba(255,255,255,0.05);
            padding: 8px 20px;
            border-radius: 20px;
            margin: 5px;
            color: #ccc;
            text-decoration: none;
            transition: var(--transition);
            border: 1px solid transparent;
        }
        .flink:hover {
            background: rgba(229, 9, 20, 0.2);
            color: white;
            border-color: var(--primary);
            transform: scale(1.05);
        }
        friendlink {
            display: block;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid #444;
        }
        .news-card {
            border-left: 5px solid var(--primary);
            transition: var(--transition);
        }
        .news-card:hover {
            background-color: rgba(229, 9, 20, 0.03);
        }
        .contact-icon {
            width: 60px;
            height: 60px;
            background-color: rgba(229, 9, 20, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.25rem rgba(229, 9, 20, 0.25);
        }
        .client-logo {
            filter: grayscale(100%);
            opacity: 0.7;
            transition: var(--transition);
            max-height: 60px;
            object-fit: contain;
        }
        .client-logo:hover {
            filter: grayscale(0);
            opacity: 1;
        }
        .awards-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--primary);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
