/************************************
	HOMEPAGE BANNER
 ************************************/
.swiper-slide {
    position: relative;
}

.banner-left {
    display: flex;
    flex-direction: column;
}
/* Banner wrapper overlay */
.banner-image-wrapper {
    position: relative;
    display: inline-block; /* shrink to image width */
}

/* Overlay */
.banner-image-wrapper::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 74, 142, 0.4); /* brand blue overlay */
    z-index: 2;
}

/* Ensure text above overlay */
.banner-image {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1; /* image below overlay if needed, or set overlay below image by adjusting z-index */
}



.banner-card {
    margin-top: 100px;
    align-self: flex-end;
}

.banner-btn-row:last-child {
    border-bottom: none;
}

/* .custom-banner-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    font-weight: 600;
    color: #000;
} */


/* Button */
.custom-banner-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    font-weight: 600;
    color: #1a1a1a;
    transition: all 0.35s ease;
    position: relative;
    z-index: 10;
}


/* ===== Circle ===== */

.circle-icon {
    width: 32px;
    height: 32px;
    border: 1px solid var(--color-blue);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: all 0.4s ease;
    pointer-events: none;
    animation: breathe 4s ease-in-out infinite;
}

/* Subtle breathing animation */
@keyframes breathe {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Center dot */
.circle-icon::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--color-blue);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

/* Line */
.circle-icon::after {
    content: "";
    width: 37px !important;
    height: 1px;
    background: var(--color-blue);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%);
    transition: width 0.4s ease;
    animation: linePulse 3s ease-in-out infinite;
}

/* Gentle pulse */
@keyframes linePulse {
    0%, 100% {
        width: 18px;
        opacity: 0.8;
    }
    50% {
        width: 22px;
        opacity: 1;
    }
}

/* ===== HOVER ===== */

.custom-banner-btn:hover {
    transform: translateY(-2px);
}

.custom-banner-btn:hover .circle-icon {
    background:var(--color-blue);
    animation: none;
}

.custom-banner-btn:hover .circle-icon::before {
    background: var(--color-white);
    transform: translate(-50%, -50%) scale(1.2);
}

.custom-banner-btn:hover .circle-icon::after {
    width: 40px;
    animation: none;
}
h1.banner-title.text-white.animate-btn.active {
    margin-bottom: 8px;
}
.banner-content p {
    text-transform: uppercase;
    font-weight: 500;
}
.banner-content p,
.banner-textarea {
    font-size: var(--font-size-h4);
    font-family: var(  --first-heading);
}

.card-text.fw-bold {
    font-family: var(  --first-heading);
    font-weight: 800 !important;
    color: var(--color-blue);
    font-size: var(--font-size-h4);
}

.banner-btn-row {
    position: relative;
    display: flex;
    align-items: center;
}

.btn-separator {
    display: inline-block;
    width: 2px;           /* thickness of line */
    
    height: 24px;         /* length of line */
    background-color: var(--color-green); /* or any color */
    margin-left: 45px;    /* spacing from button */
}
.swiper-pagination {
    position: relative !important;
    margin-top: 60px;
}
.swiper-pagination-bullet-active{
    background:var(--color-white) !important;
}
.swiper-pagination-bullet{
 width: 15px !important;
    height: 15px !important;

}
.swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
    background:transparent !important;
    border:2px solid var(--color-white) !important;
    opacity: unset !important;
}



/************************************
	INSIDE BANNER
 ************************************/
section.page-banner {
    margin-bottom: 25rem;
}    

.banner-bottom {
    position: relative;
}

/* Arrow aligned with container */
.banner-arrow {
    font-size: 60px;
    position: relative;
    z-index: 2;
    color:var(--color-green);
}

.banner-arrow i {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
}

/* Image touching right edge */
.banner-thumbnail {
    position: absolute;
    right: 0;
    top: 0;
    max-width: 80%;
}

.banner-thumbnail img {
    width: 100%;
    height: auto;
}






/************************************
SERENITY REFINEMENT
************************************/
/* Numbers */
.refinement-numbers {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.refinement-number {
    font-size: var(--font-size-h2);
    cursor: pointer;
    color: var(--color-blue);
    transition: transform 0.5s ease, opacity 0.5s ease;
    font-weight: 900;
    font-family: var(
    --first-heading);
    opacity: 0.5;
}
.refinement-number.active {
    color:var(--color-blue);
    opacity: unset;
}


/* Content */
.refinement-content {
    display: none;
    margin-bottom: 50px;
}

.refinement-content.active {
    display: block;
}


.refinement-image {
    width: 100%;
    z-index: 1;
}

/* Card overlapping image */
.refinement-card {
    background: var(--color-blue);
    z-index: 2;
    border-radius: 0;
    margin-right: -50px;
    left: 47%;
    width: 100%;
}
.horizontal-line {
    height: 2px;
    background: var(--color-blue);
    position: absolute;
    top: 33%;
    left: -40px;
    width: 40px;
}
.refinement-card h3.card-title {
    font-size: var(--font-size-h4) !important;
}
.refinement-card .card-text.text-white.py-3 {
    font-family: var(--first-heading);
    line-height: normal;
}


/* arrows */
/* Pulse animation keyframes */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Base arrow styling */
.refinement-arrows-below .arrow {
    font-size: 2.5rem;
    color: var(--color-blue);
    cursor: pointer;
    background: var(--off-white-card);
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Hover effect: scale + pulse */
.refinement-arrows-below .arrow:hover {
    color: var(--color-green);
    background: var(--color-white);
    animation: pulse 0.6s infinite; /* pulse continuously while hovered */
}






 /************************************
	STRUCTURE DEFINATION
 ************************************/
  .structure-definition {
        width: 100%;
        overflow: hidden;
        padding: 120px 0;
    }

    .structure-slide {
        display: flex;
        gap: 20px;
    }

    .structure-side {
        flex: 0 0 25%;
    }

    .structure-side img {
        width: 100%;
        height: 630px;
        object-fit: cover;
    }

    .structure-center {
        flex: 0 0 50%;
        position: relative;
    }

    .structure-center::before {
        content: "";
        background: rgba(0,0,0,0.25);
        position: absolute;
        width: 100%;
        height: 100%;
        pointer-events: none; 
    }

    .structure-center img {
        width: 100%;
        height: 700px;
        object-fit: cover;
    }

    .structure-card {
    position: absolute;
    top: 50%;
    right:0;
    transform: translateY(-50%);
    
    width: 420px;
    padding: 50px;
    
    /* Glass Effect */
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    /* Soft gradient tint */
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.15),
        rgba(255,255,255,0.05)
    );

    border: 1px solid rgba(255,255,255,0.2);

    box-shadow: 
        0 10px 40px rgba(0,0,0,0.25);

    color: white;
        transition: all 0.6s ease;
    }

    .swiper-slide-active .structure-card {
        opacity: 1;
    }

    .structure-card p.small-sec-heading {
        font-family: var(--second-heading);
        color: var(--color-blue);
        font-weight: 400;
        padding-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 12px;
        text-transform: uppercase;
        font-size: 15px;
    }

    .structure-card h3 {
        font-family: var(--second-heading);
        text-transform: capitalize;
        font-weight: 700;
    }

    .structure-card .circle-icon {
        border: 1px solid var(--color-white);
    }
    .structure-card .circle-icon::before {
        background: var(--color-white);
    }
    .structure-card .circle-icon::after {
        background: var(--color-white);
    }
    /* DOTS */
    .swiper-pagination-bullet {
        width: 15px;
        height: 15px;
        background: transparent;
        border: 2px solid white;
        opacity: 1;
        margin: 6px !important;
    }

    .swiper-pagination-bullet-active {
        background: white;
        transform: scale(1.4);
    }

    .structure-definition .swiper-button-next:after,
    .structure-definition .swiper-button-prev:after {
        display: none;
        color: var(--color-white);
        font-weight: 900;
    }
    /* MOBILE */
    @media(max-width:768px){
        .structure-slide {
            flex-direction: column;
        }
        .structure-side {
            display: none;
        }
        .structure-center {
            flex: 0 0 100%;
        }
        .structure-center img {
            height: 400px;
        }
        .structure-definition .swiper-button-next:after,
        .structure-definition .swiper-button-prev:after {
            display: block;
            font-size: 30px !important;
        }
        .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
            display: none;
        }
    }


    .structure-definition .swiper-pagination-bullet-active {
        background: var(--color-blue) !important;
    }
    .structure-definition .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
        background: transparent;
        border: 2px solid var(--color-blue) !important;
        opacity: unset !important;
    }


 /************************************
	LOCATION
 ************************************/
    .location-section {
        position: relative;
    }

    .location-wrapper {
        position: relative;
        display: flex;
        align-items: center;
    }

    .location-map {
        width: 85%;
        margin-left: auto;
    }

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

    .location-card {
        position: absolute;
        left: 0;
        width: 30%;
        background: var(--color-blue);
        padding: 40px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        z-index: 2;
    }

    .location-content {
        line-height: 1.6;
    }


 /************************************
	NEARBY AMENITIES
 ************************************/
.nearby-amenities-section {
    padding: 100px 0;
}

.amenity-image-wrapper {
    position: relative;
}

#amenity-main-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Horizontal line */
.nearby-amenities-section .image-line {
    position: absolute;
    top: 0;
    left: 100%;
    height: 2px;
    width: 20px; /* adjustable length */
    background: var(--color-blue);
    transition: top 0.4s ease;
}

/* Titles */
.amenity-titles {
    list-style: none;
    padding: 0;
    position: relative;
}

.amenity-item {
    cursor: pointer;
    margin-bottom: 20px;
    font-weight: 700;
    transition: color 0.3s ease;
    font-size:var(--font-size-h4);
    color:#000;
}

.amenity-item.active {
    color: var(--color-green);
    font-weight: 700;
}



 /************************************
	GALLERY
 ************************************/

    .gallery-item {
        transition: all 0.4s ease;
        overflow: hidden;
    }

    .gallery-card {
        position: relative;
        width: 100%;
        height: 560px;
        cursor: pointer;
    }

    .gallery-image {
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        transition: all 0.4s ease;
    }

    .gallery-title {
        position: absolute;
        right: 15px;
        bottom: 15px;
        writing-mode: vertical-rl;
        text-orientation: mixed;
        background: rgba(174, 255, 2, 0.2);
        padding: 13px;
        font-weight: 500;
        transition: all 0.4s ease;
        border: 1px solid var(--color-green);
        font-size: 18px;
        font-family: var(--first-heading);
        color: var(--color-white);
        text-transform: capitalize;
    }

    /* Hover Effects */
    .gallery-item:hover .gallery-image {
        transform: scale(1.05);
    }

    .gallery-item:hover .gallery-title {
        writing-mode: horizontal-tb;
        bottom: 15px;
        left: 15px;
        width: fit-content;
    }



/* Modal gallery */
.gallery-main-swiper, .gallery-main-swiper .swiper-slide {
    width: 100% !important;   /* make main image fill container */
}

.gallery-main-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.gallery-modal {
    position: fixed;
    inset: 0;
    display: none;

    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 30px;

    /* Glass effect */
    background-color: rgba(0, 0, 0, 0.4); /* semi-transparent dark overlay */
    backdrop-filter: blur(15px) saturate(180%); /* blur + slight color pop */
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border-radius: 16px;

    /* Optional subtle border for glass edge */
    border: 1px solid rgba(255,255,255,0.1);
}

.gallery-modal.active {
    display: flex;
}

.gallery-main-swiper .swiper-slide img {
    max-height: 50vh;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-main-swiper .swiper-slide:hover img {
    transform: scale(1.03);
}

.gallery-thumb-swiper {
    margin-top: 20px;
    width: 80%;
}


.gallery-thumb-swiper .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid var(--color-green);
    width: fit-content;
}

.gallery-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1); /* subtle glass effect */
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 50%; /* circular button */
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 11;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2); /* subtle depth */
}

.gallery-close:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}


    .gallery-row {
    display: flex;
    gap: 100px;
    transition: 0.3s ease;
    justify-content: space-between;
}

.gallery-item {
    flex: 1;
    transition: flex 0.4s ease;
    cursor: pointer;
}




 /************************************
	PROJECTS
 ************************************/

/* Tabs */ 
.project-tabs {
     border-bottom: 3px solid var(--color-blue); 
     width: fit-content;
    } 
    .project-tab { 
        font-family: var(--font-main); 
        font-size: var(--font-size-base); 
        color: var(--color-blue); 
        text-decoration: none; 
        margin-right: var(--space-lg); 
        padding-bottom: 10px; 
        position: relative; 
        transition: var(--transition); 
        text-transform:uppercase;
        font-weight:600;
    } 

    .project-tab.active, 
    .project-tab:hover { 
        font-weight: 800; 
        color: var(--color-blue); 
    } 
    .project-tab.active::after, 
    .project-tab:hover::after {
         width: 100%; 
        }


.project-item{
display:none;
align-items:center;
}

.project-item.active{
display:flex;
}

.project-item h2{
    color:var(--color-blue);
}

/* NAVIGATION */
.project-nav {
    /* background: var(--color-blue); */
    color: var(--color-blue);
    padding: 20px;
    border-radius: 40px;
    display: flex;
    flex-direction: row;
    gap: 15px;
    min-width: 70px;
    text-align: center;
    flex-wrap: wrap;
}
.project-nav.bottom-nav.mt-3 {
    justify-content: end;
}

.nav-next,
.nav-prev{
cursor:pointer;
font-weight:700;
font-size:var(--font-size-base);
display:none;
}

.nav-next:hover,
.nav-prev:hover{
    border-bottom:2px solid var(--color-green);
}

/* GALLERY */
.project-gallery{
margin-top:40px;
}

.gallery-main img{
width:100%;
cursor:pointer;
}

/* Gallery Thumbs Scrollbar Styling */
.gallery-thumbs {
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 580px;
    overflow-y: scroll;
    padding-right: 5px; /* prevent thumb overlap */
}

/* Webkit Browsers (Chrome, Edge, Safari) */
.gallery-thumbs::-webkit-scrollbar {
    width: 8px;
}

.gallery-thumbs::-webkit-scrollbar-track {
    background: var(--off-white-card);
    border-radius: var(--radius-lg);
}

.gallery-thumbs::-webkit-scrollbar-thumb {
    background-color: var(--color-blue);
    border-radius: var(--radius-lg);
    border: 2px solid var(--off-white-card); /* creates padding around thumb */
}

.gallery-thumbs::-webkit-scrollbar-thumb:hover {
    background-color: var(--color-green);
}

/* Firefox */
.gallery-thumbs {
    scrollbar-width: thin;
    scrollbar-color: var(--color-blue) var(--off-white-card);
}


.gallery-thumbs img{
width:100%;
cursor:pointer;
opacity:0.6;
transition:.3s;
height: 80px;
}

.gallery-thumbs img.active-thumb {
    opacity: 1;
    border: 5px solid var(--color-green);
}




/* =============================
   CONTACT SECTION
============================= */

.contact-section {
    /* padding: var(--space-base) 0; */
    background: var(--color-white);
}

.contact-title {
    font-family: var(--first-heading);
    font-size: var(--font-size-h1);
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.contact-description {
    color: var(--color-medium-gray);
    font-size: var(--font-size-base);
    margin-bottom: var(--space-lg);
}

.contact-details .detail-item {
    margin-bottom: var(--space-md);
}

.contact-details strong {
    font-family: var(--first-heading);
    display: block;
    margin-bottom: var(--space-xs);
}

/* =============================
   FORM CARD
============================= */

/* Contact Form Wrapper */
.wpcf7 {
    font-family: var(--font-main);
    color: var(--color-black);
    width: 100%;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--off-white-card);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease-in-out;
}
.wpcf7 h4 {
    margin: 40px 0 15px 0;
}
/* Inputs and Textarea */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
input.wpcf7-form-control.wpcf7-number.wpcf7-validates-as-number,
input.wpcf7-form-control.wpcf7-date.wpcf7-validates-as-date,
.wpcf7 textarea {
    width: 100%;
    padding: var(--space-sm);
    margin-bottom: var(--space-md);
    border: 1px solid var(--color-medium-gray);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    background-color: var(--color-white);
    transition: all 0.3s ease-in-out;
}

/* Focus Effects */
.wpcf7 input:focus,
.wpcf7 textarea:focus {
    border-color: var(--color-blue);
    box-shadow: 0 0 5px rgba(10, 74, 142, 0.3);
    outline: none;
}

/* Submit Button */
.wpcf7 input[type="submit"] {
    background-color: var(--color-blue);
    color: var(--color-white);
    border: none;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    font-size: var(--font-size-base);
    transition: all 0.3s ease-in-out;
    width: fit-content;
}

.wpcf7 input[type="submit"]:hover {
    background-color: var(--color-green);
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Placeholder text subtle */
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
    color: #8f8f8f;
}

/* Response messages */
.wpcf7-response-output {
    margin-top: var(--space-md);
    padding: var(--space-sm);
    border-radius: 5px;
    font-size: var(--font-size-base);
    color: var(--color-black);
    background-color: var(--off-white);
}

/* Success message */
.wpcf7-mail-sent-ok {
    background-color: var(--color-green);
    color: var(--color-black);
    font-weight: 600;
    text-align: center;
}

.wpcf7 label {
    display: inline-block;
    color: var(--color-blue);
    font-weight: 700;
}



 /************************************
	RESPONSIVE
 ************************************/ 
@media(max-width:1400px){
    h1 {
        font-size: 2.8rem;
    } 
    .banner-content p, .banner-textarea {
        font-size: 1rem !important;
        margin-bottom: 0rem !important;
    }  
    .custom-banner-btn {
        gap: 10px;
        font-size: 0.9rem;
    }
    .banner-buttons.d-flex.align-items-center.gap-4.pt-5 {
        padding-top: 2rem !important;
    }
    .banner-card {
        margin-top: 10px !important;
    }
    .banner-content .row.position-absolute.top-0.z-3 {
        margin-top: 10px !important;
    }
}

@media(max-width:992px){
    a.navbar-brand.mb-0 img.img-fluid {
        width: 70%;
    }
    h1 {
        font-size: 2rem;
    }
    .banner-card {
        margin-top: 0px !important;
        width: 100% !important;
    }
    .banner-buttons.d-flex.align-items-center.gap-4.pt-5 {
        padding-top: 1rem !important;
    }
    .banner-card .d-flex.align-items-center.gap-3.mb-3 {
        margin-bottom: 0rem !important;
    }

}


@media(max-width:768px){
    .refinement-card {
        left: 0;
    }
    .refinement-numbers {
        flex-direction: row;
        gap: 10px;
        margin-top: 45px;
    }
    .refinement-number {
        font-size: var(--font-size-h3);
    }
    .horizontal-line {
        display: none;
    }
    .location-card {
        position: unset !important;
        width: 100%;
    }
    .location-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    .location-map {
        width: 100%;
    }
    .location-map iframe {
        height: 500px;
    }
    .nearby-amenities-section {
        padding: 0;
    }

    .footer-main .border-custom .col-md-4.d-flex.align-items-start.justify-content-center.mb-4.mb-md-0 {
        justify-content: start !important;
        flex-direction: column;
    }
    .d-flex.gap-3.mt-3.animate-btn.footer-socials {
        flex-wrap: wrap;
    }
    .footer-vertical-title {
        writing-mode: unset !important;
        transform: unset !important;
    }
    .footer-main .border-custom{
        text-align:start !important;
    }
    footer a,
    .footer-contact a,
    footer p {
        font-size: var(--font-size-base) !important;
    }
    footer .text-end {
        text-align: start!important;
    }
    footer .justify-content-end {
        justify-content: start !important;
        margin-top: 20px;
    }
    .sec-heading {
        margin-bottom: 20px;
    }
    .banner-thumbnail {
        max-width: 100%;
    }
    .banner-arrow {
        display: none;
    }
    section.page-banner {
        margin-bottom: 19rem;
    }
    section.delivery-execution i.fa-solid.fa-arrow-right-long {
        font-size: 40px;
        margin-top: 0px;
    }
    section.delivery-execution .col-md-5{
        margin-top: 0 !important;
        padding-top:2rem !important;
    }
    section.design-philosophy .col-md-9{
        margin-top: 0 !important;
            padding-top: 0rem !important;
    }
    section.design-philosophy .col-md-9 .row .col-md-6{
        margin-bottom: 20px;
    }
    section.delivery-execution .col-md-1{
        padding-top: 0 !important;
    }
    section.delivery-execution i.fa-solid.fa-arrow-right-long {
        margin-top: 0 !important;
    }
    .completion-content .card {
        position: initial !important;
        width: 100% !important;
        transform: initial !important;
    }
    .completion-content {
        margin-top: 0;
        position: initial !important;
    }
    .completion-content .d-flex.justify-content-end.pe-5 {
        padding-right: 0 !important;
    }
    .gallery-thumbs {
        gap: 9px !important;
        margin-top: 20px;
        flex-direction: row !important;
    }
    .gallery-thumbs img {
        width: 10% !important;
        height: 50px !important;
    }
    .d-flex.justify-content-between.align-items-start.heading-next-prev {
        flex-direction: column-reverse;
    }
    .project-item h2 {
        font-size: 2rem;
    }
    .project-tab {
        font-size: 1rem;
        margin-right: 0.5rem;
    }
    .banner-content.text-white.mb-4,
    h1.banner-title.text-white {
        padding: 0 20px;
    }
}


@media(max-width:585px){
    section.page-banner {
        margin-bottom: 14rem;
    }
    .gallery-row {
        gap: 10px !important;
    }    

    .structure-card {
        width: 80%;
        padding: 20px 38px;
    }
    .structure-card h3 {
        font-size: 20px !important;
    }
    .structure-center img {
        height: 660px;
    }    
    .nearby-amenities-section .image-line {
        display: none;
    }    
}