
        :root {
            --dark: #000000;
            --deep: #1A1A1A;
            --text: #333333;
            --gray: #666666;
            --light: #FFFFFF;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text);
            line-height: 1.8;
        }
        
        .navbar {
            transition: all 0.3s;
        }
        
        .hero {
            background: linear-gradient(rgba(0,0,0,0.75), rgba(26,26,26,0.75)), 
                        url('https://images.pexels.com/photos/4386467/pexels-photo-4386467.jpeg') center/cover no-repeat;
            height: 100vh;
            min-height: 650px;
            display: flex;
            align-items: center;
            color: white;
        }
        
        .section-title {
            position: relative;
            display: inline-block;
            font-weight: 700;
            color: var(--deep);
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background: #1A1A1A;
            bottom: -10px;
            left: 0;
        }
        
        .service-card {
            transition: all 0.4s;
            height: 100%;
            border: none;
        }
        
        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12) !important;
        }
        
        .counter-number {
            font-size: 3.2rem;
            font-weight: 700;
            color: var(--deep);
        }
        
        .icon-box {
            width: 75px;
            height: 75px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #1A1A1A;
            color: white;
            border-radius: 50%;
            font-size: 2.1rem;
            margin: 0 auto 20px;
        }
        
        footer {
            background: var(--dark);
        }
        
        .btn-primary {
            background: #1A1A1A;
            border: none;
            color: white;
        }
        
        .btn-primary:hover {
            background: #000000;
        }
        
        .nav-link {
            color: #333;
            font-weight: 500;
        }
        
        .nav-link:hover {
            color: #1A1A1A;
        }
