/* =========================
   PUNE LANDING PAGE CSS
   ========================= */

.pune-hero{
    padding:100px 0;
    background:
    radial-gradient(circle at top right,#dbeafe 0%,transparent 40%),
    linear-gradient(135deg,#ffffff,#f8fafc);
}

.pune-badge{
    display:inline-block;
    padding:10px 18px;
    background:#e0f2fe;
    color:#0369a1;
    border-radius:50px;
    font-size:.9rem;
    font-weight:600;
    margin-bottom:20px;
}

.pune-hero h1{
    font-size:3.3rem;
    font-weight:800;
    line-height:1.15;
    color:#0f172a;
    margin-bottom:25px;
}

.pune-hero p{
    font-size:1.1rem;
    line-height:1.9;
    color:#475569;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.hero-buttons .btn{
    padding:14px 28px;
    border-radius:12px;
    font-weight:600;
}

/* Growth Panel */

.growth-panel{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.growth-item{
    background:#fff;
    padding:30px 20px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    transition:.3s;
}

.growth-item:hover{
    transform:translateY(-8px);
}

.growth-item h3{
    font-size:1.4rem;
    font-weight:700;
    color:#0f172a;
    margin-bottom:10px;
}

.growth-item p{
    margin:0;
    font-size:.95rem;
    line-height:1.6;
}

/* Section Common */

.pune-industries,
.pune-services,
.pune-why{
    padding:100px 0;
}

.section-title{
    margin-bottom:60px;
}

.section-title h2{
    font-size:2.5rem;
    font-weight:800;
    color:#0f172a;
    margin-bottom:15px;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#64748b;
    line-height:1.8;
}

/* Industries */

.industry-box{
    background:#fff;
    padding:40px 30px;
    border-radius:22px;
    text-align:center;
    height:100%;
    box-shadow:0 12px 35px rgba(0,0,0,.05);
    transition:.3s;
}

.industry-box:hover{
    transform:translateY(-10px);
}

.industry-box i{
    font-size:2.5rem;
    color:#2563eb;
    margin-bottom:20px;
}

.industry-box h3{
    font-size:1.35rem;
    font-weight:700;
    margin-bottom:15px;
}

.industry-box p{
    color:#64748b;
    margin:0;
    line-height:1.8;
}

/* Timeline */

.timeline{
    max-width:900px;
    margin:auto;
    position:relative;
}

.timeline::before{
    content:"";
    position:absolute;
    left:50%;
    top:0;
    bottom:0;
    width:3px;
    background:#dbeafe;
    transform:translateX(-50%);
}

.timeline-item{
    width:45%;
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 12px 35px rgba(0,0,0,.05);
    margin-bottom:40px;
    position:relative;
}

.timeline-item:nth-child(odd){
    margin-right:auto;
}

.timeline-item:nth-child(even){
    margin-left:auto;
}

.timeline-item span{
    display:inline-flex;
    width:55px;
    height:55px;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#2563eb;
    color:#fff;
    font-weight:700;
    margin-bottom:18px;
}

.timeline-item h3{
    font-size:1.4rem;
    font-weight:700;
    margin-bottom:15px;
}

.timeline-item p{
    color:#64748b;
    margin:0;
    line-height:1.8;
}

/* Why Choose */

.pune-why{
    background:#0f172a;
    color:#fff;
}

.pune-why h2{
    font-size:2.7rem;
    font-weight:800;
    margin-bottom:30px;
}

.pune-why ul{
    list-style:none;
    padding:0;
    margin:0;
}

.pune-why ul li{
    padding:14px 0;
    font-size:1.05rem;
    border-bottom:1px solid rgba(255,255,255,.12);
}

.pune-why ul li:last-child{
    border:none;
}

.stats-card{
    background:#1e293b;
    border-radius:30px;
    padding:50px;
    display:grid;
    gap:35px;
    text-align:center;
}

.stats-card h3{
    font-size:3rem;
    font-weight:800;
    color:#60a5fa;
    margin-bottom:10px;
}

.stats-card p{
    margin:0;
    color:#cbd5e1;
}

/* Responsive */

@media(max-width:991px){

    .pune-hero{
        text-align:center;
    }

    .growth-panel{
        margin-top:50px;
    }

    .timeline::before{
        display:none;
    }

    .timeline-item{
        width:100%;
        margin-left:0 !important;
        margin-right:0 !important;
    }

    .pune-hero h1{
        font-size:2.4rem;
    }

    .section-title h2{
        font-size:2rem;
    }

    .pune-why h2{
        font-size:2rem;
    }

    .stats-card{
        margin-top:40px;
    }
}

@media(max-width:576px){

    .growth-panel{
        grid-template-columns:1fr;
    }

    .hero-buttons{
        justify-content:center;
    }

    .pune-hero{
        padding:70px 0;
    }

    .pune-industries,
    .pune-services,
    .pune-why{
        padding:70px 0;
    }

    .pune-hero h1{
        font-size:2rem;
    }
}