
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* HEADER */
        header {
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #00c6ff ;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        nav a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #00c6ff ;
        }

        .cta-btn {
            background: linear-gradient(45deg, #00c6ff , #0072ff );
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            animation: pulse 2s infinite;
            box-shadow: 0 4px 15px rgba(44,90,160,0.4);
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        /* HERO SECTION */
        .hero {
            background: linear-gradient(135deg, #ff9a76  0%, #ffe07f  100%);
            color: white;
            padding: 150px 0 100px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            opacity: 0;
            transform: translateY(50px);
            animation: slideUp 1s 0.5s forwards;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 3rem;
            opacity: 0;
            animation: fadeIn 1s 1s forwards;
        }

        .highlights {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 4rem 0;
        }

        .highlight {
            display: flex;
            align-items: center;
            gap: 1rem;
            opacity: 0;
            animation: bounceIn 1s forwards;
        }

        .highlight:nth-child(1) { animation-delay: 1.5s; }
        .highlight:nth-child(2) { animation-delay: 1.7s; }
        .highlight:nth-child(3) { animation-delay: 1.9s; }
        .highlight:nth-child(4) { animation-delay: 2.1s; }

        @keyframes slideUp {
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeIn {
            to { opacity: 1; }
        }

        @keyframes bounceIn {
            0% { opacity: 0; transform: scale(0.3); }
            50% { opacity: 1; transform: scale(1.05); }
            70% { transform: scale(0.9); }
            100% { opacity: 1; transform: scale(1); }
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary, .btn-secondary {
            padding: 15px 40px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-primary {
            background: #ff6b6b;
            color: white;
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        /* SECTIONS */
        section {
            padding: 100px 0;
        }

        h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            color: #00c6ff ;
        }

        /* ABOUT SECTION */
        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
            margin: 4rem 0;
        }

        .stat {
            opacity: 0;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: #00c6ff ;
            display: block;
        }

        /* SERVICES SECTION */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s;
            cursor: pointer;
            opacity: 0;
            transform: translateY(30px);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        /* WHY CHOOSE US */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        /* FORMS */
        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #e1e5e9;
            border-radius: 10px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #00c6ff ;
        }

        /* TESTIMONIALS */
        /* =========================
   TESTIMONIALS SECTION
========================= */

.testimonials {
    padding: 80px 20px;
    background: #f7f9fc;
    text-align: center;
}

.testimonials h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #222;
}

/* Container */
.testimonial-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Testimonial Box */
.testimonial {
    background: #ffffff;
    padding: 30px 25px;
    width: 320px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0.8;
}

/* Active / Highlighted Testimonial */
.testimonial.active {
    transform: scale(1.05);
    opacity: 1;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Hover Effect */
.testimonial:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

/* Stars */
.testimonial .stars {
    font-size: 20px;
    margin-bottom: 15px;
    color: #f5a623;
}

/* Testimonial Text */
.testimonial p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

/* Client Name */
.testimonial strong {
    font-size: 15px;
    color: #111;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width: 768px) {
    .testimonial-container {
        flex-direction: column;
    }

    .testimonial {
        width: 100%;
        max-width: 360px;
    }
}


        /* FOOTER */
        footer {
            background: #1a1a1a;
            color: white;
            padding: 3rem 0 1rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            nav ul { flex-direction: column; gap: 1rem; }
            .header-content { flex-direction: column; gap: 1rem; }
        }

        /* UTILITY CLASSES */
        .text-center { text-align: center; }
        .mb-4 { margin-bottom: 2rem; }
        .fade-in { opacity: 0; animation: fadeInUp 1s forwards; }
        @keyframes fadeInUp {
            to { opacity: 1; transform: translateY(0); }
        }

        /* Modal Background */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.3s ease-in-out;
}

/* Modal Content */
.modal-content {
    background: #ffffff;
    width: 90%;
    max-width: 500px;
    margin: 10% auto;
    padding: 25px;
    border-radius: 10px;
    position: relative;
    animation: slideDown 0.4s ease;
}

/* Close Button */
.close {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

/* Modal Text */
.modal-content h2 {
    margin-bottom: 15px;
    color: #222;
}

.modal-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 12px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from { transform: translateY(-30px); }
    to { transform: translateY(0); }
}
    