/* Forest About Section (Existing) */

/* Register Interest Section Styles */
.register-interest-section {
    background-color: #000;
    padding: 100px 0;
    color: #fff;
    position: relative;
}

.register-interest-section h2 {
    font-size: 44px;
    letter-spacing: 1px;
    font-weight: 300;
}

.imgcaps {
    position: absolute;
    right: 6px;
    bottom: 5px;
    font-size: 10px;
}

.interest-form {
    padding: 0 15px;
    max-width: 600px;
}

/* Custom Input Styles */
.interest-form .custom-input {
    background: transparent !important;
    border: 1px solid #fff !important;
    border-radius: 0 !important;
    color: #fff !important;
    padding: 15px 20px;
    height: 55px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    margin-bottom: 20px;
}

.interest-form .custom-input:focus {
    box-shadow: none;
    border-color: #ccc !important;
    outline: none;
}

.interest-form .custom-input::placeholder {
    color: #fff;
    opacity: 0.8;
}

/* Custom Select Dropdown Arrow */
.interest-form select.custom-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
    cursor: pointer;
}

.interest-form select.custom-input option {
    background-color: #000;
    color: #fff;
    padding: 10px;
}

/* Custom Radio/Checkbox Styles */
.custom-checkbox {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    user-select: none;
    margin: 0 15px;
    color: #fff;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: relative;
    height: 35px;
    width: 35px;
    border: 2px solid #fff;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

/* Radio button style (circle inside square) */
.custom-checkbox .checkmark::after {
    content: "";
    position: absolute;
    display: none;
    width: 18px;
    height: 18px;
    background-color: #fff;
    border-radius: 50%;
}

.custom-checkbox input:checked~.checkmark::after {
    display: block;
}

/* Hover effect */
.custom-checkbox:hover input~.checkmark {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Submit Button */
.custom-submit-btn {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 60px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    transition: 0.3s all ease;
    cursor: pointer;
    margin-top: 20px;
}

.custom-submit-btn:hover {
    background: #fff;
    color: #000;
}


.residence-card figure {
    position: relative;
}

.pagebanner-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding-left: 4vw;
    color: white;
    padding-bottom: 3vw;
}

.pagebanner {
    position: relative;
    height:100vh;
}

.pagebanner::before {
    content: " ";
    position: absolute;
    inset: 0;
    background: linear-gradient(92deg, #000000ab, transparent);
    width: 60%;
}
.pagebanner img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center right;
}

.pagebanner-content h2 {
    font-size: 40px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.pagebanner-content a {
    border: 2px solid white;
    color: white;
    padding: 12px 60px;
    font-size: 16px;
    transition: 0.3s all;
}

.pagebanner-content a:hover {
    background: black;
    color: white;
    border-color: black;
}

.pagebanner-content h1 {
    font-size: 100px;
    font-weight: 600;
    margin-bottom: 20px;
}

.forest-abot.abs {
    position: absolute;
    top: 0;
    right: 4vw;
    max-width: 790px;
    top: 130px;
}

/* Video Section */
.video-section {
    position: relative;
    height: 650px;
    width: 100%;
    overflow: hidden;
}

.video-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4vw;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.video-overlay p {
    color: white;
    font-size: 24px;
    font-weight: 300;
    text-align: center;
    max-width: 900px;
    margin: 0;
}

.forest-about {
    position: relative;
    background-color: #000;
    color: #fff;
    padding-left: 4vw;

    overflow: hidden;
    padding: 90px 0;
}

.forest-about h2 {
    font-size: 64px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
}

.forest-about p {
    font-size: 18px;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 300;
    max-width: 550px;
}

.forest-about figure {
    width: 100%;
    margin: 0;
    overflow: hidden;
    border-radius: 10px;
}

.forest-about figure img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.forest-about figure:hover img {
    transform: scale(1.05);
}

.sep-line {
    height: 4px;
    width: 110px;
    background: white;
    display: inline-block;
    margin-bottom: 20px;
}

.about-froest {
    position: absolute;
    inset: 0;
}

.forest-about .divcontent {
    position: relative;
    z-index: 1;
    height: 100%;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: column;
    padding-bottom: 10px;
}

.forest-about::before {
    /* content: " "; */
    position: absolute;
    inset: 0;
    background: linear-gradient(85deg, black 30%, transparent);
    z-index: 1;
}

/* NEW: Limited Residences Premium Section */
.limited-residences-section {
    padding: 140px 4vw 90px 4vw;
    background-color: #000;
    color: #fff;
    position: relative;
}

.limited-residences-section .section-title {
    font-size: 48px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
    font-weight: 400;
    line-height: 1.2;
}

.limited-residences-section .sep-line {
    width: 150px;
    height: 1px;
    background: #fff;
    margin: 0px auto;
    opacity: 0.8;
}

.limited-residences-section .section-subtitle {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: #888;
    letter-spacing: 2px;
    margin-top: 20px;
    text-transform: uppercase;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    /* Gap for borders */
    background-color: #1a1a1a;
    /* Color of the borders */
    margin-top: 80px;
    border: 1px solid #1a1a1a;
}

.feature-card {
    background-color: #000;
    padding: 60px 30px;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 320px;
}

.feature-card:hover {
    background-color: #080808;
}

.feature-card i {
    font-size: 48px;
    margin-bottom: 30px;
    color: #fff;
    /* Minimal white icons */
    opacity: 0.7;
    transition: all 0.4s ease;
}

.feature-card:hover i {
    opacity: 1;
    transform: translateY(-5px);
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.feature-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 500;


}

.feature-card p {
    font-size: 14px;
    line-height: 1.8;
    color: #999;
    margin: 0;
    max-width: 250px;

    letter-spacing: 0.5px;
    transition: color 0.5s ease;
}

.feature-card:hover p {
    color: #fff;
}

/* Residences Section */
.residences-section {
    background-color: #000;
    padding: 60px 3vw;
    color: #fff;
    text-align: center;
}

.residences-section .title-large {
    font-size: 48px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 400;
    color: #fff;
}

.residences-section .sep-line {
    width: 150px;
    height: 1px;
    background: #fff;
    margin: 30px auto;

}

.residences-section .section-desc {
    max-width: 570px;
    margin: 0 auto;
    color: white;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
    /* Add spacing below the main description */
}

/* Residence Cards */
.residence-card {
    padding: 20px 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.residence-card figure {
    overflow: hidden;
    margin-bottom: 30px;
    width: 100%;
    /* border-radius: 4px; Optional for sharp corners vs rounded */
}

.residence-card img {
    width: 100%;
    /* Fixed height for uniformity */
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}


.residence-card:hover img {
    transform: scale(1.05);
    /* Proper zoom effect */
}

.residence-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;

    /* Ensure alignment for multiline titles */
}

section.ritual-section .sep-line {
    width: 150px;
    height: 1px;
    background: #fff;
    opacity: 0.8;
    display: table;
    margin: 30px 0;
}

section.ritual-section p {
    max-width: 480px;
    display: table;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 90px;
    font-size: 20px;
    font-weight: 300
}

.forest-about a {
    border: 2px solid white;
    color: white;
    padding: 12px 60px;
    font-size: 16px;
    transition: 0.3s all;
    margin-top: 20px;
}

.forest-about a:hover {
    background: white;
    color: black;
}

.residence-card p {
    font-size: 18px;
    color: white;
    line-height: 1.8;
    max-width: 340px;
    margin: 0 auto 15px auto;
    font-weight: 300;
}

/* Connectivity Section - From Delhi to Forest Walk */
.connectivity-section {
    position: relative;
    padding: 120px 0;
    background-color: #000;
    color: #fff;
    overflow: hidden;
}

.connectivity-section video {
    position: absolute;
    inset: 0;
    opacity: 0.3;
}

/* Abstract Map Background */
.connectivity-section::before {
    /* content: ''; */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, 0.15) 50%, transparent 51%);
    background-size: 100% 100%,
        100px 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

.title-underline {
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}

.title-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 1px;
    background-color: #fff;
    /* White line for high contrast */
    opacity: 0.5;
}

/* Glowing Route Line Animation */
.route-line {
    position: absolute;
    top: 50%;
    left: -100%;
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: translateY(-50%);
    animation: flowLine 6s linear infinite;
    z-index: 1;
}

@keyframes flowLine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.connectivity-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.connectivity-title {
    font-size: 48px;
    letter-spacing: 2px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Cinzel', serif;
    font-weight: 400;
}

.connectivity-subtitle {

    font-size: 18px;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto 60px;
    font-weight: 300;
}

/* Glassmorphism Cards */
.location-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.location-card {
    background: #000;
    border: 1px solid #333;
    /* Distinct grey lines on black */
    padding: 30px;
    border-radius: 0px;
    /* Maximally sharp */
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    /* Center vertically */
    gap: 20px;
    position: relative;
    overflow: hidden;
    text-align: left;
    min-height: 120px;
    /* Ensure uniform height */
}

.location-card:hover {
    background-color: #050505;
    border-color: #fff;
    /* Highlights border on hover */
    transform: translateY(-5px);
}

.location-icon {
    font-size: 32px;
    color: #fff;
    /* White Color */
    flex-shrink: 0;
    margin-top: 5px;
    /* Adjust if needed */
}

.location-text {
    flex: 1;
    /* Take remaining space */
}

.location-text p {
    font-family: 'Cinzel', serif;
    /* Use serif for premium feel */
    font-size: 18px;
    /* Larger font */
    color: #fff;
    /* White text */
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

/* Pulse Effect for Location Marker */
.location-marker {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 6px;
    height: 6px;
    background-color: #fff;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.location-card:hover .location-marker {
    opacity: 1;
    animation: markerPulse 2s infinite;
}

@keyframes markerPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
}


/* List Layout Styles */
.connectivity-list {
    max-width: 900px;
    margin: 0 auto;
    border-top: 1px solid #222;
}

.connect-item {
    padding: 35px 0;
    border-bottom: 1px solid #222;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s ease;
    cursor: default;
    position: relative;
}

.connect-item:hover {
    border-bottom-color: #fff;
    padding-left: 20px;
    /* Subtle shift interaction */
}

/* Numbering Column */
.connect-number {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    color: #444;
    width: 60px;
    transition: color 0.4s ease;
    flex-shrink: 0;
}

.connect-item:hover .connect-number {
    color: #fff;
}

/* Text Content */
.connect-text {
    flex: 1;
    font-size: 20px;
    color: #888;
    font-weight: 300;
    margin: 0;

    transition: all 0.5s ease;
    padding-right: 20px;
    letter-spacing: 0.5px;
    text-align: left;
}

.connect-item:hover .connect-text {
    color: #fff;
}

/* Icon Animation */
.connect-icon {
    font-size: 24px;
    color: #fff;
    opacity: 0.5;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.connect-item:hover .connect-icon {
    opacity: 1;
    transform: translateX(0);
}




/* Ritual & Recreation Section - Split Screen Design */
.ritual-section {
    background-color: #000;
    /* Black */
    padding: 100px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}


.ritual-heading {

    font-size: 44px;
    font-weight: 300;

    line-height: 1.2;
    color: white;
    /* Warm Beige */
}

/* Left Side - Interactive Tabs */
.ritual-tabs {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ritual-tab {
    cursor: pointer;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    /* Faint white line */
    padding-left: 30px;
    transition: all 0.4s ease;
    opacity: 0.6;
}

.ritual-tab:hover {
    opacity: 1;
    border-left-color: #fff;
}

.ritual-tab.active {
    border-left: 2px solid #fff;
    /* Active white line */
    opacity: 1;
}

.ritual-tab h3 {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 300;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    gap: 20px;
    position: relative;
}

.ritual-tab h3::after {
    content: '\ea4a';
    /* Boxicons down arrow */
    font-family: 'boxicons';
    font-size: 28px;
    transition: transform 0.4s ease;
}

.ritual-tab.active h3::after {
    transform: rotate(180deg);
}

.ritual-tab .tab-divider {
    width: 40px;
    height: 1px;
    background-color: #fff;
    margin: 15px 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.ritual-tab.active .tab-divider {
    transform: scaleX(1);
}

.ritual-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.ritual-tab.active .ritual-details {
    max-height: 500px;
    /* Arbitrary large height for expansion */
}

.ritual-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ritual-details li {
    cursor: auto;
    font-size: 16px;
    color: white;
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
    display: flex;
    align-items: center;
}

.ritual-details li::before {
    content: '•';
    color: #fff;
    position: absolute;
    left: 0;
    font-size: 18px;
    line-height: 1;
}

/* Right Side - Dynamic Image Area */
.ritual-display {
    position: relative;
    height: 650px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.ritual-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 1;
}

.ritual-img.active {
    opacity: 1;
    z-index: 2;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 3;
    pointer-events: none;
}

/* Responsive styles moved to the end */


/* Add a gold accent line on hover */
.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: #fff;
    transition: width 0.4s ease;
    opacity: 0.5;
}

.feature-card:hover::after {
    width: 100%;
}

@media (max-width: 1200px) {
    .feature-card {
        padding: 40px 20px;
        min-height: 280px;
    }

    .limited-residences-section .section-title {
        font-size: 40px;
    }
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
        background-color: transparent;
        gap: 0;
        border: none;
    }

    .feature-card {
        border-bottom: 1px solid #1a1a1a;
        padding: 50px 20px;
        min-height: auto;
    }

    .limited-residences-section .section-title {
        font-size: 32px;
    }

    .limited-residences-section {
        padding: 80px 5vw;
    }
}

/* --- Masterplan Hero Section --- */
.masterplan-hero {
    position: relative;
    height: 85vh;
    /* Cinematic height */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: #fff;
    background-color: #0b140e;
    /* Deep forest green fallback */
}

.masterplan-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/aboutbg.jpg');
    /* Lush forest */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    z-index: 0;
    filter: brightness(0.6) contrast(1.1);
    transform: scale(1.1);
    /* Slight zoom for motion */
    transition: transform 10s ease;
}

.masterplan-hero:hover .masterplan-hero-bg {
    transform: scale(1);
}

.masterplan-hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(11, 20, 14, 0.3), rgba(11, 20, 14, 0.8));
    z-index: 1;
}

.masterplan-hero .content {
    position: relative;
    z-index: 2;
    padding: 0 5vw;
    max-width: 900px;
}

.masterplan-hero h2 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    color: white;
    text-transform: uppercase;
}

.masterplan-hero p {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #e0e0e0;
}

/* --- Immersive Zones --- */
.immersive-zones {
    position: relative;
    background-color: #0b140e;
}

.zone-section {
    position: relative;
    min-height: 100vh;
    /* Full immersion */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.zone-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 1.5s ease-out;
    filter: brightness(0.5) saturate(0.8);
    background-attachment: fixed;
}

.zone-section:hover .zone-bg {
    transform: scale(1.05);
    filter: brightness(0.6) saturate(1);
}

.zone-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%);
    backdrop-filter: blur(2px);
    /* Soft glassmorphism hint */
}

/* Specific Zone Backgrounds (Placeholders - update with real images) */
.zone-a-bg {
    background-image: url('../images/m3.jpg');
}

/* Hidden Forest */
.zone-b-bg {
    background-image: url('../images/v1.jpg');
}

/* Water Miracle */
.zone-c-bg {
    background-image: url('../images/m1.jpg');
}

/* Street Forest */

.zone-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 60px 4vw;
    max-width: 900px;
    /* Glass panel effect */
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    /* Minimal radius */
    backdrop-filter: blur(5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.zone-tag {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #a8bfae;
    /* Sage green hint */
    margin-bottom: 20px;
    border-bottom: 1px solid #a8bfae;
    padding-bottom: 5px;
}

.zone-content h3 {
    font-size: 42px;
    margin-bottom: 15px;
    letter-spacing: 2px;
    font-weight: 400;
    color: white;
    text-transform: uppercase;
    font-family: 'Cinzel', serif;
}

.zone-quote {

    font-size: 24px;
    font-style: italic;
    color: #ccc;
    margin-bottom: 30px;
    font-weight: 300;
}

.zone-details p {
    font-size: 16px;
    line-height: 1.8;
    color: #ddd;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
    margin: 0;
}


/* --- Global Responsive Styles --- */

/* Tablet & Smaller Laptops */
@media (max-width: 991px) {

    /* Ritual Section */
    .ritual-section {
        padding: 80px 0;
    }

    .ritual-display {
        height: 400px;
        margin-top: 50px;
        width: 100%;
    }

    .ritual-heading {
        font-size: 34px;
        margin-bottom: 40px;

    }

    .ritual-tabs {
        gap: 20px;
        padding-left: 20px;
        /* Ensure some padding on smaller screens */
        padding-right: 20px;
    }

    /* Connectivity Section */
    .connectivity-title {
        font-size: 36px;
    }

    /* Residences Section */
    .residences-section .title-large {
        font-size: 36px;
    }

    /* Limited Residences */
    .limited-residences-section .section-title {
        font-size: 36px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Devices */

/* Small Mobile */
@media (max-width: 576px) {




    .limited-residences-section .section-title {
        font-size: 28px !important;
    }

    .connectivity-title {
        font-size: 28px !important;
    }

    .ritual-tab h3 {
        font-size: 18px;
    }

    .ritual-tab h3::after {
        font-size: 24px;
    }

    .limited-residences-section .section-title {
        font-size: 32px;
    }

    .limited-residences-section {
        padding: 80px 5vw;
    }
}

/* =========================================
   OWL CAROUSEL CUSTOM NAVIGATION
   ========================================= */
/* Owl Carousel Custom Navigation */
.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
    pointer-events: auto;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-size: 30px !important;
    transition: all 0.4s ease;
    margin: 0 !important;
    cursor: pointer;
    backdrop-filter: blur(5px);
    opacity: 1 !important;
    /* Force visibility */
    display: flex !important;
    /* Force display */
}

.owl-nav button.owl-prev:not(.disabled):hover,
.owl-nav button.owl-next:not(.disabled):hover {
    background: #ffffff !important;
    color: #000000 !important;
    border-color: #ffffff !important;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.owl-nav button.owl-prev {
    transform: translateX(-60px) !important;
}

.owl-nav button.owl-prev.disabled,
.owl-nav button.owl-next.disabled {
    opacity: 0.5 !important;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.05) !important;
}

.owl-nav button.owl-next {
    transform: translateX(60px) !important;
}

/* Adjust for container constraints */
@media (min-width: 1200px) {
    .owl-nav {
        width: 110%;
        left: -5%;
        opacity: 1;
    }

    .owl-nav button.owl-prev {
        transform: none;
    }

    .owl-nav button.owl-next {
        transform: none;
    }

    .owl-carousel:hover .owl-nav {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .owl-nav {
        position: relative;
        top: auto;
        transform: none;
        justify-content: center;
        margin-top: 30px;
        width: 100%;
        left: 0;
        gap: 20px;
    }

    .owl-nav button.owl-prev,
    .owl-nav button.owl-next {
        transform: none !important;
        background: rgba(255, 255, 255, 0.1) !important;
    }
}

/* =========================================
   MASTERPLAN CAROUSEL STYLES
   ========================================= */
/* Masterplan Carousel Styles */
.masterplan-carousel-section {
    position: relative;
    padding: 0;
}

.masterplan-carousel-section .carousel-item {
    transition: transform 0.6s ease-in-out;
}

.masterplan-carousel-section .carousel-item img {

    object-fit: cover;
}

/* Custom Navigation Buttons */
.masterplan-carousel-section .carousel-control-prev,
.masterplan-carousel-section .carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.masterplan-carousel-section .carousel-control-prev {
    left: 4vw;
}

.masterplan-carousel-section .carousel-control-next {
    right: 4vw;
}

.masterplan-carousel-section .carousel-control-prev:hover,
.masterplan-carousel-section .carousel-control-next:hover {
    background: #fff;
    border-color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.masterplan-carousel-section .carousel-control-prev-icon,
.masterplan-carousel-section .carousel-control-next-icon {
    filter: invert(1) grayscale(100%) brightness(200%);
    /* Make icon white */
}

.masterplan-carousel-section .carousel-control-prev:hover .carousel-control-prev-icon,
.masterplan-carousel-section .carousel-control-next:hover .carousel-control-next-icon {
    filter: invert(0) grayscale(100%) brightness(0%);
    /* Make icon black on hover */
}


/* Masterplan Intro Styles */
.masterplan-intro {
    text-align: center;
    color: white;
    padding: 60px 4vw 40px;
    max-width: 900px;
    margin: 0 auto;
}

.masterplan-intro h1 {
    font-size: 44px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    margin-bottom: 25px;
}

.masterplan-intro .sep-line {
    width: 150px;
    height: 1px;
    background: #fff;
    margin: 0 auto 30px;
    opacity: 0.8;
}

.masterplan-intro p {
    font-size: 18px;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 20px;
    font-weight: 300;
}

/* Carousel Caption Styles */
.masterplan-carousel-section .carousel-caption {
    position: absolute;
    right: 5%;
    bottom: 50px;
    left: auto;
    text-align: left;
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-left: 3px solid white;
    max-width: 490px;
    backdrop-filter: blur(5px);
    border-radius: 0 10px 10px 0;
}

.masterplan-carousel-section .carousel-caption h5 {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: white;
    font-weight: 300;
}

.masterplan-carousel-section .carousel-caption p {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 0;
}

/* Carousel Indicators */
.masterplan-carousel-section .carousel-indicators {
    bottom: 10px;
    z-index: 2;
}

.masterplan-carousel-section .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.7);
    margin: 0 8px;
    opacity: 0.6;
    transition: all 0.3s ease;
    padding: 0;
    /* Remove default padding */
}

.masterplan-carousel-section .carousel-indicators button.active {
    background-color: #fff;
    transform: scale(1.3);
    opacity: 1;
    border-color: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.masterplan-carousel-section .carousel-indicators button:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.5);
}

/* =========================================
   REGISTER INTEREST FORM STYLES
   ========================================= */
/* Register Interest Section Styles */
.register-interest-section {
    background-color: #000;
    padding: 100px 0;
    color: #fff;
    position: relative;
}

.interest-form {
    padding: 0 15px;
}

/* Custom Input Styles */
.interest-form .custom-input {
    background: transparent !important;
    border: 1px solid #fff !important;
    border-radius: 0 !important;
    color: #fff !important;
    padding: 15px 20px;
    height: 55px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    margin-bottom: 20px;
}

.interest-form .custom-input:focus {
    box-shadow: none;
    border-color: #ccc !important;
    outline: none;
}

.interest-form .custom-input::placeholder {
    color: #fff;
    opacity: 0.8;
}

/* Custom Select Dropdown Arrow */
.interest-form select.custom-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
    cursor: pointer;
}

.interest-form select.custom-input option {
    background-color: #000;
    color: #fff;
    padding: 10px;
}

/* Custom Radio/Checkbox Styles */
.custom-checkbox {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    user-select: none;
    margin: 0 15px;
    color: #fff;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: relative;
    height: 35px;
    width: 35px;
    border: 2px solid #fff;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

/* Radio button style (circle inside square) */
.custom-checkbox .checkmark::after {
    content: "";
    position: absolute;
    display: none;
    width: 18px;
    height: 18px;
    background-color: #fff;
    border-radius: 50%;
}

.custom-checkbox input:checked~.checkmark::after {
    display: block;
}

/* Hover effect */
.custom-checkbox:hover input~.checkmark {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Submit Button */
.custom-submit-btn {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 60px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    transition: 0.3s all ease;
    cursor: pointer;
    margin-top: 20px;
}

.custom-submit-btn:hover {
    background: #fff;
    color: #000;
}


@media (max-width: 768px) {
    .register-interest-section h2 {
        font-size: 32px !important;
    }

    .interest-form {
        padding: 0;
    }

    .custom-checkbox {
        margin: 0 10px;
    }

    .register-interest-section h2 {
        font-size: 32px !important;
    }

    .interest-form {
        padding: 0;
    }

    .custom-checkbox {
        margin: 0 10px;
    }

    .pagebanner img {
        height: 100vh;
        object-fit: cover;
        object-position: center;
    }

    .pagebanner::before {
        width: 100%;
    }

    .pagebanner-content h2 {
        font-size: 26px;
    }

    .pagebanner-content h1 {
        font-size: 12vw !important;
    }


    .pagebanner-content {
        padding-bottom: 60px;
    }

    .pagebanner-content a {
        padding: 10px 40px;
    }

    .video-section {
        height: 100vh;
    }

    .video-overlay p {
        font-size: 20px;
    }

    .forest-abot.abs {
        display: none;
    }

    .residences-section .title-large {
        font-size: 32px;
    }

    .residences-section {
        padding: 50px 0vw;
    }

    .residence-card img {
        height: auto;
        aspect-ratio: 4/3;
    }

    .connect-text {
        font-size: 16px;
    }

    .connect-item {
        padding: 25px 0;
    }

    .connectivity-title {
        font-size: 32px;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .connectivity-section {
        padding: 60px 4vw;
    }

    .connect-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        text-align: left;
    }

    .connect-text {
        font-size: 16px;
        padding-right: 0;
    }

    .connect-icon {
        align-self: flex-end;
        transform: translateX(0);
        opacity: 1;
    }

    /* Residences Section */


    .residences-section .section-desc {
        font-size: 18px;
    }

    .residence-card p {
        font-size: 16px;
    }

    .residence-card img {
        height: 250px;
    }

    /* Ritual Section */
    .ritual-section {
        padding: 60px 0 20px 0;
    }

    .ritual-tabs {
        padding: 0 0px;
    }

    .ritual-tab {
        padding-left: 15px;
    }

    .ritual-tab h3 {
        font-size: 20px;
    }

    /* Make image display full width and properly sized on mobile */
    .ritual-display {
        height: 300px;
        margin-top: 40px;
        border-radius: 0;
    }

    .col-lg-5.ps-lg-5 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* Limited Residences */
    .limited-residences-section {
        padding: 60px 4vw;
    }

    .feature-card {
        padding: 30px 20px;
        min-height: auto;
    }

    .features-grid {
        grid-template-columns: 1fr;
        border: none;
        gap: 0;
        background: transparent;
    }

    .feature-card {
        border-bottom: 1px solid #222;
        background: transparent;
    }

    /* Forest About */
    .forest-about {
        height: auto;
        min-height: 100vh;
        padding: 80px 4vw;
    }

    .forest-about h2 {
        font-size: 34px;
        text-align: center;
    }

    .forest-about p {
        font-size: 18px;
        text-align: center;
    }

    .forest-about a {
        padding: 10px 38px;
    }

    .forest-about .divcontent .h4 {
        text-align: center;
    }

    .forest-about .divcontent {
        align-items: center;
    }

    /* Masterplan Hero */
    .masterplan-hero h2 {
        font-size: 32px;
    }

    .masterplan-hero {
        height: 70vh;
    }

    /* Immersive Zones */
    .zone-content h3 {
        font-size: 28px;
    }

    .zone-section {
        min-height: 80vh;
    }

    .zone-quote {
        font-size: 18px;
    }

    .masterplan-intro h1 {
        font-size: 34px;
    }

    .owl-nav button.owl-prev,
    .owl-nav button.owl-next {
        width: 50px !important;
        height: 50px !important;
    }

    .connect-text {
        color: white;
    }

    .connect-number {
        color: white;
        opacity: 0.4;
    }

    section.ritual-section p {
        font-size: 18px;
    }

    .ritual-display {
        display: none;
    }

    .ritual-tab.active .tab-divider {
        transform: scaleX(8);
    }

    .ritual-tab h3 {
        justify-content: space-between;
    }

    .ritual-tab h3 {
        font-size: 18px;
    }

    .ritual-details li {
        font-weight: 300;
        font-size: 15px;
    }

    .register-interest-section {
        padding-top: 0;
    }

    .masterplan-carousel-section .carousel-caption {
        position: relative;
        bottom: unset;
        left: 16px;
        top: 21px;
        backdrop-filter: url();
        background: black;
    }

    .masterplan-carousel-section .carousel-indicators {
        bottom: unset;
        z-index: 2;
        top: 42vw;
    }
}