body {
    overflow-x: hidden;
    max-width: 100vw;
}

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

.highlights-list li {
    padding: 8px 0;
    font-size: 0.96rem;
}

.highlights-list i {
    color: #f4571b;
    margin-right: 10px;
}

.hero-banner {
    position: relative;
    width: 100%;
    min-height: 60vh;
    background: url('YOUR_IMAGE_URL_HERE') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

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

.hero-banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.hero-banner-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-banner-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.hero-banner-location {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hero-banner-location i {
    color: #f4571b;
    font-size: 1.2rem;
}


@media (max-width: 768px) {
    .hero-banner-title {
        font-size: 2rem;
    }

    .hero-banner-content {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        min-height: 40vh;
    }

    .hero-banner-title {
        font-size: 1.3rem;
    }

    .hero-banner-subtitle {
        font-size: 1rem;
    }
}

.co-summary-section {
    margin-top: 40px;
    margin-bottom: 40px;
}

.co-summary-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
    padding: 24px 24px 16px 24px;
    margin-bottom: 24px;
}

.co-summary-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.co-summary-price {
    font-size: 0.8rem;
    color: #000;
    font-weight: 600;
}

.co-summary-price .inr {
    color: #f15b19;
}

.co-summary-price .p-price {
    font-size: 1.1rem;
    color: #f4571b;
}

.summary-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}

.summary-feature {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 12px 18px;
    flex: 1 1 180px;
    min-width: 160px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.98rem;
}

.summary-feature i {
    color: #f4571b;
    font-size: 1.3rem;
}

.key-highlights {
    margin-top: 18px;
}

.key-highlights ul {
    padding-left: 18px;
}

/* Seating Options Section Styles */
.seating-options-section {
    margin-top: 40px;
    margin-bottom: 40px;
}

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

.seating-underline {
    width: 60px;
    height: 3px;
    background: #007bff;
    margin-top: 10px;
}

.seating-slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.seating-slider {
    display: flex;
    transition: transform 0.3s ease;
    gap: 20px;
}

.seating-card {
    flex: 0 0 50%;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    height: 145px;
    max-height: 145px;
}

.seating-card-image {
    flex: 0 0 35%;
    position: relative;
}

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

.seating-card-content {
    flex: 1;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.seating-card-title {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin: 0 0 5px 0;
}

.seating-card-description {
    font-size: 9px;
    color: #666;
    margin: 0 0 6px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 2em;
    /* 2 lines * 1.3 line-height */
}

.seating-feature {
    display: flex;
    align-items: center;
    margin-bottom: 2px;
}

.seating-check {
    color: #007bff;
    margin-right: 8px;
    font-size: 12px;
}

.seating-feature-text {
    color: #007bff;
    font-size: 10px;
    font-weight: 500;
}

.seating-pricing {
    margin-bottom: 5px;
}

.seating-price-note {
    font-size: 9px;
    color: #999;
    margin: 0 0 2px 0;
}

.seating-price {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.seating-cta {
    text-align: right;
}

.seating-cta-link {
    color: #007bff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.seating-cta-link:hover {
    color: #0056b3;
    text-decoration: none;
}

/* Slider Navigation */
.seating-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.seating-nav-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.seating-nav-btn:hover {
    background: white;
    transform: scale(1.1);
}

.seating-prev {
    margin-left: 15px;
}

.seating-next {
    margin-right: 15px;
}

/* Slider Dots */
.seating-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.seating-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

.seating-dot.active {
    background: #007bff;
}

.seating-dot:hover {
    background: #007bff;
}

/* Responsive Design */
@media (max-width: 768px) {

    .seating-card {
        flex: 0 0 49%;
        height: 140px;
        max-height: 140px;
    }

    .seating-card-image {
        flex: 0 0 25%;
    }

    .seating-card-content {
        padding: 10px;
    }

    .seating-card-title {
        font-size: 14px;
    }

    .seating-card-description {
        font-size: 10px;
    }

    .seating-price {
        font-size: 12px;
    }

    .seating-nav-btn {
        width: 35px;
        height: 35px;
    }

    .seating-prev {
        margin-left: 10px;
    }

    .seating-next {
        margin-right: 10px;
    }
}

@media (max-width: 480px) {

    .seating-card {
        flex: 0 0 100%;
        height: 100px;
        max-height: 100px;
    }

    .seating-card-content {
        padding: 6px;
    }

    .seating-card-title {
        font-size: 12px;
    }

    .seating-card-description {
        font-size: 9px;
    }

    .seating-price {
        font-size: 11px;
    }

    .seating-nav-btn {
        width: 30px;
        height: 30px;
    }
}

.download-brochure-btn {
    margin-top: 18px;
    border: 1px solid #f4571b;
    color: #f4571b;
    background: #fff;
    border-radius: 5px;
    padding: 8px 18px;
    font-weight: 500;
    transition: 0.2s;
}

.download-brochure-btn:hover {
    background: #f4571b;
    color: #fff;
}

.btn-theme {
    background-color: #f4571b;
    border-color: #f4571b;
    color: #fff;
    font-weight: 600;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-theme:hover,
.btn-theme:focus {
    background-color: #d94613;
    border-color: #d94613;
    color: #fff;
}

.form-error {
    font-size: 12px;
    color: #dc3545;
    margin-top: 4px;
    display: none;
}

.form-error.show {
    display: block;
}

.form-response {
    font-size: 13px;
}

/* About Section Styles */
.about-section {
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Workspace Timings Section Styles */
.workspace-timings-section {
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Common Amenities Section Styles */
.common-amenities-section {
    margin-top: 40px;
    margin-bottom: 40px;
}

.amenities-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.amenities-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.amenities-disclaimer {
    background: #f5f5f5;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    color: #666;
    margin-top: 15px;
    max-width: 100%;
}

.amenities-legend {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #555;
}

.legend-badge {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
}

.legend-badge.paid {
    background: #fff4e6;
    color: #ff8c00;
}

.legend-badge.premier {
    background: #0d9488;
    color: #fff;
    border-radius: 4px;
    font-size: 12px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 30px;
    margin-bottom: 25px;
}

.co-amenity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.amenity-icon {
    color: #f55a1d;
    font-size: 20px;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.amenity-name {
    font-size: 15px;
    color: #333;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
}

.amenity-badge {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

.amenity-badge.paid {
    background: #fff4e6;
    color: #ff8c00;
}

.amenity-badge.premier {
    background: #0d9488;
    color: #fff;
    border-radius: 4px;
    font-size: 10px;
    width: 18px;
    height: 18px;
}

.view-all-amenities {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #007bff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.view-all-amenities:hover {
    color: #0056b3;
    text-decoration: none;
}

.view-all-amenities i {
    font-size: 14px;
}

/* Slide-out Amenities Panel Styles */
.amenities-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.amenities-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 850px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.amenities-panel.active {
    right: 0;
}

.amenities-panel-header {
    padding: 20px 24px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 10;
}

.amenities-panel-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #333;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.amenities-panel-close:hover {
    color: #007bff;
}

.amenities-panel-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.amenities-panel-content {
    padding: 24px;
}

.amenities-panel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 30px;
}

.amenity-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    background: none;
    border: none;
    border-radius: 0;
}

.amenity-card-icon {
    color: #f55a1d;
    font-size: 20px;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.amenity-card-name {
    font-size: 15px;
    color: #333;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-weight: normal;
}

/* Responsive Design for Amenities Panel */
@media (max-width: 768px) {
    .amenities-panel {
        max-width: 100%;
    }

    .amenities-panel-header {
        padding: 16px 20px;
    }

    .amenities-panel-title {
        font-size: 20px;
    }

    .amenities-panel-content {
        padding: 20px;
    }

    .amenities-panel-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 25px;
    }

    .amenity-card {
        padding: 8px 0;
    }

    .amenity-card-icon {
        font-size: 18px;
        width: 22px;
    }

    .amenity-card-name {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .amenities-panel-header {
        padding: 14px 16px;
    }

    .amenities-panel-title {
        font-size: 18px;
    }

    .amenities-panel-content {
        padding: 16px;
    }

    .amenities-panel-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .amenity-card {
        padding: 6px 0;
    }

    .amenity-card-icon {
        font-size: 16px;
        width: 20px;
    }

    .amenity-card-name {
        font-size: 13px;
    }
}

/* Responsive Design for Common Amenities */
@media (max-width: 992px) {
    .amenities-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .amenities-legend {
        align-items: flex-start;
        flex-direction: row;
        gap: 20px;
    }

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

@media (max-width: 768px) {
    .common-amenities-section {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .co-summary-title,
    .about-title,
    .amenities-title,
    .special-highlights-title,
    .location-details-title {
        font-size: 20px;
        font-weight: 600;
    }

    .amenities-disclaimer {
        font-size: 13px;
        padding: 10px 14px;
    }

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

    .co-amenity-item {
        gap: 10px;
        padding: 6px 0;
    }

    .amenity-icon {
        font-size: 18px;
        width: 22px;
        flex-shrink: 0;
    }

    .amenity-name {
        font-size: 14px;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .common-amenities-section {
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .co-summary-title,
    .about-title,
    .amenities-title,
    .special-highlights-title,
    .location-details-title {
        font-size: 18px;
        font-weight: 700;
    }

    .amenities-disclaimer {
        font-size: 12px;
        padding: 8px 12px;
        margin-top: 10px;
    }

    .amenities-legend {
        flex-direction: column;
        gap: 8px;
        margin-top: 15px;
    }

    .legend-item {
        font-size: 12px;
    }

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

    .co-amenity-item {
        gap: 8px;
        padding: 6px 0;
    }

    .amenity-icon {
        font-size: 16px;
        width: 20px;
        flex-shrink: 0;
    }

    .amenity-name {
        font-size: 13px;
        line-height: 1.4;
    }

    .view-all-amenities {
        font-size: 14px;
    }
}

.timing-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #555;
}

.timing-item i {
    color: #007bff;
    font-size: 18px;
}

/* Special Highlights Section Styles */
.special-highlights-section {
    margin-top: 20px;
    margin-bottom: 20px;
}

.special-highlights-header {
    margin-bottom: 30px;
}

.special-highlights-icon {
    color: #007bff;
    font-size: 12px;
    margin-bottom: 4px;
    margin-right: 10px;
}

.special-highlights-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.special-highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.special-highlight-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.special-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.special-highlight-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.special-highlight-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.special-highlight-card:hover .special-highlight-img {
    transform: scale(1.05);
}

.special-highlight-content {
    padding: 12px 20px;
    text-align: center;
}

.special-highlight-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 12px 0;
}

.special-highlight-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for All Sections */
@media (max-width: 992px) {

    .co-summary-title,
    .about-title,
    .amenities-title,
    .special-highlights-title,
    .location-details-title {
        font-size: 20px;
        font-weight: 700;
    }

    .special-highlights-grid {
        gap: 20px;
    }

    .special-highlight-image {
        height: 130px;
    }
}

@media (max-width: 768px) {

    .co-summary-title,
    .about-title,
    .amenities-title,
    .special-highlights-title,
    .location-details-title {
        font-size: 20px;
        font-weight: 700;
    }

    .about-section,
    .workspace-timings-section,
    .special-highlights-section {
        margin-top: 35px;
        margin-bottom: 30px;
    }

    .about-title-part::after {
        height: 2.5px;
    }

    .timing-item {
        font-size: 15px;
    }

    .special-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .special-highlight-image {
        height: 120px;
    }

    .special-highlight-content {
        padding: 10px 15px;
    }

    .special-highlight-title {
        font-size: 16px;
    }

    .special-highlight-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {

    .co-summary-title,
    .about-title,
    .amenities-title,
    .special-highlights-title,
    .location-details-title {
        font-size: 18px;
        font-weight: 700;
    }

    .about-section,
    .workspace-timings-section,
    .special-highlights-section {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .about-title-part::after {
        height: 2px;
    }

    .timing-item {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .timing-item i {
        font-size: 16px;
    }

    .special-highlights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .special-highlights-icon {
        font-size: 10px;
    }

    .special-highlight-image {
        height: 140px;
    }

    .special-highlight-content {
        padding: 8px 12px;
    }

    .special-highlight-title {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .special-highlight-description {
        font-size: 12px;
        line-height: 1.5;
    }
}

.contact-form-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
    padding: 24px;
}

.sticky-section-tabs .nav-link {
    color: #333;
    font-weight: 500;
    padding-bottom: 6px;
    border-bottom: 2px solid transparent;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.sticky-section-tabs .nav-link:hover {
    color: #f4571b;
}

.sticky-section-tabs .nav-link.active {
    color: #f4571b;
    border-bottom-color: #f4571b;
}

@media (max-width: 991px) {
    .summary-features {
        flex-direction: row;
    }

    .summary-feature {
        flex: 1 1 calc(50% - 8px);
        min-width: calc(50% - 8px);
    }

    .sticky-section-tabs {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .co-summary-section {
        margin-top: 20px;
    }

    /* Mobile Gallery Layout */
    .project_images_gallery {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    .project_images_gallery .row {
        margin: 0 !important;
    }

    .project_details_images[style] {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
    }

    .project_details_images {
        flex-direction: row !important;
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        gap: 10px !important;
        overflow: visible !important;
    }

    .project_details_images.overflow-hidden {
        overflow: visible !important;
    }

    .project_details_images .main-image-wrapper[style] {
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        height: 250px !important;
        min-height: 250px !important;
        max-height: 250px !important;
    }

    .project_details_images .main-image-wrapper {
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        height: 250px !important;
        min-height: 250px !important;
        max-height: 250px !important;
    }

    .project_details_images .main-image-wrapper .main-image {
        height: 100% !important;
        width: 100% !important;
        min-height: 100% !important;
    }

    .project_right_grid[style] {
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        overflow: visible !important;
    }

    .project_right_grid {
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        overflow: visible !important;
    }

    .project_right_grid .image-box[style] {
        height: 160px !important;
        min-height: 160px !important;
        max-height: 160px !important;
        width: 100% !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .project_right_grid .image-box {
        height: 160px !important;
        min-height: 160px !important;
        max-height: 160px !important;
        width: 100% !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .project_right_grid .image-box a {
        height: 100% !important;
        width: 100% !important;
        display: block !important;
    }

    .project_right_grid .image-box img {
        height: 100% !important;
        width: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }

    /* Ensure all grid items are visible */
    .project_right_grid>* {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

@media (max-width: 480px) {
    .project_images_gallery {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    .project_images_gallery .row {
        margin: 0 !important;
    }

    .project_details_images {
        gap: 8px !important;
        height: auto !important;
    }

    .project_details_images .main-image-wrapper {
        height: 220px !important;
        min-height: 220px !important;
        max-height: 220px !important;
        width: 100% !important;
    }

    .project_right_grid {
        gap: 8px !important;
        height: auto !important;
        width: 100% !important;
        overflow: visible !important;
    }

    .project_right_grid .image-box[style] {
        height: 140px !important;
        min-height: 140px !important;
        max-height: 140px !important;
        width: 100% !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .project_right_grid .image-box {
        height: 140px !important;
        min-height: 140px !important;
        max-height: 140px !important;
        width: 100% !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .project_right_grid .image-box a {
        height: 100% !important;
        width: 100% !important;
        display: block !important;
    }

    .project_right_grid .image-box img {
        height: 100% !important;
        width: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }

    /* Ensure all grid items are visible */
    .project_right_grid>* {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* Desktop Gallery Layout - Ensure all images are visible */
@media (min-width: 768px) {
    .project_details_images {
        overflow: visible !important;
    }

    .project_details_images.overflow-hidden {
        overflow: visible !important;
    }

    .project_right_grid {
        grid-template-rows: repeat(2, 1fr) !important;
        height: 100% !important;
        overflow: visible !important;
    }

    .project_right_grid[style*="height"] {
        height: 100% !important;
        overflow: visible !important;
    }

    .project_right_grid .image-box {
        height: calc(100% - 5px) !important;
        min-height: calc(100% - 5px) !important;
        max-height: calc(100% - 5px) !important;
    }

    .project_right_grid .image-box[style*="height"] {
        height: calc(100% - 5px) !important;
        min-height: calc(100% - 5px) !important;
        max-height: calc(100% - 5px) !important;
    }

    /* Ensure all grid items are visible */
    .project_right_grid>* {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

.card-heading {
    font-size: 1rem;
    font-width: 550;
}

.pd .pd-type {
    color: #f4571b;
    font-size: 0.8;
    font-weight: 600;
}

.pd-btn {
    border-color: #f4571b;
    font-size: 1rem;
    font-weight: 600;
}

.pd-btn:hover {
    background-color: #f4571b;
    color: #fff;
}

.pd-text {
    color: #444;
    font-size: 0.96rem;
}

.text-color {
    color: #f4571b;
}

.sticky-form {
    position: sticky;
    top: 80px;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.sticky-form.fixed {
    position: fixed;
    top: 80px;
    z-index: 9;
}

/* Disable sticky behavior on mobile devices */
@media (max-width: 991px) {
    .sticky-form {
        position: relative;
        top: auto;
    }

    .sticky-form.fixed {
        position: relative;
        top: auto;
        z-index: auto;
    }
}

/* Location Details Section Styles */
.location-details-section {
    margin-top: 40px;
    margin-bottom: 40px;
}

.location-details-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
    padding: 24px;
}

.location-details-header {
    margin-bottom: 24px;
}

.location-details-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.location-details-underline {
    width: 60px;
    height: 3px;
    background: #007bff;
    margin-bottom: 16px;
}

.location-address {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    font-size: 16px;
    color: #555;
}

.location-address i {
    color: #f4571b;
    font-size: 18px;
}

.about-location {
    margin-bottom: 24px;
}

.about-location-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 12px 0;
}

.about-location-text {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 12px 0;
}

.read-more-link {
    color: #007bff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: #0056b3;
    text-decoration: none;
}

.read-more-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.read-more-link.expanded i {
    transform: rotate(180deg);
}

.location-content-grid {
    display: block;
    width: 100%;
    margin-top: 24px;
}

.location-map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-height: 400px;
}

.location-map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
}

.location-tabs-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    height: fit-content;
}

.location-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e5e5e5;
    margin-bottom: 20px;
}

.location-tab {
    padding: 12px 24px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.location-tab:hover {
    color: #007bff;
}

.location-tab.active {
    color: #007bff;
    border-bottom-color: #007bff;
}

.location-tab-content {
    display: none;
}

.location-tab-content.active {
    display: block;
}

.transit-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.transit-item:last-child {
    border-bottom: none;
}

.transit-item:hover {
    background: #f8f9fa;
    margin: 0 -12px;
    padding-left: 12px;
    padding-right: 12px;
    border-radius: 6px;
}

.transit-item-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.transit-item-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f7ff;
    border-radius: 8px;
    color: #007bff;
    font-size: 18px;
}

.transit-item-name {
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

.transit-item-arrow {
    color: #999;
    font-size: 14px;
    transition: color 0.3s ease;
}

.transit-item:hover .transit-item-arrow {
    color: #007bff;
}

.transit-item-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 0 0 52px;
}

.transit-item.expanded .transit-item-details {
    max-height: 500px;
    padding: 12px 0 0 52px;
}

.transit-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.transit-detail-list li {
    padding: 8px 0;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.transit-detail-list li:last-child {
    border-bottom: none;
}

.transit-detail-name {
    font-weight: 500;
    color: #333;
}

.transit-detail-info {
    font-size: 13px;
    color: #666;
    margin-left: 12px;
}

/* Responsive Design for Location Details */
@media (max-width: 992px) {
    .location-content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .location-map-container iframe {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .location-details-section {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .location-details-card {
        padding: 20px;
    }

    .co-summary-title,
    .about-title,
    .amenities-title,
    .special-highlights-title,
    .location-details-title {
        font-size: 20px;
        font-weight: 700;
    }

    .location-address {
        font-size: 14px;
    }

    .about-location-title {
        font-size: 16px;
    }

    .about-location-text {
        font-size: 14px;
    }

    .location-map-container {
        min-height: 300px;
    }

    .location-map-container iframe {
        min-height: 300px;
    }

    .location-tabs-container {
        padding: 16px;
    }

    .location-tab {
        padding: 10px 16px;
        font-size: 14px;
    }

    .transit-item {
        padding: 12px 0;
    }

    .transit-item-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .transit-item-name {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .location-details-section {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .location-details-card {
        padding: 16px;
    }

    .co-summary-title,
    .about-title,
    .amenities-title,
    .special-highlights-title,
    .location-details-title {
        font-size: 18px;
        font-weight: 700;
    }

    .location-details-underline {
        width: 50px;
        height: 2px;
    }

    .location-address {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .about-location {
        margin-bottom: 20px;
    }

    .about-location-title {
        font-size: 15px;
    }

    .about-location-text {
        font-size: 13px;
    }

    .read-more-link {
        font-size: 14px;
    }

    .location-content-grid {
        gap: 16px;
    }

    .location-map-container {
        min-height: 250px;
    }

    .location-map-container iframe {
        min-height: 250px;
    }

    .location-tabs-container {
        padding: 12px;
    }

    .location-tabs {
        margin-bottom: 16px;
    }

    .location-tab {
        padding: 8px 12px;
        font-size: 13px;
    }

    .transit-item {
        padding: 12px;
        border: 1px solid #f0f0f0;
        border-radius: 12px;
        margin-bottom: 12px;
        flex-wrap: wrap;
        align-items: flex-start;
        background-color: #fff;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
        border-bottom: none;
    }

    .transit-item:last-child {
        margin-bottom: 0;
    }

    .transit-item:hover {
        margin: 0;
        padding: 12px;
    }

    .transit-item-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .transit-item-name {
        font-size: 13px;
    }

    .transit-item-arrow {
        margin-left: auto;
        font-size: 12px;
        color: #999;
    }

    .transit-item-details {
        padding: 0;
        width: 100%;
    }

    .transit-item.expanded .transit-item-details {
        padding-top: 10px;
    }

    .transit-detail-list li {
        font-size: 13px;
        padding: 8px 0;
        flex-direction: column;
        align-items: flex-start;
        border-bottom: 1px solid #f5f5f5;
    }

    .transit-detail-list li:last-child {
        border-bottom: none;
    }

    .transit-detail-name {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .transit-detail-info {
        font-size: 12px;
        width: 100%;
        margin-left: 0;
        margin-top: 2px;
    }
}

/* Similar Co Workings Swiper Styles */
.similar-co-swiper-container {
    padding: 20px 50px 60px 50px;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.similar-co-swiper {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.similar-co-swiper .swiper-wrapper {
    align-items: center;
}

.similar-co-swiper .swiper-slide {
    width: auto;
    max-width: 49%;
    min-width: 300px;
}

.similar-co-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    height: 145px;
    max-height: 145px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.similar-co-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.co-card-image {
    flex: 0 0 35%;
    position: relative;
}

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

.co-card-content {
    flex: 1;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.co-card-title {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin: 0 0 5px 0;
}

.co-card-location {
    font-size: 9px;
    color: #666;
    margin: 0 0 6px 0;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 5px;
}

.co-card-location i {
    color: #f4571b;
    font-size: 12px;
}

.co-card-features {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
    gap: 10px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    color: #007bff;
}

.feature-item i {
    color: #007bff;
    font-size: 10px;
}

.co-card-price {
    margin-bottom: 5px;
}

.price-label {
    font-size: 10px;
    color: #999;
    margin: 0 0 2px 0;
}

.price-amount-co {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.price-amount-co .price-value {
    color: #f4571b;
}

.price-unit {
    font-size: 12px;
    font-weight: 500;
    color: #666;
}

.co-card-btn {
    text-align: right;
    margin-top: auto;
}

.co-card-btn-link {
    color: #007bff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.co-card-btn-link:hover {
    color: #0056b3;
    text-decoration: none;
}

/* Swiper Navigation Buttons */
.similar-co-next,
.similar-co-prev {
    background: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: #f4571b;
    transition: all 0.3s ease;
}

.similar-co-next:after,
.similar-co-prev:after {
    font-size: 18px;
    font-weight: 700;
}

.similar-co-next:hover,
.similar-co-prev:hover {
    background: #f4571b;
    color: #fff;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .similar-co-swiper-container {
        padding: 20px 30px 60px 30px;
    }

    .similar-co-swiper .swiper-slide {
        max-width: 70%;
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .similar-co-swiper-container {
        padding: 20px 20px 60px 20px;
    }

    .similar-co-swiper .swiper-slide {
        max-width: 85%;
        min-width: 260px;
    }

    .similar-co-card {
        height: 140px;
        max-height: 140px;
    }

    .co-card-image {
        flex: 0 0 25%;
    }

    .co-card-content {
        padding: 10px;
    }

    .co-card-title {
        font-size: 14px;
    }

    .similar-co-next,
    .similar-co-prev {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .similar-co-swiper-container {
        padding: 20px 10px 60px 10px;
    }

    .similar-co-swiper .swiper-slide {
        max-width: 95%;
        min-width: 240px;
    }

    .similar-co-card {
        height: 120px;
        max-height: 120px;
    }

    .co-card-image {
        flex: 0 0 30%;
    }

    .co-card-content {
        padding: 8px;
    }

    .co-card-title {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .co-card-location {
        font-size: 10px;
        margin-bottom: 4px;
    }

    .co-card-features {
        margin-bottom: 4px;
    }

    .feature-item {
        font-size: 11px;
    }

    .price-label {
        font-size: 9px;
    }

    .price-amount-co {
        font-size: 12px;
    }

    .price-unit {
        font-size: 10px;
    }

    .co-card-btn-link {
        font-size: 11px;
    }

    .similar-co-next,
    .similar-co-prev {
        width: 35px;
        height: 35px;
    }

    .similar-co-next:after,
    .similar-co-prev:after {
        font-size: 14px;
    }
}

.projects_hero_section {
    min-height: 400px;
    height: auto;
    position: relative;
    color: var(--white);
    overflow: visible;
    padding-bottom: 2rem;
}

.container-video {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 400px;
    height: 100%;
    z-index: 0;
}

.container-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    overflow: visible !important;
    position: relative;
    z-index: 2;
}

.hero-content .container {
    overflow: visible !important;
}

.hero-content .row {
    overflow: visible !important;
}

.hero-content .col-lg-9 {
    overflow: visible !important;
}

.hero-content p {
    font-size: 0.95rem;
}


.sectitle span {
    font-size: 1.65rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.01em;
    display: inline-block;
}

.sec-subtitle {
    font-size: 1.05rem;
    font-weight: 500;
    color: #636a7a;
    margin-top: .35rem;
    max-width: 720px;
    line-height: 1.5;
}

.hero-content .col-lg-9 .search {
    overflow: visible !important;
}

.search .row {
    overflow: visible !important;
}

@media (max-width: 575.98px) {
    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    .search {
        font-size: 10px;
    }


    .projects_hero_section {
        height: auto;
        min-height: auto;
        padding: 1.5rem 0 2rem;
        overflow-x: hidden;
        overflow-y: visible;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }

    .container-video {
        min-height: 100%;
        height: 100%;
        width: 100%;
        max-width: 100vw;
    }

    .overlay {
        min-height: 100%;
        height: 100%;
        width: 100%;
        max-width: 100vw;
    }

    .hero-content {
        align-items: flex-start;
        padding-top: 1rem;
        padding-bottom: 1rem;
        min-height: auto;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-content .container {
        padding-left: 1rem;
        padding-right: 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-content .row {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .hero-content .col-lg-9 {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .hero-content h1 {
        font-size: 1.5rem !important;
        margin-top: 0.5rem !important;
        margin-bottom: 0.75rem !important;
        line-height: 1.3;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-content p.lead {
        font-size: 0.9rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.4;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .sectitle span {
        font-size: 1.35rem;
    }

    .sec-subtitle {
        font-size: 0.9rem;
        max-width: 100%;
    }

    .projects_banner_video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        min-height: 100%;
    }

    .hero-content .col-lg-8 {
        padding-left: 0;
        padding-right: 0;
    }
}

.projects_banner_video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    object-fit: cover;
}

.overlay {
    position: absolute;
    background-color: rgba(0, 0, 0, .5);
    top: 0;
    left: 0;
    width: 100%;
    min-height: 450px;
    height: 100%;
    z-index: 1;
}

.coming-soon-card,
.coming-soon-section,
.hero-content,
.image-slider,
.projects-card,
.projects-image,
.projects-meta,
.section-title {
    position: relative;
}

.hero-content {
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search {
    height: auto;
    min-height: 50px;
    box-shadow: 0 8px 10px #000;
    border-radius: 30px;
    font-size: 13px;
    overflow: visible !important;
    margin-bottom: 2rem;
}

.search .filters-row {
    overflow: visible !important;
    gap: 0;
}

.search .filters-row .first_dropworn,
.search .filters-row .second_cowork_sub,
.search .filters-row .second_dropworn {
    overflow: visible !important;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    min-width: 0;
}

.search .filters-row .first_dropworn img,
.search .filters-row .second_cowork_sub img,
.search .filters-row .second_dropworn img,
.search .filters-row .first_dropworn i,
.search .filters-row .second_cowork_sub i,
.search .filters-row .second_dropworn i {
    flex-shrink: 0;
}

.search .filters-row .first_dropworn p,
.search .filters-row .second_cowork_sub p,
.search .filters-row .second_dropworn span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    flex: 1;
}

.search .search-input-wrapper {
    overflow: visible !important;
    min-height: 40px;
}

.searchInput {
    overflow: visible !important;
    text-overflow: ellipsis;
}

.first_dropdownDivElement,
.second_dropdownDivElement,
#cityDropdown {
    z-index: 10000 !important;
    overflow: visible !important;
}

/* Desktop dropdown positioning and styling */
@media (min-width: 576px) {

    .first_dropdownDivElement,
    .second_dropdownDivElement {
        z-index: 10000 !important;
        overflow: visible !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
        border: 1px solid rgba(0, 0, 0, 0.08) !important;
        background: #fff !important;
    }

    #cityDropdown {
        z-index: 10000 !important;
        overflow: visible !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
        border: 1px solid rgba(0, 0, 0, 0.08) !important;
        background: #fff !important;
        padding: 0.75rem !important;
    }

    /* City dropdown search input styling on desktop */
    #citySearchInput {
        border-radius: 8px !important;
        border: 1px solid rgba(0, 0, 0, 0.1) !important;
        padding: 0.5rem 0.75rem !important;
        font-size: 0.85rem !important;
        margin-bottom: 0.5rem !important;
    }

    /* City dropdown list styling on desktop */
    #dropdownCityList {
        border-radius: 8px !important;
        border: 1px solid rgba(0, 0, 0, 0.08) !important;
        margin-top: 0.5rem !important;
    }

    #dropdownCityList li {
        padding: 0.65rem 0.75rem !important;
        font-size: 0.85rem !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
        cursor: pointer;
        transition: background-color 0.2s;
    }

    #dropdownCityList li:last-child {
        border-bottom: none !important;
    }

    #dropdownCityList li:hover {
        background-color: #f5f5f5 !important;
    }

    /* Improve dropdown content styling on desktop */
    .first_dropdownDivElement .project-type-section,
    .second_dropdownDivElement .project-type-section {
        padding: 1rem !important;
    }

    .first_dropdownDivElement h6,
    .second_dropdownDivElement h6 {
        font-size: 0.9rem !important;
        margin-bottom: 0.75rem !important;
        font-weight: 600 !important;
        color: #333 !important;
    }

    .first_dropdownDivElement h6 i,
    .second_dropdownDivElement h6 i {
        color: var(--main_color) !important;
    }

    .first_dropdownDivElement .project-type-list,
    .second_dropdownDivElement .project-type-list {
        margin: 0 !important;
        padding: 0 !important;
    }

    .first_dropdownDivElement .project-type-list li,
    .second_dropdownDivElement .project-type-list li {
        margin-bottom: 0.5rem !important;
        list-style: none !important;
    }

    .first_dropdownDivElement .project-type-list li:last-child,
    .second_dropdownDivElement .project-type-list li:last-child {
        margin-bottom: 0 !important;
    }

    .first_dropdownDivElement .project-type-list li a,
    .second_dropdownDivElement .project-type-list li a {
        font-size: 0.85rem !important;
        padding: 0.65rem 0.75rem !important;
        display: block;
        border-radius: 8px;
        transition: all 0.2s;
        color: #333 !important;
        text-decoration: none !important;
    }

    .first_dropdownDivElement .project-type-list li a:hover,
    .second_dropdownDivElement .project-type-list li a:hover {
        background-color: #f5f5f5 !important;
        color: var(--main_color) !important;
    }
}

@media (max-width: 575.98px) {
    .search {
        height: auto;
        padding: 0.75rem 0.55rem !important;
        border-radius: 22px;
        margin-bottom: 0.5rem !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden;
    }

    .search .filters-row {
        flex-wrap: nowrap;
        gap: 0;
        border-radius: 18px;
        padding: 0.4rem 0.35rem !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0;
        margin-right: 0;
    }

    .search .filters-row>.first_dropworn,
    .search .filters-row>.second_cowork_sub,
    .search .filters-row>.second_dropworn {
        flex: 0 0 33.333%;
        max-width: 33.333%;
        padding: 0.55rem 0.25rem;
        border-right: 1px solid rgba(0, 0, 0, .08);
        overflow: hidden !important;
        box-sizing: border-box;
    }

    .search .filters-row>.second_dropworn {
        border-right: none;
    }

    .search .filters-row p,
    .search .filters-row span {
        font-size: 0.72rem;
        margin-bottom: 0;
        overflow: hidden !important;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 100%;
        box-sizing: border-box;
    }

    .search .filters-row img {
        margin-right: 0.25rem;
    }

    .search .search-input-wrapper {
        margin-top: 0.75rem;
        border-radius: 18px;
        padding: 0.4rem 0.5rem !important;
        border: 1px solid rgba(0, 0, 0, .08);
        background: #fff;
        flex-wrap: nowrap !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        min-height: 40px;
    }

    .search .search-input-wrapper input {
        font-size: 0.85rem;
        flex: 1 1 auto;
        min-width: 0;
        max-width: 100%;
        margin-right: 0.5rem;
        border: none;
        outline: none;
        background: transparent;
        width: auto;
        overflow: hidden !important;
        text-overflow: ellipsis;
        box-sizing: border-box;
    }

    .search .search-input-wrapper .search-btn {
        padding: 0.45rem 0.75rem !important;
        border-radius: 12px;
        flex-shrink: 0;
        flex-grow: 0;
        width: auto;
        min-width: 45px;
    }

    /* Center all dropdowns on mobile */
    .first_dropdownDivElement,
    .second_dropdownDivElement {
        width: calc(100vw - 2rem) !important;
        max-width: 280px !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
        border: 1px solid rgba(0, 0, 0, 0.08) !important;
        background: #fff !important;
        z-index: 10001 !important;
        overflow: visible !important;
        position: fixed !important;
    }

    #cityDropdown {
        width: calc(100vw - 2rem) !important;
        max-width: 320px !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
        border: 1px solid rgba(0, 0, 0, 0.08) !important;
        background: #fff !important;
        padding: 0.75rem !important;
        z-index: 10001 !important;
        overflow: visible !important;
        position: fixed !important;
    }

    /* City dropdown search input styling */
    #citySearchInput {
        border-radius: 8px !important;
        border: 1px solid rgba(0, 0, 0, 0.1) !important;
        padding: 0.5rem 0.75rem !important;
        font-size: 0.85rem !important;
        margin-bottom: 0.5rem !important;
    }

    /* City dropdown list styling */
    #dropdownCityList {
        border-radius: 8px !important;
        border: 1px solid rgba(0, 0, 0, 0.08) !important;
        margin-top: 0.5rem !important;
    }

    #dropdownCityList li {
        padding: 0.65rem 0.75rem !important;
        font-size: 0.85rem !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
        cursor: pointer;
        transition: background-color 0.2s;
    }

    #dropdownCityList li:last-child {
        border-bottom: none !important;
    }

    #dropdownCityList li:hover {
        background-color: #f5f5f5 !important;
    }

    /* Improve dropdown content styling on mobile */
    .first_dropdownDivElement .project-type-section,
    .second_dropdownDivElement .project-type-section {
        padding: 1rem !important;
    }

    .first_dropdownDivElement h6,
    .second_dropdownDivElement h6 {
        font-size: 0.9rem !important;
        margin-bottom: 0.75rem !important;
        font-weight: 600 !important;
        color: #333 !important;
    }

    .first_dropdownDivElement h6 i,
    .second_dropdownDivElement h6 i {
        color: var(--main_color) !important;
    }

    .first_dropdownDivElement .project-type-list,
    .second_dropdownDivElement .project-type-list {
        margin: 0 !important;
        padding: 0 !important;
    }

    .first_dropdownDivElement .project-type-list li,
    .second_dropdownDivElement .project-type-list li {
        margin-bottom: 0.5rem !important;
        list-style: none !important;
    }

    .first_dropdownDivElement .project-type-list li:last-child,
    .second_dropdownDivElement .project-type-list li:last-child {
        margin-bottom: 0 !important;
    }

    .first_dropdownDivElement .project-type-list li a,
    .second_dropdownDivElement .project-type-list li a {
        font-size: 0.85rem !important;
        padding: 0.65rem 0.75rem !important;
        display: block;
        border-radius: 8px;
        transition: all 0.2s;
        color: #333 !important;
        text-decoration: none !important;
    }

    .first_dropdownDivElement .project-type-list li a:hover,
    .second_dropdownDivElement .project-type-list li a:hover {
        background-color: #f5f5f5 !important;
        color: var(--main_color) !important;
    }

    .hero-content .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}