    /* Offcanvas body */
    .offcanvas-body {
    padding: 24px;
    }

    /* Mobile menu list */
    .mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    }

    /* Menu items */
    .mobile-menu>li {
    margin-bottom: 18px;
    }

    /* Menu links */
    .mobile-menu>li>a {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: #2E2E2E;
    text-decoration: none;
    padding: 10px 0;
    transition: color 0.25s ease, padding-left 0.25s ease;
    }

    /* Active state */
    .mobile-menu>li.active>a {
    color: #22644b;
    font-weight: 600;
    }

    /* Hover effect */
    .mobile-menu>li>a:hover {
    color: #22644b;
    padding-left: 6px;
    }

    /* Optional: button alignment polish */
    .others-options a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    }

    /* Align login + button nicely on mobile */
    .offcanvas-body .others-options ul {
    gap: 14px;
    }

    .navbar.main-navbar {
    padding-top: 3px;
    padding-bottom: 3px;
    }

    /* Carousel arrows above overlay */
    .carousel-control-prev,
    .carousel-control-next {
    z-index: 3;
    width: 48px;
    }
.financial-about-area{
    background: #ebebeba8;
}
    /* ================= PRICING SECTION ================= */
    .pricing-section {
    padding: clamp(40px, 6vw, 90px) clamp(16px, 6vw, 50px);
    background: linear-gradient(179deg, #f8f9fa 10%, #fffcef);
    }

    .pricing-section a {
    color: white;
    }

    /* Title */
    .section-title {
    text-align: center;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 800;
    color: #023e4d;
    margin-bottom: clamp(28px, 4vw, 50px);
    }

    /* ================= GRID ================= */
    .cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(16px, 3vw, 30px);
    max-width: 1200px;
    margin: auto;
    }

    /* ================= CARD ================= */
    .pricing-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: clamp(20px, 3vw, 28px);
    text-align: center;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    }

    .pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.15);
    }

    /* Card content */
    .pricing-card h3 {
    font-size: clamp(20px, 2vw, 24px);
    font-weight: 800;
    margin-bottom: 8px;
    }

    .pricing-card p {
    font-size: clamp(14px, 1.4vw, 16px);
    color: #666;
    margin-bottom: 14px;
    }

    /* Price */
    .price {
    font-size: clamp(20px, 2.4vw, 26px);
    font-weight: 900;
    margin-bottom: 18px;
    }

    .price span {
    font-size: clamp(13px, 1.2vw, 14px);
    font-weight: 600;
    color: #666;
    }

    /* CTA */
    .btn-primary {
    display: inline-block;
    width: 100%;
    padding: clamp(12px, 1.6vw, 14px);
    background: linear-gradient(82deg, #023e4d 50%, #fffcef);
    color: #ffffff;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .btn-primary:hover {
    opacity: 0.9;
    transform: scale(1.02);
    }

    /* ================= PLAN SECTION ================= */
    .plan-section {
    margin-top: clamp(40px, 6vw, 80px);
    }

    .plan-title {
    text-align: center;
    font-size: clamp(22px, 2.6vw, 32px);
    font-weight: 800;
    color: #1c6b4a;
    margin-bottom: clamp(24px, 4vw, 40px);
    }

    /* Grid */
    .plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(18px, 3vw, 30px);
    max-width: 1100px;
    margin: auto;
    }

    /* Card */
    .plan-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    }

    .plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.15);
    }

    /* Image */
    .plan-card img {
    width: 100%;
    height: clamp(180px, 22vw, 260px);
    object-fit: cover;
    }

    /* Content */
    .plan-content {
    padding: clamp(16px, 2.5vw, 22px);
    text-align: center;
    }

    .plan-content h4 {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 800;
    margin-bottom: 6px;
    }

    .plan-content p {
    font-size: clamp(14px, 1.4vw, 16px);
    color: #666;
    margin-bottom: 14px;
    }

    /* Button */
    .plan-btn {
    display: inline-block;
    padding: clamp(10px, 1.4vw, 12px) clamp(20px, 3vw, 28px);
    background: linear-gradient(135deg, #1f4d3a, #1c6b4a);
    color: #fff;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .plan-btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
    }

    /* ================= AMENITIES ================= */
    .amenities-section {
    background: #2d3f7b;
    }

    .amenities-section .section-heading {
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 800;
    margin-bottom: 10px;
    }

    .amenities-section .section-heading span {
    color: #212529;
    }

    .amenities-section .section-subtitle {
    font-size: 15px;
    color: #666;
    margin-top: 6px;
    }

    /* Amenity Card */
    .amenity-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .amenity-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
    }

    /* Overlay */
    .amenity-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.1));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 18px;
    }

    .amenity-overlay h5 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    }

    /* Hover */
    .amenity-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
    }

    .amenity-card:hover img {
    transform: scale(1.08);
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
    filter: invert(1);
    }

    /* Section Styling */
    .location-connectivity {
    background: linear-gradient(180deg, #2b3969 95%, #ffffff);
    padding: 50px 0;
    }

    .location-connectivity .section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    }

    .location-connectivity .section-subtitle {
    font-size: 15px;
    color: #cfd8d3;
    }
    .location-connectivity .image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio for smaller screens */
    height: 0;
    overflow: hidden;
    max-height: none;
    /* remove max-height to avoid conflicts */
    margin: 0 auto;
    }

    .location-connectivity .image-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    }

    /* Desktop: fixed height 450px, no padding-bottom */
    @media (min-width: 992px) {
    .location-connectivity .image-wrapper {
    padding-bottom: 0;
    height: 450px;
    /* fixed height */
    max-height: none;
    }
    }

    /* Image Overlay */
    .image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    }

    .image-wrapper img {
    transition: transform 0.5s ease;
    width: 100%;
    }

    .image-wrapper:hover img {
    transform: scale(1.05);
    }

    .overlay-text {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 1);
    color: #fff;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 14px;
    }

    /* Card Styling */
    .connectivity-card {
    position: relative;
    max-width: 650px;
    margin: 50px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding-top: 20px;
    }

    .card-tab {
    position: absolute;
    top: -2px;
    left: 0;
    background: #c8a551;
    color: #fff;
    padding: 10px 20px;
    font-weight: 600;
    border-top-left-radius: 12px;
    border-bottom-right-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    }

    .card-tab:hover {
    background: #1b3a2b;
    }

    .card-body {
    padding: 40px 30px 30px;
    }

    /* Connectivity List */
    .connectivity-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px 20px;
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
    }

    .connectivity-list li {
    position: relative;
    padding-left: 35px;
    font-size: 16px;
    color: #244e3d;
    line-height: 1.6;
    }

    .connectivity-list li::before {
    content: "\f041";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #244e3d;
    font-size: 14px;
    }

    .connectivity-list li span {
    background: #244e3d;
    color: #fff;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 12px;
    margin-right: 6px;
    }

    /* Button */
    .button-wrapper {
    text-align: center;
    }

    .interest-btn {
    background: #244e3d;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    font-size: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    }

    .interest-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    /* Ripple effect */
    .interest-btn::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s;
    }

    .interest-btn:active::after {
    opacity: 1;
    transition: 0s;
    }

    .location-request-card {
    height: 100%;
    background: #f6f7f6;
    border-radius: 20px;
    padding: clamp(28px, 4vw, 40px);
    color: #000000;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    }

    .location-request-card h3 {
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 800;
    margin-bottom: 14px;
    }

    .location-request-card p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 20px;
    }

    .location-points {
    list-style: none;
    padding: 0;
    margin-bottom: 26px;
    }

    .location-points li {
    font-size: 15px;
    margin-bottom: 10px;
    font-weight: 600;
    }

    .location-btn {
    align-self: flex-start;
    background: #1c6b4a;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 800;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    }

    .location-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    }

    /* Hide prev/next arrows */
    .carousel-control-prev,
    .carousel-control-next {
    display: none !important;
    }

    /* Modern dots */
    .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    margin: 0 6px;
    }

    .carousel-indicators .active {
    background-color: #ffffff;
    width: 12px;
    height: 12px;
    }

    /* navbar */
    @media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar .others-options {
    margin-right: 35px !important;
    }
    }

    @media (max-width:500px) {
    .pp-check {
    width: 60px;
    }

    }

    /* Mobile optimization */
    @media (max-width: 575px) {
    .mobile-menu>li>a {
    font-size: 17px;
    }

    .default-btn {
    width: 100%;
    justify-content: center;
    }

    .offcanvas-body .others-options ul {
    flex-direction: column;
    align-items: stretch;
    }
    }

    /* pricing */
    @media (max-height: 520px) {
    .pricing-section {
    padding-top: 30px;
    padding-bottom: 30px;
    }
    }

    /* location-sec */
    @media (max-width: 768px) {
    .section-title {
    font-size: 28px;
    }

    .location-connectivity .section-subtitle {
    font-size: 16px;
    }
    }

    /* connectivity */
    @media(max-width:500px) {
    .connectivity-list {
    grid-template-columns: 1fr;
    }
    }

    /* Mobile Responsive Modal */
    @media (max-width: 576px) {

    /* modal */
    .modal-dialog {
    margin: 10px;
    }

    .modal-content {
    border-radius: 20px;
    }

    /* Header */
    .modal-content h2 {
    font-size: 1.4rem;
    }

    /* Body padding */
    .modal-content .p-4 {
    padding: 1.2rem !important;
    }

    /* WE PROMISE section */
    .modal-content .col-lg-4 {
    order: 1;
    }

    .modal-content .col-lg-4 .p-4 {
    padding: 1rem !important;
    }

    .modal-content .col-lg-4 h5 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    }

    .modal-content .col-lg-4 strong {
    font-size: 0.85rem;
    }

    /* Form section */
    .modal-content .col-lg-8 {
    order: 2;
    }

    .form-control-lg {
    font-size: 0.95rem;
    padding: 10px 16px;
    }

    /* Mobile number row */
    .modal-content .mb-3.d-flex {
    flex-wrap: nowrap;
    }

    .input-group-text {
    font-size: 0.85rem;
    padding: 10px 12px;
    white-space: nowrap;
    }

    /* Submit button */
    button[type="submit"] {
    padding: 12px;
    font-size: 1rem;
    }

    /* Footer */
    .modal-content .text-center.p-3 {
    padding: 1rem !important;
    font-size: 0.8rem;
    }
    }

    /* Show only on screens smaller than 900px */
    @media (max-width: 899px) {
    .sitevisit-info {
    display: flex;
    }
    }

    .navbar-nav .nav-link {
    color: #333;
    transition: 0.3s ease;
    }

    .navbar-nav .nav-link.active {
    color: #0d6efd;
    font-weight: 600;
    }

    .navbar .navbar-nav .nav-item .nav-link::before {
    bottom: 10px;
    height: 4px;
    }

    /* ================= MODAL CORE ================= */
    .sitevisit-modal__content {
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .25);
    position: relative;
    }

    .sitevisit-modal__close {
    position: absolute;
    top: 8px;
    right: 16px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .2);
    z-index: 9;
    }

    .sitevisit-modal__close::before {
    content: "✕";
    font-size: 18px;
    font-weight: bold;
    }

    /* ================= FORM PANEL ================= */
    .sitevisit-form {
    background: #ffffff;
    padding: 15px;
    }

    .sitevisit-form__title {
    font-weight: 700;
    color: #023e4d;
    margin-bottom: 20px;
    }

    .sitevisit-input {
    width: 100%;
    padding: 10px 10px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: .2s;
    }

    .sitevisit-input:focus {
    border-color: #22644b;
    box-shadow: 0 0 0 3px rgba(25, 135, 84, .15);
    outline: none;
    }

    /* CAPTCHA */
    .sitevisit-captcha__box {
    display: flex;
    gap: 8px;
    }

    .sitevisit-captcha__box img {
    height: 42px;
    border-radius: 6px;
    border: 1px solid #ccc;
    }

    .sitevisit-captcha__box input {
    flex: 1;
    padding: 8px;
    width: 100%;
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    }

    .sitevisit-captcha__refresh a {
    color: #22644b;
    font-weight: 600;
    }

    /* CONSENT */
    .sitevisit-consent {
    display: flex;
    gap: 10px;
    font-size: 12px;
    margin: 15px 0;
    }

    .sitevisit-consent a {
    color: #22644b;
    }

    .sitevisit-promise ul li,
    .sitevisit-highlights ul li {
    list-style: none;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    }

    .sitevisit-promise ul li i,
    .sitevisit-highlights ul li i {
    margin-right: 10px;
    color: #ffffff;
    }

    .highlightbox {
    display: flex;
    }

    @media (max-width: 500px) {
    .highlightbox {
    display: block;
    }
    .hero-carousel{
    margin-top: -10px !important;
    border-radius: 0px !important;
    }
    }
    @media (min-width: 500px) and (max-width: 800px) {

    .hero-carousel {
    margin-top: -45px !important;
    }
    }

    /* BUTTON */
    .sitevisit-btn {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: none;
    font-weight: 700;
    background: linear-gradient(135deg, #023e4d, #77969b);
    color: #fff;
    transition: .3s;
    }

    .sitevisit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(25, 135, 84, .4);
    }

    /* ================= INFO PANEL ================= */
    .sitevisit-info {
    height: 100%;
    padding: 35px 25px;
    color: #fff;
    background: linear-gradient(170deg, #023e4d 70%, #fffdf6);
    }

    .sitevisit-promise h5 {
    font-weight: 700;
    margin-bottom: 12px;
    color: antiquewhite;
    }

    .sitevisit-promise ul {
    padding: 0;
    list-style: none;
    }

    .sitevisit-promise li {
    margin-bottom: 10px;
    font-size: 17px;
    }

    .sitevisit-highlights h5 {
    font-weight: 700;
    margin-bottom: 12px;
    color: antiquewhite;
    }

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

    .sitevisit-highlights li {
    margin-bottom: 10px;
    font-size: 17px;
    }

    /* ================= MOBILE ================= */
    @media (max-width: 767px) {
    .sitevisit-form {
    padding: 25px 20px;
    }

    .sitevisit-info {
    text-align: center;
    padding: 25px;
    }

    }

    /* ================= MOBILE FIX (FINAL) ================= */
    @media (max-width: 575px) {

    /* Modal full screen */
    .modal-dialog {
    margin: 0;
    height: 100dvh;
    max-width: 100%;
    }

    /* Disable scroll */
    .modal-body,
    .modal-content {
    overflow: hidden !important;
    zoom: 85%;
    }

    /* Stack layout */
    .sitevisit-info {
    display: flex;
    }

    .sitevisit-form {
    padding: 16px;
    }

    /* Headings */
    .sitevisit-form__title {
    font-size: 18px;
    margin-bottom: 12px;
    }

    /* Inputs */
    .sitevisit-input {
    font-size: 14px;
    padding: 10px;
    margin-bottom: 10px;
    }

    /* Button */
    .sitevisit-btn {
    font-size: 15px;
    padding: 12px;
    border-radius: 8px;
    }

    /* Info section */
    .sitevisit-promise li {
    font-size: 14px;
    }

    .sitevisit-highlights span {
    font-size: 13px;
    }

    /* Close button */
    .sitevisit-modal__close {
    top: 10px;
    right: 12px;
    width: 34px;
    height: 34px;
    }
    }

    /* her banner section */
    /* Status badge */
    .hero-status {
    background: #224279;
    color: #fff !important;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 6px 0 0 6px;
    display: inline-block;
    margin-bottom: 14px;
    width: fit-content;
    }

    /* Headings */
    .hero-info-card h1 {
    font-weight: 700;
    font-family: inherit;
    font-size: 1.6rem;
    margin-bottom: 6px;
    }

    .hero-info-card h2 {
    font-size: 1rem;
    color: #555;
    margin-bottom: 4px;
    text-align: justify;
    }

    .hero-info-card h3 {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 14px;
    }

    /* Info card */
    .hero-info-card {
    padding: 20px;
    max-width: 364px;
    border-radius: 14px;
    background: #fff;
    }

    /* Table card */
    .hero-card {
    background: #004280;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 14px;
    }

    .hero-card table {
    width: 100%;
    color: #fff;
    font-size: 0.85rem;
    }

    .hero-card td {
    padding: 6px 0;
    }

    .hero-card td:last-child {
    text-align: right;
    font-weight: 600;
    }

    /* Offers */
    .hero-offers {
    list-style: none;
    padding-left: 18px;
    margin-bottom: 14px;
    font-size: 0.85rem;
    color: black;
    }

    .hero-offers li {
    margin-bottom: 0.3rem;
    }

    /* Pricing */
    .hero-pricing h4 {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 4px;
    }

    .hero-pricing h5 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0047c2;
    margin: 6px 0 10px;
    }

    .hero-pricing h5 small {
    font-size: 14px;
    font-weight: 500;
    }

    .hero-pricing h6 {
    font-size: 0.7rem;
    color: #777;
    margin-top: 10px;
    margin-bottom: 4px;
    }

    /* Button */
    .hero-cta {
    width: 100%;
    border-radius: 30px;
    font-weight: 600;
    padding: 0.65rem 0;
    }

    /* Hero section */
    .hero-spacing {
    margin-top: 68px;
    }

    .hero-image-wrapper {
    padding: 0;
    }

    .hero-image {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 0;
    }

    .hero-info-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    }

    /* Hero carousel */
    .hero-carousel {
    margin-top: 30px;
    border-radius: 1.5rem;
    overflow: hidden;
    }

    .hero-carousel-media {
    max-height: 550px;
    object-fit: cover;
    width: 100%;
    display: block;
    }

    .hero-carousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.6;
    }

    .hero-carousel .carousel-indicators .active {
    opacity: 1;
    }

    /* Video play button */
    .video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    font-size: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
    }

    .video-play-btn:hover {
    background: rgba(0, 0, 0, 0.75);
    }

    /* Responsive */
    @media (max-width: 991px) {
    .hero-image {
    height: 360px;
    margin-top: 20px;
    border-radius: 24px;
    }

    .hero-info-card {
    max-width: 100%;
    margin-top: 25px;
    background: #fff;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
    border-radius: 18px;
    width: 580px;
    }

    .hero-info-card .hero-info-wrapper {
    margin-top: -60px;
    padding: 0 15px;
    z-index: 2;
    }

    .hero-status {
    border-radius: 6px;
    }

    .download-area {
    padding: 40px 20px;
    }

    .video-play-btn {
    width: 100px;
    height: 100px;
    font-size: 56px;
    }
    }

    /* Heading underline */
    .heading-underline {
    display: block;
    width: 70px;
    height: 4px;
    background: #004280;
    margin: 8px auto 0;
    border-radius: 3px;
    }

    /* Highlight List */
    .highlight-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* Reduced gap for smaller screens */
    margin: 0 auto;
    padding: 0 15px;
    /* Added padding for smaller screens */
    }

    /* Highlight Item */
    .highlight-item {
    background: #fff;
    color: #004280;
    font-size: 1rem;
    /* Reduced font size */
    font-weight: 500;
    padding: 16px 20px 16px 40px;
    /* Reduced padding and adjusted left padding for smaller devices */
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.07);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    }

    .highlight-item:hover,
    .highlight-item.active {
    transform: translateX(5px);
    /* Reduced translation distance */
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    color: #002d65;
    }

    /* Hover overlay */
    .highlight-item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: #0042801a;
    transition: width 0.4s ease;
    border-radius: 20px;
    }

    .highlight-item:hover::after {
    width: 100%;
    }

    /* Active Badge (inside the item) */
    .highlight-item.active::before {
    content: '★';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #ffbf00;
    z-index: 2;
    }

    /* Image Container */
    .highlight-image-container {
    width: 100%;
    height: 320px;
    /* Reduced height for smaller screens */
    background: linear-gradient(145deg, #f0f8ff, #ffffff);
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
    }

    .highlight-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(0.98);
    transition: all 0.5s ease;
    }

    .highlight-image-container img.show {
    opacity: 1;
    transform: scale(1);
    }

    /* Responsive Styles */
    @media (max-width: 991px) {
    .highlight-item {
    font-size: 0.95rem;
    /* Slightly smaller font size */
    padding: 14px 18px 14px 35px;
    /* Smaller padding */
    }

    .highlight-image-container {
    height: 280px;
    /* Reduced height for smaller screens */
    }

    .highlight-list {
    gap: 15px;
    /* Reduced gap */
    padding: 0 10px;
    /* Padding for smaller screens */
    }
    }

    @media (max-width: 576px) {
    .highlight-item {
    font-size: 0.9rem;
    /* Further reduced font size */
    padding: 12px 15px 12px 30px;
    /* Smaller padding */
    }

    .highlight-image-container {
    height: 200px;
    /* Further reduced height */
    }

    .highlight-list {
    gap: 10px;
    /* Even smaller gap */
    padding: 0 5px;
    /* Minimal padding for very small screens */
    }
    }

    /* master/floorplan */

    /* ===== Floor Plan Section ===== */
    #sitefloorplan {
    background-color: #fffcef;
    /* light cream */
    padding: 6rem 0 4rem;
    }

    /* Section Titles */
    #sitefloorplan .section-title__tagline {
    text-transform: uppercase;
    font-weight: 500;
    color: #004280;
    letter-spacing: 1px;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    }

    #sitefloorplan .section-title__title {
    font-weight: 700;
    color: #004280;
    font-size: 1.8rem;
    }
.new-project-amenities{
    background: #f7f8f6;
}
    /* Floor Plan Description */
    #sitefloorplan .floor-plan__top-text {
    color: #004280;
    font-size: 1rem;
    line-height: 1.6;
    }
    #amenities .nav-tabs .nav-link:hover:not(.active) {
    color: #002d65;
    }
    #sitefloorplan .nav-tabs .nav-link:hover:not(.active){
    color: #002d65;
    background-color: #fff;
    }

    #sitefloorplan .nav-tabs .nav-link.active {
    background-color: #004280;
    color: #fff;
    border-color: #004280;
    box-shadow: 0 2px 8px rgba(0, 66, 128, 0.3);
    }
    @media (max-width: 767px) {
    #sitefloorplan .nav-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 0.5rem;
    /* Space between tabs: row-gap and column-gap */
    border-bottom: none;
    margin-bottom: 1.5rem;
    }

    #sitefloorplan .nav-tabs .nav-link {
    flex: 0 1 auto;
    /* Don't stretch too wide, shrink if needed */
    border-radius: 0.5rem;
    padding: 0.6rem 1rem;
    font-weight: 600;
    font-size: 1.05rem;
    text-align: center;
    border: 2px solid transparent;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    white-space: nowrap;
    /* Keep tab text on one line */
    }

    #sitefloorplan .nav-tabs .nav-link.active {
    background-color: #004280;
    color: #fff;
    border-color: #004280;
    box-shadow: 0 2px 8px rgba(0, 66, 128, 0.3);
    }

    #sitefloorplan .nav-tabs .nav-link:hover:not(.active) {
    background-color: #e6f0ff;
    color: #004280;
    border-color: #004280;
    }
    }

    /* ===== Floor Plan Cards ===== */
    .floor-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    justify-items: center;
    padding: 1rem 0;
    }

    .floor-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    cursor: pointer;
    width: 100%;
    text-align: center;

    /* Default light border */
    border: 2px solid #d3d3d3;
    /* light gray */
    transition: border 0.3s ease;

    display: flex;
    flex-direction: column;
    }

    .floor-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    filter: blur(2px);
    transition: filter 0.3s ease, transform 0.3s ease;
    border-radius: 1rem 1rem 0 0;
    }

    .floor-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: background 0.3s ease, opacity 0.3s ease;
    border-radius: 1rem;
    }

    .enquire-btn {
    background-color: #004280;
    color: #fff;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    }

    .floor-card:hover img {
    filter: blur(0);
    transform: scale(1.05);
    }

    .floor-card:hover .overlay {
    background: rgba(0, 0, 0, 0.5);
    opacity: 1;
    }

    .floor-card:hover .enquire-btn {
    opacity: 1;
    transform: translateY(0);
    }

    /* Change border on hover */
    .floor-card:hover {
    border: 2px solid #004280;
    /* dark blue on hover */
    }

    /* Caption under image */
    .floor-caption {
    font-weight: 500;
    font-size: 0.9rem;
    color: #004280;
    background: white;
    padding: 5px;
    }

    /* Responsive */
    @media (max-width: 576px) {
    .floor-cards {
    grid-template-columns: 1fr;
    }
    }

    /* Amenities */
    .project-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Default dark overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 1rem;
    }

    .project-info h5 {
    color: #fff;
    /* White text */
    font-weight: 600;
    font-size: 1.2rem;
    }

    .project-card:hover img {
    transform: scale(1.05);
    filter: brightness(0.8);
    /* Darken image */
    }

    .project-card:hover .project-info {
    opacity: 1;
    background: rgba(0, 0, 0, 0.6);
    /* Darker overlay on hover */
    }

    /* --- Swiper Buttons --- */
    .swiper-button-next,
    .swiper-button-prev {
    color: #2d3f7b !important;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    }

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
    background: rgba(255, 252, 239, 0.3);
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
    }

    /* faq section */
    .faq-area {
    background: linear-gradient(16deg, #fbf9f4, transparent);
    }

    /* section title */
    .faq-area .section-title h2 {
    color: #0b2545;
    font-weight: 700;
    }

    /* faq badge */
    .faq-area .sub-title {
    background: #1e3a5f;
    color: #ffffff;
    padding: 6px 14px;
    font-size: 14px;
    }

    /* accordion wrapper */
    .faq-content {
    max-width: 900px;
    margin: 0 auto;
    }

    /* accordion item */
    .accordion-item {
    background: #ffffff;
    border: none;
    border-radius: 16px;
    margin-bottom: 18px;
    box-shadow: 0 12px 28px rgba(11, 37, 69, 0.12);
    overflow: hidden;
    }

    /* accordion button */
    .accordion-button {
    background: #ffffff;
    color: #0b2545;
    font-weight: 600;
    padding: 22px 26px;
    border-radius: 16px;
    transition: all 0.3s ease;
    }

    /* accordion icon */
    .accordion-button::after {
    background-size: 16px;
    filter: brightness(0) saturate(100%) invert(16%) sepia(40%) saturate(1100%) hue-rotate(190deg);
    }

    /* hover */
    .accordion-button:hover {
    background: #eef2f7;
    }

    /* active state */
    .accordion-button:not(.collapsed) {
    background: #1e3a5f;
    color: #ffffff;
    }

    /* active icon */
    .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
    }

    /* remove focus */
    .accordion-button:focus {
    box-shadow: none;
    }

    /* accordion body */
    .accordion-body {
    background: #fdfbf6;
    padding: 22px 26px;
    color: #3e4a59;
    line-height: 1.7;
    font-size: 15px;
    }

    /* collapse fix */
    .accordion-collapse {
    border-top: 1px solid #e4e8ee;
    }

    /* mobile */
    @media (max-width: 768px) {
    .accordion-button {
    font-size: 15px;
    padding: 18px 20px;
    }
    }

    /* gallery video */
    .video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 aspect ratio */
    overflow: hidden;
    }

    .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    }

    @media (max-width: 991px) {
    .video-wrapper {
    margin-bottom: 20px;
    }
    }

    /* /* sustainability / */
    /* .sustain-img {
    width: 100%;
    max-width: 220px;
    / mobile /
    }

    / Tablets /
    @media (min-width: 768px) {
    .sustain-img {
    max-width: 400px;
    }
    }

    / Desktop
    @media (min-width: 992px) {
    .sustain-img {
    max-width: 530px;
    }
    } */
    .bg-img {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    }

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

    .content {
    position: relative;
    z-index: 1;
    }

    ul {
    padding-left: 20px;
    margin: 0;
    list-style: disc;
    }

    .single-services-card h3 {
    color: white;
    }