﻿:root {
    --primary-dark: #0f172a;
    --secondary-dark: #1e293b;
    --accent-gold: #c5a059;
    --accent-gold-hover: #b08c46;
    --light-bg: #f8fafc;
    --whatsapp-green: #25d366;
    --text-muted: #64748b;
}


body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #334155;
    background-color: #ffffff;
}
/* =========================================
   HEADER - FIXED ON ALL DEVICES
========================================= */

.fixed-top-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 99999 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff !important;
    /* Important for mobile */
    transform: none !important;
}


/* =========================================
   MOBILE
========================================= */

@media only screen and (max-width: 991px) {

    .fixed-top-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: auto !important;
        z-index: 999999 !important;
        transform: none !important;
        transition: none !important;
        background: #fff !important;
    }

        .fixed-top-header .top-bar {
            display: block !important;
            width: 100% !important;
        }

        .fixed-top-header .navbar {
            position: relative !important;
            width: 100% !important;
            top: auto !important;
            left: auto !important;
            right: auto !important;
        }
}

.navbar-collapse.show {
    display: block !important;
}
/* =========================================
   BODY SPACE FOR FIXED HEADER
========================================= */

body {
    padding-top: 110px !important;
}

@media only screen and (max-width: 991px) {
    body {
        padding-top: 105px !important;
    }
}
/* Top Bar */
.top-bar {
    background-color: #740e31;
    color: #cbd5e1;
    font-size: 0.85rem;
}

/* Navbar */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.navbar-brand span {
    color: var(--accent-gold);
}

.nav-link {
    font-weight: 600;
    color: #1e293b !important;
    padding: 0.5rem 1rem !important;
}

    .nav-link:hover {
        color: var(--accent-gold) !important;
    }

/* Buttons */
.btn-gold {
    background-color: var(--accent-gold);
    color: #ffffff;
    font-weight: 700;
    border-radius: 8px;
    padding: 12px 28px;
    border: none;
    transition: all 0.3s ease;
}

    .btn-gold:hover {
        background-color: var(--accent-gold-hover);
        color: #ffffff;
        box-shadow: 0 8px 20px rgba(197, 160, 89, 0.3);
    }

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: #ffffff;
    font-weight: 600;
    border-radius: 8px;
}

    .btn-whatsapp:hover {
        background-color: #1ebc57;
        color: #ffffff;
    }

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    background: rgba(15, 23, 42, 0.82,1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 70px 0 90px;
}

.offer-badge {
    background: rgba(197, 160, 89, 0.2);
    color: #ffffff;
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
}

/* Form Card */
.form-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    color: #1e293b;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Carousel background images */
.carousel-item {
    height: 100%;
    min-height: 650px;
}

    .carousel-item img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

/* Product Image Container */
.product-img-wrapper {
    width: 100%;
    height: 250px;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .product-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 5px;
        transition: transform 0.5s ease;
    }

.content-card:hover .product-img-wrapper img {
    transform: scale(1.05);
}

/* Feature/Stat Cards */
.stat-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    height: 100%;
    transition: all 0.3s ease;
}

    .stat-card:hover {
        border-color: var(--accent-gold);
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    }

/* Section Titles */
.section-title {
    font-weight: 800;
    color: var(--primary-dark);
}

.section-subtitle {
    color: var(--accent-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

/* Content Cards */
.content-card {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #ffffff;
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
}

    .content-card:hover {
        transform: translateY(-5px);
        border-color: var(--accent-gold);
        box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    }

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(197, 160, 89, 0.12);
    color: var(--accent-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

/* Branch Card */
.branch-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 24px;
    height: 100%;
}

/* Tags */
.tag-badge {
    background-color: #e2e8f0;
    color: #475569;
    font-size: 0.75rem;
    padding: 5px 10px;
    border-radius: 6px;
    display: inline-block;
    margin: 3px;
    text-decoration: none;
}

    .tag-badge:hover {
        background-color: #7b0a3d;
        color: #ffffff;
    }

/* Fixed Bottom Action Bar */
.fixed-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 10px 0;
}
.feature-card {
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    transition: all 0.3s ease-in-out;
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 .5rem 1rem rgba(0,0,0,.08) !important;
        border-color: rgba(var(--bs-primary-rgb), 0.2) !important;
    }

/* CSS Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-light: #f8f9fa;
    --card-bg: #ffffff;
    --text-main: #212529;
    --text-muted: #6c757d;
    --warning-color: #ffc107;
    --primary-color: #0d6efd;
    --border-color: rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.5;
/*    padding: 40px 20px;*/
}

/* Section Layout */
.testimonials-section {
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.text-center {
    text-align: center;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-1 {
    margin-top: 0.25rem;
}

.section-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.text-muted {
    color: var(--text-muted);
}

/* Slider Container Structure */
.slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 10px 0 50px 0;
}

.slider-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    will-change: transform;
}

.slider-slide {
    flex: 0 0 100%;
    padding: 0 12px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .slider-slide {
        flex: 0 0 50%;
    }
}

@media (min-width: 992px) {
    .slider-slide {
        flex: 0 0 33.3333%;
    }
}

/* Content Card Styling */
.content-card {
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

    .content-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

.star-rating {
    color: #141c87;
    margin-bottom: 0.75rem;
    letter-spacing: 2px;
}

.card-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.card-author {
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 0;
    color: var(--text-main);
}

/* Slider Controls (Pagination Dots) */
.slider-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.pagination-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #cbd5e1;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

    .pagination-dot.active {
        background-color: var(--primary-color);
        width: 24px;
        border-radius: 5px;
    }
/* Why Choose Us Section - Centered Layout Design */
.why-choose-section-centered {
    background: linear-gradient(135deg, #fbf7f2 0%, #f3ede4 100%);
    padding: 100px 20px;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #e8dec8;
    border-bottom: 1px solid #e8dec8;
}

/* Ambient Background Glow */
.why-choose-section-centered::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.why-choose-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Centered Header Styles */
.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-header-center .sub-heading {
    color: var(--secondary-color);
    font-weight: 600;
}

.section-header-center h2 {
    font-size: 2.6rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-header-center p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Cards Grid Layout (4 cards in a row on desktop, wrapping on smaller screens) */
.benefits-centered-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* Individual Card Styling */
.benefit-card-modern {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 35px 25px;
    border-radius: 8px;
    border: 1px solid rgba(212, 196, 172, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

/* Gold Gradient Top Border on Hover */
.benefit-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.benefit-card-modern:hover::before {
    transform: scaleX(1);
}

.benefit-card-modern:hover {
    transform: translateY(-8px);
    background: var(--white);
    box-shadow: 0 20px 40px rgba(123, 17, 19, 0.08);
    border-color: var(--secondary-color);
}

/* Card Top Row (Icon & Number) */
.card-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.card-icon-box {
    width: 45px;
    height: 45px;
    background: #f7f1e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.benefit-card-modern:hover .card-icon-box {
    background: var(--primary-color);
    color: var(--white);
}

.card-num {
    font-size: 0.9rem;
    font-weight: bold;
    color: #d1c4b2;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

.benefit-card-modern:hover .card-num {
    color: var(--secondary-color);
}

/* Card Content Typography */
.benefit-card-modern h3 {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.benefit-card-modern p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-header-center h2 {
        font-size: 2.1rem;
    }
    .why-choose-section-centered {
        padding: 80px 15px;
    }
}
/* Gallery Section Styles */
#gallery {
    background: #ffffff;
    padding: 100px 20px;
}

    #gallery .container {
        max-width: 1200px;
        margin: 0 auto;
    }

    #gallery .text-center {
        text-align: center;
    }

    #gallery .section-title {
        font-size: 2.6rem;
        color: #1e293b;
        margin: 10px 0 15px 0;
        font-weight: bold;
    }

    #gallery .text-muted {
        color: var(--text-light);
        font-size: 1.05rem;
    }

/* Row wrapper for 3 items per row with gap */
.gallery-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

/* Individual Gallery Card Styling (Image Only) */
.gallery-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    background: #f0e6d6;
}

    /* Gold Gradient Top Border on Hover */
    .gallery-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
        z-index: 2;
    }

    .gallery-card:hover::before {
        transform: scaleX(1);
    }

    .gallery-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(123, 17, 19, 0.12);
    }

/* Image Wrapper with Zoom Effect */
.gallery-img-wrapper {
    height: 320px;
    width: 100%;
    overflow: hidden;
}

    .gallery-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
        display: block;
    }

.gallery-card:hover .gallery-img-wrapper img {
    transform: scale(1.08);
}

/* Responsive Media Queries */
@media (max-width: 900px) {
    .gallery-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-row {
        grid-template-columns: 1fr;
    }

    #gallery .section-title {
        font-size: 2.1rem;
    }
}
.call-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #7d0d41;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
    box-shadow: 0 3px 10px rgba(40,167,69,.25);
}

    .call-btn i {
        font-size: 13px;
    }

    .call-btn:hover {
        background: #218838;
        color: #fff;
        transform: translateY(-1px);
    }
.footer-section {
    background: #111;
    color: #bbb;
    padding: 70px 0 25px;
}

.footer-logo {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}

    .footer-logo i {
        color: #d4af37;
    }

.footer-text {
    line-height: 1.8;
    color: #999;
}

.footer-section h5 {
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

    .footer-section h5:after {
        content: '';
        width: 45px;
        height: 2px;
        background: #d4af37;
        position: absolute;
        left: 0;
        bottom: 0;
    }

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: .3s;
}

    .footer-links a:hover {
        color: #d4af37;
        padding-left: 8px;
    }

.footer-contact li {
    margin-bottom: 14px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.footer-contact i {
    color: #ffff;
    margin-top: 4px;
}

.footer-contact a {
    color: #bbb;
    text-decoration: none;
}

    .footer-contact a:hover {
        color: #fff;
    }

.social-icons {
    display: flex;
    gap: 12px;
}

    .social-icons a {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: #1b1b1b;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        transition: .3s;
    }

        .social-icons a:hover {
        /*    background: #d4af37;*/
            color: #fff;
            transform: translateY(-4px);
        }

.footer-section hr {
    border-color: #333;
    margin: 40px 0 25px;
}

.footer-section a {
    color: #aaa;
    text-decoration: none;
}

    .footer-section a:hover {
        color: #d4af37;
    }
.navbar {
    position: sticky;
    top: 0;
    z-index: 1050;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
}

@media (max-width:991.98px) {

    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1050;
    }

    /*body {
        padding-top: 75px;*/ /* Navbar height */
    /*}*/
}
.appointment-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    /*background: linear-gradient(135deg, #1d268a, #0f0e0e);*/
    background: linear-gradient(135deg, #7b0a3d, #7b0a3d);
    color: #ffff !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: .3s;
    box-shadow: 0 6px 18px rgba(212,175,55,.35);
    white-space: nowrap;
}

    .appointment-btn i {
        font-size: 15px;
    }

    .appointment-btn:hover {
        color: #222;
        transform: translateY(-2px);
        box-shadow: 0 10px 22px rgba(212,175,55,.45);
        background-color: #e0c7d2;
    }
/* Enable smooth scrolling and account for the sticky navbar height */
/* Fix 1: Ensure html and body properly handle anchor targeting and smooth scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 85px; /* Height offset for sticky/fixed navbar */
}

/* Fix 2: Add pointer-events and proper stacking to ensure nav links receive click events */
.navbar {
    pointer-events: auto;
}

.navbar-nav .nav-link {
    cursor: pointer;
    position: relative;
    z-index: 1060;
}

/* Fix 3: Handle mobile collapse menu blocking clicks if it overlaps */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #ffffff;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 15px 20px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
}
@keyframes smoothBlink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.blink-badge {
    animation: smoothBlink 1.5s ease-in-out infinite;
}

.text-icon {
    --bs-text-opacity: 1;
    color: #232b8e;
}
.service-img-box {
    width: 100%;
    height: 220px;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

    .service-img-box img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 8px;
        transition: transform 0.5s ease;
    }

    .service-img-box:hover img {
        transform: scale(1.05);
    }

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    right: 25px;
    bottom: 25px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.25);
    transition: 0.3s ease;
}

.whatsapp-icon {
    width: 34px;
    height: 34px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #20bd5a;
}

/* Mobile */
@media(max-width:768px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        right: 18px;
        bottom: 110px;
    }

    .whatsapp-icon {
        width: 30px;
        height: 30px;
    }
}
/* Mobile Fixed CTA ke liye footer me space */
@media (max-width: 991.98px) {

    .footer-bottom {
        padding-bottom: 75px;
    }

    .fixed-cta-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        z-index: 9999;
        background: #fff;
        padding: 8px 0;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    }

        .fixed-cta-bar .btn {
            min-height: 42px;
        }
}
.banner-jaipur-hero {
    position: relative;
    width: 100%;
    min-height: 600px; /* Exact height set to 600px */
    background-color: #212844;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 40px 5%;
}

    /* Perfectly Smooth Rounded Curve Background matching the reference image */
    .banner-jaipur-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 60%;
        height: 100%;
        background: radial-gradient(circle at 35% 50%, #D3D1F9 0%, #D3D1F9 55%, #bca5f0 100%);
        border-top-right-radius: 120px 50%;
        border-bottom-right-radius: 450px 100%;
        z-index: 1;
    }

    /* Sparkle/stars background overlay */
    .banner-jaipur-hero .sparkle-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 60%;
        height: 100%;
        z-index: 1;
        pointer-events: none;
        background-image: radial-gradient(rgba(255, 255, 255, 0.9) 1.5px, transparent 1.5px), radial-gradient(rgba(255, 255, 255, 0.7) 1px, transparent 1px);
        background-size: 110px 110px;
        background-position: 20px 30px, 85px 150px;
        opacity: 0.65;
    }

    /* Content Wrapper */
    .banner-jaipur-hero .content-wrapper {
        position: relative;
        max-width: 1150px;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
        z-index: 2;
    }

    /* Left Side: Before/After Showcase & Features */
    .banner-jaipur-hero .showcase-area {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        min-width: 300px;
    }

    .banner-jaipur-hero .images-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
    }

    .banner-jaipur-hero .img-card {
        background: #fff;
        border-radius: 18px;
        overflow: hidden;
        box-shadow: 0 12px 25px rgba(0,0,0,0.25);
        width: 215px;
    }

        .banner-jaipur-hero .img-card img {
            width: 100%;
            height: 275px; /* Compact image height to fit nicely inside 600px total container height */
          /*  object-fit: cover;*/
            display: block;
        }

    .banner-jaipur-hero .label {
        background: #6a0933;
        color: #fff;
        text-align: center;
        padding: 10px 0;
        font-weight: bold;
        letter-spacing: 1.5px;
        font-size: 14px;
    }

    /* Pure CSS Double Arrow Icon */
    .banner-jaipur-hero .arrow {
        background: #6a0933;
        color: #fff;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 12px rgba(106, 9, 51, 0.4);
        position: relative;
        flex-shrink: 0;
    }

        .banner-jaipur-hero .arrow::before, .banner-jaipur-hero .arrow::after {
            content: '';
            position: absolute;
            width: 6px;
            height: 6px;
            border-top: 2.5px solid #fff;
            border-right: 2.5px solid #fff;
            transform: rotate(45deg);
        }

        .banner-jaipur-hero .arrow::before {
            left: 13px;
        }

        .banner-jaipur-hero .arrow::after {
            left: 20px;
        }

    /* Feature Bullet Points below images */
    .banner-jaipur-hero .features-list {
        display: flex;
        gap: 12px;
        list-style: none;
        flex-wrap: wrap;
        justify-content: center;
    }

        .banner-jaipur-hero .features-list li {
            background: rgba(255, 255, 255, 0.9);
            color: #1a1a1a;
            padding: 6px 12px;
            border-radius: 16px;
            font-size: 12px;
            font-weight: bold;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(106, 9, 51, 0.2);
        }

    /* Right Side: Consultation Form */
    .banner-jaipur-hero .form-area {
        flex: 0 0 410px;
        background: #ffffff;
        padding: 30px 26px;
        border-radius: 24px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    }

    .banner-jaipur-hero .header {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 20px;
    }

    /* Pure CSS Calendar Icon */
    .banner-jaipur-hero .icon-wrap {
        background: #6a0933;
        color: #fff;
        width: 46px;
        height: 46px;
        border-radius: 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        flex-shrink: 0;
        box-shadow: 0 5px 12px rgba(106, 9, 51, 0.3);
    }

    .banner-jaipur-hero .calendar-top {
        width: 20px;
        height: 3.5px;
        background: #fff;
        position: absolute;
        top: 10px;
        border-radius: 2px;
    }

    .banner-jaipur-hero .calendar-body {
        width: 20px;
        height: 17px;
        border: 2px solid #fff;
        border-radius: 3px;
        position: absolute;
        bottom: 8px;
    }

    .banner-jaipur-hero .header h2 {
        font-size: 19px;
        color: #111827;
        font-weight: 800;
    }

    .banner-jaipur-hero .header p {
        font-size: 11.5px;
        color: #4b5563;
        margin-top: 3px;
        line-height: 1.3;
    }

    .banner-jaipur-hero .form-group {
        margin-bottom: 14px;
    }

    .banner-jaipur-hero label {
        display: block;
        font-size: 12px;
        font-weight: 700;
        color: #374151;
        margin-bottom: 4px;
    }

        .banner-jaipur-hero label span {
            color: #e74c3c;
        }

    .banner-jaipur-hero input,
    .banner-jaipur-hero select,
    .banner-jaipur-hero textarea {
        width: 100%;
        padding: 10px 14px;
        border: 1.5px solid #e5e7eb;
        border-radius: 10px;
        font-size: 13px;
        outline: none;
        background-color: #f9fafb;
        color: #1f2937;
    }

        .banner-jaipur-hero input:focus,
        .banner-jaipur-hero select:focus,
        .banner-jaipur-hero textarea:focus {
            border-color: #6a0933;
            background-color: #fff;
            box-shadow: 0 0 0 3px rgba(106, 9, 51, 0.08);
        }

    .banner-jaipur-hero textarea {
        resize: none;
        height: 60px; /* Reduced textarea height to easily fit inside 600px container */
    }

    .banner-jaipur-hero .submit-btn {
        background: #6a0933;
        color: #fff;
        border: none;
        padding: 12px;
        width: 100%;
        border-radius: 10px;
        font-weight: 700;
        font-size: 15px;
        cursor: pointer;
        margin-top: 4px;
        box-shadow: 0 6px 15px rgba(106, 9, 51, 0.35);
        transition: background 0.3s;
    }

        .banner-jaipur-hero .submit-btn:hover {
            background: #520727;
        }

/* Fully Optimized Mobile Responsive Design with Fixed 600px or Auto Adapt */
@media (max-width: 992px) {
    .banner-jaipur-hero {
        min-height: auto; /* Allow auto height on mobile so content never overflows awkwardly */
        padding: 30px 15px;
    }

        .banner-jaipur-hero::before,
        .banner-jaipur-hero .sparkle-overlay {
            width: 100%;
            height: 48%;
            border-top-right-radius: 0;
            border-bottom-right-radius: 35px;
            border-bottom-left-radius: 35px;
        }

        .banner-jaipur-hero .content-wrapper {
            flex-direction: column-reverse;
            align-items: center;
            gap: 25px;
        }

        .banner-jaipur-hero .form-area {
            width: 100%;
            max-width: 100%;
            padding: 22px 18px;
            border-radius: 20px;
        }
}

/* Extra Polish for Small Mobile Screens */
@media (max-width: 576px) {
    .banner-jaipur-hero .showcase-area {
        gap: 14px;
        width: 100%;
    }

    .banner-jaipur-hero .images-row {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        gap: 6px;
        width: 100%;
    }

    .banner-jaipur-hero .img-card {
        width: 100%;
        max-width: 100%;
        border-radius: 16px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

        .banner-jaipur-hero .img-card img {
          /*  width: 100%;
            height: 180px;
            object-fit: contain;*/
            display: block;
        }

    .banner-jaipur-hero .label {
        padding: 6px 0;
        font-size: 11px;
        letter-spacing: 0.8px;
    }

    .banner-jaipur-hero .arrow {
        width: 30px;
        height: 30px;
        box-shadow: 0 3px 8px rgba(106, 9, 51, 0.5);
        margin: 0 auto;
    }

        .banner-jaipur-hero .arrow::before,
        .banner-jaipur-hero .arrow::after {
            width: 4.5px;
            height: 4.5px;
            border-width: 2px;
        }

        .banner-jaipur-hero .arrow::before {
            left: 9px;
        }

        .banner-jaipur-hero .arrow::after {
            left: 14px;
        }

    .banner-jaipur-hero .features-list {
        gap: 6px;
    }

        .banner-jaipur-hero .features-list li {
            font-size: 10.5px;
            padding: 5px 10px;
            border-radius: 12px;
        }
}
.banner-jaipur-hero .offer-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px 8px 14px;
    min-height: 42px;
    color: #fff;
    background: linear-gradient( 135deg, #43051f 0%, #6f0b35 35%, #a51d57 70%, #760c3b 100% );
    border: 1px solid rgba(255, 220, 130, 0.65);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.7px;
    line-height: 1;
    box-shadow: 0 7px 20px rgba(67, 5, 31, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.08) inset, 0 0 15px rgba(255, 195, 55, 0.12);
    overflow: hidden;
    isolation: isolate;
    /* Continuous premium animation */
    animation: offer-pulse 1.8s ease-in-out infinite, offer-float 3s ease-in-out infinite;
}


    /* -----------------------------
   GOLDEN LIVE INDICATOR
------------------------------ */

    .banner-jaipur-hero .offer-badge::before {
        content: "";
        width: 8px;
        height: 8px;
        flex: 0 0 8px;
        border-radius: 50%;
        background: radial-gradient( circle at 35% 30%, #fffbd0 0%, #ffe35c 35%, #ffbd00 70%, #d89100 100% );
        box-shadow: 0 0 5px #ffd43b, 0 0 12px rgba(255, 211, 59, 0.9), 0 0 20px rgba(255, 180, 0, 0.45);
        animation: live-dot 1s ease-in-out infinite alternate;
    }


    /* -----------------------------
   SHINE SWEEP
------------------------------ */

    .banner-jaipur-hero .offer-badge::after {
        content: "";
        position: absolute;
        top: -70%;
        left: -80%;
        width: 35%;
        height: 240%;
        background: linear-gradient( 90deg, transparent, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.08), transparent );
        transform: rotate(20deg);
        animation: offer-shine 3.5s ease-in-out infinite;
        pointer-events: none;
    }


/* -----------------------------
   OFFER TEXT
------------------------------ */

.banner-jaipur-hero .offer-text {
    color: rgba(255, 255, 255, 0.95);
    white-space: nowrap;
}


/* -----------------------------
   DISCOUNT PILL
------------------------------ */

.banner-jaipur-hero .offer-badge .discount {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 78px;
    padding: 7px 11px;
    color: #4b061f;
    background: linear-gradient( 135deg, #fff6b0 0%, #ffd94d 45%, #f4b600 100% );
    border-radius: 30px;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.4px;
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.2), inset 0 1px 2px rgba(255, 255, 255, 0.9);
    animation: discount-pop 1.8s ease-in-out infinite;
}


    /* Small highlight inside discount */
    .banner-jaipur-hero .offer-badge .discount::before {
        content: "";
        position: absolute;
        inset: 1px;
        border-radius: inherit;
        border: 1px solid rgba(255, 255, 255, 0.55);
        pointer-events: none;
    }


/* -----------------------------
   BADGE GLOW / BLINK
------------------------------ */

@keyframes offer-pulse {

    0%, 100% {
        opacity: 1;
        box-shadow: 0 7px 20px rgba(67, 5, 31, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.08) inset, 0 0 12px rgba(255, 195, 55, 0.12);
    }

    50% {
        opacity: 0.9;
        box-shadow: 0 10px 28px rgba(67, 5, 31, 0.48), 0 0 0 1px rgba(255, 255, 255, 0.12) inset, 0 0 28px rgba(255, 195, 55, 0.42);
    }
}


/* -----------------------------
   SLIGHT FLOAT
------------------------------ */

@keyframes offer-float {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2px);
    }
}


/* -----------------------------
   GOLD DOT
------------------------------ */

@keyframes live-dot {

    from {
        transform: scale(0.75);
        opacity: 0.55;
    }

    to {
        transform: scale(1.25);
        opacity: 1;
    }
}


/* -----------------------------
   DISCOUNT POP
------------------------------ */

@keyframes discount-pop {

    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }
}


/* -----------------------------
   SHINE
------------------------------ */

@keyframes offer-shine {

    0% {
        left: -80%;
    }

    35% {
        left: 140%;
    }

    100% {
        left: 140%;
    }
}


/* -----------------------------
   MOBILE
------------------------------ */

@media (max-width: 767px) {

    .banner-jaipur-hero .offer-badge {
        gap: 7px;
        padding: 7px 8px 7px 11px;
        min-height: 38px;
        font-size: 9px;
        letter-spacing: 0.45px;
    }

        .banner-jaipur-hero .offer-badge::before {
            width: 6px;
            height: 6px;
            flex-basis: 6px;
        }

        .banner-jaipur-hero .offer-badge .discount {
            min-width: 65px;
            padding: 6px 8px;
            font-size: 10px;
        }
}
.banner-jaipur-hero .hero-title {
    width: 100%;
    text-align: left;
    margin-bottom: 22px;
    position: relative;
    z-index: 5;
}

    .banner-jaipur-hero .hero-title span {
        display: inline-block;
        font-size: 28px;
        font-weight: 800;
        line-height: 1.2;
        letter-spacing: 0.3px;
        color: #6a0933;
        background: linear-gradient( 135deg, #6a0933 0%, #9b1b52 50%, #6a0933 100% );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        position: relative;
        padding-bottom: 10px;
    }

        /* Decorative line - Left aligned */
        .banner-jaipur-hero .hero-title span::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 75px;
            height: 3px;
            border-radius: 10px;
            background: linear-gradient( 90deg, #6a0933, #9b1b52, transparent );
        }

/* Tablet */
@media (max-width: 768px) {

    .banner-jaipur-hero .hero-title {
        text-align: left;
        margin-bottom: 18px;
    }

        .banner-jaipur-hero .hero-title span {
            font-size: 22px;
            line-height: 1.25;
            padding-bottom: 9px;
        }

            .banner-jaipur-hero .hero-title span::after {
                width: 65px;
                height: 3px;
            }
}

/* Mobile */
@media (max-width: 480px) {

    .banner-jaipur-hero .hero-title {
        text-align: left;
        margin-bottom: 16px;
    }

        .banner-jaipur-hero .hero-title span {
            font-size: 19px;
            line-height: 1.3;
            padding-bottom: 8px;
        }

            .banner-jaipur-hero .hero-title span::after {
                width: 55px;
                height: 2.5px;
            }
}

.banner-jaipur-hero .hero-title {
    width: 100%;
    text-align: left;
    margin-bottom: 25px;
    position: relative;
    z-index: 5;
}

    .banner-jaipur-hero .hero-title > span {
        display: inline-block;
        font-size: 30px;
        font-weight: 800;
        line-height: 1.2;
        color: #6a0933;
        background: linear-gradient( 135deg, #5b082b, #9b1b52, #6a0933 );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        position: relative;
        padding-bottom: 11px;
    }

        /* Decorative underline */
        .banner-jaipur-hero .hero-title > span::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 90px;
            height: 3px;
            border-radius: 10px;
            background: linear-gradient( 90deg, #6a0933, #a51d57, transparent );
        }

/* Main subtitle */
.banner-jaipur-hero .hero-subtitle {
    max-width: 650px;
    margin: 14px 0 8px;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
    color: #25253a;
}

/* ================================
   HERO TITLE - TABLET
================================ */
@media (max-width: 992px) {

    .banner-jaipur-hero .hero-title {
        width: 100%;
        margin-bottom: 20px;
    }

        .banner-jaipur-hero .hero-title > span {
            font-size: 26px;
            line-height: 1.25;
            padding-bottom: 9px;
        }

            .banner-jaipur-hero .hero-title > span::after {
                width: 75px;
                height: 3px;
            }

    .banner-jaipur-hero .hero-subtitle {
        max-width: 600px;
        margin: 11px 0 7px;
        font-size: 15px;
        line-height: 1.5;
    }
}


/* ================================
   HERO TITLE - MOBILE
================================ */
@media (max-width: 576px) {

    .banner-jaipur-hero .hero-title {
        width: 100%;
        text-align: left;
        margin-bottom: 17px;
        padding: 0 2px;
    }

        .banner-jaipur-hero .hero-title > span {
            display: inline-block;
            width: auto;
            max-width: 100%;
            font-size: 21px;
            line-height: 1.25;
            font-weight: 800;
            letter-spacing: 0;
            padding-bottom: 8px;
        margin-top:20px;
          
            -webkit-text-fill-color: #fff !important;
        }

            .banner-jaipur-hero .hero-title > span::after {
                width: 58px;
                height: 2.5px;
            }

    .banner-jaipur-hero .hero-subtitle {
        width: 100%;
        max-width: 100%;
        margin: 10px 0 0;
        font-size: 12.5px;
        font-weight: 650;
        line-height: 1.55;
        color: #ffff;
    }
}


/* ================================
   SMALL MOBILE
================================ */
@media (max-width: 400px) {

    .banner-jaipur-hero .hero-title {
        margin-bottom: 15px;
        margin-top:10px
    }

        .banner-jaipur-hero .hero-title > span {
            font-size: 19px;
            line-height: 1.3;
            padding-bottom: 7px;
        }

            .banner-jaipur-hero .hero-title > span::after {
                width: 52px;
                height: 2px;
            }

    .banner-jaipur-hero .hero-subtitle {
        font-size: 11.5px;
        line-height: 1.55;
        margin-top: 9px;
    }
}


/* ================================
   VERY SMALL DEVICES
================================ */
@media (max-width: 350px) {

    .banner-jaipur-hero .hero-title > span {
        font-size: 18px;
    }

    .banner-jaipur-hero .hero-subtitle {
        font-size: 11px;
    }
}