:root {
    /* === COLORS === */
    --color-primary-blue: #0d4f8b;
    --color-primary-orange: #f58220;
    --color-primary-yellow: #f7c325;

    /* Text Colors */
    --color-text-dark: #333;
    --color-text-medium: #666;
    --color-text-light: #999;
    --color-white: #ffffff;
    --color-black: #000000;

    /* Background Colors */
    --bg-white: #ffffff;
    --bg-light-gray: #f5f8fa;
    --bg-medium-gray: #e8ecf1;
    --bg-dark-blue: #0a1930;

    /* Border Colors */
    --border-light: #ddd;
    --border-medium: #e8e8e8;

    /* === SHADOWS === */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ==========================================
   GLOBAL STYLES
========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", "Roboto", sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* ==========================================
   TOP BAR (Home Page)
========================================== */
.top-bar {
    background: #0d4f8b;
    color: white;
    padding: 8px 0;
    font-size: 14px;
    transition: all 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
}

.top-bar.hidden {
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: white;
    text-decoration: none;
}

.top-bar a:hover {
    text-decoration: underline;
}

.top-bar i {
    color: #f7c325;
    margin-right: 5px;
}

.top-bar .social-link {
    margin-left: 20px;
}

.top-bar .social-link i {
    color: #fff;
    font-size: 16px;
}

/* ==========================================
   TOP BAR INNER (Inner Pages)
========================================== */
.top-bar-inner {
    background: #0d4f8b;
    color: white;
    padding: 10px 0;
    font-size: 13px;
}

.top-bar-inner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 25px;
}

.top-bar-left span {
    display: inline-flex;
    align-items: center;
}

.top-bar-inner i {
    color: #f7c325;
    margin-right: 8px;
    font-size: 14px;
}

.top-bar-inner a {
    color: white;
    text-decoration: none;
}

.top-bar-inner a:hover {
    color: #f7c325;
}

.top-bar-right .social-link {
    color: white;
    font-size: 16px;
    transition: all 0.3s;
}

.top-bar-right .social-link:hover {
    color: #f7c325;
}

/* ==========================================
   HEADER / NAVBAR
========================================== */
.main-header {
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

.main-header.header-home {
    background: transparent;
    top: 40px;
}

.main-header.header-home.scrolled {
    background: #0d4f8b;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    top: 0;
}

.main-header.header-inner {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container {
    padding: 15px 0;
    transition: all 0.3s ease;
}

.main-header.scrolled .logo-container {
    padding: 10px 0;
}

.logo-container img {
    height: 70px;
    width: auto;
    transition: all 0.3s ease;
}

.main-header.scrolled .logo-container img {
    height: 60px;
}

.logo-container a {
    display: block;
    line-height: 0;
}

.navbar {
    background: transparent !important;
    padding: 0;
}

.navbar-nav {
    margin: 0;
}

.navbar-nav .nav-item {
    margin: 0;
}

.main-header.header-home .navbar-nav .nav-link {
    color: white !important;
    font-weight: 600;
    padding: 25px 20px !important;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
    border-bottom: 3px solid transparent;
}

.main-header.header-home .navbar-nav .nav-link:hover,
.main-header.header-home .navbar-nav .nav-link.active {
    color: #f7c325 !important;
}

.main-header.header-inner .navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 600;
    padding: 25px 20px !important;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.main-header.header-inner .navbar-nav .nav-link:hover,
.main-header.header-inner .navbar-nav .nav-link.active {
    color: #f7c325 !important;
}

.main-header.scrolled .navbar-nav .nav-link {
    padding: 20px 18px !important;
}

.navbar-toggler {
    border-color: white;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.main-header.header-inner .navbar-toggler {
    border-color: #333;
}

.main-header.header-inner .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ==========================================
   HERO SLIDER SECTION
========================================== */
.hero-slider-section {
    position: relative;
    margin-top: -130px;
}

.hero-slide {
    position: relative;
    height: 100vh;
    min-height: 880px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: white;
    padding-top: 130px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    animation: fadeInUp 1s ease-in-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 900;
    margin: 20px 0;
    line-height: 1.2;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-contact {
    background: #f58220;
    color: white;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
    margin-top: 30px;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}

.btn-contact:hover {
    background: #d66f1a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 130, 32, 0.4);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    border-radius: 0;
    opacity: 0.8;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
}

.carousel-control-prev {
    left: 15px;
}

.carousel-control-next {
    right: 15px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(247, 195, 37, 0.9);
    border-color: #f7c325;
    opacity: 1;
}

.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background-color: transparent;
    opacity: 0.7;
    transition: all 0.3s;
}

.carousel-indicators .active {
    background-color: #f7c325;
    border-color: #f7c325;
    opacity: 1;
    transform: scale(1.2);
}

/* ==========================================
   INNER PAGE BANNER
========================================== */
.inner-page-banner {
    position: relative;
    height: 250px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.inner-page-banner .container {
    position: relative;
    z-index: 3;
}

.banner-title {
    font-family: "Montserrat", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-transform: capitalize;
}

/* ==========================================
   PROPERTY SECTION
========================================== */
.property-section {
    padding-top: 0px;
    /* padding-bottom: 80px; */
    background: #e5eef6;
    position: relative;
    z-index: 10;
}

.property-content {
    top: -120px;
    display: flex;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.property-image {
    flex: 1;
    background-size: cover;
    /* background-position: center; */
    min-height: 600px;
}

.property-text {
    flex: 1;
    background: white;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.property-text h6 {
    color: #000;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.property-text h2 {
    font-family: "Montserrat", Helvetica, Arial, Lucida, sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 30px;
}

.property-text p {
    font-family: "Montserrat", Helvetica, Arial, Lucida, sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

.property-text p a {
    color: #0d4f8b;
    font-weight: 600;
    text-decoration: none;
}

.property-text p a:hover {
    text-decoration: underline;
}

/* Property Icons with Border & Clickable Links */
.property-icons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.property-icon-box {
    text-align: center;
    flex: 1;
    padding: 30px 15px;
    border: 2px solid #e0e0e0;
    background: white;
    transition: all 0.3s;
    text-decoration: none;
    display: block;
}

/* .property-icon-box:hover {
    border-color: #f7c325;
    box-shadow: 0 5px 20px rgba(247, 195, 37, 0.3);
    transform: translateY(-5px);
} */

.property-icon-img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    object-fit: contain;
}

.property-icon-box h5 {
    font-family: "Montserrat", Helvetica, Arial, Lucida, sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

/* .property-icon-box:hover h5 {
    color: #0d4f8b;
} */
/* ==========================================
   SERVICES SECTION
========================================== */
.services-section {
    padding: 80px 0;
    background: #e5eef6;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h6 {
    color: #000;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
}

.section-header h2 {
    font-family: "Montserrat", Helvetica, Arial, Lucida, sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: #000;
}

.service-card {
    background: white;
    padding: 35px 30px;
    transition: all 0.3s;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    /* text-align: center; */
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: #044c80;
    color: #fff;
    transform: translateY(-5px);
}

/* PNG Icon Images Instead of FontAwesome */
.service-icon-img {
    width: 35px;
    height: 35px;
    margin-bottom: 25px;
    object-fit: contain;
}

.service-card h4 {
    font-family: "Montserrat", Helvetica, Arial, Lucida, sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #000;
    line-height: 1.4;
}

.service-card:hover h4 {
    color: #fff;
}

/* ==========================================
   CONTACT FORM SECTION (Home Page)
========================================== */

.contact-form-section {
    padding: 0;
    background: white;
    position: relative;
}

.contact-form-wrapper-home {
    position: relative;
    min-height: 700px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* Background Image - Full Width */
.contact-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Dark Overlay (Optional) */
.contact-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

/* Form Content - Right Side Overlay */
.contact-form-content {
    position: relative;
    z-index: 3;
    flex: 0 0 500px;
    /* background: rgba(255, 255, 255, 0.98); */
    padding: 80px 60px;
    margin-right: 80px;
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2); */
}

.contact-form-content h6 {
    color: #000;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.contact-form-content h2 {
    font-family: "Montserrat", Helvetica, Arial, Lucida, sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 20px;
}

.contact-form-content p {
    font-family: "Montserrat", Helvetica, Arial, Lucida, sans-serif;
    font-size: 15px;
    color: #000;
    margin-bottom: 40px;
}

.contact-form-content .form-control,
.contact-form-content .form-select {
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    font-size: 14px;
    background: white;
    transition: all 0.3s;
}

.contact-form-content .form-control:focus,
.contact-form-content .form-select:focus {
    border-color: #f7c325;
    box-shadow: none;
}

.btn-submit {
    background: #f7c325;
    color: #000;
    padding: 14px 40px;
    border: none;
    border-radius: 0;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s;
    letter-spacing: 1px;
    width: 100%;
}

.btn-submit:hover {
    background: #d6a620;
    color: #000;
    transform: translateY(-2px);
}

/* ==========================================
   RESPONSIVE - CONTACT FORM SECTION
========================================== */
@media (max-width: 1200px) {
    .contact-form-content {
        flex: 0 0 450px;
        margin-right: 50px;
        padding: 60px 40px;
    }
}

@media (max-width: 992px) {
    .contact-form-wrapper-home {
        min-height: 600px;
        justify-content: center;
    }

    .contact-form-content {
        flex: 0 0 500px;
        margin-right: 0;
        padding: 50px 40px;
    }
}

@media (max-width: 768px) {
    /* .contact-form-wrapper-home {
        min-height: auto;
        padding: 60px 0;
    } */

    .contact-form-wrapper-home {
        background: white !important;
        min-height: auto;
        padding: 40px 20px;
    }
    .contact-image::after {
        background: transparent !important;
    }

    /* .contact-form-content {
        flex: 1;
        max-width: 90%;
        margin: 0 auto;
        padding: 40px 30px;
    }

    .contact-form-content h2 {
        font-size: 2rem;
    } */

    .contact-form-content {
        /* background: white !important; */
        background: rgba(255, 255, 255, 0.95) !important;
        max-width: 100%;
        padding: 30px 20px;
        box-shadow: none;
        margin-right: 0;
    }

    .contact-form-content h6,
    .contact-form-content h2,
    .contact-form-content p {
        color: #000 !important;
    }
}

@media (max-width: 576px) {
    /* .contact-form-wrapper-home {
        padding: 40px 0;
    } */
    .contact-form-wrapper-home {
        background: white !important;
        padding: 30px 15px;
    }

    /* .contact-form-content {
        max-width: 95%;
        padding: 30px 20px;
    } */

    .contact-form-content {
        background: rgba(255, 255, 255, 0.95) !important;
        padding: 20px 15px;
    }

    .contact-form-content h2 {
        font-size: 1.7rem;
    }
}

/* ==========================================
   ABOUT SECTION
========================================== */
.about-section {
    padding: 80px 0;
    background: white;
}

.about-wrapper {
    display: flex;
    min-height: 600px;
}

.about-info-box {
    flex: 0 0 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 40px; /* Space from all sides */
}

.about-info-overlay {
    position: absolute;
    top: 40px; /* Space from top */
    left: 40px; /* Space from left */
    right: 40px; /* Space from right */
    bottom: 40px; /* Space from bottom */
    background: rgba(4, 76, 128, 0.9);
    z-index: 1;
}

.about-info-content {
    position: relative;
    z-index: 2;
    padding: 60px 50px;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-info-content h4 {
    font-family: "Montserrat", Helvetica, Arial, Lucida, sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
}

.about-info-content p {
    font-family: "Montserrat", Helvetica, Arial, Lucida, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: white;
}

.about-info-content p strong {
    font-weight: 700;
}

.btn-yellow {
    background: #f7c325;
    color: #000;
    padding: 14px 35px;
    border: none;
    border-radius: 0;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
    margin-top: 20px;
    align-self: flex-start;
}

.btn-yellow:hover {
    background: #d6a620;
    color: #000;
    transform: translateY(-2px);
}

.about-content-box {
    flex: 1;
    padding: 80px 60px;
    background: white;
}

.about-content-box h6 {
    color: #000;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.about-content-box h2 {
    font-family: "Montserrat", Helvetica, Arial, Lucida, sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 30px;
}

.about-content-box p {
    font-family: "Montserrat", Helvetica, Arial, Lucida, sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.about-content-box p a {
    color: #0d4f8b;
    font-weight: 600;
    text-decoration: none;
}

.about-content-box p a:hover {
    text-decoration: underline;
}

.facebook-badge {
    margin-top: 30px;
}

.facebook-badge img {
    height: 50px;
    width: auto;
}

/* ==========================================
   RESPONSIVE - ABOUT SECTION
========================================== */
@media (max-width: 992px) {
    .about-wrapper {
        flex-direction: column;
    }

    .about-info-box {
        flex: 1;
        min-height: 500px;
        padding: 30px;
    }

    .about-info-overlay {
        top: 30px;
        left: 30px;
        right: 30px;
        bottom: 30px;
    }

    .about-info-content {
        padding: 50px 40px;
    }

    .about-content-box {
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    .about-info-box {
        padding: 20px;
        min-height: 450px;
    }

    .about-info-overlay {
        top: 20px;
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .about-info-content {
        padding: 40px 30px;
    }

    .about-info-content h4 {
        font-size: 26px;
    }

    .about-content-box {
        padding: 50px 30px;
    }

    .about-content-box h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .about-info-box {
        padding: 15px;
    }

    .about-info-overlay {
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

    .about-info-content {
        padding: 30px 20px;
    }

    .about-info-content h4 {
        font-size: 22px;
    }

    .about-content-box {
        padding: 40px 20px;
    }

    .btn-yellow {
        width: 100%;
        text-align: center;
    }
}
/* ==========================================
   TESTIMONIALS SECTION
========================================== */
.testimonials-section {
    padding: 80px 0;
    background: #e8ecf1;
}

.testimonial-card {
    background: white;
    padding: 40px;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 30px;
    font-size: 8rem;
    color: #f7f7f7;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card h5 {
    font-weight: 900;
    margin-bottom: 15px;
    color: #000;
    font-size: 18px;
}

.testimonial-stars {
    color: #f58220;
    margin-bottom: 15px;
    font-size: 14px;
}

.testimonial-card p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* ==========================================
   FOOTER
========================================== */
.main-footer {
    color: white;
    padding: 80px 0 40px;
    background: #0a1930;
}

.footer-widget h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-widget p,
.footer-widget ul li {
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 8px;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
}

.footer-widget ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-widget ul li a:hover {
    color: #f7c325;
}

.footer-widget ul li::before {
    content: "≫";
    margin-right: 10px;
    color: #f7c325;
}

.footer-widget a {
    color: white;
    text-decoration: none;
}

.footer-widget a:hover {
    color: #f7c325;
}

.pexa-logo-footer img {
    height: 80px;
    width: auto;
    margin-top: 30px;
}

.social-icons-footer {
    margin-top: 20px;
}

.social-icons-footer a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: white;
    color: #0d4f8b;
    margin-right: 10px;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-icons-footer a:hover {
    background: #f7c325;
    color: #000;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 50px;
    padding-top: 30px;
    text-align: center;
}

/* ==========================================
   INNER CONTENT SECTION (Buying/Selling Pages)
========================================== */
.inner-content-section {
    padding: 60px 0;
    background: #f5f8fa;
}

.content-wrapper {
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.content-feature-image {
    width: 100%;
    overflow: hidden;
}

.content-feature-image img {
    width: 100%;
    height: auto;
    display: block;
}

.content-body {
    padding: 50px 60px;
}

.content-body p {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.9;
    color: #666;
    margin-bottom: 25px;
}

.content-body p a {
    color: #0d4f8b;
    font-weight: 600;
    text-decoration: none;
}

.content-body p a:hover {
    text-decoration: underline;
}

/* Enquiry Form Box */
.enquiry-form-box {
    padding: 50px 60px 60px;
    background: white;
    border-top: 1px solid #e8e8e8;
}

.form-label {
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 10px;
}

.form-heading {
    font-family: "Montserrat", sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 35px;
}

.enquiry-form-box .form-control {
    font-family: "Montserrat", sans-serif;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 14px;
    font-weight: 400;
    background: #fafafa;
    color: #666;
}

.enquiry-form-box .form-control:focus {
    border-color: #f7c325;
    box-shadow: none;
    background: white;
}

.enquiry-form-box textarea.form-control {
    resize: vertical;
    min-height: 130px;
}

.btn-form-submit {
    font-family: "Montserrat", sans-serif;
    background: #f7c325;
    color: #000;
    padding: 14px 40px;
    border: none;
    border-radius: 0;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-form-submit:hover {
    background: #d6a620;
}

/* ==========================================
   SIDEBAR STYLES
========================================== */
.page-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-box {
    background: white;
    padding: 0;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.sidebar-heading {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #000;
    padding: 25px 30px;
    margin: 0;
    border-bottom: 3px solid #f7c325;
    background: #fafafa;
}

/* Services Box */
.services-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-menu li {
    border-bottom: 1px solid #e8e8e8;
}

.services-menu li:last-child {
    border-bottom: none;
}

.services-menu li a {
    font-family: "Montserrat", sans-serif;
    display: block;
    padding: 18px 30px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.services-menu li a:hover {
    background: #f9f9f9;
    color: #000;
    padding-left: 35px;
}

.services-menu li.active a {
    background: #f7c325;
    color: #fff;
    font-weight: 600;
    padding-left: 35px;
}

/* Pricing Box */
.pricing-box {
    padding: 30px;
}

.pricing-box p {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

.pricing-box a {
    color: #0d4f8b;
    font-weight: 600;
    text-decoration: none;
}

.pricing-box a:hover {
    text-decoration: underline;
}

/* Contact Box */
.contact-box {
    position: relative;
    padding: 0;
    overflow: hidden;
    min-height: 350px;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.contact-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 79, 139, 0.92);
    z-index: 2;
}

.contact-content {
    position: relative;
    z-index: 3;
    padding: 30px;
}

.sidebar-heading-white {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: white;
    padding-bottom: 20px;
    margin-bottom: 25px;
    border-bottom: 3px solid #f7c325;
}

.contact-details {
    color: white;
}

.contact-label {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    margin-top: 20px;
}

.contact-label:first-child {
    margin-top: 0;
}

.contact-number,
.contact-email {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.contact-number a,
.contact-email a {
    color: white;
    text-decoration: none;
}

.contact-number a:hover,
.contact-email a:hover {
    color: #f7c325;
}
/* ==========================================
   CONTACT PAGE STYLES
========================================== */
.contact-page-section {
    padding: 70px 0;
    background: #f5f8fa;
}

.contact-card-wrapper {
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    padding: 0;
}

.contact-form-wrapper {
    padding: 50px 40px;
    background: transparent;
    box-shadow: none;
}

.section-label {
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 12px;
}

.section-title {
    font-family: "Montserrat", sans-serif;
    font-size: 23px;
    font-weight: 700;
    color: #000;
    margin-bottom: 40px;
}

.contact-form .form-control {
    font-family: "Montserrat", sans-serif !important;
    padding: 18px 20px !important;
    border: 1px solid #e5e5e5 !important;
    border-radius: 0 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    background: #f9f9f9 !important;
    color: #999 !important;
    transition: all 0.3s !important;
}

.contact-form .form-control:focus {
    border-color: #ddd !important;
    box-shadow: none !important;
    background: #fff !important;
    color: #333 !important;
    outline: none !important;
}

.contact-form .form-control::placeholder {
    color: #bbb !important;
    font-weight: 300 !important;
}

.contact-form textarea.form-control {
    resize: vertical !important;
    min-height: 150px !important;
}

.btn-contact-submit {
    font-family: "Montserrat", sans-serif !important;
    background: #f7c325 !important;
    color: #000 !important;
    padding: 16px 50px !important;
    border: none !important;
    border-radius: 0 !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
}

.btn-contact-submit:hover {
    background: #d6a620 !important;
    transform: translateY(-2px) !important;
}

.contact-info-wrapper {
    padding: 50px 40px;
    background: transparent;
    box-shadow: none;
    /* border-left: 1px solid #e8e8e8; */
    height: 100%;
}

.info-heading {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 35px;
    padding-bottom: 15px;
    /* border-bottom: 3px solid #f7c325; */
}

.info-item {
    margin-bottom: 30px;
}

.info-item h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.info-item p {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #000;
    margin: 0;
    line-height: 1.8;
}

.icon-yellow {
    color: #f7c325;
    font-size: 24px;
    margin-right: 15px;
    vertical-align: middle;
}

.info-item a {
    color: #000;
    text-decoration: none;
    transition: all 0.3s;
}

.info-item a:hover {
    color: #0d4f8b;
}

/* Map Section */
.map-section {
    padding: 0;
    background: #f5f8fa;
    padding-bottom: 70px;
}

.map-container {
    width: 100%;
    height: 450px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

.alert-success {
    font-family: "Montserrat", sans-serif;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 15px 20px;
    border-radius: 0;
    margin-bottom: 30px;
}

/* ==========================================
   RESPONSIVE - CONTACT PAGE
========================================== */
@media (max-width: 992px) {
    .contact-info-wrapper {
        border-left: none;
        border-top: 1px solid #e8e8e8;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 40px 30px;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .map-container {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .contact-page-section {
        padding: 50px 0;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 40px 25px;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .btn-contact-submit {
        width: 100%;
        padding: 15px 30px !important;
    }

    .map-container {
        height: 300px;
    }

    .map-section {
        padding-bottom: 50px;
    }
}

@media (max-width: 576px) {
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .info-heading {
        font-size: 14px;
    }

    .contact-form .form-control {
        padding: 15px 18px !important;
        font-size: 13px !important;
    }
}

/* ==========================================
   ABOUT PAGE STYLES
========================================== */

.about-content-section {
    padding: 80px 0;
    background: #e8ecf1;
}

.about-content-section .about-content-box {
    background: white;
    padding: 60px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.about-content-section .about-content-box h6 {
    color: #000;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about-content-section .about-content-box h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 30px;
}

.about-content-section .about-content-box p {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 20px;
}

.facebook-like {
    margin-top: 30px;
}

.facebook-like img {
    height: 50px;
    width: auto;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: white;
}

.team-image {
    width: 100%;
    height: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Job Done Section */
.job-done-section {
    padding: 80px 0;
    background: #e8ecf1;
}

.job-done-section h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 30px;
}

.job-done-section p {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 20px;
}

/* About Page Contact Form */
.about-contact-form-section {
    padding: 80px 0;
    background: #e8ecf1;
}

.about-contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-contact-header h6 {
    font-family: "Montserrat", sans-serif;
    color: #000;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.about-contact-header h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 20px;
}

.about-form-box {
    background: white;
    padding: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.about-contact-form .form-control,
.about-contact-form textarea {
    font-family: "Montserrat", sans-serif !important;
    padding: 18px 20px !important;
    border: 1px solid #e5e5e5 !important;
    border-radius: 0 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    background: #f9f9f9 !important;
    color: #999 !important;
    transition: all 0.3s !important;
}

.about-contact-form .form-control:focus,
.about-contact-form textarea:focus {
    border-color: #ddd !important;
    box-shadow: none !important;
    background: #fff !important;
    color: #333 !important;
    outline: none !important;
}

.about-contact-form .form-control::placeholder,
.about-contact-form textarea::placeholder {
    color: #bbb !important;
    font-weight: 300 !important;
}

.about-contact-form textarea {
    resize: vertical !important;
    min-height: 120px !important;
}

/* Submit Button */
.btn-about-submit {
    font-family: "Montserrat", sans-serif !important;
    background: #f7c325 !important;
    color: #000 !important;
    padding: 16px 50px !important;
    border: none !important;
    border-radius: 0 !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
}

.btn-about-submit:hover {
    background: #d6a620 !important;
    transform: translateY(-2px) !important;
}

/* ==========================================
   SCROLL TO TOP BUTTON
========================================== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #f7c325;
    color: #000;
    border: none;
    border-radius: 0;
    font-size: 20px;
    cursor: pointer;
    display: none;
    z-index: 999;
    transition: all 0.3s;
}

.scroll-top-btn:hover {
    background: #d6a620;
}

.scroll-top-btn.show {
    display: block;
}

/* ==========================================
   RESPONSIVE STYLES - MOBILE OPTIMIZATION
========================================== */

/* Tablets & Below (992px) */
@media (max-width: 992px) {
    .hero-slider-section {
        margin-top: -110px;
    }

    .hero-slide {
        min-height: 600px;
        height: auto;
        padding-top: 110px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .property-content {
        flex-direction: column;
        top: 0;
    }

    .property-image {
        min-height: 400px;
    }

    .property-text {
        padding: 50px 40px;
    }

    .property-text h2 {
        font-size: 2.2rem;
    }

    .property-icons {
        flex-wrap: wrap;
    }

    .property-icon-box {
        flex: 0 0 calc(50% - 10px);
    }

    .services-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .contact-form-wrapper-home {
        min-height: 500px;
        justify-content: center;
    }

    .contact-form-content {
        margin-right: 0;
        padding: 50px 40px;
    }

    .about-wrapper {
        flex-direction: column;
    }

    .about-info-box {
        flex: 1;
        min-height: 500px;
    }

    .about-content-box {
        padding: 60px 40px;
    }

    .testimonials-section {
        padding: 60px 0;
    }

    /* Blog Detail Page */
    .blog-detail-section .col-lg-8 {
        border-right: none;
        padding-right: 15px;
        margin-bottom: 40px;
    }

    .blog-detail-section .col-lg-4 {
        padding-left: 15px;
        border-top: 1px solid #e0e0e0;
        padding-top: 40px;
    }
}

/* Mobile Landscape (768px) */
@media (max-width: 768px) {
    /* Typography Adjustments */
    body {
        font-size: 14px;
    }

    /* Top Bar */
    .top-bar {
        font-size: 12px;
        padding: 6px 0;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .top-bar .social-link {
        margin-left: 10px;
    }

    /* Header */
    .main-header.header-home {
        top: 0;
    }

    .logo-container img {
        height: 50px;
    }

    .main-header.scrolled .logo-container img {
        height: 45px;
    }

    .navbar-collapse {
        background: rgba(13, 79, 139, 0.98);
        padding: 20px;
        margin-top: 15px;
        border-radius: 0;
    }

    .main-header.header-home .navbar-nav .nav-link {
        padding: 12px 15px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .main-header.header-inner .navbar-collapse {
        background: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .main-header.header-inner .navbar-nav .nav-link {
        padding: 12px 15px !important;
        border-bottom: 1px solid #e8e8e8;
    }

    /* Hero Section */
    .hero-slider-section {
        margin-top: 0;
    }

    /* .hero-slide {
        min-height: 500px;
        padding-top: 80px;
        padding-left: 15px;
        padding-right: 15px;
    } */

    /* .hero-slide {
        min-height: 500px;
        padding: 80px 20px 60px;
    } */

    /* .hero-content {
        text-align: center;
    } */

    .hero-slide {
        min-height: 500px;
        padding: 80px 20px 60px;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 2.3rem;
        text-align: center;
    }

    .hero-badge {
        text-align: center;
    }

    .btn-contact {
        padding: 12px 25px;
        font-size: 14px;
        width: auto;
        max-width: 200px;
        display: inline-block;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    /* .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin: 15px 0;
    }

    .hero-badge {
        font-size: 11px;
    } */

    /* .btn-contact {
        padding: 12px 30px;
        font-size: 14px;
        width: 100%;
        max-width: 300px;
    } */
    /* .btn-contact {
        padding: 12px 25px;
        font-size: 14px;
        width: auto;
        max-width: 200px;
        display: inline-block;
    } */

    /* .carousel-control-prev,
    .carousel-control-next {
        width: 35px;
        height: 35px;
    } */

    .carousel-control-prev,
    .carousel-control-next {
        display: flex !important;
        width: 35px;
        height: 35px;
        background: rgba(255, 255, 255, 0.2);
        border: 2px solid white;
        opacity: 0.8;
    }

    .carousel-control-prev {
        left: 10px;
    }

    .carousel-control-next {
        right: 10px;
    }

    /* Property Section */
    /* .property-section {
        padding-top: 0;
    } */

    .property-section {
        padding-top: 40px;
        margin-top: 0;
    }

    /* .property-content {
        top: 0;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    } */

    .property-content {
        top: 0;
        margin-bottom: 30px;
    }

    .property-image {
        min-height: 300px;
    }

    .property-text {
        padding: 40px 30px;
    }

    .property-text h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .property-text h6 {
        font-size: 11px;
    }

    .property-text p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    /* .property-icons {
        gap: 15px;
        margin-top: 30px;
    }

    .property-icon-box {
        flex: 0 0 calc(50% - 7.5px);
        padding: 20px 10px;
    }

    .property-icon-img {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }

    .property-icon-box h5 {
        font-size: 13px;
    } */

    .property-icons {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 30px;
    }

    .property-icon-box {
        flex: 0 0 calc(50% - 7.5px);
        padding: 20px 10px;
        border: 2px solid #e0e0e0;
    }

    .property-icon-img {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }

    .property-icon-box h5 {
        font-size: 13px;
        line-height: 1.3;
    }

    /* Services Section */
    .services-section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 1.9rem;
    }

    .service-card {
        padding: 30px 25px;
        margin-bottom: 20px;
    }

    .service-card h4 {
        font-size: 18px;
    }

    /* Contact Form Section */
    .contact-form-wrapper-home {
        min-height: auto;
        padding: 50px 15px;
    }

    .contact-form-content {
        max-width: 100%;
        padding: 40px 30px;
    }

    .contact-form-content h2 {
        font-size: 2rem;
    }

    .contact-form-content .form-control,
    .contact-form-content .form-select {
        padding: 12px 15px;
        font-size: 13px;
    }

    .btn-submit {
        padding: 12px 30px;
        font-size: 13px;
    }

    /* About Section */
    .about-section {
        padding: 50px 0;
    }

    .about-info-box {
        min-height: 400px;
        padding: 20px;
    }

    .about-info-overlay {
        top: 20px;
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .about-info-content {
        padding: 40px 30px;
    }

    .about-info-content h4 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .about-info-content p {
        font-size: 14px;
    }

    .about-content-box {
        padding: 40px 30px;
    }

    .about-content-box h2 {
        font-size: 1.9rem;
    }

    .about-content-box p {
        font-size: 14px;
    }

    /* Testimonials */
    .testimonials-section {
        padding: 50px 0;
    }

    .testimonial-card {
        padding: 30px 25px;
        margin-bottom: 20px;
    }

    /* Footer */
    .main-footer {
        padding: 50px 0 30px;
    }

    .footer-widget {
        margin-bottom: 30px;
    }

    .footer-widget h5 {
        font-size: 18px;
    }

    /* Blog Detail */
    .blog-detail-section {
        padding: 50px 0;
    }

    .blog-detail-title {
        font-size: 1.6rem;
    }

    .blog-body h2 {
        font-size: 1.5rem;
    }

    .comment-section {
        padding: 40px 0 0 0;
    }

    .comment-title {
        font-size: 1.5rem;
    }
}

/* Mobile Portrait (576px) */
@media (max-width: 576px) {
    /* Global */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Top Bar */
    .top-bar {
        display: none;
    }

    /* Header */
    .logo-container {
        padding: 10px 0;
    }

    .logo-container img {
        height: 45px;
    }

    .navbar-toggler {
        padding: 5px 8px;
        font-size: 18px;
    }

    .navbar-collapse {
        padding: 15px;
        margin-top: 10px;
    }

    /* Hero Section */
    /* .hero-slide {
        min-height: 450px;
        padding-top: 70px;
    } */

    /* .hero-slide {
        min-height: 450px;
        padding: 70px 15px 50px;
    } */

    /* .hero-content h1 {
        font-size: 1.6rem;
        line-height: 1.3;
    } */

    /* .hero-content h1 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .hero-badge {
        font-size: 10px;
        letter-spacing: 1px;
        margin-bottom: 10px;
    } */

    /* .btn-contact {
        padding: 11px 25px;
        font-size: 13px;
        margin-top: 20px;
        width: 100%;
    } */

    .hero-slide {
        min-height: 450px;
        padding: 70px 15px 50px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-content h1 {
        font-size: 1.5rem;
        line-height: 1.3;
        text-align: center;
    }

    .hero-badge {
        font-size: 11px;
        text-align: center;
    }

    .btn-contact {
        padding: 11px 20px;
        font-size: 12px;
        width: auto;
        max-width: 180px;
        margin: 20px auto 0;
        display: block;
        text-align: center;
    }
    /*
    .btn-contact {
        padding: 11px 20px;
        font-size: 13px;
        width: auto;
        max-width: 180px;
        margin-top: 20px;
    } */

    .carousel-indicators {
        bottom: 15px;
    }

    .carousel-indicators [data-bs-target] {
        width: 10px;
        height: 10px;
    }

    /* .carousel-control-prev,
    .carousel-control-next {
        display: none;
    } */

    .carousel-control-prev,
    .carousel-control-next {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background: rgba(255, 255, 255, 0.25);
        border: 2px solid white;
        border-radius: 0;
        opacity: 0.9;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 16px;
        height: 16px;
    }

    .carousel-control-prev {
        left: 8px;
    }

    .carousel-control-next {
        right: 8px;
    }

    .carousel-control-prev:hover,
    .carousel-control-next:hover {
        background: rgba(247, 195, 37, 0.9);
        border-color: #f7c325;
        opacity: 1;
    }

    /* Inner Page Banner */
    .inner-page-banner {
        height: 180px;
    }

    .banner-title {
        font-size: 1.8rem;
    }

    /* Property Section */

    .property-section {
        padding-top: 30px;
        background: #e5eef6;
    }
    .property-content {
        top: 0;
        margin-bottom: 0;
    }
    .property-image {
        min-height: 250px;
    }

    .property-text {
        padding: 30px 20px;
    }

    .property-text h6 {
        font-size: 10px;
        margin-bottom: 12px;
    }

    .property-text h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .property-text p {
        font-size: 13px;
        margin-bottom: 18px;
    }

    /* .property-icons {
        flex-direction: column;
        gap: 12px;
        margin-top: 25px;
    } */

    /* .property-icon-box {
        flex: 1;
        padding: 18px 15px;
    }

    .property-icon-img {
        width: 35px;
        height: 35px;
        margin-bottom: 8px;
    }

    .property-icon-box h5 {
        font-size: 12px;
    } */

    /* .property-icons {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 25px;
        justify-content: space-between;
    }

    .property-icon-box {
        flex: 0 0 calc(50% - 6px);
        max-width: calc(50% - 6px);
        padding: 18px 10px;
        border: 2px solid #e0e0e0;
        background: white;
        text-align: center;
    }

    .property-icon-img {
        width: 35px;
        height: 35px;
        margin: 0 auto 8px;
        display: block;
    }

    .property-icon-box h5 {
        font-size: 12px;
        line-height: 1.4;
        margin: 0;
    } */

    .property-icons {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 25px;
        justify-content: space-between;
    }

    .property-icon-box {
        flex: 0 0 calc(50% - 6px);
        max-width: calc(50% - 6px);
        padding: 18px 10px;
        border: 2px solid #e0e0e0;
        background: white;
        text-align: center;
    }

    .property-icon-img {
        width: 35px;
        height: 35px;
        margin: 0 auto 8px;
        display: block;
    }

    .property-icon-box h5 {
        font-size: 12px;
        line-height: 1.4;
        margin: 0;
    }
    /* Services Section */
    .services-section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-header h6 {
        font-size: 11px;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .service-card {
        padding: 25px 20px;
        margin-bottom: 15px;
    }

    .service-icon-img {
        width: 30px;
        height: 30px;
        margin-bottom: 20px;
    }

    .service-card h4 {
        font-size: 16px;
    }

    /* Contact Form Section */
    .contact-form-wrapper-home {
        padding: 40px 15px;
    }

    .contact-form-content {
        padding: 30px 20px;
    }

    .contact-form-content h6 {
        font-size: 10px;
    }

    .contact-form-content h2 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .contact-form-content p {
        font-size: 13px;
        margin-bottom: 30px;
    }

    .contact-form-content .form-control,
    .contact-form-content .form-select {
        padding: 11px 14px;
        font-size: 12px;
    }

    .btn-submit {
        padding: 11px 25px;
        font-size: 12px;
        letter-spacing: 0.5px;
    }

    /* About Section */
    .about-section {
        padding: 40px 0;
    }

    .about-info-box {
        min-height: 350px;
        padding: 15px;
    }

    .about-info-overlay {
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

    .about-info-content {
        padding: 30px 20px;
    }

    .about-info-content h4 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .about-info-content p {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .btn-yellow {
        width: 100%;
        text-align: center;
        padding: 12px 30px;
        font-size: 12px;
    }

    .about-content-box {
        padding: 30px 20px;
    }

    .about-content-box h6 {
        font-size: 10px;
    }

    .about-content-box h2 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .about-content-box p {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .facebook-badge img {
        height: 40px;
    }

    /* Testimonials */
    .testimonials-section {
        padding: 40px 0;
    }

    .testimonial-card {
        padding: 25px 20px;
        margin-bottom: 15px;
    }

    .testimonial-card::before {
        font-size: 6rem;
        top: -5px;
        right: 20px;
    }

    .testimonial-card h5 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .testimonial-stars {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .testimonial-card p {
        font-size: 13px;
    }

    /* Footer */
    .main-footer {
        padding: 40px 0 25px;
    }

    .footer-widget {
        margin-bottom: 25px;
        text-align: center;
    }

    .footer-widget h5 {
        font-size: 17px;
        margin-bottom: 20px;
    }

    .footer-widget p,
    .footer-widget ul li {
        font-size: 14px;
    }

    .social-icons-footer {
        justify-content: center;
        display: flex;
    }

    .footer-bottom {
        margin-top: 35px;
        padding-top: 25px;
        font-size: 13px;
    }

    /* Blog Detail */
    .blog-detail-section {
        padding: 40px 0;
    }

    .blog-detail-title {
        font-size: 1.4rem;
    }

    .blog-detail-meta {
        font-size: 12px;
    }

    .blog-body h2 {
        font-size: 1.3rem;
    }

    .blog-body h3 {
        font-size: 1.1rem;
    }

    .blog-body p,
    .blog-body li {
        font-size: 14px;
    }

    .comment-section {
        padding: 30px 0 0 0;
    }

    .comment-title {
        font-size: 1.3rem;
    }

    .comment-note {
        font-size: 13px;
    }

    .btn-submit-comment {
        width: 100%;
        padding: 12px 30px;
    }

    .widget-title {
        font-size: 18px;
    }

    .recent-posts-list li a {
        font-size: 14px;
    }
}

/* Extra Small Devices (max-width: 375px) */
@media (max-width: 375px) {
    .hero-content h1 {
        font-size: 1.3rem;
    }

    .property-text h2 {
        font-size: 1.3rem;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .contact-form-content h2 {
        font-size: 1.4rem;
    }

    .about-content-box h2 {
        font-size: 1.4rem;
    }

    .btn-contact {
        max-width: 160px;
        padding: 10px 18px;
        font-size: 12px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 28px;
        height: 28px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 14px;
        height: 14px;
    }

    .property-icon-box {
        padding: 15px 8px;
    }

    .property-icon-img {
        width: 30px;
        height: 30px;
        margin-bottom: 6px;
    }

    .property-icon-box h5 {
        font-size: 11px;
    }
}

/* ==========================================
   BLOGS PAGE STYLES
========================================== */
.blogs-section {
    padding: 80px 0;
    background: #f5f8fa;
}

.blog-meta-header {
    margin-bottom: 40px;
}

.blog-meta-header p {
    font-family: "Montserrat", Helvetica, Arial, Lucida, sans-serif;
    font-size: 14px;
    color: #999;
    margin: 0;
}

.blog-meta-header a {
    color: #999;
    text-decoration: none;
    font-weight: 600;
}

/* Blog Card */
.blog-card {
    background: white;
    /* box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08); */
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #dfd7d7;
}

/* .blog-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
} */

.blog-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

/* .blog-card:hover .blog-image img {
    transform: scale(1.05);
} */

.blog-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-title {
    font-family: "Montserrat", Helvetica, Arial, Lucida, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
}

.blog-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
}

/* .blog-title a:hover {
    color: #0d4f8b;
} */

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #666;
}

.blog-meta a {
    color: #666;
    text-decoration: none;
    font-weight: 500;
}

/* .blog-meta a:hover {
    text-decoration: underline;
} */

.blog-author {
    font-family: "Montserrat", Helvetica, Arial, Lucida, sans-serif;
}

.blog-date {
    font-family: "Montserrat", Helvetica, Arial, Lucida, sans-serif;
}

.blog-excerpt {
    font-family: "Montserrat", Helvetica, Arial, Lucida, sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    flex: 1;
}

.blog-read-more {
    font-family: "Montserrat", Helvetica, Arial, Lucida, sans-serif;
    color: #2ea3f2;
    font-weight: 600;
    font-size: 14px;

    text-transform: lowercase;
    display: inline-block;
    transition: all 0.3s;
}

.blog-read-more:hover {
    /* color: #f7c325; */
    text-decoration: none;
    /* padding-left: 5px; */
}

/* ==========================================
   RESPONSIVE - BLOGS PAGE
========================================== */
@media (max-width: 992px) {
    .blogs-section {
        padding: 60px 0;
    }

    .blog-image {
        height: 220px;
    }

    .blog-content {
        padding: 25px;
    }

    .blog-title {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .blogs-section {
        padding: 50px 0;
    }

    .blog-meta-header {
        margin-bottom: 30px;
    }

    .blog-image {
        height: 200px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-title {
        font-size: 17px;
    }

    .blog-excerpt {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .blog-image {
        height: 180px;
    }

    .blog-content {
        padding: 20px 15px;
    }

    .blog-title {
        font-size: 16px;
    }
}

/* ==========================================
   BLOG DETAIL PAGE STYLES
========================================== */
.blog-detail-section {
    padding: 80px 0;
    background: white;
}

/* Main Container with Vertical Separator */
.blog-detail-section .row {
    position: relative;
}

.blog-detail-section .col-lg-8 {
    padding-right: 40px;
    border-right: 1px solid #e0e0e0;
}

.blog-detail-section .col-lg-4 {
    padding-left: 40px;
}

/* Blog Content */
.blog-detail-content {
    background: white;
    margin-bottom: 30px;
}

/* Blog Header */
.blog-header {
    padding: 0 0 30px 0;
    border-bottom: 1px solid #e8e8e8;
}

.blog-detail-title {
    font-family: "Montserrat", Helvetica, Arial, Lucida, sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #000;
    line-height: 1.3;
    margin-bottom: 20px;
}

.blog-detail-meta {
    font-family: "Montserrat", Helvetica, Arial, Lucida, sans-serif;
    font-size: 13px;
    color: #999;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-detail-meta a {
    color: #999;
    text-decoration: none;
    font-weight: 600;
}

.blog-detail-meta a:hover {
    text-decoration: underline;
}

.meta-separator {
    color: #ddd;
}

/* Featured Image */
.blog-featured-image {
    width: 100%;
    overflow: hidden;
    margin: 30px 0;
}

.blog-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Blog Body */
.blog-body {
    padding: 30px 0;
}

.blog-body h2 {
    font-family: "Montserrat", Helvetica, Arial, Lucida, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    margin: 35px 0 20px;
    line-height: 1.4;
}

.blog-body h3 {
    font-family: "Montserrat", Helvetica, Arial, Lucida, sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #000;
    margin: 30px 0 15px;
}

.blog-body p {
    font-family: "Montserrat", Helvetica, Arial, Lucida, sans-serif;
    font-size: 15px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 20px;
}

.blog-body a {
    color: #2ea3f2;
    font-weight: 600;
    text-decoration: none;
}

.blog-body a:hover {
    text-decoration: underline;
}

.blog-body ul,
.blog-body ol {
    font-family: "Montserrat", Helvetica, Arial, Lucida, sans-serif;
    font-size: 15px;
    line-height: 1.9;
    color: #666;
    margin: 20px 0;
    padding-left: 25px;
}

.blog-body li {
    margin-bottom: 12px;
}

.blog-body strong {
    color: #000;
    font-weight: 700;
}

/* Comment Section */
.comment-section {
    padding: 50px 0 0 0;
    border-top: 1px solid #e8e8e8;
    margin-top: 40px;
}

.comment-title {
    font-family: "Montserrat", Helvetica, Arial, Lucida, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.comment-note {
    font-family: "Montserrat", Helvetica, Arial, Lucida, sans-serif;
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.required-mark {
    color: #f00;
}

/* Comment Form - WordPress Style */
.comment-form .comment-textarea {
    font-family: "Montserrat", Helvetica, Arial, Lucida, sans-serif;
    padding: 15px;
    /* border: 1px solid #d0d0d0; */
    border-radius: 0;
    font-size: 14px;
    background: #f5f5f5;
    color: #999;
    resize: vertical;
    min-height: 140px;
}

.comment-form .comment-input {
    font-family: "Montserrat", Helvetica, Arial, Lucida, sans-serif;
    padding: 15px;
    /* border: 1px solid #d0d0d0; */
    border-radius: 0;
    font-size: 14px;
    background: #f5f5f5;
    color: #999;
}

.comment-form .comment-textarea:focus,
.comment-form .comment-input:focus {
    border-color: #999;
    box-shadow: none;
    background: #f5f5f5;
    outline: none;
}

.comment-form .comment-textarea::placeholder,
.comment-form .comment-input::placeholder {
    color: #999;
}

.form-check {
    margin-bottom: 25px;
}

.form-check-input {
    margin-top: 0.15em;
    border: 1px solid #999;
    border-radius: 0;
}

.form-check-input:checked {
    background-color: #0d4f8b;
    border-color: #0d4f8b;
}

.form-check-label {
    font-family: "Montserrat", Helvetica, Arial, Lucida, sans-serif;
    font-size: 14px;
    color: #666;
    margin-left: 5px;
}

.btn-submit-comment {
    font-family: "Montserrat", Helvetica, Arial, Lucida, sans-serif;
    background: white;
    color: #42a5f5;
    padding: 14px 40px;
    border: 2px solid #42a5f5;
    border-radius: 0;
    font-weight: 600;
    font-size: 15px;
    text-transform: none;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.btn-submit-comment:hover {
    background: #42a5f5;
    color: white;
}

/* ==========================================
   BLOG SIDEBAR STYLES
========================================== */
.blog-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    background: white;
    margin-bottom: 40px;
}

/* Search Widget */
.search-widget {
    padding: 0;
}

.search-form .input-group {
    display: flex;
}

.search-form .form-control {
    font-family: "Montserrat", Helvetica, Arial, Lucida, sans-serif;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 14px;
    flex: 1;
    background: #f5f5f5;
}

.search-form .form-control:focus {
    border-color: #999;
    box-shadow: none;
    outline: none;
}

.btn-search {
    font-family: "Montserrat", Helvetica, Arial, Lucida, sans-serif;
    background: #d1d1d1;
    color: #666;
    padding: 12px 25px;
    border: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-search:hover {
    background: #b8b8b8;
    color: #333;
}

/* Widget Title */
.widget-title {
    font-family: "Montserrat", Helvetica, Arial, Lucida, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #000;
    padding: 0;
    margin: 0 0 25px 0;
    border-bottom: none;
    background: transparent;
}

/* Recent Posts Widget */
.recent-posts-widget {
    padding: 0;
}

.recent-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-posts-list li {
    border-bottom: none;
    margin-bottom: 18px;
}

.recent-posts-list li:last-child {
    margin-bottom: 0;
}

.recent-posts-list li a {
    font-family: "Montserrat", Helvetica, Arial, Lucida, sans-serif;
    display: block;
    padding: 0;
    color: #000;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s;
    line-height: 1.6;
}

.recent-posts-list li a:hover {
    background: transparent;
    color: #0d4f8b;
    padding-left: 0;
}

/* Recent Comments Widget */
.recent-comments-widget {
    padding: 0;
}

.no-comments {
    font-family: "Montserrat", Helvetica, Arial, Lucida, sans-serif;
    font-size: 14px;
    color: #999;
    margin: 0;
}

/* ==========================================
   RESPONSIVE - BLOG DETAIL PAGE
========================================== */
@media (max-width: 992px) {
    .blog-detail-section {
        padding: 60px 0;
    }

    .blog-detail-section .col-lg-8 {
        border-right: none;
        padding-right: 15px;
        margin-bottom: 40px;
    }

    .blog-detail-section .col-lg-4 {
        padding-left: 15px;
        border-top: 1px solid #e0e0e0;
        padding-top: 40px;
    }

    .blog-header {
        padding: 0 0 20px 0;
    }

    .blog-detail-title {
        font-size: 1.8rem;
    }

    .blog-body {
        padding: 30px 0;
    }

    .comment-section {
        padding: 40px 0 0 0;
    }

    .blog-sidebar {
        position: static;
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .blog-detail-section {
        padding: 50px 0;
    }

    .blog-detail-title {
        font-size: 1.6rem;
    }

    .blog-body h2 {
        font-size: 1.5rem;
    }

    .blog-body h3 {
        font-size: 1.2rem;
    }

    .comment-section {
        padding: 30px 0 0 0;
    }
}

@media (max-width: 576px) {
    .blog-detail-title {
        font-size: 1.4rem;
    }

    .blog-detail-meta {
        font-size: 12px;
    }

    .blog-body h2 {
        font-size: 1.3rem;
    }

    .blog-body h3 {
        font-size: 1.1rem;
    }

    .blog-body p,
    .blog-body li {
        font-size: 14px;
    }

    .comment-title {
        font-size: 1.5rem;
    }

    .widget-title {
        font-size: 18px;
    }

    .recent-posts-list li a {
        font-size: 14px;
    }
}
