/* Hero Section */
.hero {
    padding: 10px 20px 40px;
    background-color: #F8F5FF;
    overflow: hidden;
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
}

@media (max-width: 768px) {
    .hero-container {
        padding: 0 0px;
    }
}

.hero-content {
    flex: 1;
    max-width: 550px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 45px;
    color: #1e1e1e;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 5px;
    background-color: #6c5ce7;
}

.hero-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.search-bar {
    display: flex;
    gap: 10px;
    max-width: 450px;
}

.search-input {
    flex: 1;
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 0 15px;
}

.search-input i {
    color: #666;
    margin-right: 10px;
}

.search-input input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 0;
    font-size: 1rem;
    color: #333;
}

.search-input input::placeholder {
    color: #999;
}

.search-button {
    background-color: #6c5ce7;
    color: white;
    border: none;
    padding: 0 25px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-button:hover {
    background-color: #5b4bc4;
}

.hero-image {
    flex: 1;
    position: relative;
    height: 500px;
}

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

.dots-pattern {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(#e0e0e0 2px, transparent 2px);
    background-size: 15px 15px;
    z-index: -1;
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content h1::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .search-bar {
        margin: 0 auto;
    }

    .hero-image {
        height: 400px;
        width: 100%;
    }

    .dots-pattern {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .search-bar {
        flex-direction: column;
    }

    .search-button {
        width: 100%;
        padding: 12px;
    }
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #fff;
}

.about-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

@media (max-width: 768px) {
    .about-container {
        padding: 0 20px;
    }
}

.about-image-wrapper {
    position: relative;
    flex: 1;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: #6c5ce7;
    color: white;
    padding: 25px;
    border-radius: 15px;
    animation: moveUpDown 2s ease-in-out infinite alternate;
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.stats-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.about-content {
    flex: 1;
    padding-top: 20px;
}

.section-subtitle {
    color: #6c5ce7;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: block;
    position: relative;
    padding-bottom: 10px;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #6c5ce7;
}

@media (max-width: 768px) {
    .section-subtitle::after {
        /* left: 50%;
        transform: translateX(-50%); */
        width: 80px;
    }

    .about-title{
        text-align: left !important;
    }
}

.about-content h2 {
    font-size: 2.8rem;
    color: #1e1e1e;
    line-height: 1.2;
    margin-bottom: 10px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #6c5ce7;
}

.about-description {
    color: #666;
    line-height: 1.6;
    margin-top: 6px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.about-text-content {
    margin-bottom: 20px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.checkmark-circle {
    background-color: #f3f2ff;
    color: #6c5ce7;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.feature-content h3 {
    color: #1e1e1e;
    font-size: 1.2rem;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.feature-content p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #6c5ce7;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.learn-more-btn:hover {
    background-color: #5b4bc4;
}

.learn-more-btn .arrow {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .about-content h2 {
        font-size: 2.2rem;
        text-align: left;
    }
    
    .about-description {
        text-align: left;
    }
    
    .features-list {
        align-items: flex-start;
    }
    
    .feature-item {
        text-align: left;
    }
}

/* Properties Section */
.properties {
    padding: 60px 0;
    background-color: #F8F5FF;
}

.properties .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .properties .container {
        padding: 0 20px;
    }
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 1024px) {
    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .properties-grid {
        grid-template-columns: 1fr;
    }
}

.property-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.property-card.hidden {
    display: none;
}

/* Show only first 4 cards on mobile */
@media (max-width: 768px) {
    .property-card:nth-child(n+5) {
        display: none;
    }
    .property-card.show-all {
        display: block;
    }
}

/* Show only first 7 cards on desktop */
@media (min-width: 769px) {
    .property-card:nth-child(n+8) {
        display: none;
    }
    .property-card.show-all {
        display: block;
    }
}

.property-image {
    position: relative;
    height: 200px;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-tag {
    margin-left: 20px;
}

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #6c5ce7;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
}

.favorite {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.property-content {
    padding: 20px;
}

.price {
    color: #6c5ce7;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.price span {
    color: #666;
    font-size: 0.9rem;
    font-weight: normal;
}

.property-content h3 {
    color: #1e1e1e;
    margin-bottom: 5px;
}

.location {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.property-stats {
    display: flex;
    gap: 15px;
    color: #666;
    font-size: 0.9rem;
}

.property-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Contact Section */
.contact {
    background-color: #1e1b4b;
    padding: 50px 20px;
    color: white;
    text-align: center;
}

.contact-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .contact-container {
        padding: 0 20px;
    }
}

.no-spam {
    color: #a5b4fc;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.contact-description {
    color: #e0e7ff;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.subscribe-form {
    margin-bottom: 15px;
}

.input-group {
    display: flex;
    gap: 10px;
    background: white;
    padding: 5px;
    border-radius: 8px;
    max-width: 500px;
    margin: 0 auto;
}

.input-group input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    outline: none;
    font-size: 1rem;
    border-radius: 6px;
    width: auto;
}

.input-group button {
    background-color: #6c5ce7;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
}

.input-group button:hover {
    background-color: #5b4bc4;
}

.community-text {
    color: #a5b4fc;
    font-size: 0.9rem;
    margin-top: 15px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .about-container,
    .properties-container,
    .footer-container {
        padding: 0 30px;
    }

    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-container {
        gap: 40px;
    }

    .stats-card {
        padding: 20px;
    }

    .feature-item {
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content {
        padding: 10px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .search-fields {
        flex-direction: column;
        gap: 10px;
    }

    .search-fields select,
    .search-fields button {
        width: 100%;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }

    .about-content h2::after {
        /* left: 50%;
        transform: translateX(-50%); */
        width: 140px;
    }

    .stats-card {
        bottom: 20px;
        right: 20px;
    }

    .properties-grid {
        grid-template-columns: 1fr;
    }

    .contact h2 {
        font-size: 2rem;
    }
    
    .input-group {
        flex-direction: column;
        background: transparent;
        padding: 0;
        gap: 15px;
    }
    
    .input-group input {
        width: auto;
        background: white;
    }
    
    .input-group button {
        width: 100%;
    }

    .footer-content,
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links,
    .footer-menu {
        justify-content: center;
        flex-wrap: wrap;
    }

    .browse-more-container {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .browse-more,
    .learn-more {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.4rem;
    }

    .about-content h2,
    .section-header h2 {
        font-size: 1.8rem;
    }

    .stats-card {
        padding: 15px;
    }

    .stats-number {
        font-size: 1.8rem;
    }

    .footer-menu {
        flex-direction: column;
        gap: 15px;
    }
}

/* Mobile Menu Styles */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: white;
    z-index: 1000;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.mobile-menu-header .logo {
    height: 40px;
}

.mobile-menu-header .logo img {
    height: 100%;
    width: auto;
}

.close-menu {
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
}

.mobile-nav-links {
    list-style: none;
    padding: 20px;
}

.mobile-nav-links li {
    margin: 15px 0;
}

.mobile-nav-links li a {
    color: #333;
    text-decoration: none;
    font-size: 18px;
    display: block;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.mobile-nav-links li a:hover {
    color: #6c5ce7;
}

.mobile-nav-links li a.contact-btn {
    background-color: #6c5ce7;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-align: center;
    margin-top: 20px;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links, .login-btn {
        display: none;
    }

    .mobile-menu {
        padding-top: 20px;
    }
}

/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: white;
}

button{
    font-family: 'Poppins', sans-serif;
}

/* Header/Navbar */
header {
    background: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    margin-right: 40px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    position: relative; /* Position relative for the pseudo-element */
    text-decoration: none; /* Remove underline */
    color: #333; /* Link color */
    font-weight: 500; /* Optional: make links bold */
    padding: 5px 0; /* Add some vertical padding */
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px; /* Position the line below the text */
    width: 100%; /* Full width of the link */
    height: 2px; /* Line thickness */
    background-color: #6c5ce7; /* Accent color */
    transform: scaleX(0); /* Start with scale 0 (hidden) */
    transition: transform 0.3s ease; /* Smooth transition */
}

.nav-links a:hover::after {
    transform: scaleX(1); /* Scale to full width on hover */
}

.login-btn {
    background-color: #6c5ce7;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.login-btn:hover {
    background-color: #5b4bc4;
}

@media (max-width: 768px) {
    header {
        padding: 12px 20px;
    }

    .nav-links {
        display: none;
    }
}

/* Footer Styles */
.footer {
    background-color: #fff;
    padding: 40px 0 20px;
    border-top: 1px solid #eee;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .footer-container {
        padding: 0 20px;
    }
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo img {
    width: 60px;
    height: auto;
}

.footer-logo p {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e1e1e;
}

.footer-logo span {
    color: #6c5ce7;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.social-link {
    color: #666;
    transition: color 0.3s;
}

.social-link:hover {
    color: #6c5ce7;
}

.footer-bottom {
    border-top: 1px solid #eee;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-menu {
    display: flex;
    gap: 30px;
}

.footer-menu a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: #6c5ce7;
}

.copyright {
    color: #666;
    text-align: right;
}

.copyright p {
    margin: 5px 0;
}

.built-by {
    font-size: 0.9rem;
}

.built-by a {
    color: #6c5ce7;
    text-decoration: none;
}

.built-by a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }
    
    .stats-card {
        bottom: 20px;
        right: 20px;
        padding: 15px;
    }
    
    .stats-number {
        font-size: 2rem;
    }

    .about-content h2 {
        font-size: 2rem;
    }
    
    .properties-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        flex-direction: column;
    }

    .contact-content {
        padding: 40px 20px;
        text-align: center;
    }

    .contact-image {
        height: 300px;
        width: 100%;
    }

    .contact-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-content,
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links,
    .footer-menu {
        justify-content: center;
    }

    .copyright {
        text-align: center;
    }
}

.browse-more,
.learn-more {
    background-color: #6c5ce7;
    color: white;
    padding: 12px 25px;
    border: 2px solid #6c5ce7;
    border-radius: 30px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
    margin-left: 10px;
}

.learn-more {
    background-color: transparent;
    color: #6c5ce7;
}

.learn-more:hover {
    background-color: #6c5ce7;
    color: white;
}

.browse-more:hover {
    background-color: #5b4bc4;
}

.browse-more-properties {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    width: 100%;
}

.logo img {
    width: 50px;
    height: auto;
}

.statistics {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.stat-item {
    background-color: #F8F5FF;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stat-item h2 {
    font-size: 20px;
    margin: 0;
}

.stat-item p {
    font-size: 12px;
    margin: 0;
    color: #666;
}

.browse-more-container {
    margin-top: 10px;
    align-items: center;
}

@media (max-width: 650px) {
    .stat-item h2 {
        font-size: 16px;
    }

    .stat-item p {
        font-size: 10px;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 50px 20px;
    background-color: #F8F5FF;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* .testimonials-container {
    max-width: 1300px;
    margin: 0 auto;
} */

.testimonials-container h2 {
    margin-bottom: 20px;
    color: #1e1e1e;
}

.carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 800px;
    margin: auto;
    overflow: hidden;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    justify-content: space-around;
}

.testimonial-item {
    background: #fff;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    width: 40%; /* Default width for larger screens */
    position: relative;
}

.testimonial-item p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
    position: relative;
}

.testimonial-item p::after {
    content: '';
    display: block;
    width: 50%;
    height: 2px;
    background-color: #6c5ce7;
    margin: 10px auto;
}

.testimonial-item h4 {
    font-weight: 600;
    color: #6c5ce7;
    margin-top: 10px;
}

.testimonial-item:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Buttons */
button.prev,
button.next {
    background-color: #6c5ce7;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

button.prev {
    left: 10px;
}

button.next {
    right: 10px;
}

button.prev:hover,
button.next:hover {
    background-color: #5b4bc4;
    transform: scale(1.1);
}

button.prev:focus,
button.next:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.5);
}

/* Dots */
.carousel-dots {
    text-align: center;
    margin-top: 15px;
}

.carousel-dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #6c5ce7;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel-dots .active {
    background-color: #5b4bc4;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-item {
        width: 80%; /* Increase width for smaller screens */
        margin: 10px auto; /* Center the items */
    }

    .carousel-slide {
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center items */
    }
}

@media (max-width: 480px) {
    .testimonial-item {
        width: 90%; /* Further increase width for very small screens */
    }

    .testimonials {
        padding: 30px 10px; /* Adjust padding for smaller screens */
    }

    .testimonials-container h2 {
        font-size: 2rem; /* Adjust heading size */
    }
}

html {
    scroll-behavior: smooth; /* Enable smooth scrolling for all anchor links */
}

.hero-testimonial-card {
    position: absolute;
    top: 10%;
    left: 5%;
    background: #fff;
    border-radius: 10px;
    padding: 10px; /* Adjusted padding */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    width: 220px; /* Increased width */
    animation: moveUpDown 4s ease-in-out infinite alternate; /* Smoother animation */
}

.hero-testimonial-card h3 {
    font-size: 1rem; /* Smaller font size */
    margin: 0;
    color: #6c5ce7; /* Changed to purple */
}

.hero-testimonial-card p {
    margin: 5px 0;
    color: #666;
    font-size: 12px; /* Reduced to 12px */
}

.hero-testimonial-card blockquote {
    font-style: italic;
    margin: 10px 0;
    color: #333;
    border-left: 4px solid #6c5ce7;
    padding-left: 10px;
    font-size: 10px; /* Reduced to 10px */
}

.testimonial-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-weight: bold;
}

.testimonial-stats span {
    font-size: 12px; /* Adjusted font size for span */
}

/* Animation */
@keyframes moveUpDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px); /* Move up more */
    }
    100% {
        transform: translateY(0); /* Move back down */
    }
}

/* Animation for stats card */
@keyframes moveUpDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px); /* Move up slightly */
    }
    100% {
        transform: translateY(0); /* Move back down */
    }
}

.property-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
}


/* Responsive Design */
@media screen and (max-width: 768px) {
    .property-card {
        flex-direction: column;
    }

    .property-content {
        width: 100%;
        padding: 20px;
    }

    .property-image {
        width: 100%;
        height: 250px;
    }

    .cost-images {
        flex-direction: column;
        align-items: center;
    }

    .cost-images img {
        width: 90%;
    }
}

@media screen and (max-width: 480px) {
    .property-container {
        padding: 15px;
    }

    .property-content {
        padding: 15px;
    }

    .cost-note {
        font-size: 12px;
    }
}

.property-image {
    position: relative;
    width: 100%;
    height: 380px; 
    overflow: hidden;
    /* border-radius: 10px; */
}

.property-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.property-carousel-track {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.property-carousel-images {
    display: flex;
    transition: transform 0.8s ease;
    width: 100%;
}

.property-carousel-images img {
    min-width: 100%;
    height: 400px;
    /* object-fit: cover; */
}

.property-prev-btn, .property-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #5b4bc4a3;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 12px;
    border-radius: 25px;
    z-index: 10;
}

.property-prev-btn { left: 10px; }
.property-next-btn { right: 10px; }

.property-prev-btn:hover, .property-next-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Dots Navigation */
.property-carousel-dots {
    position: absolute;
    bottom: 10px; /* Position dots inside the image */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.property-carousel-dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.property-carousel-dots span.active {
    background: #6c5ce7;
}