        /* Base Styles */
        :root {
            --dark-bg: #1A1A1A;
            --darker-bg: #121212;
            --electric-blue: #00F5FF;
            --neon-yellow: #FFF700;
            --safety-orange: #FF5E00;
            --text-light: #F5F5F5;
            --text-gray: #CCCCCC;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--dark-bg);
            color: var(--text-light);
            line-height: 1.6;
        }
        
        /* Header */
        header {
            background-color: var(--darker-bg);
            padding: 20px 0;
            border-bottom: 2px solid var(--electric-blue);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--electric-blue);
            text-decoration: none;
            text-shadow: 0 0 10px rgba(0, 245, 255, 0.3);
        }
        
        .logo span {
            color: var(--neon-yellow);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--electric-blue);
        }
        
        nav ul li a.active {
            color: var(--electric-blue);
        }
        
        nav ul li a.active:after,
        nav ul li a:hover:after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            background: var(--electric-blue);
            bottom: -5px;
            left: 0;
        }
        
        /* Hero Section */
        .services-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
            url('Pictures/Company\ Logo.png');
            background-size: cover;
            background-position: center;
            text-align: center;
            padding: 150px 20px;
        }
        
        .services-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--electric-blue);
            text-shadow: 0 0 15px rgba(0, 245, 255, 0.7);
        }
        
        .services-hero p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 30px;
            color: var(--text-light);
        }
        
        /* Main Content */
        .services-main {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--neon-yellow);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            background: var(--electric-blue);
            bottom: -10px;
            left: 25%;
        }
        
        .section-title p {
            max-width: 700px;
            margin: 0 auto;
            color: var(--text-gray);
        }
        
        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: var(--darker-bg);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            border-top: 4px solid var(--electric-blue);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 245, 255, 0.1);
        }
        
        .service-card-img {
            height: 200px;
            overflow: hidden;
        }
        
        .service-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .service-card:hover .service-card-img img {
            transform: scale(1.1);
        }
        
        .service-card-content {
            padding: 25px;
        }
        
        .service-card-content h3 {
            font-size: 1.5rem;
            color: var(--electric-blue);
            margin-bottom: 15px;
        }
        
        .service-card-content p {
            color: var(--text-gray);
            margin-bottom: 20px;
        }
        
        .service-features {
            margin-bottom: 25px;
        }
        
        .service-features li {
            margin-bottom: 8px;
            display: flex;
            align-items: center;
        }
        
        .service-features li i {
            color: var(--neon-yellow);
            margin-right: 10px;
            font-size: 0.8rem;
        }
        
        /* Emergency Banner */
        .emergency-banner {
            background: linear-gradient(rgba(255, 94, 0, 0.1), rgba(255, 94, 0, 0.2));
            border: 1px solid var(--safety-orange);
            padding: 30px;
            border-radius: 8px;
            margin: 60px 0;
            text-align: center;
        }
        
        .emergency-banner h3 {
            color: var(--safety-orange);
            font-size: 1.8rem;
            margin-bottom: 15px;
        }
        
        .emergency-banner p {
            max-width: 700px;
            margin: 0 auto 20px;
        }
        
        /* Why Choose Us */
        .why-choose-us {
            margin-top: 80px;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .feature-card {
            text-align: center;
            padding: 30px 20px;
            background-color: var(--darker-bg);
            border-radius: 8px;
            border-bottom: 4px solid var(--electric-blue);
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 245, 255, 0.1);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--electric-blue);
            margin-bottom: 20px;
        }
        
        .feature-card h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--neon-yellow);
        }
        
        /* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--electric-blue);
    color: var(--dark-bg);
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid var(--electric-blue);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.5);
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background-color: transparent;
    color: var(--electric-blue);
    box-shadow: 0 0 25px rgba(0, 245, 255, 0.8);
    transform: translateY(-3px);
}

.btn-emergency {
    background-color: var(--safety-orange);
    border-color: var(--safety-orange);
    box-shadow: 0 0 15px rgba(255, 94, 0, 0.5);
    margin-left: 15px;
}

.btn-emergency:hover {
    color: var(--safety-orange);
    box-shadow: 0 0 25px rgba(255, 94, 0, 0.8);
}
        
        /* Footer */
        footer {
            background-color: var(--darker-bg);
            padding: 40px 0 20px;
            border-top: 2px solid var(--electric-blue);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            color: var(--electric-blue);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        
        .footer-column p, .footer-column a {
            color: var(--text-gray);
            margin-bottom: 10px;
            display: block;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-column a:hover {
            color: var(--electric-blue);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }
        
        .social-links a {
            color: var(--text-light);
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            color: var(--electric-blue);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(0, 245, 255, 0.1);
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .services-hero h1 {
                font-size: 2.8rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
            }
            
            nav ul {
                margin-top: 20px;
            }
            
            nav ul li {
                margin: 0 15px;
            }
            
            .services-hero {
                padding: 80px 20px;
            }
            
            .services-hero h1 {
                font-size: 2.2rem;
            }

            .btn-emergency {
                margin-left: 0;
                margin-top: 15px;
                display: block;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 5px 10px;
            }
            
            .services-hero h1 {
                font-size: 1.8rem;
            }
            
            .services-hero p {
                font-size: 1.1rem;
            }
        }