/* =========================================
   BANGALORE LANDING PAGE CSS
========================================= */

:root{
    --primary:#6c63ff;
    --secondary:#8b5cf6;
    --dark:#050816;
    --dark2:#0b1020;
    --card:#12192d;
    --text:#cbd5e1;
    --white:#ffffff;
}

/* GLOBAL */
.bangalore-hero,
.bangalore-services,
.bangalore-industries,
.why-bangalore,
.final-cta{
    position:relative;
    overflow:hidden;
}

.section-mini-title{
    display:inline-block;
    padding:10px 18px;
    border-radius:100px;
    background:rgba(108,99,255,.12);
    color:#a78bfa;
    font-size:.85rem;
    font-weight:600;
    margin-bottom:20px;
}

.section-heading{
    margin-bottom:70px;
}

.section-heading h2{
    font-size:clamp(2rem,4vw,3.4rem);
    line-height:1.2;
    font-weight:700;
    color:var(--white);
    margin-bottom:24px;
}

.section-heading p{
    max-width:850px;
    margin:auto;
    color:var(--text);
    line-height:1.9;
    font-size:1.05rem;
}

/* HERO */
.bangalore-hero{
    min-height:100vh;
    padding:120px 0 80px;
    background:
    linear-gradient(rgba(5,8,22,.92),rgba(5,8,22,.96)),
    url('../img/bangalore-bg.jpg') center/cover no-repeat;
}

.hero-badge{
    display:inline-block;
    padding:12px 22px;
    border-radius:100px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    color:#a78bfa;
    font-size:.9rem;
    margin-bottom:30px;
}

.hero-title{
    font-size:clamp(2.8rem,5vw,5rem);
    line-height:1.05;
    font-weight:700;
    color:#fff;
    margin-bottom:28px;
}

.hero-text{
    color:var(--text);
    line-height:1.9;
    font-size:1.08rem;
    max-width:760px;
    margin-bottom:40px;
}

/* BUTTONS */
.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.hero-btn-primary{
    background:linear-gradient(135deg,#6c63ff,#8b5cf6);
    color:#fff;
    padding:15px 34px;
    border-radius:60px;
    font-weight:600;
    transition:.35s ease;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

.hero-btn-primary:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 45px rgba(108,99,255,.35);
    color:#fff;
}

.hero-btn-secondary{
    padding:15px 34px;
    border-radius:60px;
    border:1px solid rgba(255,255,255,.14);
    color:#fff;
    background:rgba(255,255,255,.03);
    transition:.35s ease;
    font-weight:600;
}

.hero-btn-secondary:hover{
    background:rgba(255,255,255,.08);
    color:#fff;
}

/* TRUST ITEMS */
.hero-trust{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.trust-item{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.06);
    padding:14px 18px;
    border-radius:16px;
    display:flex;
    align-items:center;
    gap:10px;
    color:#e2e8f0;
    font-size:.92rem;
}

.trust-item i{
    color:#a78bfa;
}

/* GLASS CARD */
.hero-glass-card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(18px);
    padding:45px;
    border-radius:28px;
    color:#fff;
    box-shadow:0 10px 40px rgba(0,0,0,.3);
}

.hero-small{
    color:#a78bfa;
    font-weight:600;
    letter-spacing:.5px;
}

.hero-glass-card h3{
    font-size:2rem;
    margin:18px 0 22px;
    line-height:1.2;
}

.hero-glass-card p{
    color:var(--text);
    line-height:1.9;
    margin-bottom:30px;
}

.hero-feature-list{
    list-style:none;
    padding:0;
    margin:0 0 32px;
}

.hero-feature-list li{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:16px;
    color:#f1f5f9;
}

.hero-feature-list i{
    color:#a78bfa;
}

.hero-card-btn{
    width:100%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#25d366;
    color:#fff;
    padding:15px 25px;
    border-radius:16px;
    font-weight:600;
    transition:.3s ease;
}

.hero-card-btn:hover{
    background:#1ebe5d;
    color:#fff;
}

/* SERVICES */
.bangalore-services{
    padding:120px 0;
    background:var(--dark2);
}

.service-box{
    background:var(--card);
    border-radius:26px;
    border:1px solid rgba(255,255,255,.06);
    padding:40px;
    height:100%;
    transition:.35s ease;
}

.service-box:hover{
    transform:translateY(-8px);
    border-color:rgba(167,139,250,.28);
    box-shadow:0 20px 50px rgba(0,0,0,.3);
}

.service-icon{
    width:72px;
    height:72px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(108,99,255,.12);
    margin-bottom:28px;
}

.service-icon i{
    font-size:1.8rem;
    color:#a78bfa;
}

.service-box h3{
    color:#fff;
    font-size:1.4rem;
    margin-bottom:18px;
    line-height:1.4;
}

.service-box p{
    color:var(--text);
    line-height:1.9;
    margin:0;
}

/* INDUSTRIES */
.bangalore-industries{
    padding:120px 0;
    background:#08101f;
}

.industry-box{
    background:#111a2c;
    border:1px solid rgba(255,255,255,.06);
    border-radius:24px;
    padding:38px 30px;
    text-align:center;
    height:100%;
    transition:.35s ease;
}

.industry-box:hover{
    transform:translateY(-6px);
    border-color:rgba(167,139,250,.28);
}

.industry-box i{
    font-size:2.2rem;
    color:#a78bfa;
    margin-bottom:24px;
}

.industry-box h4{
    color:#fff;
    margin-bottom:18px;
    font-size:1.3rem;
}

.industry-box p{
    color:var(--text);
    line-height:1.9;
    margin:0;
}

/* WHY SECTION */
.why-bangalore{
    padding:120px 0;
    background:#050b14;
}

.why-box{
    background:#0f1728;
    border-radius:24px;
    border:1px solid rgba(255,255,255,.06);
    padding:38px 30px;
    height:100%;
    transition:.35s ease;
}

.why-box:hover{
    transform:translateY(-6px);
    border-color:rgba(167,139,250,.28);
}

.why-box i{
    font-size:2rem;
    color:#a78bfa;
    margin-bottom:24px;
}

.why-box h4{
    color:#fff;
    margin-bottom:18px;
    font-size:1.3rem;
}

.why-box p{
    color:var(--text);
    line-height:1.9;
    margin:0;
}

/* FINAL CTA */
.final-cta{
    padding:120px 0;
    background:
    linear-gradient(rgba(108,99,255,.92),rgba(139,92,246,.92)),
    url('../img/bangalore-cta.jpg') center/cover no-repeat;
}

.final-cta h2{
    font-size:clamp(2.3rem,4vw,4rem);
    line-height:1.2;
    color:#fff;
    font-weight:700;
    max-width:950px;
    margin:25px auto;
}

.final-cta p{
    color:#ede9fe;
    max-width:760px;
    margin:0 auto 45px;
    line-height:1.9;
    font-size:1.05rem;
}

/* RESPONSIVE */
@media(max-width:991px){

    .hero-glass-card{
        margin-top:50px;
    }

    .hero-title{
        font-size:3rem;
    }

}

@media(max-width:768px){

    .bangalore-hero{
        padding:100px 0 70px;
    }

    .hero-title{
        font-size:2.4rem;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .hero-btn-primary,
    .hero-btn-secondary{
        width:100%;
        text-align:center;
    }

    .section-heading{
        margin-bottom:50px;
    }

    .section-heading h2{
        font-size:2rem;
    }

    .service-box,
    .industry-box,
    .why-box,
    .hero-glass-card{
        padding:30px;
    }

    .final-cta{
        padding:90px 0;
    }

}