@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --green-main: #1fbf75;
    --green-dark: #0b3d2e;
    --green-light: #eafff4;
    --glass-bg: rgba(255,255,255,0.75);
    --shadow-soft: 0 20px 40px rgba(0,0,0,0.12);
    --shadow-strong: 0 40px 80px rgba(0,0,0,0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    background: linear-gradient(180deg, #f7fffb, #ffffff);
    color: #1e1e1e;
}

/* ================= HEADER ================= */
.header {
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(12px);
    background: rgba(31,191,117,0.85);
    box-shadow: var(--shadow-soft);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

nav a {
    color: #fff;
    margin-left: 25px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
}

nav a::after {
    content: '';
    width: 0;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.3s;
}

nav a:hover::after {
    width: 100%;
}

/* ================= HERO ================= */
.hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at top, #2fe59d, #0b3d2e);
    color: #fff;
}

.hero h2 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    animation: fadeUp 1s ease forwards;
}

.hero p {
    font-size: 18px;
    opacity: 0.95;
    margin-top: 15px;
    animation: fadeUp 1.3s ease forwards;
}

.btn {
    display: inline-block;
    margin-top: 35px;
    padding: 16px 45px;
    border-radius: 60px;
    background: linear-gradient(135deg, #ffffff, #eafff4);
    color: var(--green-dark);
    font-weight: 600;
    text-decoration: none;
    box-shadow: var(--shadow-strong);
    transition: all 0.35s ease;
}

.btn:hover {
    transform: translateY(-6px) scale(1.06);
}

/* ================= SECTIONS ================= */
.section {
    padding: 120px 0;
}

.section h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--green-dark);
}

.section p {
    max-width: 850px;
    margin: auto;
    text-align: center;
    font-size: 17px;
    color: #444;
}

/* ================= WORK ================= */
.grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 40px;
}

.grid img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-strong);
    transition: 0.4s ease;
}

.grid img:hover {
    transform: translateY(-18px) scale(1.04);
}

/* ================= FAQ ================= */
.faq-item {
    background: var(--glass-bg);
    margin-bottom: 20px;
    padding: 22px 28px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
}

.faq-question {
    font-weight: 600;
    font-size: 16px;
    position: relative;
    padding-right: 30px;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 24px;
    transition: 0.3s;
}

.faq-question.active::after {
    content: "–";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    margin-top: 10px;
    color: #555;
}

/* ================= CONTACT ================= */
.contact-form {
    background: #fff;
    padding: 45px;
    border-radius: 28px;
    box-shadow: var(--shadow-strong);
    max-width: 520px;
    margin: auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 12px;
    border: 1px solid #ddd;
}

.contact-form button {
    width: 100%;
    padding: 15px;
    border-radius: 60px;
    border: none;
    background: linear-gradient(135deg, #1fbf75, #2fe59d);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

/* ================= FOOTER ================= */
.footer {
    background: #0b3d2e;
    color: #fff;
    text-align: center;
    padding: 25px;
}

/* ================= WHATSAPP ================= */
.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 999;
}

.whatsapp-float img {
    width: 62px;
    height: 62px;
    animation: pulse 2s infinite;
}

/* ================= ANIMATIONS ================= */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* ================= MOBILE ================= */
@media(max-width:768px) {
    .hero h2 { font-size: 36px; }
    nav { display: none; }
}
        :root {
            --primary: #ffffff;
            --accent: #00ca72;
            --glass: rgba(255, 255, 255, 0.2);
            --glass-border: rgba(255, 255, 255, 0.3);
        }

        * { box-sizing: border-box; font-family: 'Plus Jakarta Sans', sans-serif; }

        body {
            margin: 0;
            padding: 0;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: radial-gradient(circle at top left, #2e7d32, #1b5e20);
            overflow: hidden; /* Prevents bounce on mobile */
        }

        /* 📱 Responsive Container */
        .container {
            width: 100%;
            display: flex;
            justify-content: center;
            padding: 20px;
        }

        .card {
            width: 100%;
            max-width: 400px;
            background: var(--glass);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 32px;
            padding: 40px 24px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            text-align: center;
            animation: fadeIn 0.6s ease-out;
        }

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

        .logo-area {
            width: 80px;
            height: 80px;
            background: white;
            border-radius: 22px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .logo-area svg { width: 45px; fill: #1b5e20; }

        h1 { color: white; font-weight: 800; font-size: 28px; margin: 0 0 10px; }
        p { color: rgba(255,255,255,0.8); font-size: 14px; margin-bottom: 30px; }

        /* Input Styling */
        .input-group {
            display: flex;
            background: white;
            border-radius: 18px;
            padding: 4px;
            margin-bottom: 20px;
            transition: 0.3s;
            border: 2px solid transparent;
        }

        .input-group:focus-within { border-color: var(--accent); }

        .prefix {
            padding: 0 15px;
            display: flex;
            align-items: center;
            font-weight: 700;
            color: #1b5e20;
            border-right: 1px solid #eee;
        }

        input {
            flex: 1;
            border: none;
            padding: 15px;
            font-size: 16px;
            font-weight: 600;
            outline: none;
            background: transparent;
            color: #333;
        }

        button {
            width: 100%;
            padding: 18px;
            border: none;
            border-radius: 18px;
            background: white;
            color: #1b5e20;
            font-size: 16px;
            font-weight: 800;
            cursor: pointer;
            transition: 0.3s;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        button:hover { transform: translateY(-2px); box-shadow: 0 15px 25px rgba(0,0,0,0.3); }
        button:active { transform: scale(0.98); }
        button:disabled { opacity: 0.7; cursor: not-allowed; }

        /* Custom Popup Overlay */
        .overlay {
            position: fixed; inset: 0; background: rgba(0,0,0,0.7);
            display: flex; align-items: center; justify-content: center;
            z-index: 1000; transition: 0.3s;
        }
        .popup-box {
            background: white; width: 85%; max-width: 300px;
            padding: 25px; border-radius: 24px; text-align: center;
        }
        .hidden { display: none !important; opacity: 0; }
           
        :root {
            --primary: #ffffff;
            --accent: #00ca72;
            --glass: rgba(255, 255, 255, 0.2);
            --glass-border: rgba(255, 255, 255, 0.3);
        }

        * { box-sizing: border-box; font-family: 'Plus Jakarta Sans', sans-serif; }

        body {
            margin: 0; min-height: 100vh;
            display: flex; align-items: center; justify-content: center;
            background: radial-gradient(circle at top left, #2e7d32, #1b5e20);
            padding: 20px;
        }

        .card {
            width: 100%; max-width: 400px;
            background: var(--glass);
            backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 32px; padding: 40px 24px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            text-align: center;
        }

        h1 { color: white; font-weight: 800; font-size: 26px; margin: 0 0 8px; }
        p { color: rgba(255,255,255,0.8); font-size: 14px; margin-bottom: 30px; }
        .phone-highlight { color: #fff; font-weight: 700; }

        /* Modern OTP Inputs */
        .otp-box {
            display: flex; justify-content: space-between;
            gap: 8px; margin-bottom: 30px;
        }

        .otp-box input {
            width: 14%; height: 56px;
            border-radius: 16px; border: 2px solid transparent;
            background: white; color: #1b5e20;
            font-size: 22px; font-weight: 800; text-align: center;
            outline: none; transition: 0.2s;
        }

        .otp-box input:focus {
            border-color: var(--accent);
            transform: translateY(-4px);
            box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        }

        button {
            width: 100%; padding: 18px;
            border: none; border-radius: 18px;
            background: white; color: #1b5e20;
            font-size: 16px; font-weight: 800;
            cursor: pointer; transition: 0.3s;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        button:active { transform: scale(0.98); }
        button:disabled { opacity: 0.5; }

        /* Timer & Resend Logic */
        .timer-container { margin-top: 25px; font-size: 14px; color: #fff; }
        
        .resend-btn {
            background: none; border: none; color: white;
            padding: 0; box-shadow: none; width: auto;
            text-decoration: underline; font-weight: 600;
            opacity: 0.5; cursor: not-allowed; transition: 0.3s;
        }

        .resend-btn.active { opacity: 1; cursor: pointer; color: var(--accent); }
    
    