:root {
    --primary: #f8cb46; /* Blinkit Yellow */
    --secondary: #000000;
    --white: #ffffff;
    --gray: #f4f4f4;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
body { background: var(--white); color: #333; overflow-x: hidden; }

/* Navbar */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 8%; background: var(--white);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000;
}
.logo { font-size: 1.8rem; font-weight: 800; text-transform: lowercase; }
.logo span { background: var(--secondary); color: var(--primary); padding: 2px 10px; border-radius: 5px; }
.nav-links { display: flex; list-style: none; }
.nav-links li a { text-decoration: none; color: #000; margin-left: 25px; font-weight: 600; font-size: 0.9rem; }

/* Hero */
.hero { padding: 80px 8%; background: var(--primary); }
.hero-container { display: flex; align-items: center; gap: 40px; max-width: 1200px; margin: auto; }
.hero-text { flex: 1; }
.hero-text h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; }
.hero-text h1 span { color: var(--white); text-shadow: 2px 2px #000; }
.hero-img { flex: 1; }
.hero-img img { width: 100%; border-radius: 20px; box-shadow: 20px 20px 0px var(--secondary); }
.cta-button { 
    display: inline-block; padding: 15px 35px; background: var(--secondary); 
    color: var(--primary); text-decoration: none; border-radius: 50px; font-weight: bold; margin-top: 20px;
}

/* Form Section */
.form-section { padding: 80px 8%; background: var(--gray); }
.form-header { text-align: center; margin-bottom: 40px; }
.franchise-form { 
    max-width: 800px; margin: auto; background: #fff; 
    padding: 40px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
}
.form-row { display: flex; gap: 20px; margin-bottom: 20px; }
.form-group { flex: 1; display: flex; flex-direction: column; }
.form-group label { font-weight: 600; margin-bottom: 8px; font-size: 0.9rem; }
.form-group input, .form-group select { 
    padding: 12px; border: 1px solid #ddd; border-radius: 5px; outline: none; 
}
.submit-btn button { 
    width: 100%; padding: 15px; background: #000000; color: white; 
    border: none; border-radius: 5px; font-size: 1.1rem; font-weight: 700; cursor: pointer;
}

/* About */
.about { padding: 80px 8%; }
.about-flex { display: flex; align-items: center; gap: 50px; }
.about-img, .about-text { flex: 1; }
.about-img img { width: 100%; border-radius: 15px; }

/* Steps Cards */
.steps { padding: 80px 8%; background: var(--secondary); color: white; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 40px; }
.card { background: #222; padding: 40px; border-radius: 10px; text-align: center; position: relative; }
.step-num { font-size: 3rem; font-weight: 800; color: var(--primary); opacity: 0.3; position: absolute; top: 10px; right: 20px; }
.center { text-align: center; }

/* Footer */
footer { background: #111; color: #fff; padding: 40px; text-align: center; }

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-container, .about-flex, .form-row { flex-direction: column; }
    .hero-text h1 { font-size: 2.5rem; }
    .hero-img { order: -1; }
}