.gwalior-hero-section{
    padding: 140px 0 90px;
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
    overflow: hidden;
}

.gwalior-hero-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.hero-badge{
    display: inline-block;
    background: rgba(79, 70, 229, 0.1);
    color: #4f46e5;
    padding: 12px 22px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 25px;
}

.gwalior-hero-title{
    font-size: 42px;
    line-height: 1.08;
    font-weight: 700;
    color: #111827;
    margin-bottom: 28px;
    letter-spacing: -2px;
}

.gwalior-hero-desc{
    font-size: 19px;
    line-height: 1.9;
    color: #5b6475;
    margin-bottom: 40px;
}

.gwalior-hero-btns{
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-primary-btn{
    background: #111827;
    color: #fff;
    padding: 16px 30px;
    border-radius: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.hero-primary-btn:hover{
    background: #f6751f;
    color: #fff;
}

.hero-secondary-btn{
    border: 1px solid #d1d5db;
    color: #111827;
    padding: 16px 30px;
    border-radius: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.hero-secondary-btn:hover{
    background: #111827;
    color: #fff;
}

.hero-stats{
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.hero-stat-item h3{
    font-size: 42px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.hero-stat-item p{
    color: #6b7280;
    font-size: 16px;
}

.gwalior-hero-image{
    position: relative;
}

.hero-image-wrapper{
    position: relative;
    border-radius: 35px;
    overflow: hidden;
    transform: rotate(2deg);
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

.hero-image-wrapper img{
    width: 100%;
    display: block;
    border-radius: 35px;
}

/* TABLET */

@media (max-width: 1200px){

    .gwalior-hero-title{
        font-size: 38px;
    }

    .gwalior-hero-desc{
        font-size: 18px;
    }
}

/* MOBILE */

@media (max-width: 991px){

    .gwalior-hero-grid{
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .gwalior-hero-title{
        font-size: 38px;
    }

    .gwalior-hero-btns{
        justify-content: center;
    }

    .hero-stats{
        justify-content: center;
    }

    .hero-image-wrapper{
        transform: none;
    }
}

@media (max-width: 767px){

    .gwalior-hero-section{
        padding: 120px 0;
    }

    .gwalior-hero-title{
        font-size: 36px;
        line-height: 1.2;
    }

    .gwalior-hero-desc{
        font-size: 16px;
        line-height: 1.8;
    }

    .gwalior-hero-btns{
        flex-direction: column;
    }

    .hero-primary-btn,
    .hero-secondary-btn{
        width: 100%;
        text-align: center;
    }

    .hero-stats{
        gap: 30px;
    }

    .hero-stat-item h3{
        font-size: 32px;
    }
}

.mobile-intro-section{
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
    overflow: hidden;
}

.intro-content{
    max-width: 950px;
    margin: auto;
    margin-bottom: 70px;
}

.intro-badge{
    display: inline-block;
    background: rgba(79, 70, 229, 0.08);
    color: #4f46e5;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 25px;
}

.section-title{
    font-size: 58px;
    line-height: 1.1;
    font-weight: 700;
    color: #111827;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.section-subtitle{
    font-size: 19px;
    line-height: 1.9;
    color: #5b6475;
}

.intro-big-image{
    position: relative;
}

.intro-image-wrapper{
    position: relative;
    overflow: hidden;
    border-radius: 35px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

.intro-image-wrapper img{
    width: 100%;
    height: auto;
    display: block;
    border-radius: 35px;
    transition: 0.5s ease;
}

.intro-image-wrapper:hover img{
    transform: scale(1.03);
}

/* FLOATING TAGS */

.floating-tag{
    position: absolute;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 14px 22px;
    border-radius: 14px;
    font-weight: 600;
    color: #111827;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.tag-one{
    top: 40px;
    left: 40px;
}

.tag-two{
    bottom: 40px;
    left: 50px;
}

.tag-three{
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
}

/* TABLET */

@media (max-width: 1100px){

    .section-title{
        font-size: 46px;
    }
}

/* MOBILE */

@media (max-width: 767px){

    .mobile-intro-section{
        padding: 70px 0;
    }

    .section-title{
        font-size: 34px;
        line-height: 1.2;
    }

    .section-subtitle{
        font-size: 16px;
        line-height: 1.8;
    }

    .floating-tag{
        font-size: 13px;
        padding: 10px 16px;
    }

    .tag-one{
        top: 15px;
        left: 15px;
    }

    .tag-two{
        bottom: 15px;
        left: 15px;
    }

    .tag-three{
        right: 15px;
    }
}


.services-section{
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
}

.section-header{
    max-width: 850px;
    margin: auto;
}

.section-header h2{
    font-size: 58px;
    line-height: 1.1;
    font-weight: 700;
    color: #111827;
    margin-bottom: 25px;
}

.section-header p{
    font-size: 18px;
    line-height: 1.9;
    color: #5b6475;
}

.service-badge{
    display: inline-block;
    background: rgba(79, 70, 229, 0.08);
    color: #4f46e5;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 25px;
}

.service-card{
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    height: 100%;
    transition: 0.4s ease;
    box-shadow: 0 15px 50px rgba(0,0,0,0.06);
}

.service-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

.service-image{
    overflow: hidden;
}

.service-image img{
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: 0.5s ease;
}

.service-card:hover .service-image img{
    transform: scale(1.08);
}

.service-content{
    padding: 35px;
}

.service-content h3{
    font-size: 30px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 18px;
}

.service-content p{
    font-size: 17px;
    line-height: 1.8;
    color: #5b6475;
    margin: 0;
}

/* TABLET */

@media (max-width: 1100px){

    .section-header h2{
        font-size: 46px;
    }

    .service-content h3{
        font-size: 26px;
    }
}

/* MOBILE */

@media (max-width: 767px){

    .services-section{
        padding: 70px 0;
    }

    .section-header h2{
        font-size: 34px;
        line-height: 1.2;
    }

    .section-header p{
        font-size: 16px;
    }

    .service-image img{
        height: 220px;
    }

    .service-content{
        padding: 25px;
    }

    .service-content h3{
        font-size: 24px;
    }

    .service-content p{
        font-size: 15px;
    }
}

.why-rovista-section{
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
    overflow: hidden;
}

.section-header{
    max-width: 850px;
    margin: auto;
}

.section-header h2{
    font-size: 58px;
    line-height: 1.1;
    font-weight: 700;
    color: #111827;
    margin-bottom: 25px;
}

.section-header p{
    font-size: 18px;
    line-height: 1.9;
    color: #5b6475;
}

.why-badge{
    display: inline-block;
    background: rgba(79, 70, 229, 0.08);
    color: #4f46e5;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 25px;
}

.why-card{
    background: #fff;
    border-radius: 28px;
    padding: 45px 35px;
    height: 100%;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
}

.why-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(79,70,229,0.12);
}

.why-card::before{
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(79,70,229,0.05);
    border-radius: 50%;
    top: -40px;
    right: -40px;
}

.why-icon{
    width: 75px;
    height: 75px;
    border-radius: 20px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 15px 40px rgba(79,70,229,0.25);
}

.why-icon i{
    font-size: 30px;
    color: #fff;
}

.why-card h4{
    font-size: 28px;
    line-height: 1.3;
    font-weight: 700;
    color: #111827;
    margin-bottom: 18px;
}

.why-card p{
    font-size: 17px;
    line-height: 1.8;
    color: #5b6475;
    margin: 0;
}

/* TABLET */

@media (max-width: 1100px){

    .section-header h2{
        font-size: 46px;
    }

    .why-card h4{
        font-size: 24px;
    }
}

/* MOBILE */

@media (max-width: 767px){

    .why-rovista-section{
        padding: 70px 0;
    }

    .section-header h2{
        font-size: 34px;
        line-height: 1.2;
    }

    .section-header p{
        font-size: 16px;
    }

    .why-card{
        padding: 35px 25px;
    }

    .why-card h4{
        font-size: 22px;
    }

    .why-card p{
        font-size: 15px;
    }

    .why-icon{
        width: 65px;
        height: 65px;
    }

    .why-icon i{
        font-size: 24px;
    }
}

.industries-section{
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
    overflow: hidden;
}

.section-header{
    max-width: 850px;
    margin: auto;
}

.section-header h2{
    font-size: 58px;
    line-height: 1.1;
    font-weight: 700;
    color: #111827;
    margin-bottom: 25px;
}

.section-header p{
    font-size: 18px;
    line-height: 1.9;
    color: #5b6475;
}

.industry-badge{
    display: inline-block;
    background: rgba(79, 70, 229, 0.08);
    color: #4f46e5;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 25px;
}

.industry-card{
    background: #fff;
    border-radius: 28px;
    padding: 40px 30px;
    height: 100%;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: left;
    box-shadow: 0 15px 50px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
}

.industry-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(79,70,229,0.12);
}

.industry-card::before{
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(79,70,229,0.05);
    border-radius: 50%;
    top: -40px;
    right: -40px;
}

.industry-icon{
    width: 75px;
    height: 75px;
    border-radius: 20px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 15px 40px rgba(79,70,229,0.25);
}

.industry-icon i{
    font-size: 30px;
    color: #fff;
}

.industry-card h4{
    font-size: 28px;
    line-height: 1.3;
    font-weight: 700;
    color: #111827;
    margin-bottom: 18px;
}

.industry-card p{
    font-size: 16px;
    line-height: 1.8;
    color: #5b6475;
    margin: 0;
}

/* TABLET */

@media (max-width: 1100px){

    .section-header h2{
        font-size: 46px;
    }

    .industry-card h4{
        font-size: 24px;
    }
}

/* MOBILE */

@media (max-width: 767px){

    .industries-section{
        padding: 70px 0;
    }

    .section-header h2{
        font-size: 34px;
        line-height: 1.2;
    }

    .section-header p{
        font-size: 16px;
    }

    .industry-card{
        padding: 35px 25px;
    }

    .industry-card h4{
        font-size: 22px;
    }

    .industry-card p{
        font-size: 15px;
    }

    .industry-icon{
        width: 65px;
        height: 65px;
    }

    .industry-icon i{
        font-size: 24px;
    }
}

.process-section{
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
    overflow: hidden;
    position: relative;
}

.section-header{
    max-width: 850px;
    margin: auto;
}

.section-header h2{
    font-size: 58px;
    line-height: 1.1;
    font-weight: 700;
    color: #111827;
    margin-bottom: 25px;
}

.section-header p{
    font-size: 18px;
    line-height: 1.9;
    color: #5b6475;
}

.process-badge{
    display: inline-block;
    background: rgba(79, 70, 229, 0.08);
    color: #4f46e5;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 25px;
}

.process-wrapper{
    position: relative;
}

/* CONNECTING LINE */

.process-wrapper::before{
    content: "";
    position: absolute;
    top: 90px;
    left: 10%;
    width: 80%;
    height: 3px;
    background: linear-gradient(to right, #4f46e5, #7c3aed);
    z-index: 0;
}

/* CARD */

.process-card{
    background: #fff;
    border-radius: 30px;
    padding: 45px 30px;
    text-align: center;
    height: 100%;
    position: relative;
    z-index: 2;
    transition: 0.4s ease;
    box-shadow: 0 15px 50px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
}

.process-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(79,70,229,0.12);
}

/* STEP NUMBER */

.process-number{
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 52px;
    font-weight: 800;
    color: rgba(79,70,229,0.08);
    line-height: 1;
}

/* ICON */

.process-icon{
    width: 85px;
    height: 85px;
    border-radius: 24px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 30px;
    box-shadow: 0 15px 40px rgba(79,70,229,0.25);
}

.process-icon i{
    font-size: 34px;
    color: #fff;
}

/* TEXT */

.process-card h4{
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 18px;
    line-height: 1.3;
}

.process-card p{
    font-size: 16px;
    line-height: 1.8;
    color: #5b6475;
    margin: 0;
}

/* TABLET */

@media (max-width: 1100px){

    .section-header h2{
        font-size: 46px;
    }

    .process-card h4{
        font-size: 24px;
    }

    .process-wrapper::before{
        display: none;
    }
}

/* MOBILE */

@media (max-width: 767px){

    .process-section{
        padding: 70px 0;
    }

    .section-header h2{
        font-size: 34px;
        line-height: 1.2;
    }

    .section-header p{
        font-size: 16px;
    }

    .process-card{
        padding: 35px 25px;
    }

    .process-card h4{
        font-size: 22px;
    }

    .process-card p{
        font-size: 15px;
    }

    .process-icon{
        width: 70px;
        height: 70px;
    }

    .process-icon i{
        font-size: 28px;
    }

    .process-number{
        font-size: 40px;
    }

    .process-wrapper::before{
        display: none;
    }
}