html {
    scroll-behavior: smooth;
}

:root {
    --primary-blue: #4066ff;
    --dark-bg: #131110;
    --wellness-green: #4066ff;
    --wellness-bg: #f2f6e9;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: white;
    margin: 0;
}

.nav-link {
    color: #ccc !important;
    font-size: 0.95rem;
    margin: 0 10px;
}

.nav-link:hover {
    color: #fff !important;
}

.btn-primary-custom {
    background: var(--primary-blue);
    border: none;
    padding: 10px 25px;
    font-weight: 600;
}

.orange-circle {
    width: 20rem;
    height: 20rem;
    background: radial-gradient(orange, transparent 70%);
    filter: blur(45px);
    top: -2rem;
    left: 5rem;
    z-index: -1;
    opacity: 0.5;
}

.image-container {
    width: 100%;
    max-width: 450px;
    height: 550px;
    border: 8px solid rgba(255, 255, 255, 0.1);
    border-radius: 250px 250px 0 0;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-card {
    transition: all 0.3s ease;
    cursor: pointer;
    max-width: 360px; 
    margin: 0 auto;
}

.property-card img {
    height: 250px !important; /* Height badhane se image kam horizontal lagegi */
    object-fit: cover;
    width: 100%;
}

.property-card:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.company-logo {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.3s;
}

.company-logo:hover {
    filter: none;
    opacity: 1;
}

/* Marquee Styles */
.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    cursor: pointer;
}

.marquee-content {
    display: flex;
    width: fit-content;
    animation: marquee-scroll 20s linear infinite;
    will-change: transform;
}

.marquee-content>div {
    flex-shrink: 0;
}

.marquee-content.paused {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Contact Section Styles */
.contact-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.contact-icon-box {
    width: 45px;
    height: 45px;
    background-color: #eef1ff;
    color: var(--primary-blue);
}

.btn-contact {
    background-color: #eef1ff;
    color: var(--primary-blue);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: var(--primary-blue);
    color: white;
}

/* Get Started CTA Styles */
.btn-get-started {
    background-color: transparent !important;
    border: 2px solid white !important;
    color: white !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-get-started:hover {
    background-color: white !important;
    color: var(--primary-blue) !important;
}

/* Footer Styles */
.footer-main {
    background: #0d0d0c;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-heading {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-link {
    color: #8a8a8a !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
}

.footer-link:hover {
    color: white !important;
    transform: translateX(5px);
}

.footer-link i {
    font-size: 0.85rem;
    color: var(--primary-blue);
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #8a8a8a;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
}

.footer-newsletter .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
}

.footer-newsletter .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-blue);
    box-shadow: none;
}

.footer-bottom {
    background: #090908;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Wellness Contact Card Styles - Glassmorphism Refinement */
.wellness-grid-section {
    background: linear-gradient(135deg, #ffffff 0%, #f9fbfd 100%);
    position: relative;
    z-index: 1;
}

.wellness-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.wellness-card:hover {
    transform: translateY(-2px) scale(.98);
    background: rgba(255, 255, 255, 0.65);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06) !important;
}

.wellness-icon-box {
    width: 65px;
    height: 65px;
    background-color: rgba(64, 102, 255, 0.1);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    transition: all 0.3s ease;
}

.wellness-card:hover .wellness-icon-box {
    background-color: var(--primary-blue);
    color: white;
}

.wellness-icon-box::after {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border: 1.5px dashed rgba(64, 102, 255, 0.3);
    border-radius: 50%;
}

.wellness-card h5 {
    color: #1f3e72;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.wellness-card p {
    color: #6a7695;
    font-weight: 500;
    margin-bottom: 0;
    font-size: 0.95rem;
}


/* Page Hero Styles */
.page-hero {
    position: relative;
    padding: 120px 0;
    text-align: center;
    background-color: var(--dark-bg);
    overflow: hidden;
    color: white;
}

.page-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: white;
}

.breadcrumb-nav {
    font-size: 1.1rem;
    font-weight: 600;
}

.breadcrumb-nav span {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-nav .active {
    color: var(--primary-blue);
}

.breadcrumb-separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

/* Google Map Styles */
.map-responsive {
    overflow: hidden;
    position: relative;
    height: 450px;
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

/* Property Details Styles */
.details-gallery-main {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 15px;
}

.details-gallery-thumbs {
    width: 100%;
    height: 100px;
    box-sizing: border-box;
    padding: 10px 0;
}

.details-gallery-thumbs .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

.details-gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid var(--primary-blue);
}

.spec-badge {
    background: #eef1ff;
    color: var(--primary-blue);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.details-price-card {
    background: white;
    padding: 30px;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.05);
}

/* Accordion Smoothing & Jump Prevention */
.value-accordion {
    min-height: 400px; /* Reserves space to prevent abrupt section jumping */
}

.accordion-collapse {
    transition: height 0.35s ease-in-out !important;
    will-change: height;
    overflow: hidden;
}

.collapsing {
    transition: height 0.35s ease-in-out !important;
    will-change: height;
}

.accordion-button:not(.collapsed) {
    background-color: white !important;
    color: var(--primary-blue) !important;
    box-shadow: none !important;
}

.accordion-button::after {
    transition: transform 0.35s ease-in-out !important;
}

.accordion-item {
    transition: box-shadow 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.05) !important;
}

@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.1rem !important;
        white-space: normal;
        max-width: 200px;
        display: inline-block;
    }
}