/* Design System & Variables */
:root {
    --primary-color: #081B28;
    --accent-color: #ffffff;
    --text-color: #ffffff;
    --font-main: 'Outfit', sans-serif;
    --sidebar-width: 80px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background: var(--primary-color);
    color: var(--text-color);
    overflow-x: hidden;
}

/* Sidebar Styling */
.side-nav {
    position: absolute;
    left: 0;
    top: 0;
    height: 100vh;
    width: var(--sidebar-width);
    background: var(--primary-color);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Centered socially links */
    padding: 30px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-toggle {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: auto;
}

.menu-toggle .bar {
    width: 25px;
    height: 2px;
    background: #fff;
    transition: var(--transition);
}

.social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.vertical-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 500;
    transition: var(--transition);
}

.vertical-text:hover {
    color: #fff;
}

.dot {
    width: 6px;
    height: 6px;
    background: #fff;
    /* Changed from gold to white */
    border-radius: 50%;
}

/* Header Styling */
.main-header {
    position: absolute;
    top: 0;
    left: var(--sidebar-width);
    right: 0;
    z-index: 900;
    height: 100px;
    /* Fixed height to prevent expansion */
    padding: 0 30px;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

@media (min-width: 1025px) {
    .main-header::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 40px;
        /* Reduced offset to bring line closer to logo */
        right: 0;
        height: 2px;
        /* Increased line thickness */
        background: rgba(255, 255, 255, 0.15);
        /* Slightly increased opacity */
        z-index: 1;
    }
}

.main-header .container-fluid {
    width: 100%;
    height: 100%;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

.logo {
    width: 250px;
    /* Fixed width for border offset calculation */
    flex-shrink: 0;
}

.logo img {
    height: 140px;
    /* Significantly increased height */
    width: auto;
    background-color: var(--primary-color);
    padding: 10px;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    /* Hangs below the header */
    transition: var(--transition);
    position: relative;
    z-index: 1001;
}

.logo img:hover {
    transform: translateY(25px) scale(1.02);
}

/* Mobile Toggle Styling */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
}

.mobile-menu-toggle .bar {
    width: 30px;
    height: 2px;
    background: #fff;
    transition: var(--transition);
}

/* Mobile Overlay Styling */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 27, 40, 0.98);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    width: 100%;
    height: 100%;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    transform: translateX(50px);
    transition: var(--transition);
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.close-menu {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.close-menu:hover {
    background: #fff;
    color: var(--primary-color);
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
}

.mobile-nav ul li {
    margin-bottom: 30px;
}

.mobile-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 32px;
    font-weight: 600;
    transition: var(--transition);
}

.mobile-nav ul li a:hover {
    padding-left: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.mobile-menu-footer {
    margin-top: auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-socials {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.mobile-socials a {
    color: #fff;
    font-size: 20px;
    opacity: 0.6;
    transition: var(--transition);
}

.mobile-socials a:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.logo img:hover {
    transform: translateY(25px) scale(1.02);
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.desktop-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.desktop-nav ul li a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.desktop-nav ul li a i {
    font-size: 10px;
    opacity: 0.7;
}

/* Button Styling */
.btn {
    padding: 8px 20px;
    /* Reduced button padding for lower height */
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

/* Realar-Style Button with Circular Arrow Icon */
.th-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 6px 6px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    transition: var(--transition);
    cursor: pointer;
    letter-spacing: 0.5px;
}

.th-btn.style-border {
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: transparent;
}

.th-btn.style-border:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.th-btn.style-fill {
    background: #fff;
    color: var(--primary-color);
}

.th-btn.style-fill:hover {
    background: rgba(255, 255, 255, 0.9);
}

.th-btn.style-fill .icon-circle {
    background: var(--primary-color);
    color: #fff;
    border: none;
}

.th-btn .icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 14px;
    transition: var(--transition);
}

.th-btn:hover .icon-circle {
    transform: translateX(4px);
}

.btn-solid {
    background: #fff;
    /* Changed to white */
    color: var(--primary-color);
    /* Dark text on white button */
    padding: 16px 40px;
    font-size: 16px;
}

.btn-solid:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Slider Section Styling */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 500px;
    width: 100%;
    margin-left: 0;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: transform 8s ease;
}

.swiper-slide-active .slide-bg {
    transform: scale(1.05);
}

.slide-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    width: 100%;
    padding: 60px 20px 0 20px;
    /* Adjusted top padding to balance centering */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.property-types {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.type-btn {
    padding: 10px 25px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.type-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.hero-title {
    font-size: 40px;
    /* Reduced font size */
    font-weight: 700;
    line-height: 1.2;
    margin: 0 auto 30px auto;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
    max-width: 1000px;
    /* Increased width for better visibility */
    display: block;
    /* Removed line clamp to show full text */
}

.swiper-slide-active .hero-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.hero-subtext {
    font-size: 16px;
    /* Reduced font size */
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.swiper-slide-active .hero-subtext {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.cta-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.swiper-slide-active .cta-wrapper {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

/* Swiper Pagination */
.swiper-pagination {
    right: 60px !important;
    left: auto !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: auto !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    z-index: 20;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    background: #fff;
    border-color: #fff;
    transform: scale(1.2);
}

/* Responsive Scaling */
@media (max-width: 1024px) {
    :root {
        --sidebar-width: 0px;
    }

    .side-nav {
        display: none;
    }

    .desktop-nav,
    .header-cta {
        display: none;
    }

    .main-header {
        left: 0;
        height: 80px;
        padding: 0 20px;
        border-bottom: none;
        /* Removed border completely for mobile */
    }

    /* Desktop offset border is already hidden due to min-width media query */

    .mobile-menu-toggle {
        display: flex;
    }

    .logo {
        width: auto;
    }

    .logo img {
        height: 70px;
        transform: translateY(10px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        padding: 8px;
        border-radius: 0 0 10px 10px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        width: 100%;
        margin-left: 0;
        height: 100vh;
        min-height: 500px;
    }

    .property-types {
        flex-wrap: wrap;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtext {
        font-size: 15px;
    }

    .logo {
        width: auto;
    }

    .logo img {
        height: 60px;
    }

    .slide-content {
        padding: 0 15px;
    }

    .cta-wrapper {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }

    .hero-subtext {
        font-size: 14px;
    }

    .btn-solid {
        padding: 12px 24px;
        font-size: 14px;
    }

    .logo img {
        height: 45px;
        transform: translateY(8px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        padding: 6px;
    }
}

/* Featured Locations Section */
.locations-section {
    padding: 70px 0;
    background: #ffffff;
    /* Switched to White as per image */
    position: relative;
    overflow: hidden;
    color: #081B28;
}

.section-header {
    margin-bottom: 60px;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
}

.header-left {
    flex: 1;
}

.section-subtitle {
    color: #081B28;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 300;
    /* Reduced font weight */
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    position: relative;
    padding: 10px 0;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    width: 30px;
    height: 1px;
    background: currentColor;
    opacity: 1;
}

.section-title {
    font-size: 48px;
    font-weight: 600;
    /* Slightly increased font weight */
    color: #0065b1;
    margin-bottom: 20px;
    line-height: 1.1;
    position: relative;
}

/* Removed ::after dot as requested */

.section-desc {
    font-size: 18px;
    color: rgba(8, 27, 40, 0.7);
    max-width: 600px;
    line-height: 1.6;
}

.view-all-btn {
    background: #081B28;
    color: #fff;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 400;
    /* Reduced font weight */
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
    white-space: nowrap;
    margin-bottom: 10px;
}

.view-all-btn:hover {
    background: #1a2c3a;
    transform: translateY(-3px);
}

.locations-swiper {
    padding: 0 40px 80px 40px;
}

.location-card {
    height: 600px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: #fff;
    border: 1px solid rgba(8, 27, 40, 0.15);
    /* Slightly darker border */
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(8, 27, 40, 0.08);
}

.location-image {
    height: 300px;
    width: 100%;
    overflow: hidden;
}

.location-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.location-content {
    padding: 30px;
    background: #fff;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.location-name {
    font-size: 24px;
    font-weight: 700;
    color: #081B28;
    margin-bottom: 10px;
}

.location-meta {
    font-size: 14px;
    color: rgba(8, 27, 40, 0.6);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.location-desc {
    font-size: 15px;
    color: rgba(8, 27, 40, 0.7);
    line-height: 1.6;
    margin-bottom: 30px;
    flex: 1;
}

/* Card Bottom Row */
.card-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(8, 27, 40, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.agent-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.agent-img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
}

.agent-name {
    font-size: 14px;
    font-weight: 600;
    color: #081B28;
}

.details-btn {
    padding: 10px 25px;
    border: 1px solid #081B28;
    border-radius: 50px;
    text-decoration: none;
    color: #081B28;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.details-btn:hover {
    background: #081B28;
    color: #fff;
}

/* Removed old overlay styling as we now use location-content area */

.swiper-nav-wrapper {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(8, 27, 40, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: #081B28;
}

.nav-btn:hover {
    background: #081B28;
    color: #fff;
    border-color: #081B28;
}

@media (max-width: 768px) {
    .locations-section {
        padding: 50px 0;
    }

    .section-header {
        padding: 0 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-desc {
        font-size: 16px;
    }

    .locations-swiper {
        padding: 0 20px 60px 20px;
    }

    .location-card {
        height: auto;
        min-height: 500px;
        border-radius: 20px;
    }

    .location-image {
        height: 220px;
    }

    .location-content {
        padding: 20px;
    }

    .location-name {
        font-size: 20px;
    }

    .location-desc {
        margin-bottom: 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }

    .view-all-btn {
        width: 100%;
        justify-content: center;
        padding: 15px 25px;
    }

    .location-card {
        min-height: 480px;
    }

    .location-image {
        height: 180px;
    }
    
    .locations-swiper {
        padding: 0 15px 40px 15px;
    }
}

/* About Us Section */
.about-section {
    padding: 70px 0;
    background: #f8f9fa;
    overflow: hidden;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-image-column {
    flex: 1;
    position: relative;
}

.img-box6 {
    position: relative;
    padding-bottom: 50px;
}

.img-box6 .img1 {
    width: 80%;
    height: 550px;
    /* Fixed height for stability */
    margin-left: auto;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.img-box6 .img2 {
    width: 65%;
    height: 400px;
    /* Fixed height for stability */
    position: absolute;
    bottom: -30px;
    left: 0;
    border-radius: 30px;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 20px 40px rgba(8, 27, 40, 0.1);
    z-index: 3;
}

.img-box6 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Rotating Video/Experience Tag */
.about-tag {
    position: absolute;
    top: -20px;
    left: 40px;
    width: 160px;
    height: 160px;
    z-index: 5;
}

.about-experience-tag {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape-mockup {
    position: absolute;
    bottom: -60px;
    right: 50px;
    z-index: 0;
    opacity: 0.2;
}

.video-btn {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #081B28;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    font-size: 18px;
    z-index: 10;
}

.rotating-text-svg {
    width: 100%;
    height: 100%;
    animation: rotate 15s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.about-content-column {
    flex: 1;
}

.value-list {
    list-style: none;
    margin: 35px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: #081B28;
    font-size: 15px;
}

.value-item i {
    color: #28a745;
    font-size: 20px;
}

.call-info-wrap {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 45px;
}

.call-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-left: 30px;
    border-left: 1px solid #eee;
}

.call-icon {
    width: 55px;
    height: 55px;
    background: #081B28;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.call-text span {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.call-text strong {
    font-size: 22px;
    color: #081B28;
}

@media (max-width: 1024px) {
    .about-wrapper {
        flex-direction: column;
        gap: 60px;
    }

    .about-image-column {
        width: 100%;
        margin-bottom: 30px;
    }

    .img-box6 .img1 {
        width: 100%;
        height: 400px;
    }

    .img-box6 .img2 {
        width: 60%;
        height: 250px;
        bottom: -20px;
    }

    .about-tag {
        width: 120px;
        height: 120px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 50px 0;
    }

    .about-wrapper {
        padding: 0 20px;
        gap: 40px;
    }

    .img-box6 .img1 {
        height: 300px;
        border-radius: 20px;
    }

    .img-box6 .img2 {
        height: 180px;
        border-radius: 20px;
        bottom: -15px;
    }

    .about-tag {
        width: 100px;
        height: 100px;
        top: -15px;
        left: 10px;
    }

    .video-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .shape-mockup {
        display: none;
    }
}

/* Ongoing Projects Section */
.ongoing-section {
    padding: 70px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.ongoing-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.ongoing-section .section-header {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ongoing-section .section-title {
    margin-bottom: 20px;
}

.ongoing-section .section-desc {
    max-width: 700px;
    margin: 0 auto;
}

/* Decorative SVGs */
.decor-left {
    position: absolute;
    top: 50px;
    left: 50px;
    opacity: 0.15;
}

.decor-right {
    position: absolute;
    top: 50px;
    right: 50px;
    opacity: 0.15;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.project-card {
    text-align: center;
}

.project-image {
    height: 350px;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 25px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #081B28;
    margin-bottom: 5px;
}

.project-location {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    display: block;
}

.project-specs {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #081B28;
}

.spec-item i {
    color: #666;
}

.project-text {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    padding: 0 10px;
}

.browse-btn-wrap {
    margin-top: 40px;
}

@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .decor-left,
    .decor-right {
        display: none;
    }
}

/* Why Choose Us Section */
.why-section {
    padding: 70px 0;
    background: #f4f7f6;
    color: #0065b1 !important;
    overflow: hidden;
}

.why-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.why-image-column {
    flex: 1;
    position: relative;
}

.why-image-column .img-main {
    width: 100%;
    height: 650px;
    border-radius: 30px;
    overflow: hidden;
}

.why-image-column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-content-column {
    flex: 1.2;
}

.why-section .section-subtitle {
    color: #081B28;
}

.why-section .section-subtitle::before,
.why-section .section-subtitle::after {
    background: #081B28;
    opacity: 0.5;
}

.why-section .section-title {
    color: #0065b1;
    margin-bottom: 40px;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid rgba(8, 27, 40, 0.05);
    border-radius: 20px;
    transition: var(--transition);
}

.feature-item:hover {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(8, 27, 40, 0.05);
    transform: translateX(10px);
}

.feature-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: rgba(8, 27, 40, 0.05);
    color: #081B28;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    background: #081B28;
    color: #fff;
}

.feature-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #081B28;
}

.feature-text p {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .why-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .why-image-column {
        width: 100%;
    }

    .why-image-column .img-main {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .why-section {
        padding: 50px 0;
    }

    .why-wrapper {
        padding: 0 20px;
    }

    .why-image-column .img-main {
        height: 250px;
        border-radius: 20px;
    }

    .feature-item {
        padding: 15px;
        gap: 15px;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 18px;
    }

    .feature-text h3 {
        font-size: 16px;
    }
}

/* Our Services Section */
.services-section {
    padding: 70px 0;
    background: #f8f9fa;
}

.services-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.services-swiper {
    padding: 40px 0 60px 0;
    overflow: hidden;
    position: relative;
}

.service-card {
    background: #fff;
    padding: 50px 30px;
    border-radius: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #eee;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 280px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(8, 27, 40, 0.1);
    border-color: transparent;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #081B28;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 25px auto;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    transform: rotateY(360deg);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #081B28;
    line-height: 1.4;
}


/* footer  */
/* Hover effects */
.site-footer a:hover {
    color: #FFB347 !important;
    padding-left: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .site-footer>div>div:first-child {
        flex-direction: column;
        gap: 40px;
    }

    .site-footer>div {
        padding: 0 24px;
    }
}

/* Buy, Rent & Sell Section */
.brs-section {
    position: relative;
    padding: 70px 40px;
    background: #ffffff;
    color: #081B28;
    overflow: hidden;
}

.brs-decor-left {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100px;
    height: 100px;
    opacity: 0.6;
}

.brs-decor-right {
    position: absolute;
    top: 50px;
    right: 20px;
    width: 120px;
    height: 100px;
}

.brs-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.brs-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.brs-title-area {
    display: flex;
    flex-direction: column;
}

.brs-subtitle {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
    font-weight: 400;
}

.brs-title {
    font-size: 42px;
    font-weight: 700;
    color: #0065b1;
}

@media (max-width: 768px) {
    .brs-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .brs-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .brs-section {
        padding: 50px 20px;
    }

    .brs-title {
        font-size: 28px;
    }

    .brs-view-all-btn {
        width: 100%;
        justify-content: center;
    }

    .brs-card {
        padding: 30px 20px;
        min-width: 100%;
    }

    .brs-card h3 {
        font-size: 18px;
    }

    .brs-card p {
        font-size: 14px;
    }
}

@media (max-width: 320px) {
    .brs-section {
        padding: 40px 15px;
    }

    .brs-title {
        font-size: 24px;
    }

    .brs-subtitle {
        font-size: 12px;
    }

    .brs-decor-left, .brs-decor-right {
        display: none;
    }
}

.brs-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 1px solid #000;
    border-radius: 30px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.brs-view-all-btn:hover {
    background: #000;
    color: #fff;
}

.brs-cards-wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.brs-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    max-width: 380px;
    background: #212C35;
    border-radius: 12px;
    padding: 50px 30px;
    text-align: center;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.brs-card:hover {
    transform: translateY(-5px);
}

.brs-icon-wrap {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    color: #fff;
}

.brs-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.brs-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    max-width: 250px;
}

.brs-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.brs-card-btn:hover {
    background: #ffffff;
    color: #212C35;
}

@media (max-width: 992px) {
    .brs-cards-wrapper {
        flex-direction: column;
    }

    .brs-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

/* Trust Section */
.breadcumb-wrapper {
    position: relative;
    height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    /* Offset for the absolute header */
    padding-left: var(--sidebar-width);
    /* Align text with header without breaking bg */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    z-index: 1;
}

.breadcumb-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 27, 40, 0.4);
    /* Minimal overlay */
    z-index: -1;
}

.breadcumb-title {
    color: #ffffff;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.breadcumb-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.breadcumb-menu li {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.breadcumb-menu li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcumb-menu li a:hover {
    color: #ffffff;
}

.breadcumb-menu li i {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .breadcumb-wrapper {
        height: 300px;
        padding-top: 60px;
    }

    .breadcumb-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .breadcumb-wrapper {
        height: 250px;
    }

    .breadcumb-title {
        font-size: 28px;
    }
    
    .breadcumb-menu li {
        font-size: 14px;
    }
}

.trust-section {
    position: relative;
    padding: 70px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
}

.trust-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 27, 40, 0.85);
    z-index: 1;
}

.trust-section .container-fluid {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.trust-wrapper {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-stat {
    text-align: center;
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-icon {
    margin-bottom: 20px;
    color: #ffffff;
    opacity: 0.9;
}

.trust-number {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
}

.trust-label {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .trust-wrapper {
        gap: 40px;
    }

    .trust-stat {
        flex: 1 1 40%;
    }

    .trust-number {
        font-size: 42px;
    }
}

@media (max-width: 480px) {
    .trust-section {
        padding: 50px 0;
    }

    .trust-wrapper {
        gap: 30px;
    }

    .trust-stat {
        flex: 1 1 100%;
    }

    .trust-number {
        font-size: 36px;
    }

    .trust-label {
        font-size: 12px;
        letter-spacing: 1px;
    }
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 27, 40, 0.6);
    z-index: 1;
}

.cta-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.cta-heading {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Custom WhatsApp theme button inheriting from th-btn */
.th-btn.btn-whatsapp-theme {
    background: #25D366;
    color: #fff;
    border: none;
}

.th-btn.btn-whatsapp-theme:hover {
    background: #1ebc5a;
}

.th-btn.btn-whatsapp-theme .icon-circle {
    background: #1ebc5a;
    color: #fff;
}

.th-btn.btn-whatsapp-theme:hover .icon-circle {
    background: #128c7e;
}

@media (max-width: 768px) {
    .cta-heading {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background-color: #fcfdfd;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.info-card {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 55px;
    height: 55px;
    background: rgba(8, 27, 40, 0.05);
    color: #081B28;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 20px;
    color: #081B28;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-content p,
.info-content a {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    text-decoration: none;
    margin: 0;
}

.info-content a:hover {
    color: #081B28;
    font-weight: 600;
}

.why-contact-box {
    margin-top: 40px;
    background: #081B28;
    color: #fff;
    padding: 40px;
    border-radius: 20px;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-list li {
    margin-bottom: 16px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.why-list li i {
    color: #fff;
    font-size: 18px;
}

.contact-social {
    margin-top: 40px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons .social-icon {
    width: 45px;
    height: 45px;
    background: #fff;
    border: 1px solid rgba(8, 27, 40, 0.1);
    color: #081B28;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons .social-icon:hover {
    background: #081B28;
    color: #fff;
    transform: translateY(-4px);
    border-color: #081B28;
}

/* Form Styles */
.form-wrapper {
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(8, 27, 40, 0.04);
    border: 1px solid rgba(8, 27, 40, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: #081B28;
    margin-bottom: 10px;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(8, 27, 40, 0.1);
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: #333;
    background: #f8f9fa;
    outline: none;
    transition: all 0.3s ease;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: #081B28;
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(8, 27, 40, 0.05);
}

.submit-btn {
    background: #081B28;
    color: #ffffff;
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #152c3f;
    transform: translateY(-2px);
}

/* Map Section */
.map-section {
    width: 100%;
    height: 450px;
    line-height: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 50px 0;
    }

    .map-section {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .form-wrapper {
        padding: 25px 20px;
    }

    .why-contact-box {
        padding: 30px 20px;
    }

    .info-card {
        flex-direction: column;
        gap: 15px;
    }

    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .map-section {
        height: 300px;
    }
}

@media (max-width: 320px) {
    .contact-section {
        padding: 40px 0;
    }

    .form-wrapper {
        padding: 20px 15px;
    }

    .info-content h3 {
        font-size: 18px;
    }

    .info-content p, .info-content a {
        font-size: 14px;
    }
}
@media (max-width: 320px) { .map-section { height: 250px !important; } }
