/* ===== NOIDA AREA BANNER CSS START ===== */

.noida-area-banner{
    position: relative;
    overflow: hidden;
    background:
    linear-gradient(135deg, rgba(0,0,0,0.88), rgba(0,0,0,0.75)),
    url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=1400');
    background-size: cover;
    background-position: center;
    min-height: 700px;
    height: 85vh;
}

.noida-area-overlay{
    width: 100%;
    height: 100%;
    position: relative;
    padding: 120px 0 80px;
}

.noida-shape{
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
}

.noida-shape-1{
    width: 180px;
    height: 180px;
    background: rgba(255,255,255,0.06);
    top: 60px;
    right: 10%;
}

.noida-shape-2{
    width: 90px;
    height: 90px;
    background: rgba(255,255,255,0.08);
    bottom: 80px;
    left: 8%;
}

.noida-banner-badge{
    display: inline-block;
    padding: 10px 18px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 25px;
    backdrop-filter: blur(8px);
    letter-spacing: .5px;
}

.noida-area-title{
    font-size: 62px;
    line-height: 1.15;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
}

.noida-area-text{
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255,255,255,0.82);
    max-width: 620px;
    margin-bottom: 35px;
}

.noida-area-btns{
    gap: 15px;
    margin-bottom: 35px;
}

.noida-btn{
    text-decoration: none;
    padding: 15px 34px;
    border-radius: 60px;
    font-weight: 600;
    transition: 0.4s ease;
    display: inline-block;
}

.noida-btn-main{
    background: #ffffff;
    color: #000;
}

.noida-btn-main:hover{
    background: #e8e8e8;
    transform: translateY(-3px);
}

.noida-btn-light{
    border: 1px solid rgba(255,255,255,0.35);
    color: #fff;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
}

.noida-btn-light:hover{
    background: #fff;
    color: #000;
    transform: translateY(-3px);
}

.noida-banner-features{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.noida-feature-item{
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.noida-feature-item i{
    color: #ffffff;
    font-size: 16px;
}

/* ===== MOBILE RESPONSIVE ===== */

@media(max-width:991px){

    .noida-area-banner{
        min-height: auto;
    }

    .noida-area-overlay{
        padding: 100px 0 70px;
    }

    .noida-area-title{
        font-size: 46px;
    }

}

@media(max-width:767px){

    .noida-area-overlay{
        padding: 80px 0 60px;
        text-align: center;
    }

    .noida-area-title{
        font-size: 34px;
        line-height: 1.3;
    }

    .noida-area-text{
        font-size: 15px;
        line-height: 1.8;
        margin: 0 auto 30px;
    }

    .noida-area-btns{
        justify-content: center;
    }

    .noida-btn{
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }

    .noida-banner-features{
        justify-content: center;
        gap: 12px;
    }

    .noida-feature-item{
        font-size: 14px;
    }

    .noida-shape-1{
        width: 100px;
        height: 100px;
    }

    .noida-shape-2{
        width: 60px;
        height: 60px;
    }

}

/* ===== NOIDA AREA BANNER CSS END ===== */







/* ===== NOIDA ABOUT CONTENT CSS START ===== */

.noida-about-area{
    position: relative;
    padding: 60px 0;
    background: #0f172a;
    overflow: hidden;
}

/* background blur */
.noida-about-blur{
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 193, 7, 0.12);
    border-radius: 50%;
    top: -120px;
    right: -120px;
    filter: blur(20px);
}

/* top title */
.noida-about-mini-title{
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255,255,255,0.08);
    color: #ffcc33;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: .5px;
}

/* heading */
.noida-about-main-title{
    font-size: 46px;
    font-weight: 800;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 18px;
}

/* top text */
.noida-about-main-text{
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255,255,255,0.75);
    max-width: 700px;
    margin: auto;
}

/* main card */
.noida-about-card{
    position: relative;
    height: 100%;
    border-radius: 28px;
    padding: 40px;
    overflow: hidden;
}

/* dark card */
.dark-card{
    background: linear-gradient(135deg, #1e293b, #111827);
    border: 1px solid rgba(255,255,255,0.06);
}

/* light card */
.light-card{
    background: #ffffff;
}

/* icon */
.noida-about-icon{
    width: 75px;
    height: 75px;
    border-radius: 20px;
    background: linear-gradient(135deg, #ffb703, #ff8800);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.noida-about-icon i{
    color: #fff;
    font-size: 30px;
}

/* titles */
.noida-about-card h3{
    font-size: 32px;
    color: #fff;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 20px;
}

.noida-about-card h4{
    font-size: 28px;
    color: #111827;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 18px;
}

/* paragraph */
.noida-about-card p{
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 16px;
}

/* dark text */
.dark-card p{
    color: rgba(255,255,255,0.78);
}

/* light text */
.light-card p{
    color: #555;
}

/* points */
.noida-about-points{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.noida-about-point{
    background: rgba(255,255,255,0.08);
    color: #fff;
    padding: 12px 18px;
    border-radius: 50px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.noida-about-point i{
    color: #ffcc33;
}

/* tag */
.noida-price-tag{
    display: inline-block;
    background: #fff3cd;
    color: #d48806;
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}

/* mini stat box */
.noida-mini-box{
    background: #f8f9fc;
    border-radius: 18px;
    padding: 20px;
    text-align: center;
}

.noida-mini-box h5{
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 5px;
    color: #111827;
}

.noida-mini-box span{
    font-size: 14px;
    color: #666;
}

/* ===== RESPONSIVE CSS ===== */

@media(max-width:991px){

    .noida-about-area{
        padding: 70px 0;
    }

    .noida-about-main-title{
        font-size: 36px;
    }

    .noida-about-card{
        padding: 30px;
    }

    .noida-about-card h3{
        font-size: 26px;
    }

    .noida-about-card h4{
        font-size: 24px;
    }

}

@media(max-width:767px){

    .noida-about-area{
        padding: 55px 0;
    }

    .noida-about-main-title{
        font-size: 28px;
    }

    .noida-about-main-text{
        font-size: 14px;
        line-height: 1.8;
    }

    .noida-about-card{
        padding: 25px 20px;
        border-radius: 22px;
    }

    .noida-about-card h3,
    .noida-about-card h4{
        font-size: 22px;
    }

    .noida-about-card p{
        font-size: 14px;
        line-height: 1.8;
    }

    .noida-about-points{
        gap: 10px;
    }

    .noida-about-point{
        width: 100%;
        justify-content: center;
        font-size: 13px;
    }

    .noida-about-icon{
        width: 65px;
        height: 65px;
        margin-bottom: 18px;
    }

    .noida-about-icon i{
        font-size: 24px;
    }

}

/* ===== NOIDA ABOUT CONTENT CSS END ===== */




/* ===== NOIDA PREMIUM SHOWCASE CSS START ===== */

.noida-showcase-section{
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff, #f3f6ff);
    overflow: hidden;
}

/* background circle */
.noida-showcase-circle{
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(255, 193, 7, 0.08);
    border-radius: 50%;
    top: -180px;
    left: -150px;
    filter: blur(10px);
}

/* content */
.noida-showcase-content{
    position: relative;
    z-index: 2;
}

/* small tag */
.noida-showcase-tag{
    display: inline-block;
    padding: 10px 20px;
    background: #fff3cd;
    color: #d48806;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* heading */
.noida-showcase-title{
    font-size: 48px;
    font-weight: 800;
    line-height: 1.3;
    color: #111827;
    margin-bottom: 20px;
}

/* text */
.noida-showcase-text{
    font-size: 15px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 16px;
}

/* list */
.noida-showcase-list{
    margin-top: 25px;
    margin-bottom: 35px;
}

.noida-showcase-item{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 15px;
    font-weight: 500;
    color: #222;
}

.noida-showcase-item i{
    color: #ff9800;
    font-size: 16px;
}

/* button */
.noida-showcase-btn{
    display: inline-block;
    padding: 15px 34px;
    border-radius: 50px;
    background: linear-gradient(135deg, #111827, #1f2937);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s ease;
}

.noida-showcase-btn:hover{
    transform: translateY(-4px);
    color: #fff;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* image area */
.noida-showcase-image{
    position: relative;
}

/* image */
.noida-showcase-image img{
    width: 100%;
    height: 620px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* floating card */
.noida-floating-card{
    position: absolute;
    bottom: 30px;
    left: -30px;
    width: 280px;
    background: rgba(255,255,255,0.95);
    padding: 24px;
    border-radius: 22px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    backdrop-filter: blur(10px);
}

.noida-floating-card h5{
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.noida-floating-card p{
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ===== RESPONSIVE CSS ===== */

@media(max-width:991px){

    .noida-showcase-section{
        padding: 70px 0;
    }

    .noida-showcase-title{
        font-size: 38px;
    }

    .noida-showcase-image img{
        height: 500px;
    }

    .noida-floating-card{
        left: 20px;
        bottom: 20px;
    }

}

@media(max-width:767px){

    .noida-showcase-section{
        padding: 55px 0;
    }

    .noida-showcase-content{
        text-align: center;
    }

    .noida-showcase-title{
        font-size: 28px;
    }

    .noida-showcase-text{
        font-size: 14px;
        line-height: 1.8;
    }

    .noida-showcase-list{
        margin-bottom: 28px;
    }

    .noida-showcase-item{
        justify-content: center;
        font-size: 14px;
    }

    .noida-showcase-btn{
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }

    .noida-showcase-image img{
        height: auto;
        border-radius: 22px;
    }

    .noida-floating-card{
        position: relative;
        width: 100%;
        left: 0;
        bottom: 0;
        margin-top: -30px;
        border-radius: 20px;
        padding: 20px;
    }

    .noida-floating-card h5{
        font-size: 20px;
    }

}

/* ===== NOIDA PREMIUM SHOWCASE CSS END ===== */



/* ===== NOIDA ELITE CARDS CSS START ===== */

.noida-elite-section{
    padding: 60px 0;
    background: linear-gradient(135deg,#eef2ff,#f8fbff);
}

/* heading */
.noida-elite-title{
    font-size: 44px;
    font-weight: 800;
}

.noida-elite-sub{
    color: #666;
    font-size: 15px;
}

/* CARD */
.noida-elite-card{
    border-radius: 22px;
    overflow: hidden;
    position: relative;
}

/* IMAGE */
.noida-elite-img{
    position: relative;
    height: 320px;
    overflow: hidden;
    border-radius: 22px;
}

.noida-elite-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

/* OVERLAY */
.noida-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.1));
}

/* BADGES */
.noida-badge-left,
.noida-badge-right{
    position: absolute;
    top: 12px;
    font-size: 11px;
    padding: 5px 12px;
    border-radius: 20px;
    color: #fff;
}

.noida-badge-left{
    left: 12px;
    background: #ff9800;
}

.noida-badge-right{
    right: 12px;
    background: #28a745;
}

/* INFO TEXT */
.noida-elite-info{
    position: absolute;
    bottom: 60px;
    left: 20px;
    color: #fff;
}

.noida-elite-info h5{
    font-size: 20px;
    font-weight: 700;
}

.noida-elite-info span{
    font-size: 13px;
    opacity: 0.9;
}

/* HOVER ACTIONS */
.noida-hover-actions{
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    text-align: center;
    transition: 0.4s;
}

.noida-hover-actions a{
    display: inline-block;
    margin: 5px;
}

/* icons */
.noida-hover-actions a:not(.noida-view-btn){
    width: 38px;
    height: 38px;
    line-height: 38px;
    border-radius: 50%;
    background: #fff;
    color: #000;
}

/* button */
.noida-view-btn{
    display: block;
    margin: 10px auto 0;
    width: 80%;
    padding: 10px;
    border-radius: 30px;
    background: linear-gradient(135deg,#ff9800,#ffc107);
    color: #000;
    font-weight: 600;
}

/* HOVER EFFECT */
.noida-elite-card:hover img{
    transform: scale(1.1);
}

.noida-elite-card:hover .noida-hover-actions{
    bottom: 15px;
}

/* ===== RESPONSIVE ===== */

@media(max-width:991px){

    .noida-elite-title{
        font-size: 32px;
    }

    .noida-elite-img{
        height: 260px;
    }

}

@media(max-width:767px){

    .noida-elite-section{
        padding: 60px 0;
    }

    .noida-elite-title{
        font-size: 26px;
    }

    .noida-hover-actions{
        bottom: 10px !important;
    }

}

/* ===== NOIDA ELITE CARDS CSS END ===== */





/* ===== NOIDA MODERN ABOUT CSS START ===== */

.noida-modern-about{
    padding: 50px 0;
    background: linear-gradient(135deg,#ffffff,#f3f6ff);
}

/* IMAGE WRAP */
.noida-modern-img-wrap{
    position: relative;
}

/* main image */
.noida-main-image{
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
    transform: rotate(-2deg);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* small image */
.noida-small-image{
    position: absolute;
    bottom: -30px;
    right: 30px;
    width: 180px;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid #fff;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* floating card */
.noida-image-card{
    position: absolute;
    top: 30px;
    left: -20px;
    background: #fff;
    padding: 20px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.noida-image-card h5{
    font-weight: 700;
    margin-bottom: 3px;
}

.noida-image-card span{
    font-size: 13px;
    color: #666;
}

/* CONTENT */
.noida-modern-content{
    padding-left: 20px;
}

/* tag */
.noida-modern-tag{
    display: inline-block;
    background: #fff3cd;
    color: #d48806;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    margin-bottom: 20px;
}

/* title */
.noida-modern-title{
    font-size: 44px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
}

/* text */
.noida-modern-text{
    font-size: 15px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 15px;
}

/* stats */
.noida-modern-stats{
    display: flex;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.noida-stat-box{
    background: #fff;
    padding: 15px 20px;
    border-radius: 15px;
    text-align: center;
    min-width: 100px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.noida-stat-box h4{
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 3px;
}

.noida-stat-box span{
    font-size: 13px;
    color: #666;
}

/* button */
.noida-modern-btn{
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    background: linear-gradient(135deg,#111,#333);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.noida-modern-btn:hover{
    transform: translateY(-3px);
    color: #fff;
}

/* ===== RESPONSIVE ===== */

@media(max-width:991px){

    .noida-modern-about{
        padding: 70px 0;
        text-align: center;
    }

    .noida-modern-title{
        font-size: 32px;
    }

    .noida-modern-content{
        padding-left: 0;
    }

    .noida-modern-stats{
        justify-content: center;
    }

    .noida-main-image{
        height: 380px;
        transform: none;
    }

    .noida-small-image{
        width: 140px;
        height: 180px;
        right: 15px;
    }

    .noida-image-card{
        left: 10px;
    }

}

@media(max-width:767px){

    .noida-modern-about{
        padding: 55px 0;
    }

    .noida-modern-title{
        font-size: 26px;
    }

    .noida-modern-text{
        font-size: 14px;
    }

    .noida-main-image{
        height: auto;
        border-radius: 20px;
    }

    .noida-small-image{
        position: relative;
        bottom: 0;
        right: 0;
        width: 100%;
        height: auto;
        margin-top: 15px;
    }

    .noida-image-card{
        position: relative;
        margin-top: 15px;
    }

}

/* ===== NOIDA MODERN ABOUT CSS END ===== */





/* ===== NOIDA ADVANCED WHY CSS START ===== */

.noida-why-v2{
    padding: 70px 0;
    background: linear-gradient(135deg,#0f172a,#1e293b);
    color: #fff;
}

/* header */
.noida-why-top{
    margin-bottom: 60px;
}

.noida-why-tag{
    display: inline-block;
    padding: 8px 18px;
    background: rgba(255,255,255,0.08);
    border-radius: 30px;
    font-size: 13px;
    margin-bottom: 15px;
}

.noida-why-title{
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 15px;
}

.noida-why-desc{
    color: rgba(255,255,255,0.7);
    font-size: 15px;
}

/* CARD */
.noida-why-box{
    position: relative;
    padding: 35px 25px;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.4s;
    height: 100%;
    overflow: hidden;
}

/* active highlight */
.noida-why-box.active{
    background: linear-gradient(135deg,#ff9800,#ffc107);
    color: #000;
}

.noida-why-box.active p{
    color: #111;
}

/* hover */
.noida-why-box:hover{
    transform: translateY(-10px);
    background: rgba(255,255,255,0.12);
}

/* icon */
.noida-why-icon{
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: linear-gradient(135deg,#ff9800,#ffc107);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.noida-why-icon i{
    font-size: 24px;
    color: #000;
}

/* text */
.noida-why-box h5{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.noida-why-box p{
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
}

/* number badge */
.noida-why-number{
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 40px;
    font-weight: 800;
    color: rgba(255,255,255,0.08);
}

/* ===== RESPONSIVE ===== */

@media(max-width:991px){

    .noida-why-v2{
        padding: 70px 0;
        text-align: center;
    }

    .noida-why-title{
        font-size: 32px;
    }

}

@media(max-width:767px){

    .noida-why-v2{
        padding: 55px 0;
    }

    .noida-why-title{
        font-size: 26px;
    }

    .noida-why-desc{
        font-size: 14px;
    }

    .noida-why-box{
        padding: 25px 20px;
    }

}

/* ===== NOIDA ADVANCED WHY CSS END ===== */





/* ===== NOIDA SIMPLE TEXT CSS START ===== */

.noida-simple-text{
    padding: 70px 0;
    background: #ffffff;
}

/* wrapper */
.noida-simple-box{
    max-width: 700px;
    margin: auto;
}

/* title */
.noida-simple-title{
    font-size: 30px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
}

/* text */
.noida-simple-desc{
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* ===== RESPONSIVE ===== */

@media(max-width:991px){

    .noida-simple-text{
        padding: 50px 0;
    }

    .noida-simple-title{
        font-size: 24px;
    }

    .noida-simple-desc{
        font-size: 14px;
    }

}

/* ===== NOIDA SIMPLE TEXT CSS END ===== */





/* ===== NOIDA PROFILE CLEAN V2 CSS START ===== */

.noida-profile-v2{
    background: #f9fafc;
    padding: 60px 0;
}

/* main box */
.noida-profile-box{
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #eee;
    box-shadow: 0 6px 20px rgba(0,0,0,0.04);
    transition: 0.3s;
}

.noida-profile-box:hover{
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* image */
.noida-v2-img{
    position: relative;
}

.noida-v2-img img{
    width: 100%;
    height: 270px;
    object-fit: cover;
    border-radius: 12px;
}

.noida-v2-badge{
    position: absolute;
    top: 10px;
    left: 10px;
    background: #28a745;
    color: #fff;
    padding: 4px 12px;
    font-size: 11px;
    border-radius: 20px;
}

.noida-v2-content{
    padding-left: 10px;
}

.noida-v2-title{
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.noida-v2-meta{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.noida-v2-meta span{
    font-size: 12px;
    background: #f2f3f5;
    padding: 5px 12px;
    border-radius: 20px;
    color: #444;
}

.noida-v2-text{
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 18px;
}

.noida-v2-btns{
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.noida-v2-btn{
    padding: 10px 22px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

/* call */
.noida-v2-btn.call{
    background: #ff9800;
    color: #000;
}

.noida-v2-btn.call:hover{
    background: #e68900;
}

/* whatsapp */
.noida-v2-btn.whatsapp{
    background: #25d366;
    color: #fff;
}

.noida-v2-btn.whatsapp:hover{
    background: #1ebe5d;
}

/* ===== RESPONSIVE ===== */

@media(max-width:991px){

    .noida-profile-box{
        text-align: center;
    }

    .noida-v2-content{
        padding-left: 0;
        margin-top: 15px;
    }

    .noida-v2-meta{
        justify-content: center;
    }

    .noida-v2-btns{
        justify-content: center;
    }

    .noida-v2-img img{
        height: 220px;
    }

}

/* ===== NOIDA PROFILE CLEAN V2 CSS END ===== */





/* ===== NOIDA AREA COVERAGE CSS START ===== */

.noida-area-coverage{
    background: #f8f9fc;
    padding: 80px 0;
}

/* heading */
.noida-area-title{
    font-size: 32px;
    font-weight: 700;
    color: #222;
}

.noida-area-title span{
    color: #ff9800;
}

.noida-area-desc{
    font-size: 15px;
    color: #555;
    max-width: 600px;
    margin: 10px auto 0;
}

/* item */
.noida-area-item{
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: 0.3s;
    height: 100%;
}

/* hover */
.noida-area-item:hover{
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transform: translateY(-5px);
}

/* title */
.noida-area-item h5{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #222;
}

/* text */
.noida-area-item p{
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ===== RESPONSIVE ===== */

@media(max-width:991px){

    .noida-area-coverage{
        padding: 50px 0;
    }

    .noida-area-title{
        font-size: 24px;
    }

    .noida-area-desc{
        font-size: 14px;
    }

}

/* ===== NOIDA AREA COVERAGE CSS END ===== */



/* ===== NOIDA AREA PRICING V2 CSS START ===== */

.noida-area-pricing-v2{
    background: #ffffff;
    padding: 80px 0;
}

/* heading */
.noida-price-title{
    font-size: 32px;
    font-weight: 700;
    color: #222;
}

.noida-price-title span{
    color: #ff9800;
}

.noida-price-sub{
    font-size: 14px;
    color: #666;
}

/* row */
.noida-price-row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
    transition: 0.3s;
}

/* hover */
.noida-price-row:hover{
    background: #f9f9f9;
}

/* highlight */
.noida-price-row.highlight{
    background: #fff7e6;
}

/* left */
.noida-price-left h5{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.noida-price-left span{
    font-size: 12px;
    color: #888;
}

/* right */
.noida-price-right{
    text-align: right;
}

.noida-price-right p{
    margin: 3px 0;
    font-size: 14px;
    color: #444;
}

/* ===== RESPONSIVE ===== */

@media(max-width:767px){

    .noida-price-row{
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .noida-price-right{
        text-align: center;
    }

}

/* ===== NOIDA AREA PRICING V2 CSS END ===== */




/* ===== NOIDA AREA FAQ CSS START ===== */

.noida-area-faq{
    background: #f8f9fc;
    padding: 80px 0;
}

/* left */
.noida-area-faq-left{
    padding-right: 20px;
}

.noida-area-faq-title{
    font-size: 28px;
    font-weight: 700;
    color: #222;
}

.noida-area-faq-title span{
    color: #ff9800;
}

.noida-area-faq-text{
    font-size: 14px;
    color: #555;
    margin-top: 10px;
}

/* accordion */
.noida-area-faq-accordion .accordion-item{
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

/* button */
.noida-area-faq-accordion .accordion-button{
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    color: #222;
    padding: 14px 16px;
}

/* active */
.noida-area-faq-accordion .accordion-button:not(.collapsed){
    background: #fff7e6;
    color: #000;
}

/* body */
.noida-area-faq-accordion .accordion-body{
    font-size: 14px;
    color: #555;
    background: #fff;
}

/* ===== RESPONSIVE ===== */

@media(max-width:991px){

    .noida-area-faq{
        padding: 50px 0;
    }

    .noida-area-faq-left{
        text-align: center;
        margin-bottom: 20px;
        padding-right: 0;
    }

    .noida-area-faq-title{
        font-size: 22px;
    }

}

/* ===== NOIDA AREA FAQ CSS END ===== */





/* ===== NOIDA AREA CITY CSS START ===== */

.noida-area-city{
    background: #f8f9fc;
    padding: 80px 0;
}

/* title */
.noida-area-city-title{
    font-size: 32px;
    font-weight: 700;
    color: #222;
}

.noida-area-city-title span{
    color: #ff9800;
}

.noida-area-city-sub{
    font-size: 14px;
    color: #555;
}

/* feature */
.noida-area-feature{
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eee;
}

.noida-area-feature h3{
    font-size: 24px;
    margin-bottom: 5px;
}

.noida-area-feature p{
    font-size: 14px;
    color: #666;
}

/* city box */
.noida-area-city-box{
    display: block;
    background: #fff;
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid #eee;
    color: #222;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.noida-area-city-box:hover{
    background: #fff7e6;
    color: #000;
}

/* small title */
.noida-area-small-title{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* tags */
.noida-area-tags{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.noida-area-tags a{
    background: #fff;
    border: 1px solid #eee;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    color: #333;
    transition: 0.3s;
}

.noida-area-tags a:hover{
    background: #ff9800;
    color: #000;
}

/* ===== RESPONSIVE ===== */

@media(max-width:991px){

    .noida-area-city{
        padding: 50px 0;
    }

    .noida-area-city-title{
        font-size: 24px;
    }

}

/* ===== NOIDA AREA CITY CSS END ===== */