
:root{
    --primary:#0f172a;
    --secondary:#ec4899;
    --accent:#f59e0b;
    --light:#f8fafc;
    --dark:#111827;
    --text:#475569;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:var(--text);
    overflow-x:hidden;
}

/* HERO */

.mumbai-hero{
    min-height:100vh;
    background:
    linear-gradient(rgba(5,10,25,.82),rgba(5,10,25,.88)),
    url('https://images.unsplash.com/photo-1526481280695-3c4691f241ac?q=80&w=1600&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    padding:120px 0;
    position:relative;
}

.hero-tag{
    display:inline-block;
    padding:10px 22px;
    background:rgba(255,255,255,.1);
    border:1px solid rgba(255,255,255,.15);
    border-radius:50px;
    color:#fff;
    margin-bottom:28px;
    backdrop-filter:blur(10px);
    font-size:.95rem;
}

.mumbai-hero h1{
    color:#fff;
    font-size:4.2rem;
    line-height:1.1;
    font-weight:700;
}

.gradient-heading{
    background:linear-gradient(90deg,#ec4899,#f59e0b);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.mumbai-hero p{
    color:#d1d5db;
    line-height:1.9;
    margin-top:28px;
    font-size:1.15rem;
    max-width:760px;
}

.hero-btns{
    margin-top:45px;
    color:#fff;
}

.hero-btns .btn{
    padding:16px 34px;
    border-radius:60px;
    margin-right:15px;
    margin-bottom:15px;
    font-weight:600;
    color:#fff;
}

.btn-main{
    background:linear-gradient(90deg,#ec4899,#db2777);
    border:none;
    color:#fff;
}

.btn-main:hover{
    background:linear-gradient(90deg,#be185d,#db2777);
    color:#fff;
}

.btn-outline-light-custom{
    border:2px solid #fff;
    color:#fff;
}

.btn-outline-light-custom:hover{
    background:#fff;
    color:#000;
}

.hero-mini-card{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    padding:28px;
    text-align:center;
    backdrop-filter:blur(12px);
    height:100%;
}

.hero-mini-card h3{
    color:#fff;
    font-weight:700;
    font-size:2rem;
}

.hero-mini-card p{
    color:#d1d5db;
    margin:0;
    font-size:1rem;
}

/* COMMON */

.section-padding{
    padding:110px 0;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title h2{
    font-size:3rem;
    font-weight:700;
    color:var(--dark);
}

.section-title p{
    max-width:760px;
    margin:auto;
    margin-top:18px;
    line-height:1.9;
}

/* SERVICES */

.service-card{
    background:#fff;
    border-radius:26px;
    padding:40px 32px;
    height:100%;
    transition:.4s;
    box-shadow:0 18px 45px rgba(0,0,0,.05);
    border:1px solid #f1f5f9;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-icon{
    width:80px;
    height:80px;
    border-radius:20px;
    background:linear-gradient(135deg,#ec4899,#f59e0b);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:28px;
}

.service-icon i{
    color:#fff;
    font-size:1.9rem;
}

.service-card h4{
    font-weight:700;
    margin-bottom:18px;
    color:var(--dark);
}

.service-card p{
    line-height:1.9;
}

/* MARKET */

.market-section{
    background:#0f172a;
    color:#fff;
}

.market-box{
    background:#1e293b;
    border-radius:24px;
    padding:40px;
    height:100%;
}

.market-box h4{
    font-weight:700;
    margin-bottom:20px;
}

.market-box ul{
    padding-left:18px;
}

.market-box li{
    margin-bottom:15px;
    color:#cbd5e1;
}

/* INDUSTRY */

.industry-box{
    background:#fff;
    padding:25px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    font-weight:600;
    margin-bottom:25px;
}

/* KEYWORDS */

.keyword-section{
    background:#f8fafc;
}

.keyword-card{
    background:#fff;
    padding:20px 24px;
    border-radius:18px;
    margin-bottom:18px;
    font-weight:600;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

/* CTA */

.cta-section{
    background:
    linear-gradient(rgba(15,23,42,.92),rgba(15,23,42,.92)),
    url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?q=80&w=1600&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    padding:120px 0;
    text-align:center;
    color:#fff;
}

.cta-section h2{
    font-size:3rem;
    font-weight:700;
}

.cta-section p{
    max-width:760px;
    margin:auto;
    margin-top:24px;
    line-height:1.9;
    color:#d1d5db;
}

.cta-buttons{
    margin-top:45px;
}

.cta-buttons a{
    display:inline-block;
    margin:10px;
    padding:16px 34px;
    border-radius:60px;
    text-decoration:none;
    font-weight:600;
}

.call-btn{
    background:#fff;
    color:#000;
}

.whatsapp-btn{
    background:#25d366;
    color:#fff;
}

.email-btn{
    background:#ec4899;
    color:#fff;
}

/* RESPONSIVE */

@media(max-width:991px){

    .mumbai-hero h1{
        font-size:2.9rem;
    }

    .section-title h2{
        font-size:2.3rem;
    }

    .cta-section h2{
        font-size:2.3rem;
    }

}

@media(max-width:767px){

    .mumbai-hero{
        text-align:center;
    }

    .mumbai-hero h1{
        font-size:2.2rem;
    }

}