


/* ===== NOIDA HERO CSS START ===== */

.noida-hero-section{
    position: relative;
    background: url('../images/11.webp') no-repeat center right;
    background-size: cover;
    padding: 80px 0;
    overflow: hidden;
}

.noida-hero-layer{
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.164), rgba(255, 200, 0, 0.484));
    padding: 70px 0;
}

.noida-hero-content{
    max-width: 520px;
}

.noida-hero-heading{
    font-size: 42px;
    font-weight: 900;
    color: #1a1a2e;
    line-height: 1.3;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.noida-hero-subtext{
    font-size: 16px;
    color: #222;
    margin-bottom: 25px;
}

.noida-hero-actions{
    display: flex;
    gap: 15px;
}

.noida-btn-main{
    background: #111;
    color: #fff;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.noida-btn-main:hover{
    background: #333;
    color: #fff;
}

.noida-btn-secondary{
    border: 2px solid #111;
    padding: 12px 26px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    color: #111;
    transition: 0.3s ease;
}

.noida-btn-secondary:hover{
    background: #111;
    color: #fff;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 991px){

    .noida-hero-section{
        background-position: center;
        padding: 50px 0;
    }

    .noida-hero-layer{
        padding: 50px 0;
        text-align: center;
    }

    .noida-hero-content{
        margin: auto;
    }

    .noida-hero-heading{
        font-size: 28px;
    }

    .noida-hero-subtext{
        font-size: 14px;
    }

    .noida-hero-actions{
        flex-direction: column;
        gap: 10px;
    }

    .noida-btn-main,
    .noida-btn-secondary{
        width: 100%;
        text-align: center;
    }

}

/* ===== NOIDA HERO CSS END ===== */


/* ===== NOIDA FEATURES CSS START ===== */

.noida-highlights-section{
    background: #f8f9fc;
    padding: 70px 0;
}

/* card design */
.noida-feature-card{
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    height: 100%;
}

/* hover effect */
.noida-feature-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* icon circle */
.noida-feature-icon{
    width: 65px;
    height: 65px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #ff9800, #ffc107);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.noida-feature-icon i{
    font-size: 26px;
    color: #fff;
}

/* heading */
.noida-feature-card h5{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #222;
}

/* text */
.noida-feature-card p{
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* ===== RESPONSIVE ===== */

@media(max-width:991px){

    .noida-highlights-section{
        padding: 50px 0;
    }

    .noida-feature-card{
        margin-bottom: 20px;
        padding: 25px 15px;
    }

    .noida-feature-icon{
        width: 55px;
        height: 55px;
    }

    .noida-feature-icon i{
        font-size: 22px;
    }

}

/* ===== NOIDA FEATURES CSS END ===== */




/* ===== NOIDA CONTENT CSS START ===== */

.noida-info-section{
    background: linear-gradient(135deg, #ffb347, #ffcc33);
    padding: 80px 0;
}

/* content box */
.noida-info-box{
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(6px);
}

/* alternate spacing */
.noida-info-box.alt{
    margin-top: 20px;
}

/* title */
.noida-info-title{
    font-size: 32px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 15px;
}

/* subtitle */
.noida-info-subtitle{
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

/* text */
.noida-info-text{
    font-size: 15px;
    color: #222;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* highlight tag */
.noida-tag{
    background: #000;
    color: #fff;
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
}

/* ===== RESPONSIVE ===== */

@media(max-width:991px){

    .noida-info-section{
        padding: 50px 0;
        text-align: center;
    }

    .noida-info-title{
        font-size: 24px;
    }

    .noida-info-subtitle{
        font-size: 20px;
    }

    .noida-info-text{
        font-size: 14px;
    }

    .noida-info-box{
        padding: 20px;
    }

}

/* ===== NOIDA CONTENT CSS END ===== */




/* ===== NOIDA SPLIT CSS START ===== */

.noida-split-section{
    padding: 80px 0;
    background: #f4f6fb;
}

/* image container */
.noida-image-wrap{
    position: relative;
}

.noida-image-wrap img{
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* content card */
.noida-content-card{
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    left: -60px; /* overlap effect */
}

/* heading */
.noida-heading{
    font-size: 30px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 15px;
}

/* text */
.noida-description{
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* button */
.noida-action-btn{
    display: inline-block;
    background: linear-gradient(135deg, #111, #333);
    color: #fff;
    padding: 12px 26px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.noida-action-btn:hover{
    background: #000;
    color: #fff;
}

/* ===== RESPONSIVE ===== */

@media(max-width:991px){

    .noida-split-section{
        padding: 50px 0;
        text-align: center;
    }

    .noida-content-card{
        left: 0;
        margin-top: 20px;
        padding: 25px;
    }

    .noida-image-wrap img{
        height: auto;
    }

    .noida-heading{
        font-size: 22px;
    }

    .noida-description{
        font-size: 14px;
    }

}

/* ===== NOIDA SPLIT CSS END ===== */



/* ===== NOIDA CARDS SECTION START ===== */

.noida-listing-section{
    background: #f4f6fb;
    padding: 80px 0;
}

/* CARD */
.noida-profile-card{
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    transition: 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.noida-profile-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* IMAGE */
.noida-card-img{
    position: relative;
}

.noida-card-img img{
    width: 100%;
    height: 240px;
    object-fit: cover;
}

/* BADGES */
.noida-badge-new{
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff9800;
    color: #fff;
    padding: 5px 12px;
    font-size: 11px;
    border-radius: 20px;
    font-weight: 600;
}

.noida-badge-verified{
    position: absolute;
    top: 10px;
    right: 10px;
    background: #28a745;
    color: #fff;
    padding: 5px 12px;
    font-size: 11px;
    border-radius: 20px;
    font-weight: 600;
}

/* CONTENT */
.noida-card-content{
    padding: 18px;
    text-align: center;
}

/* NAME */
.noida-top h5{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #222;
}

/* ===== META LINE (IMPORTANT) ===== */
.noida-meta-line{
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 10px 0;
    flex-wrap: wrap;
}

.noida-meta-line span{
    background: #f1f1f1;
    color: #333;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px;
    position: relative;
    font-weight: 500;
}

/* separator */
.noida-meta-line span:not(:last-child)::after{
    content: "|";
    position: absolute;
    right: -6px;
    color: #aaa;
}

/* ACTION BUTTONS */
.noida-actions{
    margin: 12px 0;
}

.noida-actions a{
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    margin: 0 4px;
    color: #fff;
    font-size: 14px;
    transition: 0.3s;
}

/* phone */
.noida-actions a:first-child{
    background: #ff9800;
}

.noida-actions a:first-child:hover{
    background: #e68900;
}

/* whatsapp */
.noida-actions a:last-child{
    background: #25d366;
}

.noida-actions a:last-child:hover{
    background: #1ebe5d;
}

/* MAIN BUTTON */
.noida-btn-card{
    display: block;
    margin-top: 10px;
    padding: 10px;
    border-radius: 30px;
    background: linear-gradient(135deg,#ff9800,#ffc107);
    color: #000;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.noida-btn-card:hover{
    background: linear-gradient(135deg,#e68900,#ffb300);
    color: #000;
}

/* ===== RESPONSIVE ===== */

@media(max-width:991px){

    .noida-listing-section{
        padding: 50px 0;
    }

    .noida-card-img img{
        height: 200px;
    }

    .noida-top h5{
        font-size: 16px;
    }

    .noida-meta-line span{
        font-size: 11px;
        padding: 4px 8px;
    }

}

/* ===== NOIDA CARDS SECTION END ===== */



/* ===== GURUGRAM FEATURES CLEAN CSS START ===== */
.gurugram-features-clean{
    background: #1f2235;
    padding: 20px 0;
    border-top: 2px solid #af984c;
    border-bottom: 2px solid #af984c;
}

.gurugram-feature-box{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #ffa600;
    font-weight: 600;
    font-size: 15px;
}

/* ICON STYLE */
.gurugram-icon{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,166,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gurugram-icon i{
    color: #4caf50;
    font-size: 18px;
}

/* MOBILE */
@media(max-width:991px){

    .gurugram-feature-box{
        flex-direction: column;
        gap: 6px;
        font-size: 13px;
    }

    .gurugram-icon{
        width: 36px;
        height: 36px;
    }

    .gurugram-icon i{
        font-size: 16px;
    }

}
/* ===== GURUGRAM FEATURES CLEAN CSS END ===== */




/* ===== NOIDA ABOUT CSS START ===== */

.noida-about-section{
    background: linear-gradient(135deg,#1a1d2e,#2b2f48);
    padding: 90px 0;
    position: relative;
}

/* CONTENT */
.noida-about-content{
    padding-left: 30px;
}

.noida-label{
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #ffb300;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.noida-about-heading{
    font-size: 34px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
}

.noida-about-desc{
    font-size: 15px;
    color: #d1d1d1;
    line-height: 1.8;
    margin-bottom: 12px;
}

/* IMAGE SECTION */
.noida-about-gallery{
    position: relative;
}

/* main image */
.noida-main-img img{
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* floating image */
.noida-floating-img{
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 180px;
}

.noida-floating-img img{
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* ===== RESPONSIVE ===== */

@media(max-width:991px){

    .noida-about-section{
        padding: 50px 0;
        text-align: center;
    }

    .noida-about-content{
        padding-left: 0;
        margin-top: 25px;
    }

    .noida-about-heading{
        font-size: 24px;
    }

    .noida-main-img img{
        height: auto;
    }

    .noida-floating-img{
        position: static;
        width: 100%;
        margin-top: 15px;
    }

}

/* ===== NOIDA ABOUT CSS END ===== */




/* ===== NOIDA WHY CSS START ===== */

.noida-why-section{
    background: linear-gradient(135deg,#ffb347,#ffcc33);
    padding: 80px 0;
}

/* HEADER */
.noida-why-heading{
    font-size: 36px;
    font-weight: 900;
    color: #1a1a2e;
}

.noida-why-heading span{
    color: #000;
}

.noida-why-sub{
    font-size: 15px;
    color: #333;
    margin-top: 10px;
    margin-bottom: 50px;
}

/* CARD */
.noida-why-card{
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    padding: 30px 20px;
    text-align: center;
    transition: 0.3s;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.3);
}

/* hover */
.noida-why-card:hover{
    transform: translateY(-10px);
    background: rgba(255,255,255,0.35);
}

/* ICON */
.noida-icon-wrap{
    width: 65px;
    height: 65px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.noida-icon-wrap i{
    color: #fff;
    font-size: 22px;
}

/* TEXT */
.noida-why-card h5{
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.noida-why-card p{
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

/* ===== RESPONSIVE ===== */

@media(max-width:991px){

    .noida-why-section{
        padding: 50px 0;
    }

    .noida-why-heading{
        font-size: 24px;
    }

    .noida-why-sub{
        font-size: 14px;
        margin-bottom: 30px;
    }

    .noida-why-card{
        padding: 25px 15px;
    }

}

/* ===== NOIDA WHY CSS END ===== */





/* ===== NOIDA PREMIUM TEXT CSS START ===== */

.noida-text-section{
    background: linear-gradient(135deg,#1a1d2e,#2b2f48);
    padding: 90px 0;
}

/* WRAPPER */
.noida-text-wrapper{
    max-width: 900px;
    margin: auto;
}

/* TITLE */
.noida-text-heading{
    font-size: 36px;
    font-weight: 900;
    color: #ffb300;
    line-height: 1.3;
    margin-bottom: 25px;
}

/* PARAGRAPH */
.noida-text-desc{
    font-size: 16px;
    color: #d1d1d1;
    line-height: 1.9;
    margin-bottom: 18px;
}

/* ===== RESPONSIVE ===== */

@media(max-width:991px){

    .noida-text-section{
        padding: 50px 0;
    }

    .noida-text-heading{
        font-size: 24px;
    }

    .noida-text-desc{
        font-size: 14px;
    }

}

/* ===== NOIDA PREMIUM TEXT CSS END ===== */





/* ===== NOIDA ADVANCED PROFILE CSS ===== */

.noida-profile-advanced{
    background: linear-gradient(135deg,#111,#2a2f4c);
    padding: 80px 0;
}

/* FLEX BOX */
.noida-profile-flex{
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
}

/* LEFT IMAGE */
.noida-left{
    width: 300px;
}

.noida-img-box{
    position: relative;
}

.noida-img-box img{
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 15px;
}

/* VERIFIED BADGE */
.noida-status{
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #28a745;
    color: #fff;
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 20px;
}

/* RIGHT CONTENT */
.noida-right{
    flex: 1;
}

/* TITLE */
.noida-title{
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

/* META LINE */
.noida-meta{
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.noida-meta span{
    font-size: 13px;
    color: #ddd;
}

/* DESC */
.noida-desc{
    font-size: 14px;
    color: #bbb;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 500px;
}

/* CTA */
.noida-cta-group{
    display: flex;
    gap: 15px;
}

.noida-cta{
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

/* CALL */
.noida-cta.call{
    background: #ff9800;
    color: #000;
}

/* WHATSAPP */
.noida-cta.whatsapp{
    background: #25d366;
    color: #fff;
}

/* ===== RESPONSIVE ===== */

@media(max-width:991px){

    .noida-profile-flex{
        flex-direction: column;
        text-align: center;
    }

    .noida-left{
        width: 100%;
    }

    .noida-img-box img{
        height: 250px;
    }

    .noida-meta{
        justify-content: center;
    }

    .noida-cta-group{
        justify-content: center;
        flex-wrap: wrap;
    }

}




/* ===== NOIDA SERVICES CSS START ===== */

.noida-service-area{
    background: linear-gradient(135deg,#0f2027,#203a43,#2c5364);
    padding: 90px 0;
    color: #fff;
}

/* TITLE */
.noida-service-heading{
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 15px;
}

.noida-service-heading span{
    color: #ff9800;
}

/* SUBTEXT */
.noida-service-subtext{
    max-width: 650px;
    margin: auto;
    font-size: 15px;
    color: #ddd;
}

/* CARD */
.noida-service-card{
    background: rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 35px 25px;
    transition: 0.3s;
    backdrop-filter: blur(10px);
    margin-bottom: 20px;
}

/* hover */
.noida-service-card:hover{
    transform: translateY(-8px);
    background: rgba(255,255,255,0.15);
}

/* ICON */
.noida-icon-circle{
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: linear-gradient(135deg,#ff9800,#ffc107);
    display: flex;
    align-items: center;
    justify-content: center;
}

.noida-icon-circle i{
    font-size: 24px;
    color: #000;
}

/* TEXT */
.noida-service-card h5{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.noida-service-card p{
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

/* ===== RESPONSIVE ===== */

@media(max-width:991px){

    .noida-service-heading{
        font-size: 26px;
    }

    .noida-service-subtext{
        font-size: 14px;
    }

    .noida-service-card{
        padding: 25px 20px;
    }

}

/* ===== NOIDA SERVICES CSS END ===== */



/* ===== NOIDA COVERAGE CSS START ===== */

.noida-coverage-area{
    background: #0f172a;
    padding: 90px 0;
    color: #fff;
}

/* TITLE */
.noida-coverage-title{
    font-size: 38px;
    font-weight: 900;
}

.noida-coverage-title span{
    color: #ff9800;
}

/* SUBTEXT */
.noida-coverage-sub{
    max-width: 700px;
    margin: 10px auto 0;
    font-size: 15px;
    color: #cbd5e1;
}

/* CARD */
.noida-coverage-box{
    background: linear-gradient(135deg,#1e293b,#334155);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 20px;
    text-align: left;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.05);
}

/* hover */
.noida-coverage-box:hover{
    transform: translateY(-8px);
    background: linear-gradient(135deg,#334155,#475569);
}

/* TITLE */
.noida-coverage-box h5{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ff9800;
}

/* TEXT */
.noida-coverage-box p{
    font-size: 14px;
    color: #e2e8f0;
    line-height: 1.6;
}

/* ===== RESPONSIVE ===== */

@media(max-width:991px){

    .noida-coverage-area{
        padding: 50px 0;
    }

    .noida-coverage-title{
        font-size: 26px;
    }

    .noida-coverage-sub{
        font-size: 14px;
    }

    .noida-coverage-box{
        padding: 22px;
        text-align: center;
    }

}

/* ===== NOIDA COVERAGE CSS END ===== */



/* ===== NOIDA PRICING CSS START ===== */

.noida-pricing-section{
    background: linear-gradient(135deg,#0f2027,#203a43,#2c5364);
    padding: 90px 0;
    color: #fff;
}

/* TITLE */
.noida-pricing-title{
    font-size: 36px;
    font-weight: 900;
}

.noida-pricing-title span{
    color: #ff9800;
}

/* SUB */
.noida-pricing-sub{
    font-size: 14px;
    color: #ccc;
}

/* CARD */
.noida-price-card{
    background: rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 30px 20px;
    backdrop-filter: blur(10px);
    transition: 0.3s;
    margin-bottom: 20px;
}

/* hover */
.noida-price-card:hover{
    transform: translateY(-10px);
    background: rgba(255,255,255,0.15);
}

/* highlight card */
.noida-price-card.highlight{
    border: 2px solid #ff9800;
    transform: scale(1.05);
}

/* TITLE */
.noida-price-card h4{
    font-size: 20px;
    margin-bottom: 15px;
    color: #ff9800;
}

/* PRICE LIST */
.noida-price-list p{
    margin: 6px 0;
    font-size: 14px;
}

/* EXTRA TEXT */
.noida-extra{
    display: inline-block;
    margin-top: 10px;
    font-size: 12px;
    background: #ff9800;
    color: #000;
    padding: 4px 10px;
    border-radius: 20px;
}

/* ===== RESPONSIVE ===== */

@media(max-width:991px){

    .noida-pricing-title{
        font-size: 24px;
    }

    .noida-price-card.highlight{
        transform: scale(1);
    }

}

/* ===== NOIDA PRICING CSS END ===== */




/* ===== NOIDA ADVANCED FAQ CSS ===== */

.noida-faq-advanced{
    background: linear-gradient(135deg,#111,#1e293b);
    padding: 90px 0;
    color: #fff;
}

/* LEFT */
.noida-faq-left{
    padding-right: 30px;
}

.noida-faq-title{
    font-size: 32px;
    font-weight: 900;
}

.noida-faq-title span{
    color: #ff9800;
}

.noida-faq-desc{
    font-size: 14px;
    color: #bbb;
    margin: 15px 0 25px;
}

/* BUTTON */
.noida-faq-btn{
    background: linear-gradient(135deg,#ff9800,#ffc107);
    color: #000;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

/* ACCORDION */
.noida-faq-style .accordion-item{
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    border: none;
}

/* BUTTON */
.noida-faq-style .accordion-button{
    background: transparent;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px;
}

/* NUMBER */
.noida-faq-number{
    background: #ff9800;
    color: #000;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 6px;
    font-weight: 700;
}

/* ACTIVE */
.noida-faq-style .accordion-button:not(.collapsed){
    background: rgba(255,152,0,0.1);
}

/* BODY */
.noida-faq-style .accordion-body{
    font-size: 14px;
    color: #ccc;
    padding: 15px 20px;
}

/* ===== RESPONSIVE ===== */

@media(max-width:991px){

    .noida-faq-left{
        text-align: center;
        padding-right: 0;
        margin-bottom: 30px;
    }

    .noida-faq-title{
        font-size: 24px;
    }

}






/* ===== NOIDA CITY ADVANCED CSS ===== */

.noida-city-advanced{
    background: linear-gradient(135deg,#020617,#0f172a);
    padding: 90px 0;
    color: #fff;
}

/* TITLE */
.noida-city-main-title{
    font-size: 38px;
    font-weight: 900;
}

.noida-city-main-title span{
    color: #ff9800;
}

.noida-city-main-sub{
    color: #94a3b8;
    font-size: 15px;
}

/* FEATURED CITY */
.noida-feature-box{
    background: linear-gradient(135deg,#ff9800,#ffc107);
    color: #000;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
}

.noida-feature-box h3{
    font-size: 28px;
    font-weight: 800;
}

.noida-feature-box p{
    font-size: 14px;
}

/* SMALL TITLE */
.noida-city-small-title{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* CITY CARD */
.noida-city-card{
    display: block;
    background: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

/* hover */
.noida-city-card:hover{
    background: rgba(255,152,0,0.2);
    transform: translateY(-3px);
}

/* TAGS */
.noida-tags-wrap{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.noida-tag{
    padding: 8px 14px;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

/* hover */
.noida-tag:hover{
    background: #ff9800;
    color: #000;
}

/* ===== RESPONSIVE ===== */

@media(max-width:991px){

    .noida-city-main-title{
        font-size: 24px;
    }

    .noida-city-main-sub{
        font-size: 14px;
    }

}



