body {
    background-color: #f5f7fa;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
}

/* Base background placeholders to eliminate white screen layout shifts on fast scroll */
.option-card img,
.project-image img,
.city-card img,
.article-item img,
.rental-article-item img,
.plots-article-item img,
.owner-article-item img,
.pg-article-item img,
.living-image img, 
.rental-image img, 
.plots-image img, 
.owner-image img, 
.pg-image img {
    background-color: #e2e8f0 !important;
}

/* Explicit aspect ratios to reserve physical layout dimensions */
.living-image img, 
.rental-image img, 
.plots-image img, 
.owner-image img, 
.pg-image img {
    aspect-ratio: 16 / 10;
    min-height: 320px;
    height: auto;
    object-fit: cover;
}

/* Hard explicit overrides to completely turn off the layout-blanking visibility bug */
.living-section,
.rental-home-section, 
.plots-land-section, 
.owner-property-section, 
.pg-section {
    content-visibility: normal !important;
    contain: none !important;
}

/* ==========================================================================
   2. HEADER & DROPDOWN ACCENTS
   ========================================================================== */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

/* Logo Image Styling */
.main-header .logo {
    display: inline-flex;
    align-items: center;
}

.logo-img {
    height: 50px; /* Adjust height based on your design preference */
    width: auto;  /* Maintains aspect ratio */
    object-fit: contain;
    transition: transform 0.2s ease;
}

.logo-img:hover {
    transform: scale(1.02);
}

/* Mobile Responsiveness Adjustment */
@media (max-width: 575.98px) {
    .logo-img {
        height: 32px; /* Slightly smaller height on mobile screens */
    }
}

.nav-links li {
    margin: 0 16px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.post-btn {
    height: 42px;
    background: #fff;
    color: #111;
    border: none;
    padding: 0 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.user-dropdown {
    position: relative;
}

.user-btn {
    height: 42px;
    display: flex;
    align-items: center;
    background: #fff;
    border: none;
    padding: 0 14px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #12284c;
}

.dropdown-menu {
    position: absolute;
    top: 46px;
    right: 0;
    width: 220px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .14);
    overflow: hidden;
    z-index: 9999;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: 0.2s ease;
}

.user-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    text-decoration: none;
    color: #12284c;
    font-size: 13px;
    border-bottom: 1px solid #f1f1f1;
}

.dropdown-menu a:hover {
    background: #f5f7fa;
    color: #0d6efd;
}

/* ==========================================================================
   3. HERO PANEL & SEARCH COMPONENT
   ========================================================================== */
.hero {
    height: 780px;
    background-image: url('https://images.unsplash.com/photo-1600585154526-990dced4db0d?auto=format&fit=crop&w=1400&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Dark background overlay */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(8, 18, 44, 0.55);
    z-index: 1; /* Sits over the background image */
}

/* Elevate the text and search box ABOVE the dark overlay */
.hero-content {
    position: relative;
    z-index: 2; /* Sits above the overlay */
    padding-top: 180px;
    color: #fff;
    text-align: center;
}

.hero-content h1 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 14px;
}

.hero-content p {
    font-size: 17px;
    margin-bottom: 35px;
    color: #e2e8f0;
}

.search-box {
    background: #fff;
    max-width: 920px;
    margin: auto;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.tabs {
    display: flex;
    border-bottom: 1px solid #eee;
    gap: 10px;
    margin-bottom: 18px;
}

.tab {
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #52606d;
    background: #f1f5f9;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s ease;
}

.tab:hover, .tab.active {
    background: #0d6efd;
    color: #fff;
}

.search-row select, .search-row input {
    height: 54px;
}

.search-btn {
    background: #0d6efd;
    color: #fff;
    border: none;
    height: 54px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

/* ==========================================================================
   4. HORIZONTAL CAROUSEL CONTROLS & OBJECT FRAMES
   ========================================================================== */
.slider-btn {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    font-size: 18px;
    z-index: 99;
}

.slider-btn.prev { left: -15px; }
.slider-btn.next { right: -15px; }

.property-slider, .projects-slider, .project-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
}

.property-slider::-webkit-scrollbar, 
.projects-slider::-webkit-scrollbar, 
.project-scroll::-webkit-scrollbar {
    display: none;
}

.option-card {
    min-width: 200px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    text-align: center;
    padding-bottom: 15px;
}

.option-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.option-card h3 {
    font-size: 14px;
    color: #243b53;
    margin-top: 12px;
    font-weight: 600;
}

/* ==========================================================================
   5. FLOATING PORTAL CARDS & ACCENTS
   ========================================================================== */
.section-heading span {
    font-size: 11px;
    font-weight: 700;
    color: #7b8794;
}

.section-heading h2 {
    font-size: 26px;
    color: #12284c;
}

.explore-btn, .rent-btn, .plots-btn, .owner-btn, .pg-btn {
    display: inline-block;
    background: #0d6efd;
    color: #fff;
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}

.article-box, .rental-article-box, .plots-article-box, .owner-article-box, .pg-article-box {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    padding: 28px;
    position: relative;
    z-index: 10;
}

.article-item img, .rental-article-item img, .plots-article-item img, .owner-article-item img, .pg-article-item img {
    width: 72px;
    height: 54px;
    object-fit: cover;
    border-radius: 8px;
}

/* ==========================================================================
   6. CARDS DISPLAY MODULES (New Arrival & Handpicked)
   ========================================================================== */
.project-card {
    background: #fff;
    min-width: 320px;
    border-radius: 12px;
    padding: 18px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.badge {
    position: absolute;
    top: 12px;
    left: 0;
    background: #ffe8a3;
    color: #111;
    font-size: 10px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 0 6px 6px 0;
}

.project-info img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
}

.residential-card {
    min-width: 360px;
    position: relative;
    padding-bottom: 20px;
    flex-shrink: 0;
}

.project-image img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.project-logo {
    position: absolute;
    left: 28px;
    top: 185px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #0d6efd;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    z-index: 10;
}

.project-details {
    background: #fff;
    width: 88%;
    margin: -40px auto 0;
    border-radius: 12px;
    padding: 40px 22px 22px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 5;
}

/* Upcoming Projects Big Banner */
.upcoming-banner img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.project-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: #fff;
    font-size: 26px;
    cursor: pointer;
    z-index: 5;
}

.project-arrow.left { left: 18px; }
.project-arrow.right { right: 18px; }

/* ==========================================================================
   7. COMMERCIAL TILES GRID
   ========================================================================== */
.commercial-card {
    position: relative;
    min-height: 420px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    background-size: cover;
    background-position: center;
}

.buy-card { background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=700&q=75'); }
.lease-card { background-image: url('https://images.unsplash.com/photo-1524758631624-e2822e304c36?auto=format&fit=crop&w=700&q=75'); }

.commercial-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.82);
}

.commercial-content {
    position: relative;
    z-index: 2;
    max-width: 360px;
}

/* ==========================================================================
   8. BRAND METRICS & DOWNLOAD PANEL
   ========================================================================== */
.benefit-item {
    text-align: left;
}

.benefit-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #edf4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.testimonial-user img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
}

.mobile-app-wrapper {
    background: #f4ede1;
}

.mobile-app-image img {
    width: 260px;
}

.download-badge {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 12px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    color: #12284c;
}

/* ==========================================================================
   9. EXTRA FOOTER QUICK LINKS UTILITIES
   ========================================================================== */
.quick-tabs {
    display: flex;
    gap: 18px;
    border-bottom: 1px solid #e6e6e6;
}

.quick-tab {
    background: none;
    border: none;
    padding: 0 0 12px;
    font-size: 14px;
    color: #52606d;
    cursor: pointer;
    position: relative;
}

.quick-tab.active {
    color: #12284c;
    font-weight: 700;
}

.quick-tab.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 2px;
    background: #0d6efd;
}

.quick-arrow a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #0d6efd;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* ==========================================================================
   10. MAIN SYSTEM FOOTER INTERFACE
   ========================================================================== */
.main-footer {
    background: #061321;
    padding: 70px 0 40px;
    position: relative;
}

.footer-column h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 22px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #d8dee9;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-column ul li a:hover {
    color: #0d6efd;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
}

.social-icons a:hover { 
    background: #0d6efd; 
}

.scroll-top {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #dbeafe;
    color: #0d6efd;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

/* ==========================================================================
   11. FLUID GRID RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media(max-width: 991px) {
    .hero-content h1 { font-size: 38px; }
    .upcoming-banner img { height: 420px; }
    .project-card { min-width: 280px; }
    .residential-card { min-width: 300px; }
    .project-image img { height: 200px; }
    .project-logo { top: 160px; }
    .benefit-item { text-align: center; }
    .benefit-icon { margin: 0 auto 18px; }
}

@media(max-width: 576px) {
    .hero-content h1 { font-size: 32px; }
    .project-card, .residential-card { min-width: 260px; }
    .project-image img { height: 180px; }
    .project-details { padding: 36px 18px 18px; }
}
/* =========================================
   FIX HEADER FOR INNER PAGES
========================================= */

.main-header{
    background:#fff !important;
    position:sticky;
    top:0;
    z-index:9999;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
}

/* Logo */

.main-header .logo{
    color:#111 !important;
    font-size:42px;
    font-weight:800;
}

.main-header .logo span{
    color:#0d6efd !important;
}

/* Remove Bootstrap text-white effect */

.main-header .text-white{
    color:#111 !important;
}

/* Navigation */

.main-header .nav-links li a{
    color:#111 !important;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
    transition:.3s;
}

.main-header .nav-links li a:hover{
    color:#0d6efd !important;
}

/* Post Property Button */

.main-header .post-btn{
    background:#0d6efd;
    color:#fff;
    border:none;
}

.main-header .post-btn:hover{
    background:#0b5ed7;
}

/* User Button */

.main-header .user-btn{
    background:#fff;
    color:#111 !important;
    border:1px solid #ddd;
}

.main-header .user-btn i{
    color:#111 !important;
}

/* Dropdown */

.main-header .dropdown-menu{
    background:#fff;
}

.main-header .dropdown-menu a{
    color:#111 !important;
}

.main-header .dropdown-menu a:hover{
    background:#f5f5f5;
}





/* ==========================================================================
   COMPLETE RESPONSIVE HEADER & NAVIGATION STYLES
   ========================================================================== */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.main-header .logo {
    font-size: 22px;
    letter-spacing: -0.5px;
    color: #12284c !important;
}

.main-header .logo span {
    color: #0d6efd !important;
}

/* Desktop Nav Links */
.main-header .nav-links {
    gap: 10px;
}

.main-header .nav-links li a {
    color: #222222 !important;
    text-decoration: none;
    padding: 8px 14px;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.main-header .nav-links li a:hover,
.main-header .nav-links li a.active {
    color: #0d6efd !important;
}

/* Header Action Buttons */
.post-btn {
    background-color: #0d6efd;
    color: #ffffff !important;
    border: none;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.post-btn:hover {
    background-color: #0b5ed7;
}

/* User Dropdown */
.user-dropdown {
    position: relative;
    display: inline-block;
}

.user-btn {
    background: #ffffff;
    border: 1px solid #dbe2ea;
    color: #12284c !important;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.user-dropdown .dropdown-menu {
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 8px;
    background: #ffffff;
    min-width: 200px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    border: 1px solid #edf2f7;
    display: none;
    overflow: hidden;
    z-index: 1100;
}

/* Show menu on hover / active focus */
.user-dropdown:hover .dropdown-menu,
.user-dropdown:focus-within .dropdown-menu {
    display: block;
}

.user-dropdown .dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    color: #333333 !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.user-dropdown .dropdown-menu a:hover {
    background-color: #edf4ff;
    color: #0d6efd !important;
}

/* ==========================================================================
   COMPLETE RESPONSIVE FOOTER STYLES
   ========================================================================== */

.main-footer {
    background-color: #0f1e3d;
    color: #ffffff;
    padding-top: 60px;
    padding-bottom: 30px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-contact p,
.footer-contact span {
    font-size: 14px;
}

.footer-social .social-icons a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.footer-social .social-icons a:hover {
    background-color: #0d6efd;
    transform: translateY(-2px);
}

.scroll-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 44px;
    height: 44px;
    background-color: #0d6efd;
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.scroll-top:hover {
    background-color: #0b5ed7;
    transform: translateY(-3px);
}

/* ==========================================================================
   ADVANCED RESPONSIVE MEDIA QUERIES (1200px, 991px, 768px, 576px, 360px)
   ========================================================================== */

/* Laptops & Tablets Below XL Breakpoint (max-width: 1199.98px) */
@media (max-width: 1199.98px) {
    /* Auto-enable responsive scroll drawer for nav-links on mobile/tablet */
    .nav-links {
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #ffffff;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        padding: 10px 15px;
        z-index: 1040;
        justify-content: space-around;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .nav-links li a {
        font-size: 13px;
        padding: 6px 10px;
    }

    /* Prevent footer/bottom content overlap caused by sticky bottom navigation */
    body {
        padding-bottom: 50px;
    }
}

/* Tablets (max-width: 991.98px) */
@media (max-width: 991.98px) {
    .main-header .container-fluid {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .post-btn {
        padding: 7px 14px;
        font-size: 13px;
    }

    .user-btn {
        padding: 7px 12px;
        font-size: 13px;
    }

    .main-footer {
        padding-top: 40px;
    }
}

/* Mobile Devices (max-width: 575.98px) */
@media (max-width: 575.98px) {
    .main-header .container-fluid {
        padding-left: 12px !important;
        padding-right: 12px !important;
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    .main-header .logo {
        font-size: 18px;
    }

    .nav-right {
        gap: 6px;
    }

    .post-btn {
        padding: 6px 10px;
        font-size: 11px;
        margin-right: 4px !important;
    }

    .user-btn {
        padding: 6px 8px;
        font-size: 12px;
    }

    .user-btn span {
        max-width: 70px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        display: inline-block;
    }

    .scroll-top {
        bottom: 65px; /* Offset to clear the bottom scroll bar */
        right: 15px;
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .footer-column {
        margin-bottom: 25px;
    }

    .footer-column h3 {
        margin-bottom: 12px;
        font-size: 16px;
    }

    .footer-bottom {
        padding-bottom: 20px;
    }
}

/* Small Smartphone Displays (max-width: 375px) */
@media (max-width: 375px) {
    .main-header .logo {
        font-size: 16px;
    }

    .post-btn {
        padding: 5px 8px;
        font-size: 10px;
    }

    .user-btn {
        padding: 5px 6px;
        font-size: 11px;
    }

    .user-btn span {
        display: none; /* Hide username text on ultra-small screens to preserve structural layout */
    }
}

/* property Details  */

    .gallery-box {
    background: #fff;
    border-radius: 16px;
}

.main-image-wrap {
    height: 420px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.img-main-view {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.2s ease;
}

.gallery-count-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 30px;
    backdrop-filter: blur(4px);
}

/* THUMBNAILS SCROLL & HIGHLIGHT */
.gallery-thumbs {
    scrollbar-width: thin;
}

.thumb-img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid #e2e8f0;
    transition: all 0.2s ease;
}

.thumb-img:hover {
    border-color: #0d6efd;
    transform: translateY(-2px);
}

.thumb-img.active-thumb {
    border-color: #0d6efd !important;
    box-shadow: 0 0 8px rgba(13, 110, 253, 0.4);
}

@media (max-width: 576px) {
    .main-image-wrap {
        height: 260px;
    }
    .thumb-img {
        width: 65px;
        height: 50px;
    }
}


.upcoming-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.upcoming-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 3;
    box-sizing: border-box;
}

/* Arrow Navigation */
.project-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #12284c;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.2s ease;
}

.project-arrow:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.1);
    color: #0d6efd;
}

.project-arrow.left { left: 20px; }
.project-arrow.right { right: 20px; }

@media (max-width: 768px) {
    .upcoming-banner { height: 420px !important; }
    .project-arrow { width: 36px; height: 36px; font-size: 14px; }
    .project-arrow.left { left: 10px; }
    .project-arrow.right { right: 10px; }
}


    .city-card-link {
        display: block;
    }
    .city-card {
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        cursor: pointer;
    }
    .city-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
    }
    .text-navy {
        color: #12284c !important;
    }
