@font-face {

    font-family: 'Optima-LT-W02-Roman';
    src: url('../new/fonts/Optima-LT-W02-Roman.otf') format('opentype');
    src: url('../new/fonts/Optima-LT-W02-Roman.ttf') format('truetype'),
        url('../new/fonts/Optima-LT-W02-Roman.eot') format('embedded-opentype'),
        url('../new/fonts/Optima-LT-W02-Roman.woff2') format('woff2'),
        url('../new/fonts/Optima-LT-W02-Roman.woff') format('woff');

    font-style: normal;
    font-display: swap;
}

html,
body {
    font-family: 'Optima-LT-W02-Roman';
}

:root {
    --primary-red: #D3070F;
    --dark-red: #8B0000;
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.25);
}

.side-enq {
    position: sticky;
    top: 80px;
    width: 100%;
    background: #1b1b3b5e;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.side-enq.show {
    opacity: 1;
    visibility: visible;
}

.side-enq ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

.side-enq ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
}

.banner-v2 {
    background: #fff;
    padding: 30px 0px 0px;
}

.nv-mosaic-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    height: 100%;
}

.nv-mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nv-mosaic-item:hover img {
    transform: scale(1.05);
}

.nv-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: #fff;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.nv-mosaic-item:hover .nv-overlay {
    opacity: 1;
    transform: translateY(0);
}

.nv-overlay span {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid #FFC500;
    padding-bottom: 5px;
}

.overviewbg {
    background: #FFF;
    padding: 50px 0px 10px 0px;
}

.overview-v2 {
    padding: 80px 0;
}

.ov-media-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ov-main-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.ov-media-wrapper:hover .ov-main-img {
    transform: scale(1.03);
}

.ov-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.badge-content span {
    display: block;
}

.badge-top {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 1.5px;
    margin-bottom: 2px;
}

.badge-bottom {
    font-size: 16px;
    font-weight: 800;
    color: #2b2e90;
}

.ov-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.ov-play-btn i {
    font-size: 24px;
    color: #2b2e90;
    margin-left: 5px;
}

.ov-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #FFC500;
}

.ov-content-box {
    padding-left: 40px;
}

.ov-sub-label {
    font-size: 13px;
    font-weight: 800;
    color: #FFC500;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.ov-title {
    font-size: 30px;
    font-weight: 800;
    color: #1a1b3f;
}

.text-brand {
    color: #2b2e90;
}

.ov-divider {
    width: 60px;
    height: 4px;
    background: #2b2e90;
    margin-bottom: 25px;
    border-radius: 2px;
}

.ov-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 35px;
}

.ov-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.ov-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.ov-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    border-color: #2b2e9050;
}

.ov-card-icon {
    width: 45px;
    height: 45px;
    background: #f0f1f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2b2e90;
    font-size: 18px;
    transition: all 0.3s ease;
}

.ov-card:hover .ov-card-icon {
    background: #2b2e90;
    color: #fff;
}

.ov-card-info label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.ov-card-info span {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #222;
}

.ov-card-wide {
    grid-column: span 2;
}

/* Project Overview v3 - Image removed version */
.overview-v3 {
    padding: 80px 0;
    background-color: #f8f9fc;
}

.ov3-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.ov3-header {
    margin-bottom: 50px;
}

.ov3-sub-label {
    font-size: 14px;
    font-weight: 800;
    color: #FFC500;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 12px;
}

.ov3-title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1b3f;
    margin-bottom: 20px;
}

.ov3-divider {
    width: 80px;
    height: 4px;
    background: #2b2e90;
    margin: 0 auto 30px;
    border-radius: 2px;
}

.ov3-desc {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 50px;
}

.ov3-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.ov3-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ov3-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(43, 46, 144, 0.1);
    border-color: rgba(43, 46, 144, 0.1);
}

.ov3-card-icon {
    width: 60px;
    height: 60px;
    background: #f0f1f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2b2e90;
    font-size: 24px;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.ov3-card:hover .ov3-card-icon {
    background: #2b2e90;
    color: #fff;
    transform: scale(1.1);
}

.ov3-card-info label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.ov3-card-info span {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: #1a1b3f;
}

.ov3-card-wide {
    grid-column: span 2;
}

/* Project Overview v4 - Highlight Strip Design */
.overview-v4 {
    padding: 100px 0 80px;
    background: #ffffff;
}

.ov4-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.ov4-header {
    text-align: center;
    margin-bottom: 60px;
}

.ov4-sub-label {
    font-size: 14px;
    font-weight: 800;
    color: #FFC500;
    text-transform: uppercase;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 12px;
}

.ov4-title {
    font-size: 42px;
    font-weight: 900;
    color: #1a1b3f;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.ov4-divider {
    width: 60px;
    height: 4px;
    background: #2b2e90;
    margin: 0 auto 35px;
    border-radius: 2px;
}

.ov4-desc {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    max-width: 900px;
    margin: 0 auto 50px;
}

/* The Highlight Strip */
.ov4-strip {
    background: #ffffff;
    border: 1px solid #f0f1f5;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.ov4-item {
    flex: 1;
    min-width: 200px;
    padding: 35px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-right: 1px solid #f0f1f5;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.ov4-item:last-child {
    border-right: none;
}

.ov4-item:hover {
    background: #f8faff;
}

.ov4-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #2b2e90;
    transition: all 0.3s ease;
    z-index: -1;
}

.ov4-item:hover::after {
    height: 4px;
}

.ov4-icon {
    font-size: 28px;
    color: #2b2e90;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.ov4-item:hover .ov4-icon {
    transform: scale(1.1);
    color: #FFC500;
}

.ov4-label {
    font-size: 12px;
    font-weight: 700;
    color: #a0a0a0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.ov4-value {
    font-size: 17px;
    font-weight: 800;
    color: #1a1b3f;
    line-height: 1.3;
}

/* Project Overview v5 - Split Premium Design */
.overview-v5 {
    padding: 52px 0;
    background: #ffffff;
}

.ov5-wrapper {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    /* display: flex;
    flex-wrap: wrap; */
    border: 1px solid #f0f0f0;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Sidebar: Technical Details */
.ov5-sidebar {
    /* flex: 0 0 400px; */
    background: #f8faff;
    padding: 50px 40px;
    border-right: 1px solid #eef1f8;
    height: 100%;
}

.ov5-sidebar-header {
    margin-bottom: 35px;
}

.ov5-sidebar-title {
    font-size: 14px;
    font-weight: 800;
    color: #2b2e90;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
}

.ov5-detail-list {
    display: flex;
    flex-direction: column;
    gap: 27px;
}

.ov5-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    cursor: default;
    transition: transform 0.3s ease;
}

.ov5-detail-item:hover {
    transform: translateX(8px);
}

.ov5-detail-icon {
    width: 42px;
    height: 42px;
    /* background: #ffffff; */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2b2e90;
    font-size: 18px;
    /* box-shadow: 0 4px 10px rgba(43, 46, 144, 0.1); */
    flex-shrink: 0;
    /* transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); */
    transition: all 0.3s ease;
}

/* .ov5-detail-item:hover .ov5-detail-icon {
    background: #2b2e90;
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(43, 46, 144, 0.2);
} */

.ov5-detail-info label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #888899;
    text-transform: uppercase;
    margin-bottom: 2px;
    letter-spacing: 1px;
}

.ov5-detail-info span {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: #1a1b3f;
    line-height: 1.2;
}

/* Right Content: About Project */
.ov5-main-content {
    /* flex: 1; */
    padding: 50px 40px;
}

.ov5-main-header {
    margin: 30px 0px;
    /* margin: 24px 0px 0px;
    display: flex;
    flex-direction: column;
    align-items: center; */
}

.ov5-tag {
    font-size: 13px;
    font-weight: 800;
    color: #FFC500;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 10px;
}

.ov5-title {
    font-size: 30px;
    font-weight: 700;
    color: #1a1b3f;
    line-height: 1.1;
}

.ov5-title span {
    color: #2b2e90;
}

.ov5-divider {
    width: 60px;
    height: 4px;
    background: #2b2e90;
    margin: 25px 0;
    border-radius: 2px;
}

.ov5-description {
    font-size: 18px;
    line-height: 1.9;
    color: #555566;
    margin-bottom: 40px;
}

.ov5-partners {
    border-top: 1px solid #f0f0f0;
    padding-top: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.ov5-partners img {
    max-height: 100px;
    width: auto;
}

@media (max-width: 1199px) {
    .ov5-sidebar {
        flex: 0 0 350px;
        padding: 40px 30px;
    }

    .ov5-main-content {
        padding: 40px 40px;
    }

    .ov5-partners {
        gap: 20px;
        flex-direction: column;
    }
}

@media (max-width: 991px) {
    .ov5-sidebar {
        flex: 1 1 100%;
        border-right: none;
        border-bottom: 1px solid #eef1f8;
    }

    .ov5-detail-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .ov5-title {
        font-size: 32px;
    }

    .ov5-description {
        font-size: 16px;
        margin-bottom: 0px;
    }

    .ov5-main-header {
        margin-bottom: 0px;
    }
}

@media (max-width: 575px) {
    .ov5-detail-list {
        grid-template-columns: 1fr;
    }

    .ov5-sidebar {
        padding: 40px 20px;
    }

    .ov5-main-content {
        padding: 40px 25px;
    }
}

@media (max-width: 991px) {
    .ov3-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .ov3-grid {
        grid-template-columns: 1fr;
    }

    .ov3-card-wide {
        grid-column: span 1;
    }

    .ov3-title {
        font-size: 28px;
    }
}

.aminities li {
    display: flex;
    align-items: center;
    color: #343437;
    float: left;
    background: #FFF;
    border: 1px solid #EEEEEE;
    padding: 50px 10px;
    /* height: 100px; */
    list-style: none;
    margin: 5px;
    width: 47%;
    margin-bottom: 19px;
    min-height: 200px;
}

.am-txt-box {
    font-size: 16px;
}

/* Card grid */
.nv2-amenities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    padding: 30px 0 10px;
}

.nv2-amenity-card {
    background: #ffffff;
    padding: 28px 14px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: default;
}

.nv2-amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.nv2-amenity-icon-wrap {
    width: 76px;
    height: 76px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: #eef0f8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease;
}

.nv2-amenity-card:hover .nv2-amenity-icon-wrap {
    background: #242657;
}

.nv2-amenity-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: filter 0.25s ease;
}

.nv2-amenity-card:hover .nv2-amenity-icon {
    filter: brightness(0) invert(1);
}

.nv2-amenity-label {
    font-size: 13px;
    font-weight: 600;
    color: #343437;
    margin: 0;
    line-height: 1.4;
}

.spec-tabs-container {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    min-height: 400px;
    border: 1px solid #eef0f2;
}

.spec-tabs-nav {
    width: 30%;
    background: #f8f9fa;
    border-right: 1px solid #eef0f2;
    /* padding: 10px 0; */
}

.spec-tabs-nav .nav-link {
    color: #495057 !important;
    font-weight: 600;
    padding: 15px 20px;
    border-radius: 0;
    text-align: left;
    display: flex;
    align-items: center;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.spec-tabs-nav .nav-link i {
    width: 25px;
    margin-right: 12px;
    font-size: 16px;
    color: #aaa;
    transition: all 0.3s ease;
}

.spec-tabs-nav .nav-link:hover {
    background: #f1f3f5;
    color: #2b2e90;
}

.spec-tabs-nav .nav-link.active {
    background: #ffffff;
    color: #2b2e90 !important;
    border-left-color: #2b2e90;
}

.spec-tabs-nav .nav-link.active i {
    color: #2b2e90;
}

.spec-tabs-content {
    width: 70%;
    padding: 30px;
}

.spec-pane-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f3f5;
}

.spec-pane-header h4 {
    color: #1a1b3f;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
}

.spec-pane-header h4 i {
    margin-right: 10px;
    color: #2b2e90;
    font-size: 20px;
}

.spec-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.spec-list li {
    position: relative;
    padding: 10px 0 10px 30px;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

.spec-list li::before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
    position: absolute;
    left: 0;
    color: #2b2e90;
    font-size: 17px;
}

.loc-adv-wrapper {
    margin-top: 20px;
}

.loc-adv-accordion .loc-adv-item {
    border: none;
    background: white;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.loc-adv-accordion .loc-adv-item .accordion-header button {
    font-family: 'Optima-LT-W02-Roman' !important;
}

.loc-adv-accordion .loc-adv-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Specific Accent Colors unified to brand blue */
.loc-adv-item.connectivity,
.loc-adv-item.education,
.loc-adv-item.healthcare,
.loc-adv-item.entertainment,
.loc-adv-item.shopping,
.loc-adv-item.workplaces {
    border-left-color: #2b2e90;
}

.loc-adv-button {
    background: #ffffff !important;
    color: #1a1b3f !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    padding: 18px 20px !important;
    border: none !important;
    box-shadow: none !important;
    display: flex !important;
    align-items: center !important;
}

.loc-adv-button i {
    margin-right: 15px;
    font-size: 18px;
    width: 25px;
    text-align: center;
    color: #2b2e90;
    /* Unified icon color */
}

.loc-adv-button::after {
    transition: transform 0.3s ease !important;
}

.loc-adv-body {
    padding: 0 20px 20px 60px !important;
    color: #555;
    font-size: 15px;
}

.loc-adv-body ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.loc-adv-body ul li {
    /* position: relative; */
    padding: 5px 0 5px 0px;
}

.loc-adv-body ul li::before {
    /* content: "•"; */
    position: absolute;
    left: 0;
    font-weight: bold;
    line-height: 1.6;
}

.progress-carousel {
    padding: 20px 0 40px;
}

.progress-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
    height: 100%;
}

.progress-card:hover {
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.progress-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/3;
}

.progress-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.progress-carousel .owl-nav {
    position: absolute;
    top: 45%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.progress-carousel .owl-nav button {
    width: 45px;
    height: 45px;
    background: #fff !important;
    color: #333 !important;
    border-radius: 50% !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease !important;
    pointer-events: auto;
    margin: 0 -22px !important;
}

.progress-carousel .owl-next {
    right: -2px;
}

.progress-carousel .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.progress-carousel .owl-dot {
    width: 10px;
    height: 10px;
    background: #ddd !important;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.progress-carousel .owl-dot.active {
    width: 30px;
    border-radius: 20px;
    background: var(--gradient) !important;
}

.faq-section {
    background: #EEEEEE;
}

.currently-hiring h3 {
    font-weight: 700;
    font-size: 30px;
    color: #343437;
    line-height: 40px;
}

.faq-section .accordion-header button {
    font-family: 'Optima-LT-W02-Roman' !important;
}

@media (max-width: 767px) {
    .side-enq {
        display: none !important;
    }

    .banner-v2 {
        padding: 80px 0px 0px !important;
        background: #fff;
    }

    .nv-main {
        height: 350px;
    }

    .nv-overlay {
        opacity: 1;
        transform: translateY(0);
        padding: 15px;
    }

    .ov-title {
        font-size: 28px;
    }

    .ov-grid {
        grid-template-columns: 1fr;
    }

    .ov-card-wide {
        grid-column: span 1;
    }

    .ov-badge {
        padding: 8px 15px;
    }

    .badge-bottom {
        font-size: 14px;
    }

    .ov-content-box {
        padding-left: 0;
        margin-top: 50px;
    }

    .nv2-amenities-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .nv2-amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .nv2-amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 20px 0 10px;
    }

    .nv2-amenity-card {
        padding: 20px 10px 16px;
    }

    .nv2-amenity-icon-wrap {
        width: 60px;
        height: 60px;
    }

    .spec-tabs-container {
        flex-direction: column;
    }

    .spec-tabs-nav {
        width: 100%;
        display: flex;
        overflow-x: auto;
        border-right: none;
        border-bottom: 1px solid #eef0f2;
    }

    .spec-tabs-nav .nav-link {
        border-left: none;
        border-bottom: 3px solid transparent;
        white-space: nowrap;
    }

    .spec-tabs-nav .nav-link.active {
        border-bottom-color: #2b2e90;
    }

    .spec-tabs-content {
        width: 100%;
    }

    .progress-carousel .owl-nav {
        top: 3%;
    }
}

@media only screen and (max-width: 600px) {
    @media only screen and (max-width: 600px) {
        .owl-prev {
            left: 10px !important;
            top: 166px !important;
        }

        .owl-next {
            right: 10px !important;
            top: 166px !important;
        }
    }
}

/* premium-enq-btn section */
.premium-enq-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    cursor: pointer;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--white);
    border-radius: 50px 0 0 50px;
    text-decoration: none !important;
    box-shadow: -4px 4px 15px var(--shadow);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 60px;
    height: 60px;
    overflow: hidden;
    white-space: nowrap;
    padding: 0;
    justify-content: flex-start;
}

body.modal-open .premium-enq-btn {
    z-index: 1;
    pointer-events: none;
}

.premium-enq-btn .btn-icon {
    min-width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    flex-shrink: 0;
}

.premium-enq-btn .btn-text {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding-right: 25px;
}

/* Hover Interaction: Swipe Open */
.premium-enq-btn:hover {
    width: 200px;
    background: linear-gradient(135deg, #FF1A1A 0%, var(--primary-red) 100%);
}

.premium-enq-btn:hover .btn-text {
    opacity: 1;
}

.modal-header {
    border-bottom: 1px solid #dee2e6 !important;
}

/* Subtle "Edge Peek" Animation for visibility */
@keyframes edge-peek {
    0% {
        transform: translateY(-50%) translateX(0);
    }

    50% {
        transform: translateY(-50%) translateX(-8px);
    }

    100% {
        transform: translateY(-50%) translateX(0);
    }
}

.premium-enq-btn:hover {
    animation-play-state: paused;
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
    .premium-enq-btn {
        width: 50px;
        height: 50px;
        top: 60%;
    }

    .premium-enq-btn .btn-icon {
        min-width: 50px;
        height: 50px;
        font-size: 18px;
    }
}

/* USP Cards */
.ov5-usp-card {
    background: #f8faff;
    padding: 15px 10px;
    border-radius: 8px;
    border: 1px solid #eef1f8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.ov5-usp-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(43, 46, 144, 0.08);
}

.ov5-usp-icon {
    color: #2b2e90;
    font-size: 25px;
    margin-bottom: 8px;
}

.ov5-usp-text {
    font-weight: 700;
    color: #1a1b3f;
    font-size: 16px;
    line-height: 1.3;
}