/* ===========================
   RAJKOT LANDING PAGE CSS
   =========================== */

.rajkot-hero {
    background: linear-gradient(135deg,#0f172a,#1e293b);
    color: #fff;
    padding: 110px 0;
    overflow: hidden;
}

.rajkot-badge {
    display: inline-block;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
    font-weight: 600;
}

.rajkot-hero h1 {
    font-size: clamp(2.4rem,5vw,4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.rajkot-hero p {
    font-size: 1.15rem;
    max-width: 750px;
    opacity: .9;
}

.rajkot-btn {
    display: inline-block;
    margin-top: 35px;
    padding: 16px 34px;
    border-radius: 50px;
    background: #fff;
    color: #111;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

.rajkot-btn:hover {
    transform: translateY(-4px);
}

/* SERVICES */

.rajkot-services {
    padding: 100px 0;
    background: #fff;
}

.section-heading {
    text-align: center;
    margin-bottom: 70px;
}

.section-heading h2 {
    font-size: 2.5rem;
    font-weight: 800;
}

.section-heading p {
    color: #666;
}

.service-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    height: 100%;
    border: 1px solid #eee;
    transition: .35s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    background: #f3f4f6;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
}

/* INDUSTRIES */

.rajkot-industries {
    background: #f8fafc;
    padding: 100px 0;
}

.industry-box {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    height: 100%;
    transition: .3s;
}

.industry-box:hover {
    transform: translateY(-8px);
}

.industry-box i {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2563eb;
}

/* TIMELINE */

.rajkot-process {
    padding: 100px 0;
}

.timeline-step {
    text-align: center;
    position: relative;
    padding: 30px;
}

.timeline-number {
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 50%;
    background: #2563eb;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-step h4 {
    margin-top: 25px;
    font-weight: 700;
}

/* TRUST */

.rajkot-trust {
    background: #111827;
    color: #fff;
    padding: 100px 0;
}

.trust-box {
    background: rgba(255,255,255,.05);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    height: 100%;
}

.trust-box h3 {
    font-size: 3rem;
    font-weight: 800;
}

/* CTA */

.rajkot-cta {
    padding: 100px 0;
    background: linear-gradient(135deg,#2563eb,#1d4ed8);
    color: #fff;
    text-align: center;
}

.rajkot-cta h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.rajkot-cta p {
    max-width: 700px;
    margin: auto;
    margin-bottom: 30px;
}

.rajkot-cta a {
    background: #fff;
    color: #111;
    padding: 16px 34px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
}

/* FAQ */

.rajkot-faq {
    padding: 100px 0;
    background: #fff;
}

.faq-card {
    background: #f8fafc;
    border-radius: 18px;
    padding: 30px;
    margin-bottom: 20px;
}

.faq-card h5 {
    font-weight: 700;
}

/* MOBILE */

@media(max-width:768px){

    .rajkot-hero{
        text-align:center;
        padding:80px 0;
    }

    .rajkot-hero h1{
        font-size:2.4rem;
    }

    .rajkot-cta h2{
        font-size:2rem;
    }

}