 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #2563eb;
            --primary-dark: #1e40af;
            --secondary: #10b981;
            --dark: #0f172a;
            --light: #f8fafc;
            --gray: #64748b;
            --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.05);
            z-index: 1000;
            transition: all 0.3s;
        }

        .header.scrolled {
            box-shadow: 0 4px 30px rgba(0,0,0,0.1);
        }

        .header-top {
            background: var(--gradient);
            color: white;
            padding: 10px 0;
            font-size: 14px;
        }

        .header-top .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .contact-info {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
        }

        .contact-info a {
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: opacity 0.3s;
        }

        .contact-info a:hover {
            opacity: 0.8;
        }

        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-links a {
            color: white;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255,255,255,0.2);
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: white;
            color: var(--primary);
            transform: translateY(-2px);
        }

        .navbar {
            padding: 15px 0;
        }

        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo img {
            height: 50px;
            transition: transform 0.3s;
        }

        .logo:hover img {
            transform: scale(1.05);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 35px;
            align-items: center;
        }

        .nav-menu a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .cta-btn {
            background: var(--gradient);
            color: white !important;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .cta-btn::after {
            display: none !important;
        }

        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
        }

        .mobile-toggle {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--dark);
        }

        /* Hero Section */
        .hero {
            margin-top: 140px;
            min-height: 90vh;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 60px 0;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: var(--gradient);
            border-radius: 50%;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(180deg); }
        }

        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-content h1 {
            font-size: 52px;
            line-height: 1.2;
            margin-bottom: 20px;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-content p {
            font-size: 18px;
            color: var(--gray);
            margin-bottom: 30px;
        }

        .hero-image {
            position: relative;
            animation: fadeInRight 1s;
        }

        .hero-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* About Section */
        .about {
            padding: 100px 0;
        }

        .about .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-images {
            position: relative;
        }

        .about-images img:first-child {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }

        .about-images img:last-child {
            position: absolute;
            bottom: -30px;
            right: -30px;
            width: 200px;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
            border: 5px solid white;
        }

        .section-title {
            font-size: 14px;
            color: var(--primary);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }

        .about-content h2 {
            font-size: 42px;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .about-content p {
            color: var(--gray);
            margin-bottom: 20px;
            text-align: justify;
        }

        .about-content h3 {
            font-size: 24px;
            margin-top: 30px;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Services Section */
        .services {
            padding: 100px 0;
            background: var(--light);
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 42px;
            margin-bottom: 15px;
        }

        .services-grid {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: stretch;
}
.service-card {
    flex: 1;              /* sab equal width */
    text-align: center;
}

@media (max-width: 992px) {
    .services-grid {
        flex-wrap: wrap;
    }
}

        .service-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: contain;
            border-radius: 15px;
            margin-bottom: 20px;
        }

        .service-card h3 {
            font-size: 20px;
            color: var(--dark);
        }

        /* Testimonials */
        .testimonials {
            padding: 100px 0;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 35px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            position: relative;
            transition: all 0.3s;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }

        .testimonial-card .quote {
            font-size: 60px;
            color: var(--primary);
            opacity: 0.2;
            position: absolute;
            top: 20px;
            left: 30px;
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .testimonial-header img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: contain;
            background: var(--light);
            padding: 5px;
        }

        .testimonial-info h4 {
            font-size: 16px;
            margin-bottom: 5px;
        }

        .testimonial-info p {
            font-size: 13px;
            color: var(--gray);
        }

        .testimonial-text {
            color: var(--gray);
            line-height: 1.8;
            text-align: justify;
        }

        /* Mission Section */
        .mission {
            padding: 100px 0;
            background: var(--light);
        }

        .mission .container > div:first-child {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 60px;
        }

        .mission-content h2 {
            font-size: 38px;
            margin-bottom: 20px;
        }

        .mission-content p {
            color: var(--gray);
            margin-bottom: 15px;
            text-align: justify;
        }

        .mission-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .feature-box {
            background: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }

        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }

        .feature-box i {
            font-size: 48px;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
        }

        .feature-box h3 {
            font-size: 18px;
        }

        /* Why Choose Us */
        .why-choose {
            padding: 100px 0;
        }

        .choose-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .choose-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s;
        }

        .choose-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        .choose-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .choose-card-content {
            padding: 30px;
        }

        .choose-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
        }

        .choose-card p {
            color: var(--gray);
            text-align: justify;
        }

        /* Footer */
        .footer {
            background: var(--dark);
            color: white;
            padding: 60px 0 0;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-widget h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: white;
        }

        .footer-widget p {
            color: rgba(255,255,255,0.7);
            margin-bottom: 20px;
            text-align: justify;
        }

        .footer-widget ul {
            list-style: none;
        }

        .footer-widget ul li {
            margin-bottom: 12px;
        }

        .footer-widget ul li a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-widget ul li a:hover {
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding: 25px 0;
            text-align: center;
            color: rgba(255,255,255,0.7);
            font-size: 14px;
        }

        .footer-bottom p {
            margin: 5px 0;
        }

        .footer-bottom a {
            color: var(--primary);
            text-decoration: none;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            z-index: 10000;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s;
        }

        .modal.active {
            display: flex;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal-content {
            background: white;
            border-radius: 20px;
            padding: 40px;
            max-width: 500px;
            width: 90%;
            position: relative;
            animation: slideUp 0.3s;
            max-height: 90vh;
            overflow-y: auto;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .modal-close {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 32px;
            cursor: pointer;
            color: var(--gray);
            transition: color 0.3s;
        }

        .modal-close:hover {
            color: var(--dark);
        }

        .modal-content h2 {
            font-size: 28px;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .modal-content > p {
            color: var(--gray);
            margin-bottom: 25px;
        }

        .modal-content form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .modal-content input,
        .modal-content textarea {
            padding: 14px;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 15px;
            transition: all 0.3s;
            font-family: 'Inter', sans-serif;
        }

        .modal-content input:focus,
        .modal-content textarea:focus {
            outline: none;
            border-color: var(--primary);
        }

        .radio-group {
            display: flex;
            gap: 20px;
            align-items: center;
            padding: 10px 0;
            flex-wrap: wrap;
        }

        .radio-group label {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            color: var(--dark);
        }

        .modal-content button[type="submit"] {
            background: var(--gradient);
            color: white;
            padding: 15px;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .modal-content button[type="submit"]:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
        }

        /* Scroll to Top */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--gradient);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            transition: all 0.3s;
            z-index: 999;
        }

        .scroll-top.active {
            opacity: 1;
        }

        .scroll-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
        }
        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .mobile-toggle {
                display: block;
            }

            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: white;
                flex-direction: column;
                padding: 80px 30px 30px;
                box-shadow: -5px 0 20px rgba(0,0,0,0.1);
                transition: right 0.3s;
                align-items: flex-start;
            }

            .nav-menu.active {
                right: 0;
            }

            .hero .container,
            .about .container,
            .mission .container > div:first-child {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-content h1 {
                font-size: 38px;
            }

            .about-images img:last-child {
                width: 150px;
                bottom: -20px;
                right: -20px;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .hero-image {
                order: -1;
            }
        }

        @media (max-width: 640px) {
            .header-top .container {
                flex-direction: column;
                text-align: center;
            }

            .contact-info {
                flex-direction: column;
                gap: 10px;
                align-items: center;
            }

            .hero {
                margin-top: 200px;
            }

            .hero-content h1 {
                font-size: 32px;
            }

            .section-header h2,
            .about-content h2,
            .mission-content h2 {
                font-size: 32px;
            }

            .services-grid,
            .testimonials-grid,
            .choose-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ===== POPUP FIX ===== */

.modal {
    overflow: hidden;
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 30px;
    max-width: 420px;
    width: 92%;
    position: relative;
    animation: slideUp 0.3s;

    /* SCROLL REMOVE */
    height: auto;
    max-height: unset;
    overflow: hidden;
}

/* Compact & responsive form */
.modal-content form {
    gap: 12px;
}

.modal-content input,
.modal-content textarea {
    padding: 12px;
    font-size: 14px;
}

.modal-content h2 {
    font-size: 24px;
}

.modal-content > p {
    font-size: 14px;
    margin-bottom: 15px;
}

/* Mobile optimization */
@media (max-width: 480px) {
    .modal-content {
        padding: 22px;
    }
}


/* ===== MOBILE HEADER FIX ===== */
@media (max-width: 768px) {

    /* Hide top contact bar */
    .header-top {
        display: none;
    }

    /* Reduce header height */
    .navbar {
        padding: 12px 0;
    }

    /* Fix hero gap caused by header */
    .hero {
        margin-top: 90px;
    }
}

/* ===== FIX ANCHOR SCROLL OFFSET ===== */

/* Desktop */
section[id] {
    scroll-margin-top: 120px;
}

/* Mobile */
@media (max-width: 768px) {
    section[id] {
        scroll-margin-top: 90px;
    }
}


/* ===== MOBILE MENU CLOSE BUTTON ===== */
.menu-close {
    font-size: 26px;
    margin-bottom: 30px;
    cursor: pointer;
    align-self: flex-end;
    color: #111;
    display: none;
}

@media (max-width: 968px) {
    .menu-close {
        display: block;
    }
}




