/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: 'Poppins', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 30px 20px 20px; /* top space control */
    background: radial-gradient(circle at top, #111, #000);
}


/* CONTAINER */
.container {
    max-width: 700px;
    width: 100%;
    padding: 40px;
    background: #111;
    border-radius: 14px;
    text-align: center;
}

/* LOGO */
.logo {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #d4af37;
    margin-bottom: 22px;
    
}
/* LOGO IMAGE RESIZE */
.logo img {
    max-width: 160px;   /* size thoda compact */
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 8px;
}

@media (max-width: 600px) {
    .logo img {
        max-width: 140px;
    }
}

/* NOTICE BAR */
.notice {
    background: #f5c16c;
    color: #000;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    margin-bottom: 25px;
}

/* HEADING */
h2 {
    font-size: 26px;
    line-height: 1.4;
    margin-bottom: 15px;
}

h1 span {
    color: #d4af37;
}

/* GUARANTEE */
.guarantee {
    font-size: 15px;
    color: #f5c16c;
    margin-bottom: 25px;
}

/* FORM INPUTS */
.lead-form input {
    width: 100%;
    padding: 16px;
    margin: 10px 0;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 15px;
}

/* PHONE INPUT GROUP */
.phone-group {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    margin: 10px 0;
    overflow: hidden;
}

/* +91 PREFIX */
.phone-prefix {
    background: #eee;
    color: #000;
    padding: 16px 14px;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
}

/* PHONE INPUT */
.phone-group input {
    border: none;
    outline: none;
    padding: 16px;
    width: 100%;
    font-size: 15px;
}

/* BUTTON */
.lead-form button {
    width: 100%;
    padding: 18px;
    margin-top: 15px;
    border-radius: 10px;
    border: none;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    background: linear-gradient(135deg, #f5c16c, #d4af37);
    color: #000;
    transition: 0.3s ease;
}

.lead-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(212,175,55,0.35);
}

/* FOOTER */
footer {
    margin-top: 20px;
    font-size: 12px;
    color: #aaa;
}

footer a {
    color: #aaa;
    text-decoration: none;
}

/* MOBILE RESPONSIVE */
@media (max-width: 600px) {
    .container {
        padding: 28px;
    }

    h2 {
        font-size: 22px;
    }
}
