/********** Template CSS **********/
:root {
    --primary: #ca9537;
    --secondary: #c2af90;
    --light: #EFFDF5;
    --dark: #2d2d2d;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}



/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.nav-bar {
    /* position: relative;
    margin-top: 45px;
    padding: 0 3rem;
    transition: .5s;
    z-index: 9999; */
    position: sticky;
    padding: 0;
    z-index: 9999;
}

.nav-bar.sticky-top {
    position: sticky;
    padding: 0;
    z-index: 9999;
}

.navbar {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .nav-bar {
        margin: 0;
        padding: 0;
    }

    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: 100%;
        margin-top: 0;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;

    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
@media (min-width: 992px) {
    .header {
        margin-top: -120px;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}

@media (max-width: 768px) {
    .header-carousel .owl-nav {
        left: 25px;
    }


}

.breadcrumb-item+.breadcrumb-item::before {
    color: #DDDDDD;
}


/*** Icon ***/
.icon {
    width: 70px;
    height: 70px;
    padding: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF !important;
    border-radius: 50px;
    border: 1px dashed var(--primary) !important;
}


/*** About ***/
.about-img img {
    position: relative;
    z-index: 2;
}

.about-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transform: skew(20deg);
}


/*** Category ***/
.cat-item div {
    background: linear-gradient(145deg, #e7c994, #c1851e);
    border: 1px dashed #fff6e5;
    transition: .5s;
    border-color: transparent;
}

/* .cat-item {
    transition: background 0.3s ease, border-color 0.3s ease;
} */

/* .cat-item:hover div {

    background: linear-gradient(145deg, #e7c994, #c1851e);
    border-color: transparent;
} */


/*** Property List ***/
.nav-pills .nav-item .btn {
    color: var(--dark);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
    color: #FFFFFF;
}

.property-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

.property-item img {
    transition: .5s;
}

.property-item:hover img {
    transform: scale(1.1);
}

.property-item .border-top {
    border-top: 1px dashed rgba(0, 185, 142, .3) !important;
}

.property-item .border-end {
    border-right: 1px dashed rgba(0, 185, 142, .3) !important;
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    transition: .5s;
}

.team-item .btn {
    color: var(--primary);
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(0, 0, 0, .15);
}

.team-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}


/*** Testimonial ***/
/* .testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
} */

.testimonial-carousel .testimonial-item .border {
    border: 1px dashed rgba(0, 185, 142, .3) !important;
}

.owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.owl-nav .owl-prev,
.owl-nav .owl-next {
    position: absolute;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

@media (max-width: 768px) {

    .owl-nav .owl-next,
    .owl-nav .owl-prev {
        display: none;
    }
}

.owl-nav .owl-prev {
    left: -50px;
}

.owl-nav .owl-next {
    right: -50px;
}

.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
    filter: brightness(0.9);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: rgba(255, 255, 255, 0.5);
}

.footer .copyright {
    font-size: 15px;
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}


.img-fluid {
    transition: transform 0.3s ease;
}

.img-fluid:hover {
    transform: scale(1.05);
    /* Slightly enlarge the image on hover */
}

@media (max-width: 768px) {


    #logo_img {
        width: 60px;
        height: 60px;
    }

    .price {
        font-size: 16px;
    }

    .name {
        font-size: 17px;
    }
}

.right-sti {
    position: sticky;
    top: 23px !important;
}

.bg-title {
    background-image: url('images/bg-title-02.jpg');
    background-size: cover;
    background-position: center;
}

.au-card {
    border-radius: 0.5rem;
}

.au-btn-plus {
    background-color: #ca9537;
    color: white;
}

.au-message__item {
    border-bottom: 1px solid #f1f1f1;
    padding: 10px;
}

.au-message__item:hover {
    background-color: #f9f9f9;
}

.recei-mess {
    background-color: #f1f1f1;
    padding: 10px;
    border-radius: 10px;
}

.send-mess {
    background-color: #ca9537;
    color: white;
    padding: 10px;
    border-radius: 10px;
    text-align: right;
}

.form-control {
    border-radius: 0.5rem;
}

.container-fluid {
    padding: 0;
    /* Default padding for smaller screens */
}

@media (min-width: 992px) {
    .container-fluid {
        padding: 4.5rem;
        /* Padding for large screens and above */
    }
}


.inner-item {
    margin-bottom: 15px;
}

.icon {
    margin-right: 10px;
    font-size: 24px;
    /* Adjust icon size */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .overview .headline {
        font-size: 1.5rem;
        /* Adjust headline size */
    }

    .inner-item {
        flex-direction: column;
        align-items: flex-start;
        /* Align items in a column on smaller screens */
    }

    .icon {
        margin-bottom: 5px;
        /* Space between icon and text */
    }
}

/* Optional: Add more styles for buttons, forms, etc. */
.form-floating {
    margin-bottom: 15px;
}

.form-container {
    /* margin-top: 30px; */
    padding: 30px;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.form-container h3 {
    text-align: center;
    margin-bottom: 20px;
}

.custom-table {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.table-heading {
    background-color: #ca9537;
    color: white;
    padding: 10px;
    font-size: 1.5rem;

    border-radius: 10px 10px 0 0;
}


.inner-item {
    padding: 10px;
    margin-bottom: 15px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.icon {
    font-size: 24px;
    margin-right: 10px;
    color: #ca9537;
}

.amenities {
    font-size: 14px;
}

.amenities b {
    font-size: 16px;
    color: #333;
}

.download-section {
    background-color: #ca9537;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
}

.download-btn {
    background-color: white;
    color: #ca9537;
    border: none;
    padding: 5px 10px;
    font-size: 18px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.download-btn:hover {

    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.artistic-label {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px;
    font-size: 12px;
    position: absolute;
    z-index: 1;
    font-style: italic;
}

.project-gallery .item {
    position: relative;
    margin-bottom: 10px;
}

.theme-btn {
    background-color: #ca9537;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    display: block;
    width: 100%;
    margin-top: 10px;
    text-decoration: none;
    font-size: 16px;
}

.white-btn {
    background-color: #ffffff;
    color: #ca9537;
    border: 1px solid #ca9537;
    margin-top: 10px;
}

.height {
    height: 41px;
    width: 41px;
}

.right_section span {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.right_section span img {
    margin-right: 10px;
}

.right_section span {
    font-size: 14px;
}


.inner-item-for {
    margin-bottom: 20px;
}

h3 {
    color: #ca9537;
    margin-top: 20px;
}

p {
    margin-bottom: 15px;
}

li {
    margin-bottom: 10px;
}

.readmore {
    color: #ca9537;
    text-decoration: underline;
    /* align-items: center; */
    cursor: pointer;
}

button#download-btn2 {
    background-color: transparent;
    color: #ca9537;
    border: none;
    cursor: pointer;
    text-decoration: underline;
}

button#download-btn2:hover {
    text-decoration: none;
}

.more-text {
    display: none;
    /* Initially hidden */
}


.table-responsive {
    margin-top: 10px;
}

table th,
table td {
    text-align: center;
    vertical-align: middle;
}

table thead {
    background-color: #343a40;
    color: #fff;
}

table tbody tr:nth-child(odd) {
    background-color: #f2f2f2;
}

table tbody tr:nth-child(even) {
    background-color: #fff;
}

table tbody tr:hover {
    background-color: #e9ecef;
}

table td,
table th {
    padding: 12px;
    border: none;
}

table th {
    font-weight: bold;
}


.over_head {
    text-align: center;
    margin-bottom: 20px;
}

.over_head img {
    max-width: 120px;
}

.over_head p {
    font-size: 16px;
    color: #555;
}

.des {
    color: #666;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 20px;
}

.theme-btn2 {
    background-color: #ca9537;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    width: 20%;
}

.theme-btn2:hover {
    background-color: #ca9537;
}

.remove_under {
    text-decoration: none;
    color: #ca9537;
    font-weight: bold;
}

.remove_under:hover {
    text-decoration: underline;
}

#BookBtn56 {
    color: #ca9537;
    font-weight: bold;
    cursor: pointer;
}

#BookBtn3:hover {
    color: #fff;
    text-decoration: underline;
}

.item-fq {
    margin-bottom: 10px;
}

.accordion {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    cursor: pointer;
    padding: 15px;
    text-align: left;
    width: 100%;
    outline: none;
    transition: background-color 0.3s;
}

.accordion:hover {
    background-color: #f1f1f1;
}

.panel {
    padding: 15px;
    display: none;
    /* Hide panel by default */
    overflow: hidden;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

.project-card {
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 15px;
    background-color: #fff;
    transition: transform 0.2s;
}

.project-card:hover {
    transform: scale(1.05);
}

.project-img {
    border-radius: 10px;
    height: 200px;
    object-fit: cover;
}

.project-title {
    font-size: 1.25rem;
    font-weight: bold;
}

.project-details {
    color: #555;
}

.project-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ca9537;
}


h2 {
    color: #333;
}

footer {
    background-color: #f8f9fa;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    margin: 10px 0;
}

body {
    font-family: Arial, sans-serif;
}

h2 {
    color: #333;
}

footer {
    background-color: #f8f9fa;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    margin: 10px 0;
}


.gallery img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

.UniquesFacilities__facilitiesCardWrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.UniquesFacilities__xidFacilitiesCard {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 120px;
    text-align: center;
}

.UniquesFacilities__xidFacilitiesCard img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Creates a soft shadow */
    border-radius: 10px;
    /* Adds rounded corners */
    transition: all 0.3s ease-in-out;
    /* Smooth transition for hover effect */
}

/* Optional: Add a hover effect to the cards */
.card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    /* Increase shadow on hover */
    transform: translateY(-5px);
    /* Slightly lift the card */
}

@media (max-width: 767px) {
    .img-fluid {
        /* max-width:369px; */
        height: auto;
    }

    .size {
        font-size: 12px;
        text-align: center;
    }

    .hide {
        display: none;
    }

    .show {
        display: block;
    }

    .header .row.g-2 {
        flex-direction: column;
        margin: 0;
        /* Remove any extra margins */
    }

    .header .col-lg-6 {
        width: 100%;
        /* Full width for all images */
        margin-bottom: 10px;
        /* Add space between sections */
    }

    .header .col-lg-6 img {
        max-width: 100%;
        /* Ensure the image fits the container */
        height: auto;
        /* Maintain aspect ratio */
    }

    .header .row.g-2 .col-6 {
        width: 100%;
        /* Make small images take full width */
    }

    .header .row.g-2 .col-6 img {
        max-width: 100%;
        /* Full width images for small screens */
        height: auto;
        /* Maintain aspect ratio */
    }

    .header .row.g-2.mt-2 {
        margin-top: 10px;
        /* Add spacing between the rows */
    }
}

@media (max-width: 576px) {
    .floorplan_btn a {
        width: 100%;
        margin-bottom: 10px;
    }

    .floor_item img {
        max-width: 100%;
        height: auto;
    }

    /* .btn {
        font-size: 12px;
        text-align: center;
        width: 100%;
    } */
}

@media (max-width: 768px) {
    .footer-menu a {
        display: block;
        margin-bottom: 10px;
    }

}

.carousel-item img {
    filter: brightness(60%);
    /* Optional to darken the image */
}

.carousel-caption h3,
.carousel-caption p {
    z-index: 2;
    /* Ensure the text appears on top of the image */
}



/* General Improvements */
.bg-light-gray {
    background-color: #f8f9fa;
}

.text-light-gray {
    font-family: Montserrat, sans-serif;
    color: white;
}


.carousel-caption h1 {
    font-family: Montserrat, sans-serif;
    font-size: 4rem;
    font-weight: 700;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

/* Counter Section Animations */
.counter h2 {
    font-size: 3rem;
    font-weight: bold;
    color: #ca9537;
    /* Change color to primary */
    transition: transform 0.3s ease-in-out;
}

.counter h2:hover {
    transform: scale(1.1);
    /* Add hover effect */
}

.counter p {
    font-size: 1.2rem;
    color: #333;
}

/* Contact Form Styling */
.form-floating input,
.form-floating textarea {
    border-radius: 0.5rem;
    border: 1px solid #ced4da;
}

.form-floating label {
    color: #6c757d;
}

.btn-primary {
    background-color: #ca9537;
    border-color: #ca9537;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 0.5rem;
}

.btn-primary:hover {
    background-color: #ca9537;
    border-color: #ca9537;
}

/* Footer Customization */
.footer {
    background-color: #343a40;
    color: white;
}

.footer a {
    color: #adb5bd;
    transition: color 0.2s ease;
}

.footer a:hover {
    color: white;
}


body {
    font-family: 'Inter', sans-serif;
}

/* .carousel-item img { */
/* height: 600px;  */
/* object-fit: cover;  */
/* } */

.section-title {
    margin-bottom: 2rem;
    color: #333;
    font-weight: 600;
}

.contact-info {
    padding: 0 2rem;
    border-radius: 8px;
}

.footer {
    background-color: #343a40;
    color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-info {
        padding: 1rem;
    }
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f9f9f9;
}

.featured-section {
    width: 100%;
    max-width: 1200px;
    padding: 40px 0;
    background-color: #f2f2f2;
    text-align: center;
    overflow: hidden;
}

.featured-section h4 {
    font-size: 16px;
    color: #888;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.logos-container {
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
}

.logos {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: slide 10s linear infinite;

    width: calc(100%);
}

.logo-item {
    min-width: 120px;
    max-width: 120px;
}

.logo-item:hover {
    opacity: 1;
}

.logo-item img {
    width: 100%;
    height: auto;
}


@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logos {
        gap: 20px;
        animation: slide 40s linear infinite;
    }
}

@media (max-width: 480px) {
    .logos {
        gap: 10px;
        animation: slide 45s linear infinite;
    }

    .logo-item {
        min-width: 60px;
        max-width: 80px;
    }
}


.whatsapp-icon {
    position: fixed;
    left: 20px;
    bottom: 20px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.whatsapp-icon:hover {
    background-color: #25D366;
}


@media (max-width: 768px) {
    .whatsapp-icon {
        width: 50px;
        height: 50px;
        left: 10px;
        bottom: 40px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .whatsapp-icon {
        width: 40px;
        height: 40px;
        left: 10px;
        bottom: 40px;
        font-size: 18px;
    }
}


.message-icon {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: var(--primary);
    ;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}



@media (max-width: 768px) {
    .message-icon {
        width: 50px;
        height: 50px;
        right: 20px;
        bottom: 40px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .message-icon {
        width: 40px;
        height: 40px;
        right: 20px;
        bottom: 40px;
        font-size: 18px;
    }
}

/* Updated Blog Item Styles for Compact Layout */
.blog-carousel .blog-item {
    max-width: 300px;
    /* Set a max width to control the size */
    margin: 0 auto;
}

.blog-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.blog-item h5 {
    color: #333;
    font-size: 1.1rem;
}

.blog-item p {
    color: #555;
    font-size: 0.9rem;
}

.blog-item a.btn-primary {
    font-size: 0.875rem;
    padding: 5px 10px;
    transition: background-color 0.3s ease;
}

.blog-item a.btn-primary:hover {
    background-color: #0056b3;
}


.footer {
    background-color: #222;
    color: #fff;
}

.footer h5 {
    font-size: 1.2rem;
    font-weight: 600;
}

.footer .btn-link {
    color: #ddd;
    transition: color 0.3s ease;
}

.footer .btn-link:hover {
    color: #f8f9fa;
}

.footer .btn-social {
    font-size: 1.25rem;
    border-radius: 50%;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.footer .btn-social:hover {
    background-color: #f8f9fa;
    color: #333;
}

.footer .form-control {
    background-color: #444;
    border-radius: 5px;
    color: #fff;
    border: 1px solid #555;
}

.footer .btn-primary {
    background-color: #007bff;
    border-radius: 5px;
    border: none;
    font-weight: 600;
}

.footer .btn-primary:hover {
    background-color: #0056b3;
}

.footer .copyright {
    color: #bbb;
    font-size: 0.875rem;
    padding: 15px;
}

.footer .copyright a {
    color: #bbb;
    text-decoration: none;
}

.footer .copyright a:hover {
    color: #fff;
    text-decoration: underline;
}




.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.social-icon {
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary) !important;
    color: #deb979 !important;
}

.social-icon:hover h6 {
    color: #ffffff !important;
}

.bg_gradient_to_right {
    background-image: linear-gradient(to right, #fff6e5, #fff6ef, #fff8f9, #fffcff, #ffffff);
}

.bg_gradient_to_bottom {
    background-image: linear-gradient(to bottom, #fff6e5, #fff6ef, #fff8f9, #fffcff, #ffffff);
}

.bg_gradient_to_left {
    background-image: linear-gradient(to left, #fff6e5, #fff6ef, #fff8f9, #fffcff, #ffffff);
}

.bg_gradient_to_top {
    background-image: linear-gradient(to top, #fff6e5, #fff6ef, #fff8f9, #fffcff, #ffffff);
}

.project-section {
    overflow: hidden;
    /* Ensure overlay doesn't expand the container */
}

.project-item {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.project-image {
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    /* Smooth zoom effect */
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    /* opacity: 0; */
    /* Initially hidden */
    transition: opacity 0.5s ease-in-out;
    background: linear-gradient(5deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 0%);
    /* Semi-transparent background */
}

.project-item:hover .project-overlay {
    background: linear-gradient(5deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    /* Show overlay on hover */
}

.project-item:hover .project-image {
    transform: scale(1.1);
    /* Zoom effect on hover */
}

.project-item:hover .project-subtitle {
    color: white;
}

.project-title {
    position: relative;
    transform: rotate(-90deg) !important;
    right: 40%;
    margin: auto;
    bottom: -25%;
    letter-spacing: 2px;
    font-size: 2em;
    text-shadow: 0 0 19px #000;
    color: white
}

.project-subtitle {
    font-size: 1em;
    margin-left: auto;
    padding-right: 30px;
    padding-bottom: 25px;
}

.arrow {
    margin-left: 20px;
}


.view-all {
    text-decoration: underline;
    padding: 10px 20px;
    display: inline-block;
    font-size: 2em;
}

.floor_item {
    display: none;
    margin-bottom: 1rem;
    transition: opacity 0.5s ease;
}

.floor_item.show {
    display: block;
}

.activebtn {
    background-color: var(--primary) !important;
    color: #ffffff !important;
}

.property-nav-bar .nav-link {
    color: var(--light) !important;
}

@media (min-width: 1401px) {

    /* Styles for screens larger than 1400px */
    .container,
    .container-fluid,
    .container-xxl {
        max-width: 1920px !important;
        /* Or another large width */
        /* margin: 0 auto !important;  */
    }

}


@media (min-width: 1571px) {
    .show-only-extra-large {
        display: block !important;
    }
}

@media (max-width: 1570px) {
    .show-only-extra-large {
        display: none !important;
    }
}


.px-lg-5-custom {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

@media (min-width: 992px) {
    .px-lg-5-custom {
        padding-left: 3rem !important;
        /* Adjust this value as needed */
        padding-right: 3rem !important;
        /* Adjust this value as needed */
    }
}



.btn:hover {
    filter: brightness(0.9);
}

.bg-glass {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}


