:root{
    --primary:#6c2bd9;
    --secondary:#ff6b35;
    --dark:#111827;
    --light:#f8fafc;
    --text:#374151;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:var(--text);
    overflow-x:hidden;
}

.lucknow-hero{
    min-height:100vh;
    background:
    linear-gradient(rgba(10,10,25,.82),rgba(10,10,25,.85)),
    url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?q=80&w=1600&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    position:relative;
    padding:120px 0;
}

.lucknow-badge{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.15);
    color:#fff;
    margin-bottom:25px;
    font-size:.95rem;
    backdrop-filter:blur(10px);
}

.lucknow-hero h1{
    color:#fff;
    font-size:4rem;
    font-weight:700;
    line-height:1.15;
}

.gradient-text{
    background:linear-gradient(90deg,#ff6b35,#ffb703);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.lucknow-hero p{
    color:#d1d5db;
    font-size:1.15rem;
    line-height:1.9;
    margin-top:25px;
    max-width:720px;
}

.hero-btns{
    margin-top:40px;
}

.hero-btns .btn{
    padding:15px 34px;
    border-radius:60px;
    font-weight:600;
    margin-right:15px;
    margin-bottom:15px;
}

.btn-primary-custom{
    background:linear-gradient(90deg,var(--primary),#8b5cf6);
    border:none;
    color:#fff;
}

.btn-primary-custom:hover{
    background:linear-gradient(90deg,#5b21b6,#7c3aed);
    color:#fff;
}

.btn-outline-custom{
    border:2px solid #fff;
    color:#fff;
}

.btn-outline-custom:hover{
    background:#fff;
    color:#000;
}

.hero-stats{
    margin-top:60px;
}

.hero-stat-box{
    background:rgba(255,255,255,.08);
    padding:25px;
    border-radius:18px;
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.08);
    text-align:center;
    height:100%;
}

.hero-stat-box h3{
    color:#fff;
    font-size:2rem;
    font-weight:700;
}

.hero-stat-box p{
    margin:0;
    color:#d1d5db;
}

.section-padding{
    padding:100px 0;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title h2{
    font-size:2.8rem;
    font-weight:700;
    color:var(--dark);
}

.section-title p{
    max-width:760px;
    margin:auto;
    margin-top:18px;
    color:#6b7280;
    line-height:1.9;
}

.service-card{
    background:#fff;
    border-radius:24px;
    padding:40px 30px;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    transition:.4s;
    height:100%;
    border:1px solid #f3f4f6;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-icon{
    width:75px;
    height:75px;
    background:linear-gradient(135deg,var(--primary),#8b5cf6);
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.service-icon i{
    color:#fff;
    font-size:1.8rem;
}

.service-card h4{
    font-weight:700;
    margin-bottom:18px;
    color:var(--dark);
}

.service-card p{
    line-height:1.9;
}

.market-section{
    background:#0f172a;
    color:#fff;
}

.market-box{
    background:#1e293b;
    border-radius:20px;
    padding:35px;
    height:100%;
}

.market-box h4{
    margin-bottom:18px;
    font-weight:700;
}

.market-box ul{
    padding-left:18px;
}

.market-box ul li{
    margin-bottom:14px;
    color:#cbd5e1;
}

.keyword-section{
    background:#f8fafc;
}

.keyword-box{
    background:#fff;
    border-radius:18px;
    padding:18px 22px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    margin-bottom:18px;
    font-weight:600;
}

.cta-main{
    background:
    linear-gradient(rgba(108,43,217,.92),rgba(91,33,182,.92)),
    url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?q=80&w=1600&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    padding:120px 0;
    text-align:center;
    color:#fff;
}

.cta-main h2{
    font-size:3rem;
    font-weight:700;
}

.cta-main p{
    max-width:760px;
    margin:auto;
    margin-top:25px;
    line-height:1.9;
    color:#e5e7eb;
}

.cta-contact{
    margin-top:45px;
}

.cta-contact a{
    display:inline-block;
    margin:10px;
    padding:16px 34px;
    border-radius:60px;
    text-decoration:none;
    font-weight:600;
}

.cta-call{
    background:#fff;
    color:#000;
}

.cta-whatsapp{
    background:#25d366;
    color:#fff;
}

.cta-email{
    background:#ff6b35;
    color:#fff;
}

@media(max-width:991px){

    .lucknow-hero h1{
        font-size:2.8rem;
    }

    .section-title h2{
        font-size:2.2rem;
    }

    .cta-main h2{
        font-size:2.2rem;
    }

}

@media(max-width:767px){

    .lucknow-hero{
        text-align:center;
    }

    .lucknow-hero h1{
        font-size:2.2rem;
    }

}