/* Global Reset and Font */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Inter font ka istemaal, yeh modern aur clean hai */
    font-family: 'Inter', sans-serif;
}

/* Full Screen Video Container */
.video-background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    /* Content ke peeche */
    overflow: hidden;
}

/* Video Element Styling */
.video-background {
    /* Video ko hamesha screen par cover karne ke liye */
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Dark Overlay for Text Readability */
.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Semi-transparent dark overlay, jaisa image mein dikh raha hai */
    background: rgba(0, 0, 0, 0.45);
    z-index: -1;
}

/* Main Page Content (Hero Section) */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Full viewport height */
    color: #fff;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Content ko top aur bottom mein failane ke liye */
    align-items: center;
}

/* ------------------- Navigation Bar Styling ------------------- */
.navbar-container {
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text-group {
    display: flex;
    align-items: center;
}

/* Logo Text Styling */
.logo-text-group a {
    text-decoration: none;
    color: #fff;
}

.logo-main-text {
    font-size: 1.5rem;
    font-weight: 800;
    /* Extra bold jaisa image mein hai */
    margin-right: 10px;
}

.logo-sub-text {
    font-size: 0.75rem;
    font-weight: 400;
    color: #aaa;
    margin-left: -70px;
    /* Thoda adjust kiya taaki yeh 'CENTURY PROPERTIES' ke neeche aaye */
    margin-top: 25px;
    position: absolute;
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
}

.nav-item {
    position: relative;
    margin-left: 30px;
}

.nav-item a {
    text-decoration: none;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 0;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.nav-item a:hover {
    color: #0b96a8;
    /* Hover par halka green effect */
}

/* Dropdown Icon Styling */
.dropdown-icon {
    width: 14px;
    height: 14px;
    margin-left: 5px;
    stroke: #fff;
}

/* ------------------- Hero Content Styling ------------------- */
.hero-content {
    /* Navbar aur Scroll Indicator ke beech mein content ko center karne ke liye */
    flex-grow: 1;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    /* Text ko left-aligned rakha */
    padding-bottom: 100px;
    /* Scroll indicator ke liye jagah chhodna */
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    max-width: 900px;
    margin-bottom: 40px;
    line-height: 1.2;
}

/* LEARN MORE Button */
.cta-button {
    display: inline-block;
    padding: 10px 25px;
    background-color: #008080c9;
    /* Teal/dark green color, image se milta julta */
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    /* font-weight: 600; */
    border-radius: 1px;
    transition: background-color 0.3s, transform 0.2s;
    border: 2px solid #008080;
}

.cta-button:hover {
    background-color: #006666;
    /* Thoda aur dark hover effect */
    transform: translateY(-2px);
}

/* ------------------- Scroll Indicator Styling ------------------- */
.scroll-indicator-container {
    padding-bottom: 30px;
}

.scroll-down-arrow {
    width: 40px;
    height: 40px;
    stroke: #fff;
    cursor: pointer;
    transition: transform 0.5s;
}

.scroll-down-arrow:hover {
    transform: translateY(5px);
}

/* Responsive adjustments for Nav/Hero */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
        /* Simple mobile view mein menu chhupa diya */
    }

    .hero-title {
        font-size: 2.5rem;
        text-align: center;
        max-width: 90%;
    }

    .hero-content {
        align-items: center;
        text-align: center;
    }

    .logo-sub-text {
        margin-left: 0;
        margin-top: 0;
        position: relative;
        font-size: 0.7rem;
    }

    .logo-text-group {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ------------------- BUSINESS Section Styling (Common for all sub-sections) ------------------- */
.section-padding {
    padding: 80px 5%;
    background-color: #f7f9f9;
    /* Off-white, halka sa gray background */
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.business-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #008080;
    /* Dark green/teal color */
    margin-bottom: 60px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.business-content-wrapper {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    padding: 50px;
    /* Section ke peeche ka halka sa pattern/shadow */
    background: linear-gradient(to top right, rgba(255, 255, 255, 0.5) 0%, rgba(240, 240, 240, 0.2) 50%, rgba(255, 255, 255, 0.5) 100%);
}

/* Common image and text box styling */
.business-image-container {
    position: relative;
    z-index: 1;
    width: 60%;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.15));

}

.business-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.business-text-box {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #e8ededa9;
    color: #333;
    padding: 40px;
    width: 50%;
    max-width: 600px;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.text-box-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: #008080;
    margin-bottom: 20px;
}

.text-box-content {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}


/* ------------------- Section 1 (Residences) Specific Styles: Image Right, Text Left ------------------- */
.residences-content-wrapper .business-text-box {
    left: 2%;
    /* Left side mein text box */
}

/* ------------------- Section 2 (Retail) Specific Styles: Image Left, Text Right ------------------- */
.retail-section {
    padding-top: 0;
    /* Residences ke baad space kam karne ke liye */
}

.retail-section-title {
    /* Title ko repeat nahi kiya, sirf ek hi title 'OUR BUSINESS' use kiya hai */
    display: none;
}

.residences-content-wrapper {
    flex-direction: row-reverse;
    /* Image ko left mein shift kiya */
    background: linear-gradient(to top left, rgba(255, 255, 255, 0.5) 0%, rgba(240, 240, 240, 0.2) 50%, rgba(255, 255, 255, 0.5) 100%);
    /* Background gradient ko bhi reverse kiya */
    padding-top: 0;
    /* Upar wale section se jodne ke liye */
    margin-left: 30%;
    width: 80%;
}

.retail-content-wrapper {
    flex-direction: row-reverse;
    /* Image ko left mein shift kiya */
    background: linear-gradient(to top left, rgba(255, 255, 255, 0.5) 0%, rgba(240, 240, 240, 0.2) 50%, rgba(255, 255, 255, 0.5) 100%);
    /* Background gradient ko bhi reverse kiya */
    padding-top: 0;
    /* Upar wale section se jodne ke liye */
    margin-right: 30%;
    width: 80%;
}

.retail-content-wrapper .business-image-container {
    /* Image ko left mein dikhane ke liye koi change nahi chahiye kyonki flex-direction row-reverse hai */
}

.retail-content-wrapper .business-text-box {
    right: 2%;
    /* Right side mein text box */
    left: auto;
    /* Left position override kiya */
}


/* Responsive adjustments for Business Sections */
@media (max-width: 1024px) {
    .business-content-wrapper {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .retail-content-wrapper {
        flex-direction: column;
        /* Mobile par dono sections ko vertical rakha */
    }

    .business-image-container {
        width: 90%;
    }

    .business-text-box {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
        width: 90%;
        margin-top: -100px;
        /* Image par overlap karne ke liye */
        padding: 30px;
    }

    .business-section-title {
        margin-bottom: 30px;
    }
}

@media (max-width: 600px) {
    .section-padding {
        padding: 50px 5%;
    }

    .business-text-box {
        margin-top: -50px;
        /* Overlap kam kiya for small screens */
    }

    .text-box-subtitle {
        font-size: 1.5rem;
    }
}

/* NEWS NEWS  */
/* NEWS NEWS  */

/* ==================================== */
/* Corporate News Section Styles (CN) */
/* ==================================== */

.cn-news-section {
    /* Use the same background color as the footer for consistency */
    background-color: #dbe7e4;
    padding: 80px 0;
    font-family: 'Roboto', sans-serif;
}

.cn-section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Heading Style */
.cn-main-heading {
    color: #354e4c;
    font-size: 32px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

/* --- News Grid Layout --- */

.cn-grid-wrapper {
    display: grid;
    /* Grid layout: one large column (1.5fr) and one smaller column (1fr) for stacking */
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
}

/* Card Styling (Common) */
.cn-card {
    display: block;
    position: relative;
    overflow: hidden;
    color: white;
    text-decoration: none;
    background-color: #333;
    /* Placeholder for image loading */
}

.cn-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Card Hover Effect */
.cn-card:hover .cn-card-image {
    transform: scale(1.05);
}

/* Image Overlay (The dark gradient at the bottom) */
.cn-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    /* Dark gradient from transparent to black at the bottom */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}

/* Card Content Styling */
.cn-card-date {
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 5px;
}

.cn-card-title {
    font-weight: 500;
    line-height: 1.3;
}

/* Large Card (Left) Specific Styles */
.cn-large-card {
    /* Ensures the large card takes up the full height of the stacked small cards */
    grid-row: 1 / 3;
}

.cn-large-card .cn-card-image {
    min-height: 500px;
    /* Minimum height for large card on desktop */
}

.cn-large-title {
    font-size: 24px;
}

/* Small Card Stack (Right) Specific Styles */
.cn-small-cards-stack {
    display: grid;
    /* Arranges the four small cards into a 2x2 grid */
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Small Card Title */
.cn-small-title {
    font-size: 16px;
}

/* Setting height for small cards */
.cn-small-card .cn-card-image {
    min-height: 240px;
}

/* --- View More Button --- */

.cn-button-wrapper {
    text-align: center;
    margin-top: 50px;
}

.cn-view-more-button {
    /* Exact button design from the image */
    background-color: #314d4c;
    color: #dbe7e4;
    border: 2px solid #314d4c;
    padding: 10px 30px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.cn-view-more-button:hover {
    /* Subtle hover effect */
    background-color: #3e6d62;
    border-color: #3e6d62;
}

/* ==================================== */
/* 📱 MOBILE RESPONSIVENESS */
/* ==================================== */

/* Tablet View (992px and below) */
@media (max-width: 992px) {
    .cn-main-heading {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .cn-grid-wrapper {
        /* On tablets, the large card is now 100% width and the small cards stack below it */
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cn-large-card {
        /* Large card now spans only one row */
        grid-row: auto;
    }

    .cn-large-card .cn-card-image {
        min-height: 350px;
    }

    .cn-large-title {
        font-size: 20px;
    }
}

/* Mobile View (576px and below) */
@media (max-width: 576px) {
    .cn-news-section {
        padding: 50px 0;
    }

    .cn-main-heading {
        font-size: 24px;
    }

    .cn-small-cards-stack {
        /* On mobile, stack all 4 small cards vertically */
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cn-small-card .cn-card-image {
        min-height: 180px;
    }

    .cn-small-title {
        font-size: 14px;
    }

    .cn-large-card .cn-card-image {
        min-height: 250px;
    }
}


/* END END END END NEDNNN END    NEWS NEWS  */
/* END END END END NEDNNN END    NEWS NEWS  */

/* FOOTER  */
/* FOOTER  */


/* ==================================== */
/* Custom Footer Styles (CP - Century Properties) */
/* ==================================== */

/* Main Footer Background and Text */
.cp-main-footer {
    /* Background color from the image */
    background-color: #dbe7e4;
    padding: 60px 0 20px 0;
    color: #354e4c;
    font-size: 14px;
    line-height: 1.6;
    /* Using Roboto, assumed from the image */
    font-family: 'Roboto', sans-serif;
}

.cp-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
}

/* Individual Column Styling */
.cp-footer-col {
    /* Default spacing for desktop */
    width: 20%;
}

.cp-info-col {
    /* First column is wider for logo and address */
    width: 25%;
}

/* Logo Styling */
.cp-logo-group {
    margin-bottom: 25px;
    font-weight: 700;
}

.cp-logo-text {
    /* Style for 'COMPANY' part */
    color: #3e6d62;
    font-size: 20px;
    letter-spacing: 1px;
    margin-right: 5px;
}

.cp-logo-properties-text {
    /* Style for 'PROPERTIES' part */
    color: #354e4c;
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 300;
    /* Lighter font weight for properties */
}

/* Address Styling */
.cp-footer-address {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.cp-location-icon {
    /* Green location icon color */
    color: #3e6d62;
    font-size: 18px;
    margin-right: 10px;
    padding-top: 3px;
}

.cp-address-text {
    color: #354e4c;
    font-size: 13px;
    font-weight: 300;
}

/* Social Icons Styling */
.cp-footer-social-icons {
    display: flex;
    gap: 10px;
    /* Subtle color on hover */
    margin-top: 10px;
}

.cp-social-icon-link {
    color: #354e4c;
    font-size: 16px;
    transition: color 0.3s;
}

.cp-social-icon-link:hover {
    color: #3e6d62;
}


/* Heading and Links Styling */
.cp-links-group-col {
    display: flex;
    flex-direction: column;
    /* Space between top and bottom sections (e.g., BUSINESS and NEWS) */
    gap: 40px;
}

.cp-footer-heading {
    color: #354e4c;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.cp-footer-links-list {
    list-style: none;
    padding: 0;
}

.cp-footer-links-list li {
    margin-bottom: 8px;
}

.cp-footer-link-item {
    color: #354e4c;
    text-decoration: none;
    font-size: 13px;
    font-weight: 300;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.cp-footer-link-item:hover {
    color: #3e6d62;
}

.cp-footer-arrow {
    /* Small, green arrow icon */
    color: #3e6d62;
    font-size: 8px;
    margin-right: 8px;
    position: relative;
    top: 0.5px;
}

/* Newsletter Button Styling */
.cp-newsletter-button {
    /* Exact button background color */
    background-color: #314d4c;
    color: #dbe7e4;
    border: none;
    padding: 10px 20px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cp-newsletter-button:hover {
    background-color: #3e6d62;
}

/* Footer Bottom Section (Copyright) */
.cp-footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0 auto;
    padding: 0 20px;
}

.cp-footer-separator {
    /* Light grey separator line */
    border: 0;
    height: 1px;
    background-color: #a4b4b0;
    margin-bottom: 15px;
}

.cp-copyright-text {
    color: #354e4c;
    font-size: 12px;
    font-weight: 300;
    text-align: left;
}


/* ==================================== */
/* 📱 MOBILE RESPONSIVENESS */
/* ==================================== */

/* Tablet View (992px and below) */
@media (max-width: 992px) {
    .cp-footer-container {
        flex-wrap: wrap;
        /* Add vertical spacing between rows */
        gap: 40px;
    }

    .cp-footer-col {
        /* Columns take up 50% width on tablets */
        width: 45%;
    }

    .cp-info-col {
        /* First column goes full width */
        width: 100%;
    }
}

/* Mobile View (576px and below) */
@media (max-width: 576px) {
    .cp-footer-col {
        /* All columns stack vertically on mobile */
        width: 100%;
    }

    .cp-links-group-col {
        /* Remove space between top and bottom sections to reduce height */
        gap: 20px;
    }
}



/* Foooter END Here  */
/* Foooter END Here  */
/* Foooter END Here  */