* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    overflow-x: hidden;
}

/* HEADER */


.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: transparent;
    transition: all 0.3s ease;
    z-index: 999;
}

.header.scrolled {
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}


.container {

    width: 90%;
    margin: auto;
}

.nav-container {

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 85px;
}

.nav {

    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {

    color: white;
    text-decoration: none;
    font-weight: 500;
}

.header.scrolled .nav a {
    color: #222;
}

.header.scrolled .signin {
    color: #222;
}

.desktop-buttons {

    display: flex;
    gap: 20px;
    align-items: center;
}

.signin {
    color: white;
}

.add-btn {

    background: #c89b2c;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

/* HERO */

.hero {

    height: 80vh;
    position: relative;
}
.hero-set {

    height: 40vh;
    position: relative;
}

.slider {

    position: absolute;
    width: 100%;
    height: 100%;
}

.slide {

    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1s ease, transform 6s ease;
}

.slide.active {

    opacity: 1;
    transform: scale(1.1);
}

.overlay {

    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
}

/* FORM */

.form-container {

    position: absolute;
    bottom: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.tabs {

    display: flex;
}

.tab {

    padding: 15px 30px;
    border: none;
    background: #eee;
    cursor: pointer;
}

.tab.active {

    background: #c89b2c;
    color: white;
}

.form-box {

    background: white;
    padding: 20px;
    display: flex;
    gap: 20px;
    border-radius: 8px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}

.input-group {

    display: flex;
    flex-direction: column;
}

.input-group input,
.input-group select {

    padding: 12px;
    width: 200px;
}

.search-btn {

    background: #c89b2c;
    border: none;
    color: white;
    padding: 12px 25px;
    cursor: pointer;
}

/* MOBILE */

.menu-toggle {

    display: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

.mobile-buttons {

    display: none;
}

@media(max-width:768px) {

    .nav {

        position: absolute;
        top: 70px;
        left: -100%;
        width: 100%;
        background: black;
        flex-direction: column;
        padding: 20px;
        transition: 0.3s;
    }

    .nav.active {

        left: 0;
    }

    .menu-toggle {

        display: block;
    }

    .desktop-buttons {

        display: none;
    }

    .mobile-buttons {

        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .form-box {

        flex-direction: column;
        width: 90%;
    }

    .input-group input,
    .input-group select {

        width: 100%;
    }


}



.featured-section {

    padding: 80px 200px;
    background: #f8f9fc;

}


/* HEADER */

.section-header {

    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;

}

.subtitle {

    color: #c89b2c;
    font-size: 14px;
    font-weight: 600;
}

.title {

    font-size: 36px;
    font-weight: 600;
}


.nav-arrows button {

    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    margin-left: 10px;
}



/* GRID */

.property-grid {

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;

}



/* CARD */

.property-card {

    background: white;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
    cursor: pointer;
}

.property-card:hover {

    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);

}



/* IMAGE */

.property-image {

    position: relative;
    overflow: hidden;
}

.property-image img {

    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: 0.5s;
}

.property-card:hover img {

    transform: scale(1.1);

}



/* BADGE */

.featured-badge {

    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff5a5f;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 3px;
}



/* AGENT BOX */

.agent-box {

    position: absolute;
    bottom: -6px;
    left: 20px;
    right: 20px;
    background: white;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.agent-info {

    display: flex;
    align-items: center;
    gap: 10px;
}

.agent-info img {

    width: 35px;
    height: 35px;
    border-radius: 50%;
}



.property-status {

    padding: 5px 10px;
    font-size: 12px;
    border-radius: 5px;
    color: white;
}

.rent {
    background: #6c63ff;
}

.buy {
    background: #00b894;
}

.sold {
    background: #e17055;
}



/* CONTENT */

.property-content {

    padding: 35px 20px 20px 20px;
}

.property-content h3 {

    font-size: 18px;
    margin-bottom: 10px;
}

.price {

    color: #c89b2c;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.property-info {

    display: block;
    gap: 15px;
    font-size: 14px;
    margin: 15px 0;
}


.details-btn {

    padding: 10px 20px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.details-btn:hover {

    background: #c89b2c;
    color: white;
    border: none;
}



/* RESPONSIVE */

@media(max-width:992px) {

    .property-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:600px) {

    .property-grid {

        grid-template-columns: 1fr;

    }

    .title {

        font-size: 26px;
    }

}



/* CTA SECTION */

.cta-section {

    position: relative;
    padding: 120px 0;
    background: url('../img/hgjhgj.png') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;

}


/* DARK OVERLAY */

.cta-overlay {

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);

}


/* CONTENT */

.cta-content {

    position: relative;
    text-align: center;
    color: white;
    max-width: 700px;
    margin: auto;

}


.cta-content h2 {

    font-size: 36px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 30px;

}



/* BUTTONS */

.cta-buttons {

    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;

}


.btn {

    padding: 14px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
        margin: 3px;

}


.btn-light {

    background: white;
    color: black;

}

.btn-light:hover {

    background: #c89b2c;
    color: white;

}


.btn-gold {

    background: #c89b2c;
    color: white;

}

.btn-gold:hover {

    background: #a87c1f;

}



/* RESPONSIVE */

@media(max-width:768px) {

    .cta-section {

        padding: 80px 20px;

    }

    .cta-content h2 {

        font-size: 24px;

    }

}


.best-deals {

    padding: 80px 200px;
    background: #f8f9fc;

}

.center {
    text-align: center;
    margin-bottom: 40px;
}


/* SLIDER */

.deal-slider {

    overflow: hidden;
    position: relative;

}

.deal-track {

    display: flex;
    transition: 0.5s;

}

.deal-card {

    min-width: 100%;
    display: flex;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

}


/* IMAGE */

.deal-image {

    width: 50%;
    position: relative;

}

.deal-image img {

    width: 100%;
    height: 100%;
    object-fit: cover;

}


/* BADGES */

.deal-badges {

    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 10px;

}

.featured {

    background: #ff5a5f;
    color: white;
    padding: 5px 10px;
    font-size: 12px;

}

.buy {

    background: #6c63ff;
    color: white;
    padding: 5px 10px;
    font-size: 12px;

}



/* CONTENT */

.deal-content {

    width: 50%;
    padding: 40px;

}

.deal-content h3 {

    font-size: 22px;
    margin-bottom: 10px;

}

.deal-price {

    color: #c89b2c;
    font-size: 20px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;

}

.deal-info {

    display: flex;
    gap: 20px;
    margin: 20px 0;

}


.gold-btn {

    background: #c89b2c;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;

}



/* DOTS */

.deal-dots {

    text-align: center;
    margin-top: 20px;

}

.dot {

    height: 10px;
    width: 10px;
    margin: 5px;
    background: #ddd;
    display: inline-block;
    border-radius: 50%;
    cursor: pointer;

}

.dot.active {

    background: #c89b2c;

}



/* MOBILE */

@media(max-width:768px) {

    .deal-card {

        flex-direction: column;

    }

    .deal-image,
    .deal-content {

        width: 100%;

    }

}

@media(max-width:768px) {

    .featured-section {
        padding: 80px 0px !important;
    }

    .best-deals {
        padding: 80px 0px !important;
    }

    .categories-section {

        padding: 80px 0px !important;
    }

    .popular-section {

        padding: 100px 0px !important;
    }

    .partners-section {
        padding: 100px 0px !important;
    }

    .newsletter-section {
        padding: 80px 0px !important;
        ;
    }
}



/* CATEGORIES */

.categories-section {

    padding: 80px 200px;
    background: #f8f9fc;

}


.categories-grid {

    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;

}


/* CARD */

.category-card {

    background: white;
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);

}


.category-card:hover {

    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);

}


/* ICON */

.category-icon {

    margin-bottom: -26px;

}

.category-icon img {

    width: 146px;
    opacity: 0.6;
    transition: 0.3s;

}


.category-card:hover img {

    opacity: 1;
    transform: scale(1.1);

}


/* TEXT */

.category-card h3 {

    font-size: 18px;
    margin-bottom: 10px;

}


/* COUNT */

.count {

    display: inline-block;
    background: #f1f1f1;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;

}


/* BUTTON */

.category-btn-wrapper {

    text-align: center;
    margin-top: 40px;

}

.big-btn {

    padding: 15px 40px;
    font-size: 16px;

}



/* RESPONSIVE */

@media(max-width:1200px) {

    .categories-grid {

        grid-template-columns: repeat(3, 1fr);

    }

}

@media(max-width:768px) {

    .categories-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:480px) {

    .categories-grid {

        grid-template-columns: 1fr;

    }

}



/* TESTIMONIAL SECTION */

.testimonial-section {

    position: relative;
    padding: 100px 0;
    background: url('../img/hgjhgj.png') center/cover no-repeat;

}

.testimonial-overlay {

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);

}

.testimonial-slider {

    position: relative;
    overflow: hidden;
    max-width: 700px;
    margin: auto;

}

.testimonial-track {

    display: flex;
    transition: 0.5s;

}

.testimonial-card {

    min-width: 100%;
    text-align: center;
    color: white;
    position: relative;

}


/* QUOTE ICON */

.quote-icon {

    width: 60px;
    height: 60px;
    background: #c89b2c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px auto;

}


/* TEXT */

.testimonial-text {

    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    padding: 0 20px;

}


/* POPULAR SECTION */

.popular-section {

    padding: 80px 200px;
    background: #f8f9fc;

}


.popular-grid {

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;

}



/* LEFT */

.popular-content .title {

    font-size: 36px;
    margin: 15px 0;

}

.popular-text {

    color: #777;
    margin-bottom: 25px;
    max-width: 400px;

}


.popular-list {

    list-style: none;
    padding: 0;
    margin-bottom: 30px;

}

.popular-list li {

    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 16px;

}


.popular-list span {

    color: #999;

}

.popular-btn {

    padding: 14px 30px;

}



/* RIGHT IMAGES */

.popular-images {

    position: relative;
    display: flex;
    justify-content: center;

}


.img-main img {

    width: 380px;
    border-radius: 10px;
    transition: 0.4s;

}


.img-small {

    position: absolute;
    right: -60px;
    bottom: -50px;

}

.img-small img {

    width: 280px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: 0.4s;

}


/* HOVER EFFECT */

.img-main:hover img,
.img-small:hover img {

    transform: scale(1.05);

}



/* RESPONSIVE */

@media(max-width:992px) {

    .popular-grid {

        grid-template-columns: 1fr;

        text-align: center;

    }

    .popular-text {

        margin: auto;
        margin-bottom: 25px;

    }

    .popular-list {

        max-width: 300px;
        margin: auto;
        margin-bottom: 30px;

    }

    .popular-images {

        margin-top: 40px;

    }

    .img-small {

        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 20px;

    }

}
@media(max-width:568px) {
.img-main img {
    width: 311px !important;
}
.popular-images {
    display: block !important;
}
}


/* PARTNERS SECTION */

.partners-section {

    padding: 100px 200px;
    background: url('pattern.png') center/cover no-repeat;

}


.partners-grid {

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;

}


.partners-text h2 {

    font-size: 36px;
    margin-top: 10px;

}


.partners-logos {

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;

}


.partners-logos img {

    max-width: 140px;
    opacity: 0.6;
    transition: 0.3s;
    cursor: pointer;

}


.partners-logos img:hover {

    opacity: 1;
    transform: scale(1.05);

}



/* NEWSLETTER */

.newsletter-section {

    position: relative;
    padding: 80px 200px;
    background: url('../img/back.png') center/cover no-repeat;

}


.newsletter-overlay {

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0.85;

}


.newsletter-grid {

    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;

}


.newsletter-text {

    color: white;

}


.subscribe-tag {

    background: #ff5a5f;
    padding: 5px 12px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 15px;

}


.newsletter-text h2 {

    font-size: 28px;

}



/* FORM */

.newsletter-form {

    display: flex;

}


.newsletter-form input {

    flex: 1;
    padding: 15px;
    border: none;
    outline: none;

}


.newsletter-form button {

    padding: 15px 30px;
    border: none;
    background: #c89b2c;
    color: white;
    cursor: pointer;

}


.newsletter-form button:hover {

    background: #a87c1f;

}



/* RESPONSIVE */

@media(max-width:992px) {

    .partners-grid,
    .newsletter-grid {

        grid-template-columns: 1fr;
        text-align: center;

    }

    .partners-logos {

        grid-template-columns: repeat(2, 1fr);

    }

    .newsletter-form {

        flex-direction: column;

    }

    .newsletter-form button {

        margin-top: 10px;

    }

}

/* FOOTER */

.footer {

    background: #000;
    color: #aaa;
    padding-top: 80px;

}


.footer-grid {

    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 40px;

}


.footer-logo {

    height: 60px;
    margin-bottom: 20px;

}


.footer-col h3 {

    color: white;
    margin-bottom: 20px;

}


.footer-col p {

    margin-bottom: 15px;
    line-height: 1.6;

}


/* LINKS */

.footer-col ul {

    list-style: none;
    padding: 0;

}

.footer-col ul li {

    margin-bottom: 10px;

}

.footer-col ul li a {

    color: #aaa;
    text-decoration: none;
    transition: 0.3s;

}

.footer-col ul li a:hover {

    color: #c89b2c;

}



/* NEWS */

.footer-news {

    display: flex;
    gap: 15px;
    margin-bottom: 20px;

}

.footer-news img {

    width: 70px;
    height: 70px;
    border-radius: 5px;

}

.footer-news h4 {

    color: white;
    font-size: 14px;
    margin: 0;

}

.footer-news span {

    font-size: 12px;
    color: #777;

}



/* SOCIAL */

.footer-social {

    margin-top: 20px;

}

.footer-social img {

    width: 35px;
    margin-right: 10px;
    opacity: 0.6;
    transition: 0.3s;

}

.footer-social img:hover {

    opacity: 1;
    transform: scale(1.1);

}



/* BOTTOM */

.footer-bottom {

    border-top: 1px solid #222;
    margin-top: 40px;
    padding: 20px 0;

}


.footer-bottom-grid {

    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;

}


.footer-links a {

    color: #aaa;
    margin-left: 20px;
    text-decoration: none;

}

.footer-links a:hover {

    color: #c89b2c;

}



/* RESPONSIVE */

@media(max-width:992px) {

    .footer-grid {

        grid-template-columns: 1fr 1fr;

    }

}

@media(max-width:600px) {

    .footer-grid {

        grid-template-columns: 1fr;

    }

    .footer-bottom-grid {

        flex-direction: column;
        gap: 10px;
        text-align: center;

    }

}


.room-section {
    padding: 100px 0;
    background: #f8f9fc;
}

.room-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 10px;
}

.room-title span {
    font-weight: 300;
}

.room-subtitle {
    text-align: center;
    color: #777;
    margin-bottom: 30px;
}

@media (max-width: 568px) {
    .room-title {
        font-size: 28px !important;
    }
}
/* TABS */

.room-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.room-tab {
    padding: 12px 25px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
}

.room-tab.active {
    background: #ff5a5f;
    color: white;
}

@media (max-width: 768px) {

    .room-tabs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        
    }

    .room-tab {
        width: 100%;
        text-align: center;
        padding: 10px 5px !important;
    }
}
/* CONTENT */

.room-content {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
}


/* IMAGE */

.room-image {
    position: relative;
}

.room-image img {
    width: 450px;
    border-radius: 5px;
}

.dimension-label {
    position: absolute;
    left: -20px;
    bottom: 40px;
    background: white;
    padding: 10px;
    transform: rotate(-90deg);
    font-weight: 600;
}


/* TEXT */

.room-text h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.room-text p {
    color: #777;
    margin-bottom: 20px;
}

.room-text ul {
    list-style: none;
    padding: 0;
}

.room-text ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.room-text ul li:before {
    content: "➜";
    position: absolute;
    left: 0;
    color: #ff5a5f;
}


/* MOBILE */

@media(max-width:768px) {

    .room-content {
        flex-direction: column;
        text-align: center;
    }

    .room-image img {
        width: 100%;
    }

    .dimension-label {
        display: none;
    }

}


.featured-section-set {
    padding: 100px 200px;
    background: #f8f9fc;
}

/* HEADER */

.featured-header-set {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.featured-filters {
    display: flex;
    gap: 10px;
}

.filter-btn {
    padding: 10px 20px;
    border: none;
    background: #eee;
    cursor: pointer;
    border-radius: 20px;
}

.filter-btn.active {
    background: #ff5a5f;
    color: white;
}


/* GRID */

.featured-grid-set {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}


/* CARD */

.property-card-set {
    display: flex;
    background: white;
    border-radius: 12px;
    padding: 15px;
    position: relative;
    gap: 20px;
    transition: 0.3s;
}

.property-card-set:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.property-img-set {
    width: 200px;
    border-radius: 10px;
    object-fit: cover;
}


/* INFO */

.property-info-set h3 {
    margin: 10px 0;
}

.location {
    color: #777;
}

.features-set {
    display: flex;
    gap: 20px;
    margin: 10px 0;
    color: #555;
}

.rating {
    color: #ffa500;
}

.rating span {
    color: #777;
    margin-left: 10px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.price {
    color: #ff5a5f;
    font-size: 20px;
    font-weight: bold;
}

.details-btn-set {
    background: #1e2b4f;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
}


/* WISHLIST */

.wishlist {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}


/* MOBILE */

@media(max-width:992px) {

    .featured-grid-set {
        grid-template-columns: 1fr;
    }

}

@media(max-width:600px) {

    .property-card-set {
        flex-direction: column;
    }

    .property-img-set {
        width: 100%;
        height: 200px;
    }
    .featured-section-set {
    padding: 100px 0px !important;
}

}



.about-section{
padding:100px 200px;
background:#f8f9fc;
}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}


/* IMAGE */

.about-image-wrapper{
position:relative;
}

.about-image{
width:400px;
height:400px;
border-radius:50% 20% 50% 20%;
overflow:hidden;
}

.about-image img{
width:100%;
height:100%;
object-fit:cover;
}


/* PLAY BUTTON */

.play-circle{
position:absolute;
top:50%;
right:0;
transform:translateY(-50%);
}

.play-btn{
width:60px;
height:60px;
background:#ff5a5f;
color:white;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:20px;
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
}

.circle-text{
width:140px;
height:140px;
animation:rotate 10s linear infinite;
}

.circle-text text{
font-size:12px;
fill:#ff5a5f;
}

@keyframes rotate{
100%{ transform:rotate(360deg); }
}


/* CONTENT */

.about-content h2{
font-size:40px;
margin:10px 0;
}

.about-desc{
color:#777;
margin-bottom:20px;
}


.about-list{
list-style:none;
padding:0;
margin-bottom:20px;
}

.about-list li{
margin-bottom:10px;
padding-left:20px;
position:relative;
}

.about-list li:before{
content:"➜";
position:absolute;
left:0;
color:#ff5a5f;
}


/* STATS */

.about-stats{
display:flex;
gap:20px;
margin-bottom:20px;
}

.stat{
border:2px solid #ddd;
border-radius:50%;
width:100px;
height:100px;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
}

.stat h3{
margin:0;
color:#1e2b4f;
}


/* BUTTON */

.explore-btn{
background:#1e2b4f;
color:white;
padding:12px 25px;
border:none;
border-radius:30px;
cursor:pointer;
}

.explore-btn:hover{
background:#ff5a5f;
}


/* MOBILE */

@media(max-width:768px){
.about-section{
padding:100px 0px !important;
}
.about-grid{
grid-template-columns:1fr;
text-align:center;
}

.about-image{
margin:auto;
}

.play-circle{
right:50%;
transform:translate(50%,-50%);
}

.about-stats{
justify-content:center;
}

}

.property-box{
background:#fff;
border-radius:8px;
margin-top: 20px;
}

.property-type{
color:#777;
font-size:14px;
}


.property-details{
background:#f4f6f8;
}

.detail-box{
background:#fff;
padding:30px;
border-radius:6px;
box-shadow:0 2px 8px rgba(0,0,0,0.05);
}

.section-title{
font-weight:600;
font-size:18px;
}

.address-toggle{
cursor:pointer;
}

.detail-box p{
color:#6c757d;
line-height:1.7;
}

/* Mobile Adjustments */
@media(max-width:768px){

.detail-box{
padding:20px;
}

.section-title{
font-size:16px;
}

}

.property-extra{
background:#f4f6f8;
}

.extra-box{
background:#fff;
padding:30px;
border-radius:6px;
box-shadow:0 2px 8px rgba(0,0,0,0.05);
    margin-top: 20px;
}

.section-title{
font-weight:600;
font-size:18px;
}

.sub-title{
font-weight:600;
margin-bottom:15px;
}

.extra-box p{
margin-bottom:10px;
color:#6c757d;
}

.extra-box strong{
color:#424040;
}

.toggle-header{
cursor:pointer;
}

.bi-check-lg{
color:#1e88e5;
margin-right:8px;
font-weight:bold;
}

/* Mobile */
@media(max-width:768px){

.extra-box{
padding:20px;
}

.section-title{
font-size:16px;
}

}

.call-btn {
display: inline-block;
background: #28a745;
color: #fff;
padding: 12px 25px;
border-radius: 5px;
text-decoration: none;
font-weight: 600;
}

.call-btn:hover {
background: #218838;
color: #fff;
}
.featured-section{
background:#f4f6f8;
}

.featured-box{
background:#fff;
border-radius:6px;
box-shadow:0 2px 8px rgba(0,0,0,0.05);
margin-top: 30px;
}

.featured-title{
font-weight:600;
font-size:18px;
}

.featured-item{
display:flex;
gap:15px;
margin-bottom:20px;
align-items:center;
}

.featured-item img{
width:100px;
height:75px;
object-fit:cover;
border-radius:4px;
}

.featured-content h6{
font-size:14px;
font-weight:600;
margin-bottom:5px;
line-height:1.4;
}

.price{
color:#f4a261;
font-weight:600;
font-size:14px;
}

/* Mobile Responsive */
@media(max-width:768px){

.featured-item{
flex-direction:row;
}

.featured-item img{
width:80px;
height:65px;
}

}

.suggestions-box {
    position: absolute;
    top: 100%;
    /* left: 304px; */
    width: 44%;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    z-index: 999;
    max-height: 250px;
    overflow-y: auto;
    display: none;
}

.suggestion-item{
padding: 10px 15px;
cursor: pointer;
border-bottom: 1px solid #f1f1f1;
font-size: 14px;
}

.suggestion-item:hover{
background: #f5f5f5;
}

.suggestion-category{
font-size: 12px;
color: #999;
margin-left: 5px;
}
@media(max-width:768px){
.suggestions-box
 {
    position: static !important;
    width: 100% !important;

}
 }

 .property-search{
position: relative;
width: 100%;
/* max-width: 400px; */
margin-bottom: 20px;
}

.property-search input{
width: 100%;
padding: 12px 15px;
border: 1px solid #ddd;
border-radius: 6px;
font-size: 14px;
outline: none;
}

.property-search input:focus{
border-color: #000;
}
.suggestions-boxs {
    position: absolute;
    top: 100%;
    /* left: 304px; */
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    z-index: 999;
    max-height: 250px;
    overflow-y: auto;
    display: none;
}
.form-boxs
 {
    background: #ffffff4f;
    padding: 20px;
    display: flex;
    gap: 20px;
    border-radius: 8px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
    width: 50%;
}
.property-grid {
    padding-top: 30px;
}

.swiper {
    width: 100%;
}

.swiper-slide {
    display: flex;
    justify-content: center;
}

/* keep your card same */
.property-card {
    width: 100%;
    max-width: 350px;
}