* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    /* Options: auto, thin, none */
    scrollbar-color: var(--primary-color) #f1f1f1;
    /* thumb-color track-color */
}

:root {
    --primary-color: #191970;
    --light-color: #fff;
    --light-gold: #EAE4D8;
    --dark-color: #000;
    --dark-two-color: #1E1E1E;
    --head-color: #D3AE34;
    --headtwo-color: #96824F;
    --line-height-tight: 1.2;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.65;
    --gray-two: #F7F7F7;
    --gray-three: #878787;
    --yellow-stroke: #EFBB0A;
    --yellow: #FED54A;
    --yellow-angle: linear-gradient(180deg, rgba(255, 214, 77, 1) 0%, rgba(237, 183, 0, 1) 100%);
    --yellow-angle-two: linear-gradient(232deg, rgba(255, 214, 77, 1) 0%, rgba(237, 183, 0, 1) 100%);
    --yellow-angle-three: linear-gradient(32deg, rgba(255, 214, 77, 1) 0%, rgba(237, 183, 0, 1) 100%);
    --line-height-tight: 1.2;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.65;
    --form-bg: #FCF8F1;
    --purple: linear-gradient(91deg, rgba(189, 32, 64, 1) 0%, rgba(47, 41, 104, 1) 29%, rgba(25, 16, 47, 1) 80%);
    --gold: linear-gradient(147.84deg, #FFE998 0.03%, #57370D 206.46%);
}

/* Custom Scrollbar Styles */
/* For WebKit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 12px;
    /* Width of vertical scrollbar */
    height: 12px;
    /* Height of horizontal scrollbar */
}

::-webkit-scrollbar-track {
    background: red;
    /* Light gray background for track */
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: #0A4833;
    /* Your primary color */
    border-radius: 6px;
    border: 2px solid #f1f1f1;
    /* Creates a border effect */
}

::-webkit-scrollbar-thumb:hover {
    background: #0d5a3e;
    /* Slightly lighter shade on hover */
}

::-webkit-scrollbar-thumb:active {
    background: #083d2a;
    /* Darker shade when clicked */
}

::-webkit-scrollbar-corner {
    background: red;
    /* Corner where horizontal and vertical scrollbars meet */
}

/* For Firefox */
/* Alternative Firefox approach with more control (if needed) */
html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;
}

header,
main,
nav,
section {
    display: block
}

ul,
ol {
    list-style-type: none;
}

a {
    color: inherit;
    text-decoration: none;
}

button:focus {
    outline: none;
    box-shadow: none;
}

@font-face {
    font-family: 'gen';
    src: url('../fonts/Urbanist-Regular.ttf') format('truetype');
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'gen-med';
    src: url('../fonts/Urbanist-Medium.ttf') format('truetype');
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'gen-bold';
    src: url('../fonts/Urbanist-Bold.ttf') format('truetype');
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'gen-semi';
    src: url('../fonts/Urbanist-SemiBold.ttf') format('truetype');
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'read';
    src: url('../fonts/RadingRegular.ttf') format('truetype');
    font-style: normal;
    font-display: swap;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'gen', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1 {
    font-size: clamp(2.5rem, 5vw + 1rem, 4rem) !important;
    font-weight: 700;
    line-height: var(--line-height-tight);
    letter-spacing: -0.02em;
    margin-bottom: clamp(1rem, 2vw, 2rem);
    font-family: 'read', sans-serif;
}

/* Heading 2 - Section headers */
h2 {
    font-size: clamp(2rem, 4vw + 0.5rem, 3rem) !important;
    /* 30px - 56px */
    font-weight: 600;
    line-height: var(--line-height-tight);
    letter-spacing: -0.015em;
    margin-bottom: clamp(0.875rem, 1.5vw, 1.75rem);
    font-family: 'read', sans-serif;
}

/* Heading 3 - Subsection headers */
h3 {
    font-size: clamp(1.5rem, 3vw + 0.25rem, 2.25rem) !important;
    /* 24px - 44px */
    font-weight: 600;
    line-height: var(--line-height-tight);
    letter-spacing: -0.01em;
    margin-bottom: clamp(0.75rem, 1.25vw, 1.5rem);
    font-family: 'read', sans-serif;
}

/* Heading 4 - Minor headers */
h4 {
    font-size: clamp(1.25rem, 2.5vw + 0.125rem, 1.75rem) !important;
    line-height: var(--line-height-normal);
    letter-spacing: -0.005em;
    margin-bottom: clamp(0.625rem, 1vw, 1.25rem);
    font-family: 'read', sans-serif;
}

/* Heading 5 - Small headers */
h5 {
    font-size: clamp(1.125rem, 2vw + 0.125rem, 1.5rem) !important;
    font-weight: 500;
    line-height: var(--line-height-normal);
    letter-spacing: 0;
    margin-bottom: clamp(0.5rem, 0.75vw, 1rem);
    font-family: 'read', sans-serif;
}

/* Heading 6 - Smallest headers */
h6 {
    font-size: clamp(1rem, 1.5vw + 0.125rem, 1.25rem);
    /* 16px - 22px */
    font-weight: 500;
    line-height: var(--line-height-normal);
    letter-spacing: 0.01em;
    margin-bottom: clamp(0.5rem, 0.5vw, 0.875rem);
    font-family: 'read', sans-serif;
}

/* Paragraph text */
p {
    font-size: clamp(1rem, 1.25vw + 0.75rem, 1.125rem) !important;
    /* 16px - 20px */
    font-weight: 400;
    line-height: var(--line-height-relaxed);
    margin-bottom: clamp(1rem, 2vw, 1.5rem) !important;
    font-family: 'gen', sans-serif;
}

/* Special paragraph variants */
p.lead {
    font-size: clamp(1.125rem, 1.5vw + 0.25rem, 1.5rem) !important;
    /* 18px - 24px */
    line-height: var(--line-height-normal);
    margin-bottom: clamp(1.5rem, 2.5vw, 2rem);
}

p.small {
    font-size: clamp(0.875rem, 0.75vw + 0.125rem, 1rem) !important;
    /* 14px - 16px */
    line-height: var(--line-height-normal);
}

p.caption {
    font-size: clamp(0.75rem, 0.5vw + 0.125rem, 0.875rem) !important;
    /* 12px - 14px */
    line-height: var(--line-height-normal);
    font-style: italic;
}

/* Responsive adjustments for better mobile experience */
@media (max-width: 768px) {

    h1,
    h2,
    h3 {
        margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
    }

    p {
        max-width: none;
    }
}

/* Print styles */
@media print {
    h1 {
        font-size: 28pt;
    }

    h2 {
        font-size: 24pt;
    }

    h3 {
        font-size: 20pt;
    }

    h4 {
        font-size: 18pt;
    }

    h5 {
        font-size: 16pt;
    }

    h6 {
        font-size: 14pt;
    }

    p {
        font-size: 12pt;
        line-height: 1.4;
    }
}

.wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* --------------Navbar-style---------- */
.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar.scrolled {
    position: fixed !important;
    top: 0 !important;
    background: var(--purple) !important;
    padding: 0.5rem 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Logo animation styles */
.navbar-brand img {
    margin-left: 8rem;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Hide white-logo by default */
.navbar-brand .white-logo {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
    justify-content: center;
    display: flex;
    top: 14px;
    position: absolute;
}

/* Show white-triangle by default */
.navbar-brand .white-triangle {
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* When scrolled: hide white-triangle and show white-logo with zoom effect */
.navbar.scrolled .white-triangle {
    opacity: 0;
    transform: scale(0.8);
}

.navbar.scrolled .white-logo {
    opacity: 1;
    transform: scale(1.1);
}

.navbar-brand {
    font-size: 2rem;
    font-weight: bold;
    color: white !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Logo animation styles */
.navbar-brand img {
    margin-left: 8rem;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.navbar-brand .white-triangle {
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin-left:5rem;
    padding:0 1.6rem 0 0.5rem;
}

.navbar.scrolled .white-triangle {
    opacity: 0;
    transform: scale(0.8);
}

.navbar.scrolled .navbar-brand img:not(.white-triangle) {
    opacity: 1;
    transform: scale(1.1);
}

.hamburger-btn {
    background-color: unset;
    border: unset;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.hamburger-btn:hover {
    transform: scale(1.04);
    -webkit-transform: scale(1.04);
    -moz-transform: scale(1.04);
    -ms-transform: scale(1.04);
    -o-transform: scale(1.04);
}

.book-btn {
    text-transform: uppercase;
    color: var(--light-color);
    text-decoration: unset;
    padding: 0.6rem 2rem;
    border: 1px solid var(--yellow);
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.search-ico {
    padding: 0.8rem;
    border: 1px solid var(--yellow);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.search-ico:hover {
    cursor: pointer;
    transform: scale(1.02);
    -webkit-transform: scale(1.02);
    -moz-transform: scale(1.02);
    -ms-transform: scale(1.02);
    -o-transform: scale(1.02);
}

.hamburger-btn {
    font-size: 1.2rem;
}

.book-call-btn {
    font-weight: 600;
    text-decoration: none;
}

/* Left Slide Menu Styles */
.slide-menu {
    position: fixed;
    top: 0;
    left: -350px;
    width: 350px;
    height: 100vh;
    background: var(--light-color);
    z-index: 10000;
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.slide-menu.active {
    left: 0;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.slide-menu-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
    overflow: hidden;
}

.slide-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid #e0e0e0;
    background: var(--primary-color);
}

.slide-menu-title {
    color: var(--light-color);
    font-size: 1.5rem !important;
    margin: 0;
    font-family: 'gen', sans-serif !important;
    letter-spacing: 1px;
}

.menu-close {
    background: none;
    color: var(--light-color);
    font-size: 1rem;
    cursor: pointer;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 1px solid var(--light-color);
    border-radius: 50%;
}

.menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.slide-menu-body {
    flex: 1;
    padding: 2rem 0;
}

.menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: 'gen', sans-serif !important;
    letter-spacing: 0.4px;
}

.menu-items li {
    margin: 0;
    border-bottom: 1px solid #f0f0f0;
}

.menu-items a {
    color: var(--dark-two-color) !important;
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.menu-items a:hover {
    background: var(--primary-color);
    color: var(--light-color) !important;
    transform: translateX(10px);
}

.menu-items a i {
    margin-right: 1rem;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.slide-menu-footer {
    padding: 2rem;
    border-top: 1px solid #e0e0e0;
    background: #f8f9fa;
    position: relative;
}

.contact-info a {
    margin: 0.5rem 0;
    color: var(--dark-two-color);
    font-size: 1rem !important;
    display: flex;
    align-items: center;
    font-family: 'gen', sans-serif;
    letter-spacing: 0.5px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    text-decoration: none;
}

.contact-info i {
    margin-right: 0.5rem;
    width: 16px;
    text-align: center;
    color: var(--primary-color);
}

.slide-menu-footer::after {
    content: '';
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.6;
    background-image: url('../img/banner/menu-ban.webp');
}

/* Animation for menu items */
.slide-menu.active .menu-items li {
    animation: slideInLeft 0.4s ease forwards;
    opacity: 0;
    transform: translateX(-30px);
}

.slide-menu.active .menu-items li:nth-child(1) {
    animation-delay: 0.1s;
}

.slide-menu.active .menu-items li:nth-child(2) {
    animation-delay: 0.15s;
}

.slide-menu.active .menu-items li:nth-child(3) {
    animation-delay: 0.2s;
}

.slide-menu.active .menu-items li:nth-child(4) {
    animation-delay: 0.25s;
}

.slide-menu.active .menu-items li:nth-child(5) {
    animation-delay: 0.3s;
}

.slide-menu.active .menu-items li:nth-child(6) {
    animation-delay: 0.35s;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {

   
    .slide-menu {
        width: 300px;
        left: -300px;
    }

    .slide-menu-header {
        padding: 1.5rem;
    }

    .slide-menu-title {
        font-size: 1.3rem;
    }

    .slide-menu-body {
        padding: 1rem 0;
    }

    .menu-items a {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .contact-info {
        font-size: 0.85rem;
    }

    .slide-menu-footer {
        padding: 1.5rem;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .slide-menu {
        width: 280px;
        left: -280px;
    }

    .slide-menu-header {
        padding: 1rem;
    }

    .menu-items a {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
}

.search-icon {
    font-size: 20px;
    color: #333;
    cursor: pointer;
    transition: color 0.3s;
}

.search-icon:hover {
    color: #007bff;
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    backdrop-filter: blur(12px);
    display: none;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.search-container {
    width: 90%;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    font-size: 18px;
    border: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    outline: none;
    background: white;
}

.close-search {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
}

.search-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.search-overlay.active .search-container {
    animation: slideInScale 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInScale {
    from {
        transform: translateY(-50px) scale(0.8);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.hero {
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: top center;
    background-size: cover;
    height: 100vh;
    position: relative;
    z-index: 1;
    /* Pin effect optimizations */
    will-change: transform !important;
    transform: translateZ(0) !important;
    /* Hardware acceleration */
}

/* Pin effect specific styles */
.pin-spacer {
    /* GSAP adds this class during pinning */
    overflow: hidden !important;
}

/* Ensure smooth animation for pinned content */
#banner-pin {
    transform: translateZ(0);
    /* Hardware acceleration */
    backface-visibility: hidden;
    /* Prevent flickering */
}

/* Pin effect section styling */
.pin-effect {
    position: relative;
    z-index: 2;
    background: var(--light-color);
    /* Ensure it appears above the pinned section */
    transform: translateZ(0);
    /* Hardware acceleration */
}

.hero .heading h1 {
    position: relative;
    text-align: center;
    bottom: -100px;
    right: 0;
    color: var(--light-color);
    width: 100%;
    font-size: 5rem !important;
}

.hero .heading p {
    position: relative;
    text-align: center;
    bottom: -100px;
    right: 0;
    color: var(--light-color);
    width: 100%;
}

.home-explore-ani {
    position: absolute;
    text-align: center;
    bottom: 01%;
    right: 0;
    color: var(--light-color);
    width: 100%;
    padding: 1rem;
    cursor: pointer;
}

/* ------animation------ */
.rotate-linear {
    animation: smooth-rotation 5s linear infinite forwards;
    will-change: transform;
    transform-origin: center;
    -webkit-animation: smooth-rotation 5s linear infinite forwards;
}

@keyframes smooth-rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.legacy-build {
    padding: clamp(2rem, 3vw, 5rem) 0 0;
    /* Pin effect enhancements */
    position: relative;
    z-index: 2;
    transition: all 0.6s ease;
    /* Remove any white gaps */
    margin-bottom: 0;
}

.legacy-build.pin-effect {
    /* Additional styling for when used as pin-effect */
    transform: translateZ(0);
    /* Hardware acceleration */
    will-change: transform, opacity;
}

/* Smooth entry animation for pin-effect content */
.pin-effect .legacy-counter {
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-bottom: 0;
    padding-bottom: 3rem;
}

.legacy-counter {
    background-color: var(--gray-two);
    padding: 3rem !important;
    margin-bottom: 0;
}

.legacy-build h2 {
    text-align: center;
    padding: 1rem 0;
}

.main-button {
    color: var(--dark-color);
    text-decoration: unset;
    padding: 0.6rem 2rem;
    border: 1px solid var(--dark-color);
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    background-color: transparent;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.main-button:hover {
    background-color: var(--light-color);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.legacy-build .stat-item {
    font-size: 3rem;
    background-image: linear-gradient(168deg, rgba(255, 233, 152, 1) 0%, rgba(87, 55, 13, 1) 80%);
    ;
    color: transparent;
    background-clip: text;
    font-weight: 800;
    font-family: 'gen-semi', sans-serif;
}

.legacy-build .stats-container {
    padding: 0 3rem 0 5rem;
}

.legacy-build .stats-container .stat-label {
    color: var(--dark-color);
}

/* Vertical Separator */
.vertical-separator {
    position: absolute;
    left: 07%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--head-color);
    transform: translateX(-50%);
}

.vertical-separator::before,
.vertical-separator::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #d4a574;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
}

.vertical-separator::before {
    top: 0;
}

.vertical-separator::after {
    bottom: 0;
}

/* --------Future project slider ---------- */
.featured {
    padding: clamp(3rem, 3vw, 5rem) 0 clamp(10rem, 3vw, 5rem);
    position: relative;
    overflow: hidden;
}

.featured .featured-title {
    color: var(--light-color);
    padding: 3rem 0 1rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

.featured .project-card {
    background: var(--light-color);
    padding: 1.5rem;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.featured .project-images {
    position: relative;
}

.featured .background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 1;
    z-index: 0;
    filter: brightness(0.9);
    transform: scale(1.02);
}

.featured .background-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(212, 165, 116, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.featured .background-overlay.changing {
    transform: scale(1.05);
    opacity: 1;
}

.featured .swiper {
    height: auto;
    border-radius: 0;
    width: 100%;
    padding-bottom: 20px;
}

.featured .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

.featured .project-image-display {
    overflow: hidden;
}

.featured .project-image-display img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    height: 400px;
}

.featured .project-tag {
    position: absolute;
    background: var(--primary-color);
    color: white;
    padding: 0.6rem 1rem;
    z-index: 10;
}

.featured .swiper-button-next,
.featured .swiper-button-prev {
    background: var(--gold);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--primary-color) !important;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    bottom: 40px;
    margin-top: 0;
    font-weight: 800;
    -webkit-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -moz-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -ms-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -o-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.featured .swiper-button-prev {
    left: calc(50% - 80px);
}

.featured .swiper-button-next {
    right: calc(50% - 80px);
}

.featured .swiper-button-next:hover,
.featured .swiper-button-prev:hover {
    background: var(--yellow-angle-three);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.5);
}

.featured .swiper-button-next:after,
.featured .swiper-button-prev:after {
    display: none;
}

.featured .project-details {
    padding: 0 0 0 2rem;
}

.featured .project-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.featured .badge-ramky {
    background: var(--yellow-angle);
    color: white;
    padding: 0.8rem 1rem;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
}

.featured .project-details h3 {
    font-family: 'gen', sans-serif;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.featured .project-location {
    color: var(--dark-color);
    margin-bottom: 2rem;
}

.featured .project-specs {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.featured .spec-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.featured .spec-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured .spec-icon img {
    width: 38px;
}

.featured .spec-details h6 {
    margin: 0;
    color: var(--dark-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'gen', sans-serif;
    font-size: 0.875rem;
}

.featured .spec-details p {
    margin: 0 !important;
    font-family: 'gen', sans-serif;
    letter-spacing: 0.5px;
    font-weight: 600;
    font-size: 0.875rem;
}

.featured .cta-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.featured .price-btn {
    border: unset;
    background: var(--gold);
    color: var(--primary-color);
    padding: 1rem 1.8rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.price-btn:hover {
    background: var(--yellow-angle-three);
    transform: translateY(-2px);
}

.featured .call-btn {
    background: var(--gold);
    color: var(--primary-color);
    padding: 1rem 1.1rem;
    border-radius: 30px;
    border: unset;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.call-btn:hover {
    background: var(--yellow-angle-three);
    transform: scale(1.1);
}

.swiper-button-prev {
    left: calc(18% - 80px) !important;
}

.swiper-button-next {
    right: calc(18% - 80px) !important;
}

.feature-custom {
    top: 10%;
    position: relative;
}

/* ----------press release------------- */
.press-release {
    padding: clamp(3rem, 3vw, 3rem) 0;
}

.press-release .building-card {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 500px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.press-release .building-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
    position: relative;
}

.press-release .building-card:hover .building-image {
    transform: scale(1.03);
}

.press-release .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
}

.press-release .info-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 10;
}

.press-release .info-icon:hover img {
    -webkit-animation: slide-in-left 0.8s both;
    animation: slide-in-left 0.8s both;
}

/* .press-release .building-card:hover .info-icon {
    background: var(--yellow-angle-three);
    transform: scale(1.1) translateY(-160px);
} */
.press-release .text-content {
    position: absolute;
    bottom: 0%;
    left: 0;
    right: 0;
    /* background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(30, 30, 30, 0.4)); */
    color: white;
    padding: 1rem 1.5rem;
    transition: bottom 0.4s ease;
}

.press-release .text-content p {
    margin-bottom: 0.5rem !important;
}

/* .press-release .building-card:hover .text-content {
    bottom: 0;
} */
.press-release .heading h2 {
    text-align: center;
    color: var(--primary-color);
    padding: 1rem 0;
}

.press-release .explore-btn {
    text-transform: uppercase;
    color: var(--primary-color);
    text-decoration: unset;
    padding: 0.6rem 2rem;
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    background-color: transparent;
}

/* --------home-award------ */
.home-award {
    background: var(--purple) !important;
    padding: clamp(3rem, 3vw, 1rem) 0 0;
    position: relative;
    z-index: 1;
}

.home-award::after {
    content: '';
    background-image: url('../img/banner/bg-award.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: -1;
}

.home-award .heading h2 {
    color: var(--head-color);
}

.home-award .year-details h3 {
    color: var(--head-color);
}

.home-award .year-details {
    color: var(--light-color);
}

/* ---------home-testimonial---------- */
.testimonial {
    padding: clamp(3rem, 3vw, 1rem) 0;
    background-color: var(--light-gold);
}

.testimonial h2 {
    text-align: center;
    color: var(--primary-color);
    padding-bottom: 2rem;
}

.testimonial .image-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.testimonial .image-card:hover {
    transform: translateY(-8px);
    padding: 1rem;
    background: var(--gold);
}

.testimonial .card-image {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.testimonial .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial .image-card:hover .card-image img {
    transform: scale(1.05);
}

/* Play Button with Ripple Animation */
.testimonial .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: visible;
}

/* Ripple effect animation */
.testimonial .play-button::before,
.testimonial .play-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ripple 2s infinite;
    pointer-events: none;
}

.testimonial .play-button::after {
    animation-delay: 1s;
}

/* Ripple keyframe animation */
@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

.testimonial .image-card:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    animation: pulse-play-button 1.5s infinite;
}

/* Enhanced hover effect with ripple pause */
.testimonial .image-card:hover .play-button::before,
.testimonial .image-card:hover .play-button::after {
    animation-play-state: paused;
    opacity: 0;
}

/* Pulsing effect keyframe */
@keyframes pulse-play-button {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1.1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Card Content (Single Block) */
.testimonial .card-content {
    padding: 0.4rem 0;
}

.testimonial .card-content {
    margin: 0 !important;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.testimonial .image-card:hover .project-author {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0 !important;
}

/* Overlay Content (Hidden by default) */
.testimonial .overlay-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial .image-card:hover .overlay-content {
    max-height: 200px;
    opacity: 1;
}

.testimonial .overlay-description {
    margin: 0 !important;
    font-size: 14px;
    line-height: 1.6;
    color: var(--dark-color);
}

.testimonial .read-more-btn {
    display: inline-block;
    color: var(--dark-color);
    text-decoration: underline;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.testimonial .read-more-btn:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.modal.testi {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
}

.modal.testi:target {
    display: flex;
    opacity: 1;
}

.modal.testi[style*="display: block"] {
    display: flex !important;
    opacity: 1;
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.8) translateY(-50px);
        opacity: 0;
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.modal.testi .modal-content {
    margin: auto;
    max-width: 800px;
    max-height: 90%;
    position: relative;
    animation: modalSlideIn 0.3s ease;
    width: 90%;
}

.modal.testi .modal-video {
    width: 100%;
    height: 450px;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    pointer-events: auto;
    border: none;
}

.modal.testi .video-close-wrapper {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.modal.testi .video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    width: 100%;
}

.modal.testi .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

.modal.testi .modal-close {
    position: absolute;
    right: -15px;
    top: -15px;
    color: var(--light-color);
    font-size: 2rem;
    cursor: pointer;
    border: none;
    padding: 5px 10px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: block;
    background-color: var(--primary-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    z-index: 1001;
    padding-bottom: 0.7rem !important;
}

.modal.testi .modal-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.testimonial .view-btn {
    text-transform: uppercase;
    color: var(--primary-color);
    text-decoration: unset;
    padding: 0.6rem 2rem;
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    background-color: transparent;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.testimonial .view-btn:hover {
    background-color: var(--light-color);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

/* ----------home-blogs-------------  */
.home-card-details {
    color: var(--light-color);
    background-color: var(--dark-two-color);
    padding: 1.5rem;
    margin: 0 2rem;
    position: absolute;
    bottom: -16%;
}

.home-card-details p {
    font-size: 0.875rem;
}

.home-blog-date p:last-child {
    font-size: 1rem;
    color: var(--yellow);
    text-decoration: underline;
    text-underline-offset: 5px;
    cursor: pointer;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.home-blog-date:hover p:last-child {
    transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
}

.home-blog-details {
    padding: 0.5rem;
    text-align: center;
}

.home-blog-date {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}

.home-blog-date p {
    margin-bottom: 0 !important;
}

.home-blogs {
    padding: clamp(3rem, 3vw, 1rem) 0 8rem;
}

.home-blogs .heading h2 {
    text-align: center;
    color: var(--primary-color);
    padding: 1rem 0;
}

.home-blogs img {
    width: 100%;
}

/* ---------resdential-properties------------ */
.resi-properties {
    padding: clamp(3rem, 3vw, 1rem) 0 clamp(3rem, 3vw, 1rem);
    background-color: var(--light-gold);
    overflow: hidden;
}
.resi-properties .low{
    font-size:1.1rem;
    margin-top:0.6rem;
    letter-spacing:1px;
}

.resi-properties .heading h2 {
    text-align: center;
    color: var(--primary-color);
    padding: 1rem 0;
}

/* Swiper container styling */
.resi-properties .swiper {
    width: 100%;
    padding: 20px 0 80px 0;
}

.resi-properties .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.resi-properties .property-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    max-width: 380px;
    width: 100%;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resi-properties .property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* Swiper navigation arrows */
.resi-properties .swiper-button-next,
.resi-properties .swiper-button-prev {
    background: var(--gold);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    margin-top: -22px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    right: -40px !important;
}

.resi-properties .swiper-button-next:after,
.resi-properties .swiper-button-prev:after {
    display: none;
}

.resi-properties .swiper-button-next:hover,
.resi-properties .swiper-button-prev:hover {
    background: var(--yellow-angle-three);
    transform: scale(1.1);
}

.resi-properties .swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Swiper pagination */
.resi-properties .swiper-pagination-bullet {
    background: #bdc3c7;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.resi-properties .swiper-pagination-bullet-active {
    background: #3498db;
    opacity: 1;
    transform: scale(1.2);
}

.resi-properties .property-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 15px;
    margin: 15px;
    width: calc(100% - 30px);
    height: 260px;
}

.resi-properties .property-content {
    padding: 0 25px 25px 25px;
}

.resi-properties .property-title {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
    line-height: 1.3;
    font-family: 'gen', sans-serif;
}

.resi-properties .property-location {
    color: var(--dark-color);
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 400;
    margin-bottom: 0 !important;
}

.resi-properties .property-details {
    margin-bottom: 20px;
}

.resi-properties .detail-label {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 3px;
    font-family: 'gen', sans-serif;
}

.resi-properties .detail-value {
    color: var(--gray-three);
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-family: 'gen', sans-serif;
}

.resi-properties .price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    font-family: 'gen', sans-serif;
}

.resi-properties .price {
    color: var(--primary-color);
    font-size: 1.6rem;
    font-family: 'gen-bold', sans-serif;
}

.resi-properties .rupee-symbol {
    font-size: 1.3rem;
}

.resi-properties .view-details-btn {
    text-transform: uppercase;
    font-family: 'gen-semi', sans-serif;
    font-size: 0.775rem;
    color: var(--dark-color);
    text-decoration: unset;
    padding: 0.6rem 2rem;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    background: var(--gold);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
}

.resi-properties .view-details-btn:hover {
    color: var(--dark-color);
    transform: translateY(-2px);
}

/* Responsive adjustments for .resi-properties */
@media (max-width: 576px) {
    .resi-properties {
        margin: 10px;
        padding: 15px 0;
        border-radius: 10px;
    }

    .resi-properties .property-card {
        margin: 0 10px;
        max-width: 320px;
    }

    .resi-properties .property-content {
        padding: 0 20px 20px 20px;
    }

    .resi-properties .price {
        font-size: 1.4rem;
    }

    .resi-properties .view-details-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .resi-properties .swiper-button-next,
    .resi-properties .swiper-button-prev {
        width: 36px;
        height: 36px;
        margin-top: -18px;
    }

    .resi-properties .swiper-button-next:after,
    .resi-properties .swiper-button-prev:after {
        font-size: 14px;
    }
}

.get-touch {
    background-image: url('../img/banner/get-touch.webp');
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    padding: clamp(3rem, 3vw, 2rem) 0;
}

.form-container {
    background: var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-top: 50px;
    max-width: 450px;
}

.form-title {
    color: var(--dark-color);
    margin-bottom: 30px;
}

.form-control {
    border: none;
    border-radius: 30px !important;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    font-size: 16px;
    box-shadow: none;
    -webkit-border-radius: 30px !important;
    -moz-border-radius: 30px !important;
    -ms-border-radius: 30px !important;
    -o-border-radius: 30px !important;
}

.form-control:focus {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.3);
    border: none;
}

.form-control::placeholder {
    font-family: 'gen', sans-serif !important;
    color: var(--gray-three);
    letter-spacing: 1px;
    color: var(--gray-three);
}

.btn-submit {
    background: transparent;
    border: 1px solid var(--light-color);
    border-radius: 30px;
    padding: 0.6rem 1.6rem;
    color: var(--primary-color);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    font-family: 'gen-semi', sans-serif;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 143, 0, 0.4);
    color: var(--primary-color);
}

.form-check {
    margin: 20px 0;
}

.form-check-input:checked {
    background-color: #ff8f00;
    border-color: #ff8f00;
}

.form-check-label {
    color: var(--dark-color);
    font-size: 12px;
    font-family: 'gen', sans-serif;
}

.country-code {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 25px 0 0 25px;
    padding: 15px 15px;
    font-size: 16px;
}

.phone-input {
    border-radius: 0 25px 25px 0;
}

/* --------footer---------- */
.mul-ft-text {
    display: none;
}

.ft-main {
    background-color: #e8e8e8;
    padding: 40px 0;
    font-family: Arial, sans-serif;
}

.ft-toggle-btn {
    background: var(--gold);
    border: none;
    padding: 0.6rem 0.8rem;
    border-radius: 30px;
    cursor: pointer;
    margin: 20px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.ft-toggle-btn:hover {
    background: var(--yellow-angle-three);
    border: none;
    border: 2px solid var(--yellow-stroke);
}

.ft-toggle-btn:focus {
    outline: none !important;
}

.ft-main .ft-container {
    max-width: 1230px;
    margin: 0 auto;
    padding: 0 15px;
}

.ft-main .ft-container .col-lg-2:first-child {
    width: 22% !important;
}

.ft-main .ft-container .col-lg-2:nth-child(2) {
    width: 15% !important;
}

.ft-main .ft-container .col-lg-2:nth-child(3) {
    width: 15% !important;
}

.ft-main .ft-container .col-lg-2:nth-child(4) {
    width: 14% !important;
}

.ft-main .ft-section {
    margin-bottom: 30px;
}

.ft-main .ft-section-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: 'gen', sans-serif;
}

.ft-main .ft-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ft-main .ft-list-item {
    margin-bottom: 8px;
}

.ft-main .ft-list-link {
    color: var(--dark-color);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    font-family: 'gen', sans-serif;
}

.ft-main .ft-list-link:hover {
    color: #333;
}

.ft-main .ft-contact-info {
    margin-bottom: 20px;
}

.ft-main .ft-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
}

.ft-main .ft-contact-icon {
    width: 20px;
    margin-right: 10px;
    margin-top: 2px;
    color: #666;
}

.ft-main .ft-contact-text {
    line-height: 1.4;
}

.ft-main .ft-social-section {
    margin-top: 30px;
}

.ft-main .ft-social-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.ft-main .ft-social-links {
    display: flex;
    gap: 15px;
}

.ft-main .ft-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #333;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.ft-main .ft-social-link:hover {
    background-color: #555;
    color: white;
}

.ft-main .ft-social-icon {
    font-size: 16px;
}

@media (max-width: 768px) {
    .ft-main {
        padding: 30px 0;
    }

    .ft-main .ft-section {
        margin-bottom: 25px;
    }

    .ft-main .ft-social-links {
        justify-content: flex-start;
    }
}

.resi-project-nav {
    position: absolute;
    right: 50%;
    bottom: 40px;
}

.multi-adv {
    padding: clamp(3rem, 3vw, 1rem) 0 2rem;
    background-color: var(--light-color);
}

.multi-adv p {
    text-align: start;
    margin-bottom: 0 !important;
}

.copy-right {
    background-color: var(--gray-two);
    padding: clamp(2rem, 3vw, 1rem) 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.copy-right a {
    font-family: 'gen', sans-serif;
    color: var(--dark-color);
    text-decoration: none;
}

/* ---------whatsapp--------------- */
.whatsapp-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 9999;
    animation: ripple-container 2s infinite;
    border-radius: 50%;
}

.whatsapp-container.show {
    opacity: 1;
    transform: scale(1);
}

@keyframes ripple-container {
    0% {
        box-shadow: 0 0 0 0 #251e4f;
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-button {
    display: flex;
  align-items: center;
  gap: 10px;
  background: #19197069;
  color: white;
  padding: 4px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  justify-content: center;
  backdrop-filter: blur(10px);
  z-index: 1;
}

.whatsapp-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.whatsapp-button:hover::before {
    width: 300px;
    height: 300px;
}

.whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 25, 137, 0.4);
}

.whatsapp-button:active {
    transform: translateY(0);
}

.whatsapp-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp-icon svg {
    width: 20px;
    height: 20px;
    fill: #25D366;
}

.close-button {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    font-size: 16px;
    font-weight: bold;
}

.close-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.close-button:active {
    transform: scale(0.95);
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    }

    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    }

    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    }
}

.whatsapp-button.pulse {
    animation: pulse 2s infinite;
}

/* -----back to top----- */
.back-to-top {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    visibility: hidden;
    -webkit-transition: .3s all linear;
    transition: .3s all linear;
}

.back-to-top.show {
    bottom: 30px;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    visibility: visible;
    z-index: 999;
}

.back-to-top a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    box-shadow: 0px 5px 30px rgba(15, 8, 112, 0.6);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    line-height: 35px;
    bottom: 18%;
    right: 4%;
    position: fixed;
    z-index: 998;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.back-to-top.show a:hover .top-line {
    height: 14px;
    border-color: #000;
    background: #000;
    top: 12px;
}

.back-to-top a:hover .top-array {
    border-color: #000;
    top: 11px;
}

.back-toop-tooltip {
    position: absolute;
    top: -65px;
    -webkit-transform: rotate(-90deg) translateX(20px);
    transform: rotate(-90deg) translateX(20px);
    width: 100px;
    left: -33px;
    -webkit-transition: .6s all ease;
    transition: .6s all ease;
    line-height: 1;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    visibility: hidden;
}

.back-toop-tooltip span {
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.back-to-top a:hover .back-toop-tooltip {
    -webkit-transform: rotate(-90deg) translateX(5px);
    transform: rotate(-90deg) translateX(5px);
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    visibility: visible;
}

.back-to-top.show a {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.back-to-top a:hover {
    background: var(--primary-color);
    color: #000;
}

.back-to-top.home6 a {
    background: #00c6c6;
}

/* ----btn-animation---- */
.cus-nav .btn-text {
    display: inline-block;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
}

.cus-nav .btn-text:hover span:first-child {
    transform: translateY(-180%) skewY(7deg);
    -webkit-transform: translateY(-180%) skewY(7deg);
    -moz-transform: translateY(-180%) skewY(7deg);
    -ms-transform: translateY(-180%) skewY(7deg);
    -o-transform: translateY(-180%) skewY(7deg);
}

.cus-nav .btn-text:hover span+span {
    transform: translateY(-130%) skewY(0deg);
    color: #EAC250;
}

.cus-nav span {
    display: block;
    transition: transform .5s ease-in-out;
}

.cus-nav span+span {
    position: absolute;
    top: 94%;
    transform-origin: left center;
    transform: skewY(30deg);
    transition: transform .5s ease-in-out;
}

.cus-nav .downloadbtn:hover span+span {
    color: #fff;
}

/* -----text-animation----  */
.splitting span:not(.whitespace) {
    position: relative;
    overflow: hidden;
    display: inline-block;
    vertical-align: top;
}

.splitting span .word {
    position: relative;
    transform: translate(0, 100%);
    transition: transform 0.6s cubic-bezier(0.3, 0, 0.3, 1);
    -webkit-transition: transform 0.6s cubic-bezier(0.3, 0, 0.3, 1);
}

.splitting span .word {
    -webkit-transition-delay: calc(100ms + 100ms * var(--line-index));
    transition-delay: calc(100ms + 100ms * var(--line-index));
}

.animated--active .splitting[data-scroll=in] span .word,
.animated--swiper--active .swiper-slide-active .splitting span .word {
    transform: translate(0, 0%);
}

.puff-in-center {
    -webkit-animation: puff-in-center 0.7s cubic-bezier(0.470, 0.000, 0.745, 0.715) both;
    animation: puff-in-center 0.7s cubic-bezier(0.470, 0.000, 0.745, 0.715) both;
}

@-webkit-keyframes puff-in-center {
    0% {
        -webkit-transform: scale(2);
        transform: scale(2);
        -webkit-filter: blur(4px);
        filter: blur(4px);
        opacity: 0;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

@keyframes puff-in-center {
    0% {
        -webkit-transform: scale(2);
        transform: scale(2);
        -webkit-filter: blur(4px);
        filter: blur(4px);
        opacity: 0;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--purple);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: transform 0.8s ease;
}

.preloader.slide-up {
    transform: translateY(-100%);
}

/* Image Container */
/* .image-container {
            width: 100px;
            height: 100px;
        } */
.preloader-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: imageSlideUp 1.5s ease forwards;
}

@keyframes imageSlideUp {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ----property-search---- */
.property-search {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.19) 25%, rgba(255, 255, 255, 0.2) 77%, rgba(255, 255, 255, 0.52) 100%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5.1px);
    -webkit-backdrop-filter: blur(5.1px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 15px 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    font-family: 'gen', sans-serif;
}

.property-search .form-control {
    border: none;
    border-radius: 25px;
    padding: 12px 20px 30px;
    font-size: 14px;
    color: #333;
    margin: 0;
    background-color: transparent;
}

.property-search .form-control::placeholder {
    color: var(--light-color);
}

/* Target the first form control specifically by ID with browser prefixes */
.property-search #locationSearch::-webkit-input-placeholder {
    color: #000 !important;
    opacity: 1 !important;
}

.property-search #locationSearch::-moz-placeholder {
    color: #000 !important;
    opacity: 1 !important;
}

.property-search #locationSearch:-ms-input-placeholder {
    color: #000 !important;
    opacity: 1 !important;
}

.property-search #locationSearch::placeholder {
    color: #000 !important;
    opacity: 1 !important;
}

.property-search .form-control:focus {
    box-shadow: none;
    outline: none;
    background: transparent;
    border: 1px solid var(--light-color);
}

.property-search .form-select {
    border: none;
    background: transparent;
    border-radius: 25px;
    padding: 12px 10px 30px;
    font-size: 14px;
    color: var(--light-color);
}

.property-search .form-select:focus {
    box-shadow: none;
    outline: none;
    background: rgba(255, 255, 255, 0.8);
}

.property-search .btn-search {
    background: #fff;
    border: none;
    border-radius: 30px;
    padding: 16px 30px;
    font-family: 'gen', sans-serif;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.property-search .property-subicon {
    position: absolute;
    top: 15px;
    right: 35px;
    transition: color 0.3s ease;
}

/* Change property-subicon color to white when locationSearch is focused/clicked */
.property-search #locationSearch:focus+.property-subtext+.property-subicon,
.property-search #locationSearch:focus+.property-subtext+.property-subicon i {
    color: white !important;
}

.property-search .btn-search:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.property-search .location-dropdown {
    position: absolute;
    top: 100%;
    left: 25px;
    right: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    overflow-y: auto;
    display: none;
}

.property-search .location-dropdown.show {
    display: block;
}

.property-search .location-item {
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
}

.property-search .location-item:hover {
    background: #f8f9fa;
}

.property-search .location-item:last-child {
    border-bottom: none;
}

.property-search .location-item i {
    color: #666;
    margin-right: 10px;
    font-size: 12px;
}

.property-search .location-item span {
    color: #333;
    font-size: 14px;
}

.property-search .background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23667eea" width="1200" height="600"/><rect fill="%23764ba2" width="1200" height="600" opacity="0.8"/></svg>') center/cover;
    z-index: -1;
}

.property-search .close-btn {
    background-color: transparent;
    position: absolute;
    bottom: 100%;
    right: -15px;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--yellow-stroke);
    cursor: pointer;
    transition: all 0.3s ease;
}

.property-search .close-btn:hover {
    background: transparent;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .property-search .property-search {
        margin: 20px;
        padding: 20px;
    }

    .property-search .property-search .row>div {
        margin-bottom: 10px;
    }
}

.property-search .form-control.hide-subtext {
    padding-bottom: 12px;
    border: 1px solid var(--light-color);
    color: var(--light-color);
}

.property-search .form-select.hide-subtext {
    padding-bottom: 12px;
}

.property-search .property-subtext {
    position: absolute;
    left: 15%;
    bottom: 14%;
    color: #fff;
}

.press-toggle-btn {
    background: var(--yellow-angle-two);
    border: none;
    padding: 0.6rem 0.8rem;
    border-radius: 30px;
    cursor: pointer;
    margin: 20px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border: 2px solid var(--yellow-stroke);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.iti {
    width: 100% !important;
}

/* .arrow-anim {
    -webkit-animation: slide-in-left 0.8s both infinite;
            animation: slide-in-left 0.8s both infinite;
} */
@-webkit-keyframes slide-in-left {
    0% {
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slide-in-left {
    0% {
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

/* 
#banner-pin{
      height: 100vh;
            position: sticky;
            top: 0;
            z-index: 1;
} */
#enquiryType {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 40px;
    font-family: 'gen', sans-serif;
    padding: 0.4rem 0 0.4rem 0.8rem;
    color: #696b6d;
}

/* -----about-us----- */
.contact {
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: top center;
    background-size: cover;
    height: 100vh;
    position: relative;
    z-index: 1;
    /* Pin effect optimizations */
    will-change: transform !important;
    transform: translateZ(0) !important;
    /* Hardware acceleration */
}

.contact-get-touch {
    background-image: url('../img/banner/contact.jpg');
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    padding: clamp(3rem, 3vw, 2rem) 0;
}

.contact-get-touch h1 {
    color: var(--primary-color);
}

.indian-sales {
    padding: clamp(3rem, 3vw, 1rem) 0 clamp(3rem, 3vw, 1rem);
    overflow: hidden;
}

.indian-sales .heading h3 {
    text-align: center;
    color: var(--primary-color);
    padding: 1rem 0;
}

/* Swiper container styling */
.indian-sales .swiper {
    width: 100%;
    padding: 20px 0 110px 0;
}

.indian-sales .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Swiper navigation arrows */
.indian-sales .swiper-button-next,
.indian-sales .swiper-button-prev {
    background: var(--gold);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    margin-top: -22px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    right: -40px !important;
}

.indian-sales .swiper-button-next:after,
.indian-sales .swiper-button-prev:after {
    display: none;
}

.indian-sales .swiper-button-next:hover,
.indian-sales .swiper-button-prev:hover {
    background: var(--yellow-angle-three);
    transform: scale(1.1);
}

.indian-sales .swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.indian-sales .swiper-pagination-bullet-active {
    background: #3498db;
    opacity: 1;
    transform: scale(1.2);
}

.indian-sales .sales-card {
    padding: 0.8rem;
    border: 2px solid;
    border-image: linear-gradient(147.84deg, #FFE998 0.03%, #57370D 206.46%) 1;
}

.indian-sales .sales-card h4 {
    text-align: center;
    margin-top: 2rem;
}

.indian-sales .sales-card p {
    text-align: center;
}

.indian-sales .sales-card h4 img {
    height: 25px;
    padding-right: 0.5rem;
    box-shadow: unset;
}

.indian-sales .sales-card img {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
}

.sales-project-nav {
    position: relative;
    right: 7%;
    top: 20%;
}

.map-pop-card {
    width: 100%;
    background-color: #000066;
    color: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    position: absolute;
    top: 07%;
    right: 2%;
}

.map-pop-card .contact-info h3 {
    color: #FFD700;
    font-size: 2rem;
    text-align: left;
    color: var(--yellow)
}

.map-pop-card .contact-detail p {
    font-size: 1.2rem !important;
    color: var(--light-color);
    margin: 0;
    font-weight: 600;
    margin-bottom: 0.8rem !important;
}

.map-pop-card .contact-detail span {
    font-weight: 500;
    opacity: 0.8;
    color: var(--light-color);
}

.map-pop-card .contact-detail span {
    display: inline-block;
    width: 60px;
    margin-right: 10px;
    color: var(--light-color);
}

.contact-map {
    padding-top: 0!important;
    padding: clamp(3rem, 3vw, 1rem) 0 clamp(3rem, 3vw, 1rem);
    overflow: hidden;
}

.contact-map .heading h3 {
    text-align: center;
    color: var(--primary-color);
    padding: 1rem 0;
}

/* Swiper container styling */
.contact-map .swiper {
    position: relative;
}

/* Swiper navigation arrows */
.contact-map .map-nav .swiper-button-next,
.contact-map .map-nav .swiper-button-prev {
    background: var(--gold);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    margin-top: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    margin-left: 0;
    margin-right: 0;
}

.contact-map .map-nav .swiper-button-next:after,
.contact-map .map-nav .swiper-button-prev:after {
    display: none;
}

.contact-map .map-nav .swiper-button-next:hover,
.contact-map .map-nav .swiper-button-prev:hover {
    background: var(--yellow-angle-three);
    transform: scale(1.1);
}

.contact-map .map-nav .swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.contact-map .map-nav {
    position: absolute;
    bottom: 20px;
    right: 5%;
    top: -75%;
    display: flex;
    gap: 10px;
    z-index: 10;
}

/* ------about-us-section----- */
.about {
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: top center;
    background-size: cover;
    height: 100vh;
    position: relative;
    z-index: 1;
}

.who-we-are {
    padding: clamp(6rem, 3vw, 2rem) 0;
    background-color: var(--light-gold);
}

.who-we-are .small {
    font-size: 1rem;
}

.who-we-are h2 {
    text-align: center;
    color: var(--primary-color);
}

.vision {
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    position: relative;
    z-index: 1;
    padding: clamp(6rem, 3vw, 2rem) 0;
}

.about-vision .container {
    padding: clamp(4rem, 3vw, 2rem) 0;
    border-bottom: 1px solid var(--dark-color);
}

.about-mission .container {
    padding: clamp(4rem, 3vw, 2rem) 0;
}

.vision-head {
    position: absolute;
    left: 05%;
    top: 10%;
    color: var(--primary-color);
    z-index: 10;
}

.about-vision h2 {
    color: var(--primary-color)
}

.about-mission h2 {
    color: var(--primary-color)
}

.vision-txt {
    position: absolute;
    bottom: 20%;
}

.vision-head-mob {
    color: var(--primary-color);
    margin-top: 1rem;
}

.about-toggle-btn {
    background: var(--gold);
    border: none;
    padding: 0.6rem 0.8rem;
    border-radius: 30px;
    cursor: pointer;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.abtImgOne {
    display: none;
}

.abtImgTwo {
    display: none;
}

.chair-img-txt {
    position: absolute;
    bottom: 10%;
    margin: 3rem;
    padding: 4rem 2rem 2rem;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.chair-img-txt p::before {
    content: "";
    background-image: url('../img/icon/quote-front.svg');
    width: 1rem;
    height: 2rem;
    position: absolute;
    background-repeat: no-repeat;
    left: 10px;
    top: 50px;
}

.chair-img-txt p::after {
    content: "";
    background-image: url('../img/icon/quote-back.svg');
    width: 1rem;
    height: 2rem;
    position: absolute;
    background-repeat: no-repeat;
    right: 20px;
    top: 50px;
}

.chairman-msg-txt {
    background-color: var(--primary-color);
    padding: 4rem 4rem !important;
}

.abt-button {
    color: var(--light-color);
    text-decoration: unset;
    padding: 0.6rem 2rem;
    border: 1px solid var(--light-color);
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    background-color: transparent;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.abt-button:hover {
    background-color: var(--light-color);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.chairman-msg-txt .heading h3 {
    color: var(--head-color);
    padding-bottom: 1rem;
}

.chairman-msg-txt h5 {
    color: var(--light-color);
    padding-bottom: 0;
}

.chairman-msg-txt p {
    color: var(--light-color);
}

.core-values {
    padding: clamp(4rem, 3vw, 2rem) 0;
    background-color: var(--light-gold);
}

.core-values h2 {
    color: var(--primary-color);

}

.core-values h5 {
    color: var(--primary-color);
    font-family: 'gen';
}

.core-value-box {
    text-align: center;
    margin-bottom: 2rem;
}

.core-value-box .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.core-value-box .icon img {
    background: var(--gold);
    padding: 2rem 2.2rem;
    border-radius: 50%;
    margin: 0.3rem;
    object-fit: contain;
    overflow: visible;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    will-change: transform;
}

.core-value-box:hover .icon img {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    background: var(--yellow-angle-three);
    transition: all 0.3s ease;
    cursor: pointer;
}

.core-value-box h4 {
    color: var(--primary-color);
    padding: 0rem 0 1rem;

}


.hover-container {
    display: flex;
    overflow: hidden;
    gap: 1.2rem;
}

.hover-container .col-md-4 {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Default state - first column large, others small */
.hover-container .column-1 {
    flex: 2;

    height: 80vh;
}

.hover-container .column-2 {
    flex: 0.8;

    height: 80vh;
}

.hover-container .column-3 {
    flex: 0.8;

    height: 80vh;
}

.column {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

/* Hover states */
.hover-container .column-2:hover {
    flex: 2.5;
}

.hover-container .column-3:hover {
    flex: 2.5;
}

.hover-container .column-2:hover~.column-3 {
    flex: 0.3;
}

.hover-container:has(.column-2:hover) .column-1 {
    flex: 1.2;
}

.hover-container:has(.column-3:hover) .column-1 {
    flex: 1.2;
}

.hover-container:has(.column-3:hover) .column-2 {
    flex: 0.3;
}

.hover-container .column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.hover-container .column:hover::before {
    background: rgba(0, 0, 0, 0.2);
}

.hover-container .column-1::before {
    background: rgba(0, 0, 0, 0.3);
}

.hover-container .column:hover {
    transform: scale(1.01);
    box-shadow: inset 0 0 50px rgba(255, 255, 255, 0.1);
}

.hover-container .overlay-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    width: 90%;

    margin: 2rem;
}

/* Column 1 content always visible */
.hover-container .column-1 .overlay-content {
    opacity: 1;
    transform: translateY(40px);
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
}

/* Hide column 1 content when others are hovered */
.hover-container:has(.column-2:hover) .column-1 .overlay-content,
.hover-container:has(.column-3:hover) .column-1 .overlay-content {
    opacity: 0;
    transform: translateY(-20px);
}

/* Columns 2 & 3 content hidden by default, slides up on hover */
.hover-container .column-2 .overlay-content,
.hover-container .column-3 .overlay-content {
    opacity: 0;
    transform: translateY(20px);
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
}

.hover-container .column-2:hover .overlay-content,
.hover-container .column-3:hover .overlay-content {
    opacity: 1;
    transform: translateY(20px);
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
}

.hover-container .overlay-content h4 {
    font-family: 'lulu-medium', sans-serif;
    color: var(--primary-color);
    width: 100%;
    border-bottom: 1px solid var(--primary-color);
    /* or any color you like */
    padding-bottom: 8px;
    /* adds space between text and line */
    margin: 0;
}

.hover-container.overlay-content p {
    font-weight: normal;
    opacity: 0.9;
    margin-top: 1rem;
    color: var(--dark-color);
    padding-bottom: 1rem;
}

/* Remove indicator styles since all columns are visible */
@media (max-width: 768px) {
    .hover-container {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }

    .hover-container .col-md-4 {
        flex: 1;
        min-height: 33.33vh;
    }

    .column:hover {
        flex: 2;
        min-height: 40vh;
    }
}

.our-projects .overlay-content .arrow {
    background: var(--gold);
    border-radius: 50%;
    padding: 0.8rem 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    float: right;
    line-height: 0;
}

.our-projects .overlay-content p {
    color: var(--dark-color);
    padding-top: 1rem;
}


.our-projects .overlay-content .arrow:hover {
    transform: scale(1.02);
    -webkit-transform: scale(1.02);
    -moz-transform: scale(1.02);
    -ms-transform: scale(1.02);
    -o-transform: scale(1.02);
    border-radius: 30px;
    box-shadow: rgba(44, 44, 44, 0.767) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.our-projects {
    padding: clamp(4rem, 3vw, 2rem) 0;
}

.our-projects .heading h2 {
    text-align: center;
    color: var(--primary-color);
}

.our-projects .heading p {
    text-align: center;
    color: var(--dark-color);
    padding-bottom: 1rem;
}

.landmark .land-card {
    padding: 0.8rem;
    border: 2px solid;
    border-image: linear-gradient(147.84deg, #FFE998 0.03%, #57370D 206.46%) 1;
}

.landmark .sales-card h4 {
    text-align: center;
    margin-top: 2rem;
}

.landmark .land-card p {
    margin-bottom: 0.4rem !important;
}


.landmark .heading h3 {
    text-align: center;
    color: var(--primary-color);
    padding: 1rem 0;
}

.availability {
    padding: clamp(7rem, 5vw, 2rem) 0;
    background: var(--gold);
    margin: clamp(4rem, 5vw, 2rem) 0 0;
}


.avail-button {
    color: var(--primary-color);
    text-decoration: unset;
    padding: 0.6rem 2rem;
    border: 1.5px solid var(--dark-color);
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    background-color: transparent;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.avail-button:hover {
    background-color: var(--light-color);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.resi-properties .project-tag {
    position: absolute;
    background: var(--primary-color);
    color: white;
    padding: 0.6rem 1rem;
    z-index: 10;
    transform: translate(15px, 15px);
    border-radius: 15px 0 0 0;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.club-banner {
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: top center;
    background-size: cover;
    height: 100vh;
    position: relative;
    z-index: 1;
}

.club-banner h2 {
    color: var(--light-color);
    bottom: 20%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}

.club-banner p {
    padding: 0;
    margin: 0 !important;
}

.club-banner::after {
    content: '';
    background-color: rgba(0, 0, 0, 0.08);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.club-banner .heart-btn {
    border: unset;
    background: var(--gold);
    color: var(--primary-color);
    padding: 1rem 1.8rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    text-transform: uppercase;
}

.club-banner .heart-btn:hover {
    background: var(--yellow-angle-three);
    transform: scale(1.02);
}

.heartbeat {
    background-color: var(--light-color);
    padding: 0rem 0rem 0rem 3rem;
    border-radius: 30px;
    bottom: 08%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

}

.msg-form {
    margin-left: 0.5rem;
    color: var(--dark-two-color);
}

.contact-map h3 {
    text-align: center;
    color: var(--primary-color);
    padding: 1rem 0;
}
    .error-msg {
      font-size: 0.85rem;
      margin-top: 4px;
      display: block;
    }
    
    .valid-msg {
      color: green;
      font-size: 0.85rem;
    }
    
/* Fixed bottom bar */
    .bottom-fixed-bar {
      display:none;
    }

   