@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
  box-sizing: border-box; 
}

body, html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family:"Open Sans", sans-serif!important;
}
    :root {
        --main-color: #E78D08;
        ;
        --heading-font: "Open Sans", sans-serif;
        --main-gradient: linear-gradient(90deg, #b28775 0%, #c99c88 35%, #e2b7a5 70%, #f0c4af 100%);
        --main-gradient-rev: linear-gradient(90deg, #b28775 0%, #c99c88 35%, #e2b7a5 70%, #f0c4af 100%);
    }

.offcanvas-title {
    color: #E78D08 !important;
}
.hero-section  {
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.filter-wrapper {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px #FFFFFF40;
    width: 90%;
    max-width: 800px;
}

.filter-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 0.5rem;
}

.filter-tab {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.filter-tab.active {
    background: linear-gradient(135deg, #f5a623, #e78d08, #c76a00)!important;
    color: white;
    /*box-shadow: 0 2px 5px rgb(177 87 54);*/
}

.filter-tab:hover:not(.active) {
    background: rgba(255, 107, 53, 0.1);
    color: #E78D08;
}

.filter-form {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.property-type-container {
    position: relative;
    flex: 1;
}

.property-select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
        color: #777777 !important;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.property-select .selected-text {
    flex: 1;
    color: #333;
}

.property-select .dropdown-arrow {
    color: #666;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.property-select:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.property-select:hover {
    border-color: #E78D08;
}

.property-select:focus {
    outline: none;
    border-color: #E78D08;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.search-input {
    flex: 2;
    padding: 0.875rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}



.btn-custom:hover {
     background: rgba(255, 107, 53, 0.1) !important;
       color: #E78D08 !important;
      box-shadow: none !important;
}
.search-input:focus {
    outline: none;
    border-color: #E78D08;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.search-btn {
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #f5a623, #e78d08, #c76a00)!important;
    color: white;
    border: none;
    box-shadow: 0 2px 5px rgb(177 87 54);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-btn:hover {
       background: rgba(255, 107, 53, 0.1);
       color: #E78D08;
      box-shadow: none;
}

/* Mega Menu Styles */
.mega-menu {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 2rem;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    border: 1px solid #e0e0e0;
    pointer-events: none;
}
.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 10px 40px;
}

.mega-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Simple hover trigger for mega menu */
.property-select:hover+.mega-menu,
.property-type-container:hover .mega-menu,
.mega-menu:hover {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

.mega-menu h6 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #E78D08;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.amenity-column {
    border-right: 1px solid #e0e0e0;
    padding-right: 1rem;
}

.amenity-column:last-child {
    border-right: none;
}

.form-check {
    margin-bottom: 0.75rem;
}

.form-check-input {
    margin-right: 0.5rem;
}

.form-check-label {
    cursor: pointer;
    color: #555;
    font-size: 0.9rem;
}

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

.filters-section {
    border-top: 1px solid #e0e0e0;
    padding-top: 1.5rem;
}

.filter-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.price-inputs {
    display: flex;
    gap: 0.5rem;
}

.filter-input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
}

.filter-input:focus {
    outline: none;
    border-color: #E78D08;
}

.view-all-link {
    color: #E78D08;
    text-decoration: none;
    font-size: 0.9rem;
    margin-top: 1rem;
    display: inline-block;
}

.view-all-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .filter-tabs {
        display: grid;
        gap: 0.5rem;
        grid-template-columns: 1fr 1fr;
    }

    .hero-content {
        display: none;
    }

    .hero-section {

        min-height: 80vh;
    }

    .filter-wrapper {
        width: 95%;
        padding: 1rem;
    }

    .filter-form {
        flex-direction: column;
    }

    .property-type-container,
    .search-input {
        width: 100%;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .amenities-grid {
        grid-template-columns: 1fr;
    }
}

#toolbarContainer{
    display:none!important;
}

    .filter {
        padding: 20px;
        border-radius: 24px;
    }

    a:hover {
        color: #fff;
    }

    select {

        color: #000 !important;
    }

    header.header {
       font-family:"Open Sans", sans-serif!important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        z-index: 999;
    }

    .nav-link {
        font-size: 0.9375rem;
        color: #000;
        text-decoration: none;
    }

    ..menu-link {
        font-size: 0.9375rem;
        color: #000;
        text-decoration: none;
    }

   
    .vr {
        border-color: #d87f4a !important;
    }

    p {
        font-size: 0.875rem;
        /* 14px */
        font-weight: 400;
        margin: 0;
        line-height: 1.625rem;
        /* 26px */
        font-family: "Open Sans", sans-serif;

    }


    .section-heading h2 {
        font-family: "Open Sans", sans-serif;
        font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #4c4949 !important;
    text-shadow: 2px 2px 4px rgb(198 175 175 / 50%);
    }

  

    .service-img {
        height: auto !important;
        object-fit: cover;
    }

    .common_border {
        border: 1px solid #E78D08;
        padding: 10px 0;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 16px;
    }

    .common-input {
        border: none !important;

    }

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

    .btn-main::before,
    .btn-main::after {
        border-radius: 12px;
        background: #E78D08;
    }

    .hero-subtitle {
        color: #fff;
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 0.5rem;
    }

    .common-tab .nav-item .nav-link::before {
        background: #E78D08;
        font-weight: 300;
    }

    .common-tab .nav-item .nav-link.active {
        border-radius: 12px;
        padding: 7px 60px !important;

    }

    h1,
    h2,
        {
        margin: 0 0 16px 0;
        font-family: "Open Sans", sans-serif;
        color: hsl(var(--heading-color));
        line-height: 1.2;
        font-weight: 400;
    }

    .common-tab .nav-item .nav-link {
        border: none !important;
    }

    /* Main Section */
    section {
        background-color: #f9f9f9;
       font-family:"Open Sans", sans-serif!important;
    }

    /* Headings */
    h3,
    h4,
    h5,
    h6 {
        color: #222;
        font-family: "Open Sans", sans-serif;

    }

    /* Rounded Image */
    img.rounded-4 {
        border-radius: 20px;
    }

    /* Learn More Button */
    .btn-outline-warning {
        border-color: #E78D08;
        color: #E78D08;
        transition: all 0.3s ease-in-out;
        padding: 14px 30px;
        border: 1px solid #E78D08;
        border-radius: 12px;
    }

    .insight_box {
        position: relative;
        top: -90px;
        left: 40px;
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        /* 32px */
        border-radius: 2.5rem;
        /* 40px */
        padding: 2.5rem;
        /* 40px */
        background-color: #fff;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        z-index: 2;
        overflow-x: hidden;
        max-width: 100%;
    }

    /* Medium Devices */
    @media (max-width: 992px) {
        .insight_box {
            top: -60px;
            left: 20px;
            padding: 2rem;
            gap: 1.5rem;
        }
    }

    /* Small Devices */
    @media (max-width: 576px) {
        .insight_box {
            top: 0;
            left: 0;
            padding: 1.5rem;
            border-radius: 1.5rem;
            flex-direction: column;
            gap: 1rem;
        }
    }

    .btn-outline-warning:hover {
        background-color: #E78D08;
        color: #fff;
    }

    /* Articles Box */
    .bg-white {
        border-radius: 20px;
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    }

    /* Tabs Styling */
    .nav-pills .nav-link {
        border-radius: 12px;
        color: #333;
        background-color: transparent !important;
        font-weight: 500;
        padding: 6px 16px;
        transition: 0.3s;
    }

    .nav-pills .nav-link.active,
    .nav-pills .nav-link:hover {
        background-color: #E78D08;
        color: #fff;
    }

    .article-card {
    display: flex
;
    align-items: center;
    gap: 15px;
    flex-direction: column;
}

    .article-card img {
        width: 80px;
        height: 60px;
        object-fit: cover;
        border-radius: 8px;
    }

 .article-card h6 {
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 4px;
}

    .section-heading__subtitle,
    .banner-video__subtitle {
        background: transparent !important;
        box-shadow: none !important;
    }

    .nav-pills .nav-link.active,
    .nav-pills .nav-link:hover {
        background: linear-gradient(135deg, #f5a623, #e78d08, #c76a00)!important;
        
        color: #fff;
        padding: 10px 60px!important;
    }

    .insight_tab {
        justify-content: space-evenly;
        display: flex;
        align-items: center;
    }

    .article-card p {
        margin: 0;
        font-size: 13px;
        color: #777;
    }

    /* Responsive Padding */
    @media (max-width: 768px) {
        .btn-custom {
            font-size: 12px;
        }

        .btn-outline-warning {
            width: 100%;
            text-align: center;
        }

        .article-card {
            flex-direction: column;
        }
    }

    .property-card a {
        color: black !important;
    }

    .tab-content {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .section-heading {

        text-align: center;
        /* margin-bottom: clamp(2.5rem, 0.066rem + 5.071vw, 4.5rem); */
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 30px;
    }

    .banner-video {
        padding: 70px 0;
        height: 1000px;
    }

    .banner-video::before {

        background-color: hsl(var(--black) / 0.3);
    }

    .filter-container {
        display: flex;
        gap: 12px;
        font-family: sans-serif;
        margin: 20px;
    }

    .filter-container input {
        padding: 8px 14px;
        border: 1px solid #ccc;
        border-radius: 20px;
        font-size: 14px;
        width: 180px;
        color: #1d2b4f;
    }

    .filter-container input::placeholder {
        color: #1d2b4f;
        opacity: 0.8;
    }

    .property-slider-nav {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
    }

    .service-10-number span::before,
    after {

        background: linear-gradient(90deg, #b28775 0%, #c99c88 35%, #e2b7a5 70%, #f0c4af 100%);

    }

    header .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1600px !important;
    }

    .service-10-number span:hover {
        color: #fff;
    }

    .service-10-wrapper::before {

        background: linear-gradient(90deg, #b28775 0%, #c99c88 35%, #e2b7a5 70%, #f0c4af 100%);
        color: #fff;

    }

    .cover-img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .property-slider-nav button {
        background: linear-gradient(90deg, #b28775 0%, #c99c88 35%, #e2b7a5 70%, #f0c4af 100%);
        border: none;
        color: #fff;
        padding: 10px 15px;
        border-radius: 50%;
        cursor: pointer;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        transition: background-color 0.3s ease;
    }

    .property-slider-nav button:hover {
        background-color: #fff;
        color: linear-gradient(90deg, #3A66A8 0.04%, #3E71B5 28.67%, #4380C2 54.05%, #4B8FCE 78.11%, #57A0DA 100.04%);
    }

    .property-slider-nav i {
        font-size: 16px;
        color: #fff;
    }


    .property-rates-section {

        max-width: 1000px;
        padding: 70px 0;
        margin: auto;
    }

    .tabs {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        margin-bottom: 20px;
    }

    .tab {
        padding: 10px 15px;
        background: #f1f1f1;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        white-space: nowrap;
    }

    .tab.active {
        background-color: #e8f0fe;
        /* color: #1976d2; */
        font-weight: bold;
        padding: 20px 10px;
    }

    .property-rates-content {
        display: flex;
        gap: 50px;
        flex-wrap: wrap;
    }

    /* Base Mega Menu */
    .mega-menu {
        width: 100%;
        max-width: 1140px;
        left: 0;
        right: 0;
        margin: auto;
        top: 100%;
        position: absolute;
        background-color: #fff;
        border-radius: 0 0 10px 10px;
        z-index: 1000;
    }

    /* On hover show mega menu */
    .mega-dropdown:hover .mega-menu {
        display: block;
    }

    /* Mobile responsiveness */
    @media (max-width: 991.98px) {
        .mega-dropdown {
            display: none !important;
        }
    }

    .left-box {
        flex: 1;
        min-width: 280px;
    }

    .rate-chart {
        text-align: center;
        margin-top: 20px;
    }

    .circle {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        border: 15px solid #f2a663;
        margin: 10px auto;
    }

    .coin {
        font-weight: bold;
        font-size: 18px;
    }

    .right-box {
        flex: 1;
        min-width: 280px;
    }

    .right-box h4 {
        margin-bottom: 5px;
    }

    .sector-list {
        list-style: none;
        padding: 0;
    }

    .sector-list li {
        display: flex;
        justify-content: space-between;
        padding: 8px 0;
        border-bottom: 1px solid #eee;
        font-size: 15px;
    }

    .view-all {
        display: inline-block;
        margin-top: 10px;
        color: #000;
        text-decoration: none;
        font-weight: bold;
    }

    .slider-wrapper {
        margin: auto;
        padding: 0px !important;
        max-width: 1200px;
        text-align: left;
        padding-top: 0px;
    }

    .properties-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
        padding: 70px 0px;
    }

    .properties-card {
        position: relative;
        width: 100%;
        max-width: 600px;
        border-radius: 20px;
        overflow: hidden;
        flex: 1 1 300px;
    }

    .launched-projects {
        background-color: #fff;
        border-radius: 2rem;
        padding: 120px 0;
    }

    .buy-card {
        background-color: #fff;
        border-radius: 1.5rem;
        overflow: hidden;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
        position: relative;
        height: 100%;
    }

    .buy-listing {
        padding: 120px 0;
    }

    .buy-card .tag {
        position: absolute;
        top: 10px;
        left: 10px;
        background: #f7941d;
        color: #fff;
        font-size: 0.75rem;
        padding: 5px 10px;
        border-radius: 20px;
        z-index: 1;
    }

    .launch-card .tag {
        position: absolute;
        top: 10px;
        left: 10px;
        background: #f7941d;
        color: #fff;
        font-size: 0.75rem;
        padding: 5px 10px;
        border-radius: 20px;
        z-index: 1;
    }

    .buy-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .buy-card span {
        font-size: 0.85rem;
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }

    .swiper {
        padding-bottom: 60px;
    }

    /* Common Styles */
    .custom-prev,
    .custom-next {
        position: absolute;
        bottom: -20px;
        /* Push slightly below the slider */
        background-color: #e58a00;
        /* Orange */
        color: #fff;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        font-size: 1.25rem;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transition: background-color 0.3s ease;
        z-index: 10;
    }

    /* Hover Effect */
    .custom-prev:hover,
    .custom-next:hover {
        background-color: #cc7700;
    }

    /* Center both buttons horizontally */
    .custom-prev {
        left: 50%;
        transform: translateX(-60px);
        /* Move left of center */
    }

    .custom-next {
        left: 50%;
        transform: translateX(10px);
        /* Move right of center */
    }

    .launch-card {
        background-color: #fff;
        border-radius: 1rem;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
        overflow: hidden;
        transition: transform 0.3s ease;
    }

    .launch-card:hover {
        transform: translateY(-5px);
    }

    .launch-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-top-left-radius: 1rem;
        border-top-right-radius: 1rem;
    }

    .launch-card h6 {
font-style: normal;
font-weight: 500;
font-size: 19px;
line-height: 23px;
display: flex;
align-items: center;
color: #1A1A1A;

flex: none;
order: 0;
align-self: stretch;
flex-grow: 0;
    }

   .launch-card span {
    /* font-size: 1rem; */
    display: inline-flex
;
    align-items: center;
    gap: 10px;
    border: 1px solid #aaa5a5;
    border-radius: 36px;
    font-size: 15px;
    padding: 10px;
    box-sizing: border-box;
    /* width: 66.16px; */
    height: 35px;
    border: 1px solid #E9E9E9;
    border-radius: 36px;
    flex: none;
    order: 0;
    flex-grow: 0;
}

    .properties-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .properties-content {
        position: absolute;
        bottom: 0;
        padding: 30px;
        color: #fff;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
        width: 100%;
    }

    .properties-logo {
        height: 50px !important;
        margin-bottom: 15px;
        width: auto !important;

    }


    .properties-content h3 {
        font-size: 24px;
        font-weight: 500;
        margin: 0;
    }

    .properties-content h3 span {
        color: #f5b88b;
        display: block;
    }

    .properties-content p {
        font-size: 14px;
        line-height: 1.6;
        margin: 10px 0 20px;
    }

    .properties-btn {
        display: inline-block;
        background: linear-gradient(135deg, #f5a623, #e78d08, #c76a00);
        color: #fff;
        padding: 10px 20px;
        border-radius: 8px;
        font-size: 14px;
        text-decoration: none;
        font-weight: 500;
    }

    @media (max-width: 768px) {
        .properties-section {
            flex-direction: column;
            padding: 20px 10px;
        }

        .properties-content {
            padding: 20px;
        }

        .properties-content h3 {
            font-size: 20px;
        }

        .properties-btn {
            font-size: 13px;
        }

        .properties-logo {
            height: 40px;
        }
    }

    .slick-possession {
        margin-top: 20px;
    }

    .possession-card {
        padding: 20px;
        border-radius: 15px;
        height: auto;
        position: relative;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .possession-card h3 {
        font-size: 20px;
        font-weight: 600;
        color: #1a1a1a;
    }

    .dropdown-toggle::after {
        color: #E78D08;
    }

    .possession-card p {
        color: #666;
        margin-top: 5px;
    }

    .locations {
        text-align: center;
        padding: 50px 20px;
    }

    .locations h2 {
        font-size: 28px;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .locations p {
        font-size: 16px;
        color: #000;
        margin-bottom: 30px;
        font-weight: 400;
    }

    .locations-container {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .location-card {
        position: relative;
        width: 250px;
        height: 350px;
        overflow: hidden;
        display: flex;
        align-items: flex-end;
        transition: transform 0.3s ease-in-out;
    }

    .location-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .location-title {
        position: absolute;
        bottom: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.7);
        color: #fff;
        text-align: center;
        padding: 15px;
        font-size: 18px;
        font-weight: bold;
    }

    /* Hover Effect - Moves Card Up */
    .location-card:hover {
        transform: translateY(-10px);
    }

    .see-all {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .see-all-btn {
        position: absolute;
        bottom: 20px;
        background: white;
        color: black;
        border: none;
        padding: 10px 20px;
        font-size: 14px;
        font-weight: bold;
        cursor: pointer;
    }

    .insights-section {
        background-color: transparent;
        padding: 70px 0;
        border-radius: 12px;
        max-width: 1200px;
        margin: auto;

    }

    .insights-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }

    .insight-title {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .insight-icon {
        width: 40px;
        height: 40px;
    }

    .insight-title h3 {
        margin: 0;
        font-size: 20px;
        font-weight: bold;
        color: #0d2545;
    }

    .insight-title p {
        margin: 0;
        font-size: 14px;
        color: #555;
    }

    .view-all-btn {
        padding: 8px 16px;
        border: 1px solidlinear-gradient(90deg, #b28775 0%, #c99c88 35%, #e2b7a5 70%, #f0c4af 100%);
        background: white;
        color: linear-gradient(90deg, #b28775 0%, #c99c88 35%, #e2b7a5 70%, #f0c4af 100%);
        border-radius: 4px;
        font-weight: bold;
        cursor: pointer;
    }

    .slider-wrapper {
        position: relative;
        overflow: hidden;
    }

    .insight-slider {
        display: flex;
        overflow-x: auto;
        scroll-behavior: smooth;
        gap: 16px;
        padding-bottom: 10px;
    }

    .insight-card {
        background: white;
        min-width: 220px;
        flex: 0 0 auto;
        padding: 40px 18px;
        border-radius: 12px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
        text-align: start;
    }

    .insight-card img {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }

    .insight-card h4 {
        margin: 0;
        font-size: 16px;
        font-weight: bold;
        color: #0d2545;
    }

    .insight-card p {
        margin-top: 6px;
        font-size: 14px;
        color: #666;
    }

    .slider-arrow {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        background: white;
        border: none;
        border-radius: 50%;
        font-size: 20px;
        width: 36px;
        height: 36px;
        cursor: pointer;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    }

    .search-bar-wrapper {
        background: #fff;
        border-radius: 12px;
        padding: 20px;
        max-width: 1200px;
        display: flex;
        margin-top: 30px;
        align-items: center;
        text-align: center;
        flex-direction: column;
        justify-content: center;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

    .search-tabs {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 15px;
        justify-content: center;
    }

    .search-tabs .tab {
        border: none;
        background: #f5f5f5;
        padding: 10px 20px;
        border-radius: 6px;
        cursor: pointer;
        font-weight: 500;
    }

    .search-tabs .tab.active {
        background-color: #f5f5f5;
        color: linear-gradient(90deg, #b28775 0%, #c99c88 35%, #e2b7a5 70%, #f0c4af 100%);
        font-weight: bold;
    }

    .search-form {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        align-items: center;
    }

    .search-form .dropdown-toggle {
        background: #f5f5f5;
        border: none;
        padding: 10px 14px;
        border-radius: 6px;
        font-weight: 500;
        cursor: pointer;
    }

    .search-form .search-input {
        padding: 10px 14px;
        border-radius: 6px;
        border: 1px solid #ccc;
        flex: 1;
        width: 550px;
        /*max-width: 400px;*/
    }

    .search-form .search-btn {
        background-color: linear-gradient(90deg, #b28775 0%, #c99c88 35%, #e2b7a5 90%, #f0c4af 100%);
        color: white;
        padding: 10px 18px;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        font-weight: bold;
    }

    .mega-dropdown {
        position: relative;
        display: inline-block;
    }

    .mega-dropdown .dropdown-toggle {
        background: #fff;
        cursor: pointer;
    }

    .mega-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        padding: 20px;
        border: 1px solid #ddd;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        width: 776px;
        z-index: 1000;
        flex-wrap: wrap;
        gap: 20px;
        flex-direction: row;
    }

    .launching-soon-section {
        padding: 80px 20px;

    }

    .launch-text-box {
        flex: 1 1 100%;
        max-width: 400px;
        margin-right: 40px;
    }

    .sub-heading {
        color: #f7941d;
        font-weight: 600;
        letter-spacing: 0.5px;
        font-size: 0.875rem;
        margin-bottom: 10px;
    }

    .heading {
        font-size: 2.25rem;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .desc {
        font-size: 1rem;
        color: #444;
        line-height: 1.7;
        margin-bottom: 25px;
    }

    .learn-btn {
        display: inline-block;
        padding: 12px 24px;
        border: 1.5px solid #000;
        border-radius: 12px;
        font-weight: 600;
        text-decoration: none;
        color: #000;
        transition: 0.3s;
    }

    .learn-btn i {
        margin-left: 6px;
    }

    .learn-btn:hover {
        background-color: #f2f2f2;
    }

    /* Cards */
    .launch-cards {
        display: flex;
        flex-wrap: wrap;
        gap: 24px;
        margin-top: 30px;
    }

    .launch-card {
        background: #fff;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
        width: 100%;
        flex: 1 1 300px;
    }

    .launch-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .btn-custom {
        background: linear-gradient(135deg, #f5a623, #e78d08, #c76a00)!important;
        color: white;
        box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
        padding: 0.75rem 1rem;
        border: none;
        border-radius: 8px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .launch-card-body {
        padding: 16px;
            background: #ffffff;
    }

    .launch-card-body h5 {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .location {
        font-size: 0.875rem;
        color: #666;
        margin-bottom: 12px;
    }

    .features {
        display: flex;
        gap: 12px;
        font-size: 0.875rem;
        margin-bottom: 14px;
        color: #444;
    }

    .features i {
        margin-right: 4px;
    }

    .launching {
        font-size: 0.9rem;
        color: #555;
        font-style: italic;
    }

    .mega-menu .column {
        flex: 1;
        min-width: 150px;
    }

    .mega-menu label {
        display: block;
        margin-bottom: 10px;
        font-size: 14px;
    }

    .mega-menu .commercial-link {
        flex-basis: 100%;
        margin-top: 20px;
        font-size: 14px;
    }

    /* Only show on hover */
    .mega-dropdown:hover .mega-menu {
        display: flex;
    }

    .nav-menu__item {
        position: relative;
    }

    .property-search-section {
        background: #f2f2f2;
    }

    .nav-tabs .nav-link {
        border: none;
        color: #333;
        font-weight: 500;
    }

    .nav-tabs .nav-link.active {
        background-color: #E78D08;
        /* Orange */
        color: white;
        border-radius: 12px;
    }

    .search-box select,
    .search-box input {
        height: 45px;
    }

    .search-box .btn-warning {
        background-color: #E78D08;
        border: none;
        font-weight: 600;
    }

    @media (max-width: 768px) {
        .text-end {
            text-align: left !important;
        }
    }

 .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%; /* appears just below the parent */
    left: 0;
    transform: translateY(70px);
    opacity: 0;
    visibility: hidden;

    transition: transform 0.3s ease, opacity 0.3s ease;

    background: #fff;
    min-width: 250px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    list-style: none;
    border: 1px solid #eee;
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0); /* smoothly slides up into place */
}

    .dropdown-menu li {
        padding: 6px 0;
    }

    .dropdown-menu li a {
        color: #0c1e3c;
        text-decoration: none;
        font-size: 14px;
    }

    .dropdown-menu li a:hover {
        background-color: #f2f4f8;
        display: block;
        padding-left: 5px;
        transform: translateY(0);
        transition: all 0.3s ease;
    }

    .dropdown-title {
        font-size: 12px;
        font-weight: bold;
        color: #666;
        text-transform: uppercase;
        margin-bottom: 8px;
    }

    .service-img {
        height: 503px;
        object-fit: contain;
    }

    .common-tab {
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: space-around;
    }

    .nav-menu__link {
        color: #000 !important;
        font-weight: 500;
        font-size: 1rem;
        width: 100%;
        padding: 38px 0;
        width: 100%;
    }

    .insight-icon {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: linear-gradient(90deg, #b28775 0%, #c99c88 35%, #e2b7a5 70%, #f0c4af 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
        color: white;
        font-size: 24px;
    }

    .header-9-btn {
        background: linear-gradient(90deg, #b28775 0%, #c99c88 35%, #e2b7a5 70%, #f0c4af 100%);
        color: #fff;
        padding: 10px 30px;
        font-weight: 500;
        font-size: 16px;
        text-transform: capitalize;
        display: inline-flex;
        gap: 16px;
        text-align: center;
        margin-left: 0px !important;
    }

    .common-tab .nav-item .nav-link.active {
        color: hsl(var(--white)) !important;
        border-color: transparent !important;
    }

  

    .btn-main {
        /* background-color: transparent !important; */
        border-color: transparent !important;
    }

    .insight-card img {
        width: 70px;
        height: 70px;
        margin-bottom: 30px;
    }

    .service-img {
        height: 450px;
        object-fit: cover;
    }

    .toggle-mobileMenu {
        line-height: 1;
        font-size: 36px;
        color: #000;
    }

    .possession-section {
        padding: 50px 0px;
        text-align: center;
    }

    .main-title {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 40px;
        color: #000;
    }

    .possession-cards {
        display: flex;
        justify-content: center;
        gap: 24px;
        flex-wrap: wrap;
    }

    /*.possession-card {*/
    /*  background: #f7e2dc;*/
    /*  border-radius: 32px;*/
    /*  overflow: hidden;*/
    /*  width: 100%;*/
    /*  max-width: 320px;*/
    /*}*/

    /*.possession-card img {*/
    /*  width: 100%;*/
    /*  height: auto;*/
    /*  display: block;*/
    /*  object-fit: cover;*/
    /*  border-radius: 32px;*/
    /*}*/

    /* Responsive */
    @media (max-width: 768px) {
        .main-title {
            font-size: 1.5rem;
        }

        .possession-cards {
            flex-direction: column;
            align-items: center;
        }

        .possession-card {
            max-width: 90%;
        }
    }

    @media (max-width: 600px) {
        .nav-menu__link {
            color: #000 !important;
            font-weight: 500;
            font-size: 1rem;
            width: 100%;
            padding: 38px 0;
        }

        .insight-slider {
            display: grid;
            overflow-x: auto;
            scroll-behavior: smooth;
            gap: 16px;
            padding-bottom: 10px;
        }

        .city-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 50px !important;
            padding: 30px 20px;
        }

        .site-footer {
            background: #15191d;
            color: #fff;
            padding: 60px 20px;
            font-family: sans-serif;
            font-size: 14px;
        }

        .footer-container {
            max-width: 1200px;
            margin: auto;
        }

        .footer-columns {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 40px;
        }

        .footer-col h4 {
            font-size: 35px;
            font-weight: 600;
            margin-bottom: 16px;
        }

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

        /* Mega menu base */
        .navbar .dropdown-menu {
            border-radius: 16px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 1000px;
            min-width: 1000px;
            left: 0;
            right: 0;
        }

        /* Ensure proper spacing inside */
        .dropdown-menu .row {
            padding: 0 1rem;
        }

        .dropdown-menu ul {
            padding-left: 0;
            list-style: none;
        }

        /* Links */
        .dropdown-menu a {
            font-size: 0.9375rem;
            /* 15px */
            line-height: 1.6;
            color: #212529;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .dropdown-menu a:hover {
            color: #d79c48;
            text-decoration: underline;
        }

        /* Section Headings */
        .dropdown-menu p.text-uppercase {
            font-size: 0.75rem;
            letter-spacing: 0.05em;
            color: #9c3b00;
            margin-bottom: 0.25rem;
        }

        .dropdown-menu h5 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        /* Image styling */
        .dropdown-menu img {
            border-radius: 16px;
            object-fit: cover;
            width: 100%;
            height: 100%;
            min-height: 200px;
        }

        /* Responsive tweaks */
        @media (max-width: 991.98px) {
            .navbar .dropdown-menu {
                min-width: 100%;
                max-width: 100%;
            }
        }

        .footer-col ul li {
            margin-bottom: 10px;
            color: #ccc;
        }

        .footer-col p {
            color: #ccc;
            margin: 10px 0;
        }

        .social-icons i {
            color: #fff;
            font-size: 16px;
            margin-right: 10px;
            cursor: pointer;
        }

        .app-buttons img {
            height: 36px;
            margin-right: 10px;
            margin-top: 10px;
        }

        .disclaimer {
            font-size: 11px;
            color: #888;
            margin-top: 10px;
        }

        .dropdown-menu {
            width: 1000px !important;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .disclaimer a {
            color: #ccc;
            text-decoration: underline;
        }

        .newsletter {
            margin-top: 50px;
        }

        .newsletter h4 {
            margin-bottom: 10px;
        }

        .newsletter form {
            display: flex;
            max-width: 360px;
            margin-bottom: 10px;
        }

        .newsletter input {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 0;
        }

        .newsletter button {
            padding: 10px 20px;
            border: none;
            background: #e98a00;
            color: #fff;
            cursor: pointer;
            border-radius: 20px;
            font-weight: bold;
        }

        .newsletter p {
            color: #aaa;
            font-size: 13px;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 30px;
            color: #888;
            font-size: 13px;
        }

        hr {
            border: none;
            border-top: 1px solid #444;
            margin: 40px 0 20px;
        }

        .focus-link {
            font-size: 14px;
            color: #AE5935;
            font-weight: 500;
            text-decoration: none;
            padding: 0px 40px;
        }
    }

    @media (max-width: 575px) {
        .property-type-five-item {

            display: inline !important;
        }

        .service-img {
            height: auto !important;
            object-fit: cover;
            width: 100%;
        }
    }

    .auction-button {
        background-color: #E78D08;
        /* Amber-500 */
        color: white;
        border: none;
        border-radius: 12px;
        padding: 8px 20px;
        font-size: 16px;
        font-weight: 500;
        font-family: sans-serif;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        box-shadow: 0 0 0 1px #d97706 inset;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .auction-button .sparkle {
        font-size: 16px;
        line-height: 1;
    }

    .auction-button:hover {
        background-color: #ea580c;
        /* Darker orange */
    }
    



    
    /* Modal Styles */
    .modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.4);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .modal-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .modal-container {
        position: absolute;
        top: 80px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 900px;
        margin: 0 1rem;
        background: white;
        border-radius: 16px;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
        overflow: hidden;
        transform: translateX(-50%) translateY(-20px);
        transition: all 0.3s ease;
    }

    .modal-overlay.active .modal-container {
        transform: translateX(-50%) translateY(0);
    }


   .modal-header {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 2rem 2.5rem !important;
    border-bottom: 1px solid #e2e8f0 !important;
}

    .modal-header {
        display: flex;
        flex-direction: column !important;
    }

    .search-form .search-input {
        width: auto;
    }

    .search-label {
        color: #ed8936;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 0.75rem;
    }

    .modal-title {
        font-size: 2.5rem;
        font-weight: 800;
        color: #1a202c;
        margin-bottom: 0.75rem;
        line-height: 1.2;
    }

    .modal-description {
        color: #718096;
        font-size: 0.875rem;
        line-height: 1.6;
        max-width: 600px;
    }

    /* Content Section */
    .modal-content {
        background: white;
        padding: 2rem 2.5rem;
    }

    /* Tabs */
    .tabs-container {
        display: flex;
        gap: 0.25rem;
        margin-bottom: 2rem;
    }

    .tab-button {
        background: transparent;
        border: none;
       padding: 10px 40px;
        font-weight: 500;
        font-size: 0.875rem;
        color: #718096;
        cursor: pointer;
        border-radius: 8px;
        transition: all 0.2s ease;
    }

    .tab-button:hover {
        color: #ed8936;
        background: #fef5e7;
    }

    .tab-button.active {
        background: #ed8936;
        color: white;
    }

    /* Search Form */
    .search-form {
        border: 2px solid #ed8936;
        border-radius: 12px;
        padding: 4px;
        display: flex;
        align-items: center;
        background: white;
    }

    .category-dropdown {
        position: relative;
        flex-shrink: 0;
    }

    .dropdown-select {
        background: transparent;
        border: none;
        padding: 1rem 2.5rem 1rem 1rem;
        font-weight: 500;
        color: #2d3748;
        cursor: pointer;
        outline: none;
        appearance: none;
        min-width: 180px;
    }

    .dropdown-arrow {
        position: absolute;
        right: 0.75rem;
        top: 50%;
        transform: translateY(-50%);
        width: 16px;
        height: 16px;
        color: #718096;
        pointer-events: none;
    }

    .form-divider {
        width: 1px;
        height: 32px;
        background: #e2e8f0;
        margin: 0 0.5rem;
    }

    .search-input-container {
        flex: 1;
        display: flex;
        align-items: center;
        position: relative;
            gap: 10px;
    }

    .search-icon {
        width: 20px;
        height: 20px;
        color: #a0aec0;
        margin-left: 0.75rem;
    }

    .search-input {
        flex: 1;
        border: none;
        outline: none;
        padding: 1rem 0.75rem;
        font-size: 0.875rem;
        color: #2d3748;
        background: transparent;
    }

    .search-input::placeholder {
        color: #a0aec0;
    }

    .search-button {
        background: #ed8936!important;
    border: none;
    border-radius: 12px !important;
    padding: 10px 40px!important;
        color: white;
        border: none;
        padding: 1rem 2rem;
        border-radius: 8px;
        font-weight: 400;
        font-size: 0.875rem;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .search-button:hover {
        background: #dd7724;
        transform: translateY(-1px);
    }

    /* Close button */
    .close-button {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: #718096;
        cursor: pointer;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all 0.2s ease;
    }

    .close-button:hover {
        background: #f7fafc;
        color: #2d3748;
    }

    .dropdown-menu.show {
        display: block;
    }


    /* Responsive Design */
    @media (max-width: 768px) {
        .modal-container {
            top: 60px;
            margin: 0 0.5rem;
        }
.property-select:hover+.mega-menu, .property-type-container:hover .mega-menu, .mega-menu:hover
 {
    width: auto!important;
 }
 .property-type-section .section-heading__title {
    display:none;!important;
 }
 .section-heading__subtitle, .banner-video__subtitle {
    padding: 0 !important;
 }
 .property-type-section {
    margin-top: 0 !important;
}
        .modal-header {
            padding: 1.5rem;
        }

        .modal-title {
            font-size: 2rem;
        }

        .modal-content {
            padding: 1.5rem;
        }

        .tabs-container {
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .tab-button {
            padding: 0.75rem 1rem;
            font-size: 0.8rem;
        }

        .search-form {
            flex-direction: column;
            gap: 0.5rem;
            padding: 1rem;
        }

        .form-divider {
            display: none;
        }

        .dropdown-select {
            width: 100%;
            text-align: center;
        }

        .search-input-container {
            width: 100%;
        }

        .search-button {
            width: 100%;
            padding: 1rem;
        }
    }
    
    
    /* Mobile Responsive Header Styles */

    /* Hide desktop elements on mobile (below lg breakpoint) */
    @media (max-width: 991.98px) {

        /* Hide desktop navigation completely */
        .nav.d-none.d-lg-flex {
            display: none !important;
        }

        /* Hide desktop right section (auction, post property buttons) */
        .d-none.d-lg-flex.align-items-center.gap-3 {
            display: none !important;
        }

        /* Hide login button on mobile */
        #login_btn {
            display: none !important;
        }

        /* Hide user section on mobile */
        #user_section {
            display: none !important;
        }

        /* Hide vertical divider and location dropdown on mobile */
        .vr.mx-3.d-none.d-lg-block,
        .dropdown.mega-dropdown.d-none.d-lg-block {
            display: none !important;
        }

        /* Ensure mobile toggle button is visible */
        .btn.d-lg-none {
            display: block !important;
        }

        /* Adjust header padding for mobile */
        .header {
            padding: 15px 0 !important;
        }

        /* Ensure logo is properly sized on mobile */
        .logo img {
            width: 80px !important;
            max-width: 80px !important;
        }

        /* Make sure container has proper spacing */
        .container.d-flex.align-items-center.justify-content-between {
            justify-content: space-between !important;
        }

        /* Hide any mega menus that might show on mobile */
        .dropdown-menu.mega-menu {
            display: none !important;
        }
    }

    /* Ensure mobile menu button styling */
    @media (max-width: 991.98px) {
        .btn.d-lg-none {
            border: none !important;
            background: none !important;
            padding: 8px !important;
        }

        .btn.d-lg-none i {
            font-size: 1.5rem !important;
            color: #333 !important;
        }
    }

    /* Extra small devices (phones, less than 576px) */
    @media (max-width: 575.98px) {
        .header {
            padding: 10px 0 !important;
        }

        .logo img {
            width: 70px !important;
            max-width: 70px !important;
        }

        .container {
            padding-left: 15px !important;
            padding-right: 15px !important;
        }
    }

    /* Offcanvas mobile menu styling improvements */
    @media (max-width: 991.98px) {
        .offcanvas-end {
            width: 280px !important;
        }

        .offcanvas-header {
            border-bottom: 1px solid #eee;
            padding: 20px;
        }

        .offcanvas-body {
            padding: 20px;
        }

        .offcanvas-body .nav-link {
            padding: 12px 0;
            border-bottom: 1px solid #f5f5f5;
            color: #333;
            font-weight: 500;
        }

        .offcanvas-body .nav-link:hover {
            color: #d36b0c;
        }

        /* Mobile buttons in offcanvas */
        .auction-button {
            background: linear-gradient(135deg, #d36b0c, #ff8c42);
            color: white;
            border: none;
            border-radius: 12px;
            padding: 12px 20px;
            text-decoration: none;
            font-weight: 600;
            text-align: center;
            display: inline-block;
        }

        .auction-button:hover {
            color: white;
            opacity: 0.9;
        }
    }

    /* Desktop - ensure all elements show properly */
    @media (min-width: 992px) {

        /* Make sure desktop elements are visible */
        .d-none.d-lg-flex,
        .d-none.d-lg-block {
            display: flex !important;
        }

        .d-none.d-lg-block {
            display: block !important;
        }

        /* Hide mobile toggle button on desktop */
        .btn.d-lg-none {
            display: none !important;
        }
    }

    /* Additional mobile-specific styles */
    @media (max-width: 991.98px) {

        /* Ensure proper spacing between logo and mobile menu button */
        .d-flex.align-items-center.gap-3 {
            gap: 0 !important;
        }

        /* Make sure header doesn't have unnecessary elements showing */
        .header .container>div:not(.d-flex.align-items-center.gap-3):not(.btn.d-lg-none) {
            display: none !important;
        }

        /* Exception for mobile menu button */
        .header .container .btn.d-lg-none {
            display: block !important;
        }
    }
    