 body {
            margin: 0;
            font-family: 'Poppins', sans-serif;
            background-color: #0a0a0a;
            color: #f5f5f5;
            overflow-x: hidden;
        }
        header {
            background: linear-gradient(135deg, #0a0a0a, #1a73e8);
            padding: 40px;
            text-align: center;
            position: relative;
            animation: fadeIn 1s ease-in-out;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        header h1 {
            font-size: 3rem;
            margin: 0;
        }
        header p {
            font-size: 1.2rem;
            margin-top: 10px;
            opacity: 0.85;
        }
        nav {
            margin-top: 20px;
        }
        nav a {
            margin: 0 15px;
            text-decoration: none;
            color: #f5f5f5;
            font-weight: 500;
            position: relative;
        }
        nav a::after {
            content: '';
            display: block;
            width: 0;
            height: 2px;
            background: #ffb400;
            transition: width .3s;
            position: absolute;
            bottom: -5px;
            left: 0;
        }
        nav a:hover::after {
            width: 100%;
        }
        .hero {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 80px 20px;
            background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 100%);
            animation: fadeUp 1.2s ease;
        }
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .hero h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        .hero p {
            max-width: 700px;
            font-size: 1.1rem;
            line-height: 1.6;
            opacity: 0.9;
        }
        .btn-primary {
            background: linear-gradient(90deg, #ffb400, #ff7700);
            color: #0a0a0a;
            padding: 12px 28px;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: bold;
            margin-top: 25px;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 180, 0, 0.3);
        }
        .services, .our-works {
            padding: 60px 20px;
            background-color: #111;
        }
        .services h3, .our-works h3 {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 40px;
        }
        .service-grid, .works-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        .service-card, .work-card {
            background-color: #1c1c1c;
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            transition: transform 0.4s ease, background 0.4s ease;
        }
        .service-card:hover, .work-card:hover {
            transform: translateY(-8px) scale(1.02);
            background: #222;
        }
        .service-card h4, .work-card h4 {
            margin-bottom: 15px;
            color: #ffb400;
        }
        .contact {
            padding: 60px 20px;
            text-align: center;
            background: linear-gradient(135deg, #1a73e8, #0a0a0a);
        }
        .contact h3 {
            font-size: 2rem;
            margin-bottom: 20px;
        }
        footer {
            background-color: #000;
            color: #aaa;
            text-align: center;
            padding: 15px;
            font-size: 0.9rem;
        }