/* Color Variables */
        :root {
            --navy: #0A1A3A;
            --black: #000000;
            --gold: #FFD700;
            --red: #C00C00;
            --light: #F8F9FA;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--light);
            background-color: var(--navy);
            margin: 0;
            padding: 0;
        }
        
        /* Services Section */
        .services-section {
            padding: 100px 0;
            background-color: #0c0e15;
            position: relative;
            overflow: hidden;
        }
        
        .services-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h20v20H0z" fill="%230A1A3A"/><path d="M0 0h10v10H0zM10 10h10v10H10z" fill="%23070b14" fill-opacity="0.3"/></svg>');
            opacity: 0.05;
            z-index: 0;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 1;
        }
        
        .section-header h2 {
            font-size: 2.8rem;
            font-weight: 700;
            color: white;
            margin-bottom: 15px;
            text-transform: uppercase;
        }
        
        .section-header h2 span {
            color: var(--gold);
        }
        
        .section-header p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .service-card {
            background: linear-gradient(145deg, #121826 0%, #0a0e1a 100%);
            border-radius: 8px;
            padding: 30px;
            height: 100%;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            z-index: 1;
            border: 2px solid rgba(255, 217, 0, 0.288);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            margin-bottom: 30px;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            border-color: rgba(255, 215, 0, 0.3);
        }
        
        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--navy) 0%, var(--black) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 1.8rem;
            color: var(--gold);
            border: 2px solid var(--gold);
        }
        
        .service-card h3 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .service-card p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 20px;
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        .service-features {
            list-style: none;
            padding: 0;
            margin: 0 0 20px 0;
        }
        
        .service-features li {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 8px;
            font-size: 0.9rem;
            display: flex;
            align-items: flex-start;
        }
        
        .service-features li i {
            color: var(--gold);
            margin-right: 10px;
            font-size: 0.7rem;
            margin-top: 5px;
        }
        
        .service-link {
            color: var(--gold);
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .service-link i {
            margin-left: 8px;
            transition: all 0.3s ease;
        }
        
        .service-link:hover {
            color: white;
        }
        
        .service-link:hover i {
            transform: translateX(5px);
        }
        
        .hover-effect {
            position: absolute;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0) 70%);
            border-radius: 50%;
            top: -50px;
            right: -50px;
            z-index: -1;
            opacity: 0;
            transition: all 0.5s ease;
        }
        
        .service-card:hover .hover-effect {
            opacity: 1;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .services-section {
                padding: 60px 0;
            }
            
            .section-header h2 {
                font-size: 2.2rem;
            }
            
            .service-card {
                padding: 25px;
            }
        }