        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        :root {
            --yellow: #ffd000;
            --black: #0f0f0f;
            --gray: #1b1b1b;
            --white: #ffffff;
            --light: #cfcfcf;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: var(--black);
            color: var(--white);
            overflow-x: hidden;
        }

        header {
            width: 100%;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 999;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .nav {
            width: 90%;
            max-width: 1200px;
            margin: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 0;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--yellow);
            letter-spacing: 1px;
        }

        .menu {
            display: flex;
            gap: 30px;
        }

        .menu a {
            color: white;
            text-decoration: none;
            font-size: 0.95rem;
            transition: 0.3s;
        }

        .menu a:hover {
            color: var(--yellow);
        }

        .logo img {
            height: 70px;
            object-fit: contain;
        }

        .btn {
            background: var(--yellow);
            color: black;
            padding: 12px 22px;
            border-radius: 8px;
            font-weight: 700;
            text-decoration: none;
            transition: 0.3s;
            display: inline-block;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 20px rgba(255, 208, 0, 0.5);
        }

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 120px 5% 80px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: var(--yellow);
            filter: blur(180px);
            opacity: 0.15;
            top: -100px;
            right: -100px;
        }

        .hero-content {
            max-width: 1200px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 4rem;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .hero-text h1 span {
            color: var(--yellow);
        }

        .hero-text p {
            color: var(--light);
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 35px;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn-outline {
            border: 2px solid var(--yellow);
            color: var(--yellow);
            background: transparent;
        }

        .btn-outline:hover {
            background: var(--yellow);
            color: black;
        }

        .hero-card {
            background: linear-gradient(145deg, #1d1d1d, #111);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 25px;
            padding: 40px;
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
            animation: float 4s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .hero-card h3 {
            color: var(--yellow);
            margin-bottom: 20px;
            font-size: 1.5rem;
        }

        .hero-card ul {
            list-style: none;
        }

        .hero-card li {
            margin: 15px 0;
            color: #ddd;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        section {
            padding: 100px 5%;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.8rem;
            color: var(--yellow);
            margin-bottom: 10px;
        }

        .section-title p {
            color: #bdbdbd;
        }

        .services {
            max-width: 1200px;
            margin: auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }

        .service-box {
            background: var(--gray);
            padding: 30px;
            border-radius: 20px;
            transition: 0.4s;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .service-box:hover {
            transform: translateY(-8px);
            border-color: var(--yellow);
            box-shadow: 0 0 25px rgba(255, 208, 0, 0.15);
        }

        .service-box h3 {
            color: var(--yellow);
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .service-box p {
            color: #cfcfcf;
            line-height: 1.7;
            font-size: 0.95rem;
        }

        .about {
            max-width: 1200px;
            margin: auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about img {
            width: 50%;
            border-radius: 25px;
            object-fit: cover;
        }

        .about-text h2 {
            color: var(--yellow);
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .about-text p {
            color: #d4d4d4;
            line-height: 1.9;
            margin-bottom: 20px;
        }

        .stats {
            margin-top: 25px;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .stat {
            background: #1a1a1a;
            padding: 20px;
            border-radius: 15px;
            flex: 1;
            min-width: 120px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .stat h3 {
            color: var(--yellow);
            font-size: 2rem;
        }

        .cta {
            background: linear-gradient(145deg, #1b1b1b, #101010);
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .cta h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
        }

        .cta p {
            color: #cfcfcf;
            margin-bottom: 35px;
            line-height: 1.8;
        }

        footer {
            padding: 40px 5%;
            text-align: center;
            color: #9e9e9e;
            background: #090909;
        }

        .whatsapp {
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 65px;
            height: 65px;
            background: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            text-decoration: none;
            color: white;
            box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
            z-index: 999;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.08);
            }

            100% {
                transform: scale(1);
            }
        }

        @media(max-width:900px) {

            .hero-content,
            .about {
                grid-template-columns: 1fr;
            }

            .hero-text h1 {
                font-size: 2.8rem;
            }

            .menu {
                display: none;
            }

            .hero {
                text-align: center;
            }

            .hero-buttons {
                justify-content: center;
            }
        }