/********** Template CSS **********/
:root {
    --primary: #004f83;
    --secondary: #FF6922;
    --light: #EFFDF5;
    --dark: #0E2E50;
    
    
}

.bg-light {
    background-color: #f1f1f1 !important;
}

/* body {
    color: var(--dark);
    background: var(--light);
    font-family: 'lato', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
} */

body {
    /* font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; */
    background-color: #ffffff;
    color: #2d3748;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    @apply hover:-translate-y-1 hover:shadow-lg active:translate-y-0;
}

.btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(255,255,255,0.2), transparent);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: 0.4s ease-out;
}

.btn:hover::after {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: #003b62;
    border-color: #003b62;
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

a:hover {
    color: var(--primary);
}


/*** Navbar ***/
.nav-bar {
    position: relative;
    margin-top: 45px;
    padding: 0 3rem;
    transition: .5s;
    z-index: 9999;
}

.nav-bar.sticky-top {
    position: sticky;
    padding: 0;
    z-index: 9999;
}

.navbar {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    @apply transition-all duration-300;
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .nav-bar {
        margin: 0;
        padding: 0;
    }

    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: 100%;
        margin-top: 0;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
@media (min-width: 992px) {
    .header {
        margin-top: -120px;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}

@media (max-width: 768px) {
    .header-carousel .owl-nav {
        left: 25px;
    }
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #DDDDDD;
}


/*** Icon ***/
.icon {
    padding: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF !important;
    border-radius: 50px;
    border: 1px dashed var(--primary) !important;
}


/*** About ***/
.about-img img {
    position: relative;
    z-index: 2;
}

.about-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--brand-color), var(--brand-dark)) !important;
    transform: skew(20deg);
    z-index: 1;
}


/*** Category ***/
.cat-item {
    @apply transition-transform duration-300 ease-in-out;
}

.cat-item:hover {
    transform: translateY(-4px);
}

.cat-item div {
    background: #FFFFFF;
    border: 1px dashed rgba(0, 185, 142, .3);
    transition: .5s;
}

.cat-item:hover div {
    background: var(--primary);
    border-color: transparent;
}

.cat-item div * {
    transition: .5s;
}

.cat-item:hover div * {
    color: #FFFFFF !important;
}


/*** Property List ***/
.nav-pills .nav-item .btn {
    color: var(--dark);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
    color: #FFFFFF;
}

.property-item {
    @apply transition-all duration-300 ease-in-out hover:-translate-y-2;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.property-item:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-8px);
}

.property-item img {
    transition: .5s;
}

.property-item:hover img {
    transform: scale(1.1);
}

.property-item .border-top {
    border-top: 1px dashed rgba(0, 185, 142, .3) !important;
}

.property-item .border-end {
    border-right: 1px dashed rgba(0, 185, 142, .3) !important;
}

.property-item .position-relative {
    overflow: hidden;
}

.property-item .position-relative::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 79, 131, 0.3) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.property-item:hover .position-relative::before {
    opacity: 1;
}


/*** Team ***/
.team-item {
    @apply transition-all duration-300 ease-in-out;
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

.team-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}

.team-item .btn {
    color: var(--primary);
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(0, 0, 0, .15);
}

.team-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.testimonial-carousel .testimonial-item .border {
    border: 1px dashed rgba(0, 185, 142, .3) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}


/*** Footer ***/
.footer .btn.btn-social {
    @apply transition-all duration-300 hover:-translate-y-1;
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 35px;
}

.footer .btn.btn-social:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: rgba(255,255,255,0.5);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/* Modern button effects */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    @apply hover:-translate-y-1 hover:shadow-lg active:translate-y-0;
}

.btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(255,255,255,0.2), transparent);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: 0.4s ease-out;
}

.btn:hover::after {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/* Card hover effects */
.team-item, .testimonial-item {
    @apply transition-all duration-300 ease-in-out;
}

.team-item:hover, .testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Image hover effects */
.property-item .position-relative {
    overflow: hidden;
}

.property-item .position-relative::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 79, 131, 0.3) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.property-item:hover .position-relative::before {
    opacity: 1;
}

/* Navigation effects */
.navbar-light .navbar-nav .nav-link {
    position: relative;
    @apply transition-all duration-300;
}

.navbar-light .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Input focus effects */
.form-control {
    @apply transition-all duration-300;
}

.form-control:focus {
    box-shadow: 0 0 0 3px rgba(0, 79, 131, 0.2);
    border-color: var(--primary);
    outline: none;
}

/* Category item effects */
.cat-item {
    @apply transition-transform duration-300 ease-in-out;
}

.cat-item:hover {
    transform: translateY(-4px);
}

/* Social button effects */
.footer .btn.btn-social {
    @apply transition-all duration-300 hover:-translate-y-1;
}

.footer .btn.btn-social:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Gradient text effect */
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #0077cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glass effect for featured items */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Ring focus effect */
.ring-focus {
    @apply transition-all duration-300;
}

.ring-focus:focus {
    box-shadow: 0 0 0 3px rgba(0, 79, 131, 0.3);
    outline: none;
}

/* Scale effect for images */
.scale-effect {
    @apply transition-transform duration-300;
}

.scale-effect:hover {
    transform: scale(1.05);
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Loading skeleton effect */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite linear;
}

/* Header Background and Search Section */
.header-bg {
    position: relative;
    background: linear-gradient(rgba(0, 79, 131, 0.8), rgba(0, 79, 131, 0.8)), url('../img/header-bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.search-section {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.search-section .form-control {
    height: 50px;
    border-radius: 8px;
    border: 1px solid rgba(0, 79, 131, 0.2);
}

.search-section .form-select {
    height: 50px;
    border-radius: 8px;
    border: 1px solid rgba(0, 79, 131, 0.2);
}

.search-section .btn {
    height: 50px;
    border-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header-bg {
        min-height: 100vh;
    }
    
    .search-section {
        position: relative;
        background: var(--primary);
    }
    
    .search-section .form-control,
    .search-section .form-select {
        margin-bottom: 10px;
    }
}

/* Side Navigation Styles */
.side-nav {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.side-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-nav li {
    background: rgba(0, 79, 131, 0.9);
    margin: 2px 0;
    transform: translateX(calc(100% - 50px));
    transition: all 0.3s ease;
}

.side-nav li a {
    color: #fff;
    text-decoration: none;
    padding: 15px 30px 15px 25px;
    display: block;
    font-size: 16px;
    font-weight: 500;
    min-width: 150px;
    white-space: nowrap;
}

.side-nav li:hover {
    transform: translateX(0);
    background: var(--primary);
}

.side-nav li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 100%;
    background: var(--primary);
    z-index: -1;
}

.side-nav li i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .side-nav {
        display: none;
    }
}

/* Property Options Buttons */
.property-options {
    margin: 20px 0;
}

.option-btn {
    background: #fff;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.option-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary);
    transition: all 0.3s ease;
    z-index: -1;
}

.option-btn:hover::before {
    width: 100%;
}

.option-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 79, 131, 0.15);
}

.option-btn.active {
    background: var(--primary);
    color: #fff;
}

.option-btn.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 79, 131, 0.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .option-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Professional Property Type Selector */
.property-type-selector {
    margin: 10px 0;
    padding: 5px;
}

.btn-group {
    background-color: #f8f9fa;
    padding: 2px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.property-btn {
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #6c757d;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
    position: relative;
}

.property-btn:hover {
    color: var(--primary);
}

.property-btn.active {
    color: #fff;
    background: var(--primary);
    /* border-radius: 4px; */
}

/* Remove outline on focus */
.property-btn:focus {
    box-shadow: none;
    outline: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .property-btn {
        padding: 6px 15px;
        font-size: 13px;
    }
}



.background-image {
            width: 100%;
            height: 550px;
            /* background-image: url('img/carousel-1.jpg'); */
            background-image: linear-gradient(rgba(0, 108, 181, 0.5), rgba(0, 78, 129, 0.1)), url('img/carousel-1.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .search-container {
            margin-top: -15%;
            width: 70%;
            margin-left: auto;
            margin-right: auto;
            border-radius: 50px 50px 0px 0px;
            background-color: rgba(26, 19, 19, 0.4);
            /* Adjust the last value (0.5) to control the opacity */
            color: white;
            /* Optional: Change text color if needed */
        }

        .property-selection {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 15px 0;
            padding: 5px;
            flex-wrap: wrap;
        }

        .property-btn {
            padding: 8px 20px;
            border: 1.5px solid #0E2E50;
            background-color: white;
            color: #0E2E50;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            position: relative;
            box-shadow: rgba(0, 95, 180, 0.1) 0px 3px 8px,  
            rgba(0, 140, 255, 0.1) 0px 5px 12px,  
            rgba(0, 200, 100, 0.1) 0px 7px 16px !important;






        }

        .property-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(120deg,
                    transparent,
                    rgba(255, 255, 255, 0.3),
                    transparent);
            transition: 0.5s;
        }

        .property-btn:hover:before {
            left: 100%;
        }

        .property-btn:hover {
            background-color: #0E2E50;
            color: white;
            transform: translateY(-1px);
            box-shadow: 0 3px 8px rgba(14, 46, 80, 0.2);
        }

        .property-btn.active {
            background-color: #0E2E50;
            color: white;
            box-shadow: 0 3px 8px rgba(14, 46, 80, 0.3);
        }

        .property-btn i {
            margin-right: 5px;
            font-size: 12px;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(14, 46, 80, 0.4);
            }

            70% {
                box-shadow: 0 0 0 5px rgba(14, 46, 80, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(14, 46, 80, 0);
            }
        }

        .property-btn.active {
            animation: pulse 2s infinite;
        }

        .search-btn {
            padding: 8px 20px;
            border: 1.5px solid #0E2E50;
            background-color: #0E2E50;
            color: white;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(14, 46, 80, 0.1);
            width: 100%;
        }

        .search-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(120deg,
                    transparent,
                    rgba(255, 255, 255, 0.2),
                    transparent);
            transition: 0.5s;
        }

        .search-btn:hover:before {
            left: 100%;
        }

        .search-btn:hover {
            background-color: #0a223c;
            transform: translateY(-1px);
            box-shadow: 0 3px 8px rgba(14, 46, 80, 0.2);
        }

        .search-btn i {
            margin-right: 5px;
            font-size: 12px;
        }


        .hero-banner {
            width: 100%;
            height: 500px;
            background-image: url('img/carousel-1.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
        }

        .hero-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(14, 46, 80, 0.6);
            /* Dark overlay with your theme color */
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            padding: 0 20px;
        }

        .hero-content h1 {
            font-size: 2.8rem;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            margin-bottom: 1rem;
        }

        .hero-content p {
            font-size: 1.2rem;
            font-weight: 400;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
            opacity: 0.9;
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-content p {
                font-size: 1rem;
            }
        }

        @media (max-width: 768px) {
            .search-container {
                width: 90%;
                margin-top: -25%;
            }

            .property-selection {
                gap: 5px;
            }

            .property-btn {
                padding: 6px 15px;
                font-size: 12px;
            }

            .form-select,
            .form-control,
            .search-btn {
                margin-bottom: 10px;
            }
        }

        /* Site Branding CSS */
        .site-branding {
            margin-bottom: 2rem;
        }

        .brand-heading {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 1rem;
        }

        .brand-description {
            font-size: 1.1rem;
            color: #666;
        }

        .brand-content {
            padding: 1.5rem;
        }

        .brand-logo {
            width: 50px;
            height: 50px;
            object-fit: contain;
            margin-bottom: 1rem;
        }

        .brand-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 0.5rem;
        }

        .brand-subtitle {
            font-size: 1.1rem;
            font-weight: 500;
            color: #444;
        }

        .brand-text {
            color: #666;
            margin-bottom: 0.5rem;
        }

        .brand-price {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2c5282;
            margin: 1rem 0;
        }

        .brand-link {
            text-decoration: none;
            color: #3182ce;
            font-weight: 500;
        }

        .brand-button {
            background-color: #3182ce;
            color: white;
            padding: 0.5rem 1.5rem;
            border: none;
            border-radius: 0.25rem;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .brand-button:hover {
            background-color: #2c5282;
        }

        .brand-image {
            width: 100%;
            height: auto;
            border-radius: 0.25rem;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .col-8 {
                width: 100%;
            }

            .brand-heading {
                font-size: 2rem;
            }
        }