/* Custom CSS for Dosti Primus Landing Page */

/* Font Imports */
@font-face {
    font-family: 'Nexa';
    src: url('../fonts/NexaRegular_0.otf') format('opentype');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Nexa';
    src: url('../fonts/Nexa-Bold.otf') format('opentype');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Nexa';
    src: url('../fonts/NexaHeavy.otf') format('opentype');
    font-weight: 900;
    font-display: swap;
}

@font-face {
    font-family: 'FuturaBQ';
    src: url('../fonts/FuturaBQBook.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'FuturaBQ';
    src: url('../fonts/FuturaBQMedium.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
}

/* Root Variables */
:root {
    --primary-color: #8b2580;
    --secondary-color: #b8336a;
    --accent-color: #722054;
    --text-dark: #2d3748;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nexa', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.section-title {
    font-family: 'Nexa', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 0rem;
}

/* Custom Button Styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0f2a47;
    border-color: #0f2a47;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light:hover {
    transform: translateY(-2px);
}

/* Header Styles */
.header-section {
    position: relative;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    padding: 4px 0;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-family: 'Nexa', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
}

.brand-text {
    color: var(--accent-color);
    margin-left: 0.5rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

/* Hero Section */
/* Hero Section */
.hero {
    min-height: 100vh;
    background: url('../images/hero-banner.webp') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
}

.hero-section {
    min-height: 100vh;
    background: url('../images/dostiprimus-fp_2656309279_old-couple-burgandy.webp') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
}

.hero-disclaimer {
    position: absolute;
    bottom: 10px;
    right: 15px;
    /* background: rgba(0, 0, 0, 0.6); */
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: 0.3px;
    pointer-events: none;
    user-select: none;
}

.hero-background {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.hero-background .container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding-right: 1.5rem;
}

.hero-content h1 {
    font-family: 'Nexa', sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-features .feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-features .feature-card i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.hero-form-container {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 1.5rem;
}

.hero-form {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 450px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Highlights Section */
.highlights-section {
    padding: 5rem 0;
    background: #ffffff;
}

.highlight-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.highlight-icon i {
    font-size: 2rem;
    color: var(--white);
}

.highlight-card h5 {
    font-family: 'Nexa', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Premium Lifestyle Section */
.premium-lifestyle-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

.premium-lifestyle-section .section-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
}

.premium-lifestyle-section .section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Service Cards */
.service-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-card h4 {
    font-family: 'Nexa', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    min-height: 44px;
}

.service-card .img-wrap {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
}

.service-card h3{
    position: absolute !important;
    bottom: 0 !important;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    text-align: left;
    border-radius: 0 0 10px 10px;
    box-sizing: border-box;
}

.service-card .service-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.service-card .service-image[src*="shutterstock_2303780989.webp"] {
    object-position: 50% 100%;
}

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

/* Stay Connected Banner */
.stay-connected-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 15px;
    margin-top: 3rem;
}

.stay-connected-banner h3 {
    font-family: 'Nexa', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stay-connected-banner p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* Responsive Design */
@media (max-width: 768px) {
    .premium-lifestyle-section .section-title {
        font-size: 2rem;
    }

    .service-card {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }

    .service-card h4 {
        font-size: 1rem;
    }

    .service-card .service-image {
        height: 160px;
    }

    .stay-connected-banner {
        padding: 2rem 1.5rem !important;
    }

    .stay-connected-banner h3 {
        font-size: 1.5rem;
    }
}

/* About Section */
.about-section {
    padding: 10rem 0;
    background: url(../images/about.jpeg) bottom center / cover no-repeat;
    position: relative;
}

.about-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .about-section {
        background-attachment: scroll;
        padding: 3rem 0;
    }

    .about-section .section-title {
        font-size: 2rem;
    }
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.feature-item i {
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.rera-info {
    border-left: 4px solid var(--primary-color);
}

/* Floor Plans Section */
.floor-plans-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
}

.floor-plans-section .section-title {
    color: #f8f9fa;
}

.floor-plans-section .section-subtitle {
    color: #e2e8f0;
}

.floor-plan-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.floor-plan-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.plan-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 1.5rem 1.5rem;
    text-align: center;
    position: relative;
}

.plan-header h4 {
    font-family: 'Nexa', sans-serif;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.carpet-area {
    opacity: 0.9;
    margin: 0;
    font-size: 1.1rem;
}

.plan-details {
    padding: 2rem 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.plan-details ul {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.plan-details ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #000;
}

.plan-details ul li:last-child {
    border-bottom: none;
}

.plan-details ul li i {
    margin-right: 0.75rem;
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
}

.plan-price {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
    text-align: center;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.price-value {
    font-family: 'Nexa', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* Senior Amenities Section */
.senior-amenities-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #faf8fb 0%, #f4f0f5 100%);
}

.senior-amenities-section .section-title {
    font-family: 'Nexa', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-subtitle-large {
    font-family: 'Nexa', sans-serif;
    font-weight: 600;
    color: #6c757d;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-description {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.amenity-feature-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: auto;
    border: 1px solid #e9ecef;
}

.amenity-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.amenity-image {
    height: 100%;
    min-height: 350px;
    overflow: hidden;
    position: relative;
}

.amenity-image.actual-image-badge::after {
    content: "Actual Image";
    position: absolute;
    bottom: 10px;
    right: 10px;
    /* background-color: rgba(139, 37, 128, 0.9); */
    color: #000;
    padding: 4px 8px;
    font-size: 9px;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.amenity-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.amenity-feature-card:hover .amenity-image img {
    transform: scale(1.05);
}

.amenity-content {
    padding: 2rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.amenity-title {
    font-family: 'Nexa', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.amenity-icon-small {
    color: #007bff;
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.amenity-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.amenity-features li {
    padding: 0.2rem 0;
    font-size: 0.7rem;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.2;
}

.amenity-features li i {
    color: #28a745;
    font-size: 0.8rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Services Highlight Card */
.services-highlight-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    color: white;
    box-shadow: 0 15px 40px rgba(139, 37, 128, 0.3);
    position: relative;
    overflow: hidden;
}

.services-highlight-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: rgba(255, 255, 255, 0.05);
    transform: rotate(15deg);
    pointer-events: none;
}

.services-icon {
    text-align: center;
    margin-bottom: 2rem;
}

.services-icon i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.services-content {
    position: relative;
    z-index: 2;
}

.services-title {
    font-family: 'Nexa', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.services-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-features li {
    padding: 0.6rem 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 1rem;
    line-height: 1.5;
}

.services-features li i {
    color: #28a745;
    font-size: 0.9rem;
    background: rgba(40, 167, 69, 0.2);
    padding: 0.3rem;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Legacy Amenities Section (keeping for backward compatibility) */
.amenities-section {
    padding: 5rem 0;
    background: #ffffff;
}

.amenity-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.amenity-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.amenity-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.amenity-card h5 {
    font-family: 'Nexa', sans-serif;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
}

.gallery-section .section-title {
    color: #ffffff;
}

.gallery-section .section-subtitle {
    color: #ffffff;
}

/* Gallery Carousel Container - Clean Modern Design */
.gallery-carousel-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    /* Removed: background, backdrop-filter, border, box-shadow, padding for clean look */
}

.gallery-carousel {
    position: relative;
    overflow: hidden;
    cursor: grab;
}

.gallery-carousel:active {
    cursor: grabbing;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    gap: 20px;
    padding: 0 10px;
}

.gallery-slide {
    min-width: calc(33.333% - 14px);
    /* 3 images on desktop */
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.carousel-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    /* Rounded corners */
    transition: transform 0.4s ease, opacity 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    opacity: 1;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.carousel-image.lazy-load {
    opacity: 0.7;
}

.carousel-image.loaded {
    opacity: 1;
    animation: none;
    background: none;
}

/* Subtle hover zoom effect */
.carousel-image:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    opacity: 0.8;
}

.carousel-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
    opacity: 1;
}

.carousel-nav-prev {
    left: 15px;
}

.carousel-nav-next {
    right: 15px;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: white;
    transform: scale(1.3);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.carousel-indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

/* Lightbox Styles */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.lightbox-container {
    position: relative;
    max-width: 95vw;
    max-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    text-align: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: white;
    font-size: 1.1rem;
    margin-top: 15px;
    padding: 0 20px;
    text-align: center;
}

/* Lightbox Navigation */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav-prev {
    left: 30px;
}

.lightbox-nav-next {
    right: 30px;
}

/* Lightbox Close Button */
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

/* Lightbox Counter */
.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Responsive Design */
/* Tablet: 2 images */
@media (max-width: 768px) {
    .gallery-slide {
        min-width: calc(50% - 10px);
    }

    .carousel-image {
        height: 280px;
    }

    .carousel-track {
        gap: 15px;
    }

    .carousel-nav {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .carousel-nav-prev {
        left: 10px;
    }

    .carousel-nav-next {
        right: 10px;
    }

    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .lightbox-nav-prev {
        left: 20px;
    }

    .lightbox-nav-next {
        right: 20px;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

/* Mobile: 1 image */
@media (max-width: 480px) {
    .hero-section {
        min-height: 100vh;
        background: url('../images/mob_banner.jpg') center/cover no-repeat;
        position: relative;
        display: flex;
        align-items: center;
        color: white;
    }

    .gallery-slide {
        min-width: calc(100% - 20px);
    }

    .carousel-image {
        height: 250px;
        border-radius: 12px;
    }

    .carousel-track {
        gap: 10px;
        padding: 0 5px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .carousel-nav-prev {
        left: 5px;
    }

    .carousel-nav-next {
        right: 5px;
    }

    .carousel-indicators {
        margin-top: 20px;
        gap: 8px;
    }

    .carousel-indicator {
        width: 10px;
        height: 10px;
    }

    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .lightbox-nav-prev {
        left: 15px;
    }

    .lightbox-nav-next {
        right: 15px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .lightbox-counter {
        bottom: 20px;
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -60px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav-prev {
    left: -80px;
}

.lightbox-nav-next {
    right: -80px;
}

.lightbox-caption {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    color: white;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
}

.lightbox-counter {
    position: absolute;
    top: -60px;
    left: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-slide {
        min-width: calc(50% - 10px);
    }

    .carousel-track {
        gap: 15px;
    }

    .carousel-image {
        height: 300px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .carousel-nav-prev {
        left: 10px;
    }

    .carousel-nav-next {
        right: 10px;
    }

    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .lightbox-nav-prev {
        left: -70px;
    }

    .lightbox-nav-next {
        right: -70px;
    }

    .lightbox-close {
        top: -50px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .lightbox-caption {
        bottom: -50px;
        font-size: 1rem;
    }

    .lightbox-counter {
        top: -50px;
    }
}

@media (max-width: 480px) {
    .gallery-slide {
        min-width: 100%;
    }

    .carousel-track {
        gap: 10px;
    }

    .carousel-image {
        height: 250px;
    }

    .gallery-carousel-container {
        padding: 15px;
    }

    .lightbox-nav-prev {
        left: 10px;
    }

    .lightbox-nav-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
    }

    .lightbox-caption {
        bottom: 10px;
        left: 10px;
        right: 10px;
    }

    .lightbox-counter {
        top: 10px;
        left: 10px;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: #ffffff;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-content {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.testimonial-content i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding-top: 10px;
    margin-top: auto;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.author-info h6 {
    font-family: 'Nexa', sans-serif;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.author-info .project-name {
    font-size: 11px;
    color: var(--accent-color);
    font-weight: 500;
    margin: 0.25rem 0;
    width: 200px;
}

.testimonial-qr {
    text-align: center;
}

.qr-code-testimonial {
    width: 80px;
    height: 80px;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    border-radius: 8px;
}

.qr-text {
    display: inline-block;
    margin-right: .5rem;
    font-size: 0.9rem;
    margin-top: 1rem;
    color: var(--text-light);
    font-weight: 500;
    vertical-align: middle;
    line-height: 1.2;
}

.testimonial-card:hover .qr-code-testimonial {
    opacity: 1;
}

/* Location Section 
.location-section {
    padding: 5rem 0;
    background: #ffffff;
}

.location-section .section-title {
    color: var(--primary-color);
}

.location-section .section-subtitle {
    color: var(--text-light);
}

.connectivity-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.connectivity-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 40px;
    text-align: center;
}

.connectivity-item h6 {
    font-family: 'Nexa', sans-serif;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
    color: var(--secondary-color);
    width: 30px;
}

.contact-item h6 {
    font-family: 'Nexa', sans-serif;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-item a {
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Developer Information Section */
.developer-info-section {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: #e2e8f0;
    position: relative;
}

.developer-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
    pointer-events: none;
}

.developer-content {
    position: relative;
    z-index: 2;
}

.developer-title {
    font-family: 'Nexa', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    color: #f6ad55;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.developer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cbd5e0;
    text-align: justify;
    margin-bottom: 1.5rem;
}

.rera-details {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rera-text {
    font-size: 0.9rem;
    color: #e2e8f0;
    margin-bottom: 0.75rem;
}

.rera-text strong {
    color: #f6ad55;
    font-weight: 700;
}

.rera-link {
    color: #63b3ed;
    text-decoration: none;
    font-weight: 500;
}

.rera-link:hover {
    color: #90cdf4;
    text-decoration: underline;
}

.disclaimer-text {
    color: #a0aec0;
    font-size: 0.75rem;
    line-height: 1.5;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 0.75rem;
}

.disclaimer-text strong {
    color: #f6ad55;
}

.qr-code-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.maharera-qr-dark {
    max-width: 220px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
}

.qr-label {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
    text-align: center;
    line-height: 1.4;
    padding-top: 0.5rem;
}

/* Stats Cards Horizontal Layout */
.stats-horizontal-container {
    margin: 2rem 0;
}

.stats-card-horizontal {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem 0.8rem;
    height: 100%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stats-card-horizontal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.stats-card-horizontal:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.stats-icon-horizontal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.stats-number-horizontal {
    font-family: 'Nexa', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    color: #f39c12;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stats-unit-horizontal {
    font-size: 0.7rem;
    font-weight: 600;
    color: #e67e22;
}

.stats-label-horizontal {
    font-family: 'Nexa', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    color: #ecf0f1;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stats-desc-horizontal {
    color: #bdc3c7;
    font-size: 0.7rem;
    line-height: 1.3;
    text-align: center;
}

/* Responsive Design for Horizontal Cards */
@media (max-width: 1200px) {
    .stats-card-horizontal {
        padding: 1.25rem 0.75rem;
        min-height: 140px;
    }

    .stats-number-horizontal {
        font-size: 1.5rem;
    }

    .stats-icon-horizontal {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .stats-card-horizontal {
        padding: 1rem 0.5rem;
        margin-bottom: 1rem;
        min-height: 120px;
    }

    .stats-number-horizontal {
        font-size: 1.3rem;
    }

    .stats-label-horizontal {
        font-size: 0.7rem;
    }

    .stats-desc-horizontal {
        font-size: 0.65rem;
    }
}

@media (max-width: 576px) {
    .qr-code-testimonial {
        display: none;
    }

    .qr-text {
        display: none;
    }

    .stats-card-horizontal {
        padding: 0.75rem 0.5rem;
        min-height: 100px;
    }

    .stats-number-horizontal {
        font-size: 1.1rem;
    }

    .stats-icon-horizontal {
        width: 30px;
        height: 30px;
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .stats-label-horizontal {
        font-size: 0.65rem;
    }

    .stats-desc-horizontal {
        font-size: 0.6rem;
    }
}

.privacy-link {
    color: #63b3ed;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.privacy-link:hover {
    color: #90cdf4;
    border-bottom-color: #63b3ed;
}

/* Footer */
.footer {
    padding: 2rem 0;
}

/* Privacy Policy Section */
.privacy-policy-section {
    background: #f8f9fa;
    padding: 6rem 0 4rem;
}

.privacy-content {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 0 auto;
}

.privacy-content h2 {
    color: var(--primary-color);
    font-family: 'Nexa', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.5rem;
}

.privacy-content h2:first-child {
    margin-top: 0;
}

.privacy-content h3 {
    color: var(--accent-color);
    font-family: 'Nexa', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.privacy-content p {
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: justify;
}

/* Responsive for Privacy Policy */
@media (max-width: 768px) {
    .privacy-policy-section {
        padding: 5rem 0 2rem;
    }

    .privacy-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .privacy-content h2 {
        font-size: 1.5rem;
    }

    .privacy-content h3 {
        font-size: 1.2rem;
    }
}

/* Terms & Conditions Section */
.terms-conditions-section {
    background: #f8f9fa;
    padding: 6rem 0 4rem;
}

.terms-content {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 0 auto;
}

.terms-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.terms-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Responsive for Terms & Conditions */
@media (max-width: 768px) {
    .terms-conditions-section {
        padding: 5rem 0 2rem;
    }

    .terms-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
}

/* Disclaimer Section */
.disclaimer-section {
    background: #f8f9fa;
    padding: 6rem 0 4rem;
}

.disclaimer-content {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer-content p {
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Responsive for Disclaimer */
@media (max-width: 768px) {
    .disclaimer-section {
        padding: 5rem 0 2rem;
    }

    .disclaimer-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    color: var(--white);
    transform: scale(1.1);
    text-decoration: none;
}

/* Modal Styles */
.modal-content {
    border-radius: 15px;
    border: none;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 15px 15px 0 0;
}

.modal-header .btn-close {
    filter: invert(1);
}

/* Form Styles */
.form-control,
.form-select {
    border-radius: 10px;
    border: 2px solid #e2e8f0;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(26, 54, 93, 0.25);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 15rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-form-container {
        margin-top: 3rem;
        padding-left: 0;
        justify-content: center;
    }

    /* Hero CTA Buttons Mobile */
    .hero-cta {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        align-items: center;
        margin-top: 1.5rem;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
        margin: 0 !important;
        font-size: 13px;
        padding: 8px 0px 3px 0px;
    }

    .hero-cta .btn.btn-primary {
        padding-top: 5px;
        padding-bottom: 4px;
    }

    .section-title {
        font-size: 2rem;
    }

    .highlight-card,
    .amenity-card,
    .testimonial-card {
        margin-bottom: 2rem;
    }

    /* Senior Amenities Responsive */
    .senior-amenities-section .section-title {
        font-size: 2rem;
    }

    .section-subtitle-large {
        font-size: 1.2rem;
    }

    .amenity-feature-card .row {
        flex-direction: column;
    }

    .amenity-feature-card {
        min-height: auto;
    }

    .amenity-image {
        min-height: 250px;
    }

    .amenity-image img {
        height: 250px;
    }

    .amenity-content {
        padding: 1.5rem 1rem;
    }

    .amenity-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .services-highlight-card {
        padding: 2rem 1.5rem;
    }

    .services-icon {
        margin-bottom: 1.5rem;
    }

    .services-icon i {
        font-size: 3rem;
        padding: 1rem;
    }

    .services-title {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .connectivity-item {
        flex-direction: column;
        text-align: center;
    }

    .connectivity-item i {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .btn-lg {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Senior Amenities Small Screen */
    .senior-amenities-section {
        padding: 3rem 0;
    }

    .senior-amenities-section .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle-large {
        font-size: 1.1rem;
    }

    .section-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .amenity-content {
        padding: 1.25rem 1rem;
    }

    .amenity-features li {
        font-size: 0.85rem;
        padding: 0.3rem 0;
    }

    .services-highlight-card {
        padding: 1.5rem 1rem;
    }

    .services-title {
        font-size: 1.1rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .services-features li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

/* Thank You Page Styles */
.thank-you-section {
    padding: 3rem 0;
    position: relative;
}

.thank-you-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="thankyou-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%238b2580" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23thankyou-pattern)"/></svg>') repeat;
    pointer-events: none;
}

.thank-you-card {
    padding-top: 2rem;
}

.success-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.success-icon i {
    font-size: 4rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.thank-you-title {
    font-family: 'Nexa', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.thank-you-content h3 {
    font-family: 'Nexa', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 0.75rem;
}

.thank-you-content .lead {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 0;
    line-height: 1.6;
}

.enquiry-summary {
    border-radius: 15px;
    padding: 2.5rem;
    margin: 2rem 0;
    border: 1px solid rgba(139, 37, 128, 0.1);
}

.enquiry-summary h4 {
    font-family: 'Nexa', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.next-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(139, 37, 128, 0.05);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(139, 37, 128, 0.15);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 1.5rem;
}

.step h5 {
    font-family: 'Nexa', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.step p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.contact-info {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid rgba(139, 37, 128, 0.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.contact-info h4 {
    font-family: 'Nexa', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.contact-item:hover i {
    color: var(--white);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    width: 30px;
    text-align: center;
}

.contact-item span {
    font-weight: 500;
    font-size: 0.95rem;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.action-buttons .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    min-width: 160px;
}

.action-buttons .btn i {
    margin-right: 0.5rem;
}

/* Why Choose Section on Thank You Page */
.why-choose-section {
    padding: 4rem 0;
    background: var(--white);
}

.why-choose-section .section-title {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.why-choose-section .section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(139, 37, 128, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(139, 37, 128, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.8rem;
}

.feature-card h5 {
    font-family: 'Nexa', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design for Thank You Page */
@media (max-width: 768px) {
    .thank-you-section {
        padding: 2rem 0;
    }

    .thank-you-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .thank-you-title {
        font-size: 2rem;
    }

    .thank-you-content h3 {
        font-size: 1.3rem;
    }

    .thank-you-content .lead {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .success-icon i {
        font-size: 4rem;
    }

    .enquiry-summary {
        padding: 2rem 1.5rem;
        margin: 1.5rem 0;
    }

    .next-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .step {
        padding: 1.25rem;
    }

    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .contact-details {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .contact-item {
        padding: 0.75rem;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .action-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .why-choose-section {
        padding: 3rem 0;
    }

    .why-choose-section .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .thank-you-card {
        padding-top: 3rem;
    }

    .thank-you-title {
        font-size: 1.8rem;
    }

    .thank-you-content h3 {
        font-size: 1.2rem;
    }

    .thank-you-content .lead {
        font-size: 0.95rem;
    }

    .success-icon i {
        font-size: 3.5rem;
    }

    .enquiry-summary {
        padding: 1.5rem 1rem;
    }

    .enquiry-summary h4 {
        font-size: 1.1rem;
    }

    .step {
        padding: 1rem;
    }

    .step h5 {
        font-size: 1rem;
    }

    .step p {
        font-size: 0.9rem;
    }

    .contact-info {
        padding: 1.5rem 1rem;
    }

    .contact-info h4 {
        font-size: 1.1rem;
    }

    .feature-card {
        padding: 1.5rem 1rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0f2a47;
}

/* Scroll Popup Styles */
.scroll-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    z-index: 9999;
    backdrop-filter: blur(3px);
    align-items: center;
    justify-content: center;
}

.scroll-popup.show {
    display: flex;
}

.popup-content {
    background: white;
    border-radius: 15px;
    max-width: 420px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: popupSlideIn 0.4s ease-out;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: scale(0.7) translateY(-30px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.popup-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 20px;
    border-radius: 15px 15px 0 0;
    position: relative;
    text-align: center;
}

.popup-header h5 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.popup-body {
    padding: 30px 25px 25px;
}

.popup-body .form-control,
.popup-body .form-select {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.popup-body .form-control:focus,
.popup-body .form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(43, 119, 228, 0.1);
}

.popup-body .btn-primary {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border: none;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.2s, box-shadow 0.3s;
}

.popup-body .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(43, 119, 228, 0.3);
}

.popup-note {
    text-align: center;
    margin: 15px 0 0 0;
    font-size: 13px;
    color: #e53e3e;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .popup-content {
        margin: 20px;
        max-width: none;
        width: calc(100% - 40px);
    }

    .popup-header {
        padding: 15px;
    }

    .popup-header h5 {
        font-size: 1.1rem;
        padding-right: 30px;
    }

    .popup-body {
        padding: 20px 15px 15px;
    }
}

/* Location Section Styles */
.location-section {
    background: linear-gradient(135deg, #faf8fb 0%, #f4f0f5 100%);
}

/* Location Cards Container */
.location-cards-container {
    height: 100%;
}

/* Location Map Container */
.location-map-container {
    height: 100%;
    display: flex;
    align-items: stretch;
}

/* Accordion Styling */
.accordion {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.accordion-item {
    border: none;
    background: white;
    margin-bottom: 0;
}

.accordion-item:not(:last-child) {
    border-bottom: 1px solid #e9ecef;
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-button {
    background: white;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    padding: 20px 25px;
    border: none;
    box-shadow: none;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background: #f8f9fa;
    border-left: 4px solid var(--accent-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23722054'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.accordion-body {
    padding: 20px 25px;
    background: white;
}

.location-card {
    background: white;
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.location-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.location-title {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-title i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.location-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-list li {
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-dark);
}

.location-list li i {
    color: #28a745;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Direct Map Section */
.direct-map-section {
    background: white;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 100%;
    width: 100%;
}

/* Mobile Responsive for Location Section */
@media (max-width: 768px) {
    .location-cards-container {
        margin-bottom: 30px;
    }

    .accordion-button {
        font-size: 1.1rem;
        padding: 15px 20px;
    }

    .accordion-body {
        padding: 15px 20px;
    }

    .location-card {
        padding: 20px 15px;
        margin-bottom: 15px;
    }

    .location-title {
        font-size: 1.1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .location-list li {
        font-size: 13px;
        padding: 5px 0;
    }

    .direct-map-section {
        padding: 10px;
    }

    .location-map-container {
        min-height: 400px;
    }
}

/* About Dosti Group Section */
.about-dosti-group-section {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    position: relative;
    padding: 5rem 0;
}

.about-dosti-group-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="grain" width="100" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="%23ffffff" opacity="0.03"/><circle cx="30" cy="5" r="0.3" fill="%23ffffff" opacity="0.02"/><circle cx="50" cy="15" r="0.4" fill="%23ffffff" opacity="0.04"/><circle cx="70" cy="8" r="0.3" fill="%23ffffff" opacity="0.03"/><circle cx="90" cy="12" r="0.5" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="20" fill="url(%23grain)"/></svg>');
    z-index: 1;
}

.about-dosti-group-section .container {
    position: relative;
    z-index: 2;
}

.about-dosti-group-section .section-title {
    color: #f39c12;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ecf0f1;
    text-align: justify;
    margin-bottom: 2rem;
}

/* Stats Mini Cards */
.stats-mini-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.2rem 0.8rem;
    height: 100%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stats-mini-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.stats-mini-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stats-icon-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.stats-number-small {
    font-family: 'Nexa', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    color: #f39c12;
    margin-bottom: 0.3rem;
    line-height: 1;
}

.stats-unit-small {
    font-size: 0.6rem;
    font-weight: 600;
    color: #e67e22;
}

.stats-label-small {
    font-family: 'Nexa', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    color: #ecf0f1;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.stats-desc-small {
    color: #bdc3c7;
    font-size: 0.65rem;
    line-height: 1.2;
    text-align: center;
    text-transform: none;
}

/* RERA Information Card */
.rera-info-card {
    background: rgba(52, 73, 94, 0.9);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    margin-top: 2rem;
}

.rera-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #ecf0f1;
    margin-bottom: 1.5rem;
}

.rera-number {
    color: #f39c12;
    font-weight: 700;
}

.rera-link {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.rera-link:hover {
    color: #5dade2;
    text-decoration: underline;
}

.disclaimer-text {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #95a5a6;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* QR Code Container */
.qr-code-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 2rem 0;
}

.qr-code-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 300px;
    width: 100%;
}

.qr-code-image img {
    max-width: 180px;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.rera-qr-text {
    color: #2c3e50;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 600;
}

/* Policy Links */
.policy-links {
    margin-top: 2rem;
}

.policy-link {
    color: #3498db;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.policy-link:hover {
    color: #5dade2;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .stats-mini-card {
        padding: 1rem 0.6rem;
        min-height: 160px;
    }

    .stats-number-small {
        font-size: 1.2rem;
    }

    .stats-icon-small {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .about-dosti-group-section {
        padding: 3rem 0;
    }

    .about-dosti-group-section .section-title {
        font-size: 2rem;
    }

    .about-text {
        font-size: 1rem;
        text-align: left;
    }

    .stats-mini-card {
        padding: 0.8rem;
        margin-bottom: 1rem;
        min-height: 140px;
    }

    .stats-number-small {
        font-size: 1.1rem;
    }

    .stats-label-small {
        font-size: 0.7rem;
    }

    .stats-desc-small {
        font-size: 0.6rem;
    }

    .rera-info-card {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .qr-code-card {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .qr-code-image img {
        max-width: 150px;
    }
}

@media (max-width: 576px) {
    .stats-mini-card {
        padding: 0.6rem;
        min-height: 120px;
    }

    .stats-number-small {
        font-size: 1rem;
    }

    .stats-icon-small {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .stats-label-small {
        font-size: 0.65rem;
    }

    .stats-desc-small {
        font-size: 0.55rem;
    }

    .rera-text {
        font-size: 0.9rem;
    }

    .disclaimer-text {
        font-size: 0.8rem;
    }
}

/* About Dosti Group Section */
.about-dosti-group-section {
    background: linear-gradient(135deg, #fdf9fe 0%, #f7f0f8 100%);
    position: relative;
}

.about-dosti-group-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="grain" width="100" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="30" cy="5" r="0.3" fill="%23ffffff" opacity="0.08"/><circle cx="50" cy="15" r="0.4" fill="%23ffffff" opacity="0.12"/><circle cx="70" cy="8" r="0.3" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="12" r="0.5" fill="%23ffffff" opacity="0.09"/></pattern></defs><rect width="100" height="20" fill="url(%23grain)"/></svg>');
    z-index: 1;
}

.about-dosti-group-section .container {
    position: relative;
    z-index: 2;
}

/* Stats Cards */
.stats-card {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 54, 93, 0.05);
    position: relative;
    overflow: hidden;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.stats-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.15);
}

.stats-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.stats-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0.2;
    z-index: -1;
}

.stats-number {
    font-family: 'Nexa', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stats-unit {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-color);
}

.stats-label {
    font-family: 'Nexa', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stats-description {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
}


.qr-code-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(26, 54, 93, 0.1);
    border: 1px solid rgba(26, 54, 93, 0.05);
    position: relative;
    overflow: hidden;
}

.qr-code-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--secondary-color));
}

.qr-code-card h4 {
    color: var(--primary-color);
    font-family: 'Nexa', sans-serif;
    font-weight: 700;
}

.qr-code-image {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 15px;
    display: inline-block;
    border: 2px dashed #dee2e6;
}

/* Responsive Design for Stats Cards */
@media (max-width: 1200px) {
    .stats-card {
        padding: 1.5rem 1rem;
    }

    .stats-number {
        font-size: 2rem;
    }

    .stats-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .stats-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .stats-number {
        font-size: 2.2rem;
    }

    .stats-label {
        font-size: 1rem;
    }

    .stats-description {
        font-size: 0.85rem;
    }

    .qr-code-container {
        margin-top: 2rem;
        padding: 1.5rem 1rem;
    }

    .maharera-qr-dark {
        max-width: 180px;
    }

    .qr-label {
        font-size: 0.85rem;
    }

    .qr-code-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
}

@media (max-width: 576px) {
    .stats-card {
        padding: 1.25rem;
    }

    .stats-number {
        font-size: 1.8rem;
    }

    .maharera-qr-dark {
        max-width: 160px;
    }

    .qr-label {
        font-size: 0.8rem;
    }

    .qr-code-container {
        padding: 1.5rem 1rem;
    }

    .stats-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
}

/* Notification Animations */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Notification Styles */
.notification {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.notification-content i {
    flex-shrink: 0;
}

.notification-content span {
    flex: 1;
    font-weight: 500;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.gall-txt {
    text-align: center;
    font-size: 12px;
    position: absolute;
    font-weight: 800;
    bottom: 0;
    background: linear-gradient(45deg, black, transparent);
    line-height: 1;
    margin: 0;
    padding: 3px;
    color: #fff;
}