body {
    margin: 0;
    padding: 0;
}


/* ===== MANESAR PREMIUM BANNER START ===== */

.manesar-banner {
    padding: 110px 0;
    position: relative;
    overflow: hidden;

    background: url('../image/bbb.webp') center/cover no-repeat;
}

.manesar-banner::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: #27cce0;
    filter: blur(130px);
    opacity: 0.15;
    top: -60px;
    left: -60px;
}

.manesar-banner::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: #d84c7f;
    filter: blur(130px);
    opacity: 0.15;
    bottom: -60px;
    right: -60px;
}

.manesar-title {
    font-size: 46px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.manesar-title span {
    color: #27cce0;
}

.manesar-subtitle {
    color: #cbd5f5;
    margin: 15px 0 25px;
}

.manesar-features {
    margin-bottom: 25px;
}

.manesar-features span {
    display: inline-block;
    margin: 5px 8px 5px 0;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;

    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(39,204,224,0.4);
    color: #27cce0;
}

.manesar-buttons {
    margin-top: 20px;
}

.manesar-btn {
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-right: 10px;
    display: inline-block;
    transition: 0.3s;
}

.manesar-btn.primary {
    background: #27cce0;
    color: #000;
}

.manesar-btn.primary:hover {
    transform: translateY(-2px);
}

.manesar-btn.outline {
    border: 1px solid #27cce0;
    color: #27cce0;
}

.manesar-btn.outline:hover {
    background: #27cce0;
    color: #000;
}

/* RIGHT SIDE CARD */

.manesar-right {
    display: flex;
    justify-content: center;
}

.manesar-card {
    padding: 35px;
    border-radius: 20px;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    max-width: 320px;
    width: 100%;
}

.manesar-card h4 {
    color: #27cce0;
    margin-bottom: 15px;
}

.manesar-card ul {
    list-style: none;
    padding: 0;
}

.manesar-card li {
    color: #fff;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.manesar-card li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #27cce0;
}

/* MOBILE */

@media (max-width: 768px) {

    .manesar-banner {
        padding: 50px 0; 
        text-align: center;
        background-position: center;
    }

    .manesar-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .manesar-subtitle {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .manesar-features {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 15px;
    }

    .manesar-features span {
        font-size: 11px;
        padding: 5px 10px;
    }

    /* 🔥 BUTTON FIX (IMPORTANT) */
    .manesar-buttons {
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-direction: row; 
    }

    .manesar-btn {
        padding: 8px 16px; 
        font-size: 13px;
        width: auto; 
        margin: 0;
        white-space: nowrap; 
    }

    /* RIGHT CARD */
    .manesar-right {
        margin-top: 20px;
    }

    .manesar-card {
        padding: 20px;
        max-width: 100%;
    }

    .manesar-card h4 {
        font-size: 16px;
    }

    .manesar-card li {
        font-size: 13px;
    }

}

/* ===== MANESAR PREMIUM BANNER END ===== */




/* ===== MANESAR PREMIUM SERVICES SECTION START ===== */

.manesar-services {
    padding: 90px 0;
    background: radial-gradient(circle at center, #0f172a, #020617);
    position: relative;
}

.manesar-services::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: #27cce0;
    filter: blur(120px);
    opacity: 0.15;
    top: -60px;
    left: -60px;
}

.manesar-heading {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.manesar-heading span {
    color: #d84c7f;
}

.manesar-text {
    color: #cbd5f5;
    line-height: 1.7;
    margin-bottom: 15px;
}

.manesar-buttons {
    margin-top: 25px;
}

.manesar-btn {
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    margin-right: 10px;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
}

.manesar-btn.primary {
    background: #d84c7f;
    color: #fff;
}

.manesar-btn.outline {
    border: 1px solid #fff;
    color: #fff;
}

.manesar-btn.outline:hover {
    background: #fff;
    color: #000;
}

/* GRID IMAGE */

.manesar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.manesar-img-box {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
}

.manesar-img-box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: 0.4s;
}

.manesar-img-box.wide {
    grid-column: span 2;
}

.manesar-img-box.wide img {
    height: 220px;
}

.manesar-img-box:hover img {
    transform: scale(1.08);
}

.manesar-img-box span {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0,0,0,0.6);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: #fff;
}

/* MOBILE */

@media (max-width: 768px) {

    .manesar-heading {
        font-size: 26px;
    }

    .manesar-grid {
        margin-top: 30px;
    }

}

/* ===== MANESAR PREMIUM SERVICES SECTION END ===== */





/* ===== MANESAR MODERN GALLERY START ===== */

.manesar-modern-gallery {
    padding: 80px 0;
    background: linear-gradient(135deg, #020617, #0f172a);
}

.manesar-modern-title {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
}

.manesar-modern-title span {
    color: #ff4d8d;
}

.manesar-modern-sub {
    color: #94a3b8;
}

/* CARD */

.manesar-modern-card {
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.4s;
    height: 100%;
}

.manesar-modern-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* IMAGE */

.manesar-modern-img {
    position: relative;
}

.manesar-modern-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.manesar-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

/* CONTENT */

.manesar-modern-content {
    padding: 20px;
}

.manesar-modern-content h5 {
    color: #fff;
    margin-bottom: 5px;
}

.manesar-modern-content p {
    color: #cbd5f5;
    font-size: 14px;
}

/* TAGS */

.manesar-tags {
    display: flex;
    gap: 8px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.manesar-tags span {
    background: #111827;
    color: #27cce0;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
}

/* BUTTONS */

.manesar-modern-actions {
    display: flex;
    gap: 10px;
}

.manesar-btn-call,
.manesar-btn-wa {
    flex: 1;
    padding: 10px;
    text-align: center;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.manesar-btn-call {
    background: #ff4d8d;
    color: #fff;
}

.manesar-btn-wa {
    background: #27cce0;
    color: #000;
}

.manesar-modern-actions a:hover {
    transform: scale(1.05);
}

/* MOBILE */

@media (max-width: 768px) {
    .manesar-modern-title {
        font-size: 26px;
    }

    .manesar-modern-img img {
        height: 200px;
    }
}

/* ===== MANESAR MODERN GALLERY END ===== */



.manesar-seo-content {
    padding: 0px 0;
    background: radial-gradient(circle at center, #020617, #0f172a);
}

.manesar-content-box {
    background: rgba(255,255,255,0.04);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
}

.manesar-content-box h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.manesar-content-box h2 span {
    color: #27cce0;
}

.manesar-content-box h3 {
    color: #d84c7f;
    margin-top: 25px;
}

.manesar-content-box p {
    color: #cbd5f5;
    line-height: 1.7;
}

.manesar-content-list {
    margin-top: 20px;
    list-style: none;
    padding: 0;
}

.manesar-content-list li {
    color: #fff;
    margin-bottom: 10px;
}

.manesar-content-cta {
    margin-top: 25px;
}

.manesar-content-cta .btn {
    margin-right: 10px;
}



/* ===== MANESAR CITY INTRO START ===== */

.manesar-city-intro {
    padding: 80px 0;
    background: radial-gradient(circle at top, #020617, #0f172a);
}

.manesar-city-content h1 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.manesar-city-content h1 span {
    color: #27cce0;
}

.manesar-city-text {
    color: #cbd5f5;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* BUTTONS */

.manesar-city-btns {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.manesar-city-call,
.manesar-city-wa {
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.manesar-city-call {
    background: #d84c7f;
    color: #fff;
}

.manesar-city-wa {
    background: #27cce0;
    color: #000;
}

.manesar-city-btns a:hover {
    transform: scale(1.05);
}

/* IMAGE */

.manesar-city-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

/* MOBILE */

@media (max-width: 768px) {

    .manesar-city-content h1 {
        font-size: 26px;
    }

    .manesar-city-btns {
        flex-direction: column;
    }

}

/* ===== MANESAR CITY INTRO END ===== */











/* ===== MANESAR PROCESS SECTION START ===== */

.manesar-process {
    padding: 50px 0;
    background: radial-gradient(circle at top, #0f172a, #020617);
    position: relative;
}

.manesar-process::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: #27cce0;
    filter: blur(120px);
    opacity: 0.1;
    top: -60px;
    left: -60px;
}

.manesar-process-title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
}

.manesar-process-title span {
    color: #d84c7f;
}

.manesar-process-sub {
    color: #cbd5f5;
}


.manesar-step {
    background: rgba(255,255,255,0.04);
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.4s;
    position: relative;
    height: 100%;
}

.manesar-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}


.manesar-step-number {
    font-size: 28px;
    font-weight: 800;
    color: #27cce0;
    margin-bottom: 10px;
}


.manesar-step h5 {
    color: #fff;
    margin-bottom: 10px;
}


.manesar-step p {
    color: #cbd5f5;
    font-size: 14px;
}


.manesar-step::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 3px;
    background: #d84c7f;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}

/* MOBILE */

@media (max-width: 768px) {

    .manesar-process-title {
        font-size: 26px;
    }

}

/* ===== MANESAR PROCESS SECTION END ===== */


/* ===== MANESAR WHY CHOOSE START ===== */

.manesar-why {
    padding: 80px 0;
    background: radial-gradient(circle at center, #020617, #0f172a);
    position: relative;
}

.manesar-why::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: #27cce0;
    filter: blur(120px);
    opacity: 0.12;
    top: -60px;
    left: -60px;
}

.manesar-why-title {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
}

.manesar-why-title span {
    color: #d84c7f;
}

.manesar-why-sub {
    color: #94a3b8;
}

/* CARD */

.manesar-why-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: 0.4s;
    height: 100%;
}

.manesar-why-card:hover {
    transform: translateY(-10px);
    border-color: #27cce0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

/* ICON */

.manesar-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, #27cce0, #d84c7f);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 22px;
}

/* TEXT */

.manesar-why-card h5 {
    color: #fff;
    margin-bottom: 10px;
}

.manesar-why-card p {
    color: #cbd5f5;
    font-size: 14px;
}

/* MOBILE */

@media (max-width: 768px) {
    .manesar-why-title {
        font-size: 26px;
    }
}

/* ===== MANESAR WHY CHOOSE END ===== */





/* ===== MANESAR TESTIMONIAL CSS START ===== */

.manesar-testimonial {
    padding: 60px 0;
    background: radial-gradient(circle at center, #020617, #0f172a);
    position: relative;
}

.manesar-testimonial::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: #27cce0;
    filter: blur(120px);
    opacity: 0.1;
    top: -60px;
    left: -60px;
}

.manesar-testimonial-title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
}

.manesar-testimonial-title span {
    color: #d84c7f;
}

.manesar-testimonial-sub {
    color: #cbd5f5;
}

.manesar-testimonial-card {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 30px;
    border-radius: 18px;
    transition: 0.4s;
    height: 100%;
}

.manesar-testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.manesar-stars {
    color: #27cce0;
    font-size: 18px;
    margin-bottom: 15px;
}

.manesar-testimonial-card p {
    color: #cbd5f5;
    font-size: 15px;
    margin-bottom: 20px;
}

.manesar-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.manesar-user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #27cce0;
    object-fit: cover;
}

.manesar-user h6 {
    color: #fff;
    margin: 0;
}

.manesar-user span {
    font-size: 13px;
    color: #d84c7f;
}

/* MOBILE */
@media (max-width: 768px) {
    .manesar-testimonial-title {
        font-size: 26px;
    }
}

/* ===== MANESAR TESTIMONIAL CSS END ===== */




/* ===== MANESAR SERVICES DETAILS CSS START ===== */

.manesar-services-advanced {
    padding: 80px 0;
    background: radial-gradient(circle at center, #020617, #0f172a);
    position: relative;
}

.manesar-services-advanced::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: #27cce0;
    filter: blur(120px);
    opacity: 0.1;
    top: -60px;
    left: -60px;
}

.manesar-service-box {
    padding: 25px;
    border-radius: 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s;
    height: 100%;
}

.manesar-service-box:hover {
    transform: translateY(-6px);
    border-color: #27cce0;
}

.manesar-service-box.active {
    border: 1px solid #d84c7f;
    box-shadow: 0 0 25px rgba(216,76,127,0.3);
}

.manesar-service-box h5 {
    color: #fff;
    margin-bottom: 10px;
}

.manesar-service-box p {
    color: #cbd5f5;
    font-size: 14px;
}

.manesar-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #27cce0, #d84c7f);
    margin: 40px auto;
    border-radius: 10px;
}

.manesar-content h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
}

.manesar-content h2 span {
    color: #d84c7f;
}

.manesar-desc {
    color: #cbd5f5;
    max-width: 1200px;
    margin: 15px auto;
}

.manesar-list {
    list-style: none;
    padding: 0;
}

.manesar-list li {
    color: #fff;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.manesar-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #27cce0;
}

/* MOBILE */
@media (max-width: 768px) {

    .manesar-content h2 {
        font-size: 26px;
    }

    .manesar-divider {
        margin: 25px auto;
    }

}

/* ===== MANESAR SERVICES DETAILS CSS END ===== */




/* ===== MANESAR PRICING CSS START ===== */

.manesar-pricing {
    padding: 90px 0;
    background: radial-gradient(circle at center, #020617, #0f172a);
    position: relative;
}

.manesar-pricing-title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
}

.manesar-pricing-title span {
    color: #d84c7f;
}

.manesar-pricing-sub {
    color: #cbd5f5;
}

/* CARD BASE */
.manesar-price-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    transition: 0.4s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.manesar-price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.7);
}

/* ⭐ FEATURED CARD (FINAL FIX) */
.manesar-price-card.featured {
    background: linear-gradient(180deg, #ff5c93, #d84c7f);
    color: #fff;
    transform: scale(1.05);
    border: none;
    box-shadow: 0 0 40px rgba(216,76,127,0.5);
    z-index: 3;
}

/* 🔥 CONTENT ALWAYS ABOVE */
.manesar-price-card.featured > * {
    position: relative;
    z-index: 5;
}

/* ❌ REMOVE ANY OVERLAY BUG */
.manesar-price-card.featured::before,
.manesar-price-card.featured::after {
    display: none !important;
}

/* TEXT COLORS */
.manesar-price-card.featured h5,
.manesar-price-card.featured ul li,
.manesar-price-card.featured .manesar-price {
    color: #fff;
}

/* BADGE */
.manesar-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #ff6a9a, #d84c7f);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    z-index: 10;
}

/* PRICE */
.manesar-price {
    font-size: 38px;
    font-weight: 800;
    color: #27cce0;
    margin: 20px 0;
}

/* LIST */
.manesar-price-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.manesar-price-card ul li {
    color: #cbd5f5;
    margin-bottom: 10px;
}

/* BUTTON */
.manesar-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    border: 1px solid #27cce0;
    color: #27cce0;
    text-decoration: none;
    transition: 0.3s;
}

.manesar-btn:hover {
    background: #27cce0;
    color: #000;
}

.manesar-btn.primary {
    background: #fff;
    color: #d84c7f;
    border: none;
}

.manesar-btn.primary:hover {
    transform: scale(1.05);
}

/* MOBILE */
@media (max-width: 768px) {

    .manesar-price-card.featured {
        transform: scale(1);
    }

    .manesar-pricing-title {
        font-size: 26px;
    }

}

/* ===== MANESAR PRICING CSS END ===== */


/* ===== MANESAR AREAS START ===== */

.manesar-areas {
    padding: 70px 0;
    background: linear-gradient(135deg, #020617, #0f172a);
}

.manesar-areas-title {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
}

.manesar-areas-title span {
    color: #27cce0;
}

.manesar-areas-sub {
    color: #94a3b8;
}

/* TAG GRID */

.manesar-areas-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

/* TAG ITEM */

.manesar-areas-wrapper a {
    padding: 10px 18px;
    border-radius: 30px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s;
}

/* HOVER EFFECT */

.manesar-areas-wrapper a:hover {
    background: #27cce0;
    color: #000;
    transform: translateY(-3px);
}

/* MOBILE */

@media (max-width: 768px) {
    .manesar-areas-title {
        font-size: 26px;
    }

    .manesar-areas-wrapper {
        gap: 8px;
    }

    .manesar-areas-wrapper a {
        font-size: 12px;
        padding: 8px 14px;
    }
}

/* ===== MANESAR AREAS END ===== */



.manesar-landmarks {
    padding: 80px 0;
    background: radial-gradient(circle at top, #020617, #0f172a);
}

.manesar-landmark-title {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
}

.manesar-landmark-title span {
    color: #38bdf8;
}

.manesar-landmark-sub {
    color: #94a3b8;
    font-size: 16px;
}

.manesar-landmark-card {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    transition: 0.3s ease;
}

.manesar-landmark-card i {
    font-size: 28px;
    color: #38bdf8;
    margin-bottom: 10px;
}

.manesar-landmark-card h6 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 5px;
}

.manesar-landmark-card span {
    color: #94a3b8;
    font-size: 14px;
}

.manesar-landmark-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.manesar-landmark-card:hover i,
.manesar-landmark-card:hover h6,
.manesar-landmark-card:hover span {
    color: #fff;
}



/* ===== MANESAR MAP CSS START ===== */

.manesar-map {
    padding: 80px 0;
    background: linear-gradient(135deg, #020617, #0f172a);
    color: #fff;
}

.manesar-map-title {
    font-size: 38px;
    font-weight: 800;
}

.manesar-map-title span {
    color: #d84c7f;
}

.manesar-map-sub {
    color: #cbd5e1;
}

.manesar-map-info h5 {
    font-size: 22px;
    margin-bottom: 15px;
}

.manesar-map-info p {
    color: #94a3b8;
}

.manesar-map-info ul {
    padding-left: 0;
    list-style: none;
    margin: 20px 0;
}

.manesar-map-info ul li {
    margin-bottom: 8px;
    color: #e2e8f0;
}

.manesar-map-btns {
    display: flex;
    gap: 10px;
}

/* ===== MANESAR MAP CSS END ===== */




/* ===== MANESAR FAQ CSS START ===== */

.manesar-faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #020617, #0f172a);
}

.manesar-faq-title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
}

.manesar-faq-title span {
    color: #d84c7f;
}

/* ACCORDION STYLE */

.manesar-faq .accordion-item {
    background: rgba(0,0,0,0.7);
    border: 1px solid #d84c7f;
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
}

.manesar-faq .accordion-button {
    background: transparent;
    color: #fff;
    font-weight: 600;
    border: none;
    box-shadow: none;
}

.manesar-faq .accordion-button:not(.collapsed) {
    color: #27cce0;
}

.manesar-faq .accordion-button::after {
    filter: invert(1);
}

.manesar-faq .accordion-body {
    color: #cbd5f5;
    background: rgba(255,255,255,0.02);
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* HOVER EFFECT */

.manesar-faq .accordion-item:hover {
    border-color: #27cce0;
}

/* MOBILE */

@media (max-width: 768px) {
    .manesar-faq-title {
        font-size: 26px;
    }
}

/* ===== MANESAR FAQ CSS END ===== */


.manesar-internal-links {
    padding: 80px 0;
    background: linear-gradient(135deg, #020617, #0f172a);
}

.manesar-title {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
}

.manesar-subtitle {
    color: #94a3b8;
    font-size: 16px;
}

.manesar-link-card {
    display: block;
    text-decoration: none;
}

.manesar-card-inner {
    background: rgba(255,255,255,0.05);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.manesar-card-inner h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
}

.manesar-card-inner span {
    color: #38bdf8;
    font-size: 14px;
}

.manesar-card-inner:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.manesar-card-inner:hover h5,
.manesar-card-inner:hover span {
    color: #fff;
}


/* ===== MANESAR STICKY CTA START ===== */

.manesar-sticky-cta {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 9999;
}

/* BUTTON BASE */

.manesar-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s;
}

/* COLORS */

.manesar-cta.call {
    background: linear-gradient(135deg, #27cce0, #0ea5b7);
    color: #000;
}

.manesar-cta.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
}

.manesar-cta.quote {
    background: linear-gradient(135deg, #d84c7f, #ff6a9a);
    color: #fff;
}

/* HOVER */

.manesar-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* MOBILE */

@media (max-width: 768px) {

    .manesar-sticky-cta {
        width: 95%;
        bottom: 10px;
    }

    .manesar-cta {
        flex: 1;
        justify-content: center;
        font-size: 12px;
        padding: 10px;
    }

    .manesar-cta span {
        display: none; /* only icons mobile */
    }

}

/* ===== MANESAR STICKY CTA END ===== */



