/* Base Styles */
:root {
    --primary-color: #7b2cbf;
    --secondary-color: #9d4edd;
    --accent-color: #c77dff;
    --text-color: #333;
    --light-text: #777;
    --background-light: #f9f9f9;
    --white: #ffffff;
    --black: #000000;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-light);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Hero Section Styles */
.hero-section {
    height: 80vh;
    min-height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('./img/landing_page.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    width: 100%;
    padding: 0 20px;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    width: 100%;
    padding: 0 15px;
}

.search-input {
    border: none;
    padding: 15px 20px;
    font-size: 1.1rem;
    border-radius: 50px;
    width: 100%;
    outline: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.search-btn {
    position: absolute;
    right: 23px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--primary-color), #8b5cf6);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.search-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(111, 66, 193, 0.4);
}

.property-types {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    padding: 0 15px;
}

.property-type-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
    cursor: pointer;
    text-decoration: none;
    outline: none;
}

.property-type-btn:hover,
.property-type-btn.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
    transform: translateY(-2px);
}

/* Property Section */
.property-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.property-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.property-row.reverse {
    flex-direction: row-reverse;
}

.text-block {
    flex: 1;
    padding: 20px;
    min-width: 300px;
}

.center-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.heading-text {
    font-size: 24px;
    font-weight: 600;
    color: #111;
    margin-bottom: 15px;
}

.paragraph-text {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
}

.image-block {
    flex: 1;
    padding: 20px;
    min-width: 300px;
}

.image-block img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    max-height: 400px;
}

/* General Typography */
.main-heading {
    font-size: 28px;
    font-weight: 700;
    color: #6a1b9a;
    text-align: center;
    margin-bottom: 10px;
}

.sub-heading {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

/* Features Section */
.why-work-section {
    padding: 50px 20px;
    background-color: #fff;
}

.features-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.feature-box {
    text-align: center;
    max-width: 250px;
    min-width: 200px;
    padding: 20px;
}

.feature-icon {
    width: 60px;
    margin-bottom: 15px;
}

.feature-box h4 {
    color: #6a1b9a;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Featured Properties Section */
.featured-section {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}

.property-tabs-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.property-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.tab {
    display: inline-block;
    border: 1px solid #6a1b9a;
    background-color: transparent;
    color: #6a1b9a;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    outline: none;
}

.tab:hover,
.tab.active {
    background-color: #6a1b9a;
    color: #fff;
}

/* Property Grid */
.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.property-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.property-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.labels {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.label-sale,
.label-featured,
.label-rent {
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 10px;
    color: white;
    font-weight: bold;
}

.label-sale {
    background-color: #2e7d32;
}

.label-rent {
    background-color: #1e88e5;
}

.label-featured {
    background-color: #d1c4e9;
    color: #6a1b9a;
}

.property-details {
    padding: 15px;
    text-align: left;
}

.property-details h3 {
    font-size: 16px;
    font-weight: 600;
    color: #4a148c;
    margin-bottom: 5px;
}

.property-details .location {
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
}

.property-details .price {
    font-size: 16px;
    color: #e65100;
    font-weight: 600;
    margin-bottom: 10px;
}

.property-details .icons {
    font-size: 13px;
    color: #555;
    display: flex;
    gap: 15px;
}

.property-details .icons i {
    margin-right: 4px;
}

.see-all {
    text-align: center;
    margin-top: 30px;
}

.see-all a {
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.see-all a:hover {
    color: var(--secondary-color);
}

/* City Carousel */
.city-carousel {
    text-align: center;
    padding: 40px 20px;
}

.city-carousel h2 {
    color: #6b21a8;
    font-size: 28px;
    margin-bottom: 6px;
}

.city-carousel .subtitle {
    color: #7c3aed;
    margin-bottom: 30px;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s ease-in-out;
    padding: 10px 0;
}

.city-card {
    min-width: 220px;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.city-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    border-radius: 16px;
}

.city-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    z-index: 1;
}

.city-info h4 {
    margin: 0;
    font-size: 18px;
}

.city-info p {
    margin: 4px 0 0;
    font-size: 14px;
}

/* How It Works Section */
.how-it-works {
    display: flex;
    align-items: center;
    padding: 60px 5%;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.left-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.left-image img {
    max-width: 100%;
    border-radius: 16px;
}

.how-content {
    max-width: 500px;
    flex: 1;
    min-width: 300px;
}

.how-content h2 {
    font-size: 30px;
    color: #111827;
    margin-bottom: 10px;
    line-height: 1.4;
}

.how-content h2 span {
    color: var(--primary-color);
}

.how-content .subtext {
    color: #10b981;
    font-size: 15px;
    margin-bottom: 25px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.step img {
    width: 40px;
    height: 40px;
}

.step h4 {
    font-size: 18px;
    color: #1f2937;
    margin-bottom: 5px;
}

.step p {
    font-size: 14px;
    color: #6b21a8;
}

/* Testimonial Sections */
.testimonial-section {
    padding: 60px 20px;
    background-color: #FFF8F6;
}

.testimonial-section1 {
    padding: 60px 20px;
    background-color: #742B88;
}

.testimonial-content {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
    align-items: flex-start;
}

.testimonial-left {
    flex: 1 1 45%;
    min-width: 300px;
}

.testimonial-left h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
}

.testimonial-left .description {
    color: #7B2CBF;
    margin-bottom: 30px;
    max-width: 500px;
}

.stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-box {
    min-width: 100px;
}

.stat-box .stat-number {
    font-size: 24px;
    font-weight: bold;
    color: #7B2CBF;
}

.stat-box .stat-label {
    font-size: 14px;
    color: #444;
}

.stars {
    color: #FFD700;
    font-size: 18px;
    margin-top: 5px;
}

.testimonial-right {
    flex: 1 1 45%;
    position: relative;
    min-width: 300px;
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.quote-icon {
    font-size: 60px;
    color: #7B2CBF;
    position: absolute;
    right: 40px;
    top: 20px;
    font-family: Georgia, serif;
    opacity: 0.2;
}

.profile {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.profile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.profile .name {
    font-weight: bold;
    color: #222;
}

.profile .role {
    font-size: 13px;
    color: #666;
}

.testimonial-text {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.nav-buttons {
    display: flex;
    gap: 10px;
}

.nav-buttons button {
    width: 35px;
    height: 35px;
    border: 1px solid #7B2CBF;
    background: transparent;
    color: #7B2CBF;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
}

.nav-buttons button:hover {
    background: #7B2CBF;
    color: white;
}

/* Section Title */
.section-title {
    color: #000;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 50px;
    text-align: center;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    animation: titlePulse 3s ease-in-out infinite;
    position: relative;
}

@keyframes titlePulse {
    0%, 100% { transform: scale(1); text-shadow: 0 4px 8px rgba(0,0,0,0.3); }
    50% { transform: scale(1.05); text-shadow: 0 6px 12px rgba(0,0,0,0.4); }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1);
    border-radius: 2px;
    animation: lineGlow 2s ease-in-out infinite alternate;
}

@keyframes lineGlow {
    0% { box-shadow: 0 0 5px rgba(255, 107, 107, 0.5); }
    100% { box-shadow: 0 0 20px rgba(255, 107, 107, 0.8); }
}

/* Scroll Container */
.scroll-container {
    width: 100%;
    max-width: 1950px;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 0;
    margin: 20px auto;
}

.scroll-content {
    display: flex;
    gap: 30px;
    animation: scroll 20s linear infinite;
    width: calc(200% + 30px);
}

.scroll-content:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.product-badge {
    flex-shrink: 0;
    border-radius: 25px;
    padding: 24px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #1f2937;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    min-width: 160px;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
}

.product-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    background: rgba(255, 255, 255, 1);
}

.check-icon {
    width: 120px;
    height: 45px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.product-text {
    font-size: 14px;
    white-space: nowrap;
}

.badge-set {
    display: flex;
    gap: 30px;
    flex-shrink: 0;
}

/* Best Properties Section */
.testimonial-section1 .container {
    max-width: 1000px;
    margin: 0 auto;
}

.header {
    text-align: center;
    margin-bottom: 50px;
}

.header h1 {
    color: white;
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.header p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    font-weight: 400;
}

.main-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.left-property {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.1)), url('img/landing_page.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
    min-height: 400px;
}

.badges {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.badge {
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.for-sale {
    background: #10B981;
    color: white;
}

.badge.featured {
    background: rgba(255,255,255,0.25);
    color: white;
    backdrop-filter: blur(10px);
}

.property-info {
    margin-top: auto;
}

.property-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.property-address {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.property-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
}

.specs {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    opacity: 0.95;
    flex-wrap: wrap;
}

.spec {
    display: flex;
    align-items: center;
    gap: 5px;
}

.right-section {
    display: grid;
    grid-template-rows: auto auto;
    gap: 20px;
}

.top-right {
    background: linear-gradient(rgba(0,0,0,0.05), rgba(0,0,0,0.1)), url('img/landing_page.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    min-height: 200px;
}

.bottom-right {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.dining-section {
    background: linear-gradient(rgba(0,0,0,0.05), rgba(0,0,0,0.1)), url('img/landing_page.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    position: relative;
    min-height: 200px;
}

.play-button {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #666;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
    background: white;
}

.stats-section {
    background: white;
    border-radius: 20px;
    padding: 25px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1F2937;
    margin-bottom: 5px;
    line-height: 1;
}

.stats-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #8B5CF6;
    margin-bottom: 15px;
}

.stats-description {
    font-size: 0.8rem;
    line-height: 1.4;
    color: #6B7280;
    margin-bottom: 20px;
}

.arrow-button {
    width: 32px;
    height: 32px;
    background: #F9FAFB;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B7280;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.arrow-button:hover {
    background: #8B5CF6;
    color: white;
    transform: translateX(3px);
}

/* Team Section */
.team-section {
    text-align: center;
    padding: 60px 20px;
    background-color: #fff;
    color: #333;
    font-family: 'Inter', sans-serif;
}

.team-title h2 {
    color: #6C2BD9;
    font-size: 28px;
    margin-bottom: 10px;
}

.team-title p {
    color: #888;
    font-size: 14px;
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    justify-items: center;
    padding: 0 20px;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 100%;
    max-width: 220px;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 10px;
}

.team-member h4 {
    color: #6C2BD9;
    margin: 5px 0;
}

.team-member p {
    color: #888;
    font-size: 14px;
    margin: 0;
}

/* Real Estate Markets */
.real-estate-markets {
    padding: 60px 20px;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.real-estate-markets h2 {
    font-size: 28px;
    color: #7b2cbf;
    margin-bottom: 10px;
}

.real-estate-markets p {
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
}

.market-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    padding: 0 20px;
}

.market-tags span {
    border: 1px solid #7b2cbf;
    padding: 10px 20px;
    border-radius: 999px;
    color: #7b2cbf;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.market-tags span:hover {
    background-color: #7b2cbf;
    color: #fff;
}

/* Responsive Media Queries */
@media (min-width: 768px) {
    .main-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .bottom-right {
        grid-template-columns: 1fr 1fr;
    }
    
    .property-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .how-it-works {
        padding: 60px 5%;
    }
}

@media (min-width: 992px) {
    .property-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .how-content {
        margin-left: 5%;
    }
    
    .left-image img {
        margin-left: 5%;
    }
}

@media (min-width: 1200px) {
    .main-grid {
        height: 400px;
    }
    
    .left-property {
        min-height: 400px;
    }
    
    .top-right {
        min-height: 190px;
    }
    
    .dining-section {
        min-height: 190px;
    }
}

/* Small devices (phones) */
@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .property-types {
        flex-direction: column;
        align-items: center;
    }
    
    .property-type-btn {
        width: 200px;
        justify-content: center;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .testimonial-section1 {
        padding: 40px 20px;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .market-tags span {
        padding: 8px 15px;
        font-size: 12px;
    }
}

/* Extra small devices */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .search-input {
        padding: 12px 15px;
        font-size: 1rem;
    }
    
    .search-btn {
        width: 40px;
        height: 40px;
    }
    
    .property-card {
        width: 100%;
    }
    
    .product-badge {
        min-width: 140px;
        padding: 15px 20px;
    }
}

/* ---- 320px Mobile View ---- */
@media (max-width: 320px) {
    /* Hero Section */

    .hero-section {
        height: 70vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 0.9rem;
        padding: 0 10px;
        margin-bottom: 25px;
    }
    
    .search-container {
        padding: 0 10px;
    }
    
    .search-input {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .search-btn {
        width: 40px;
        height: 40px;
        right: 15px;
    }
    
    .property-type-btn {
        padding: 10px 15px;
        font-size: 0.8rem;
        width: 160px;
    }
    
    /* Property Sections */
    .text-block, 
    .image-block {
        padding: 10px;
        min-width: 280px;
    }
    
    .heading-text {
        font-size: 1.2rem;
    }
    
    .paragraph-text {
        font-size: 0.9rem;
    }
    
    /* Features */
    .feature-box {
        min-width: 150px;
        padding: 15px;
    }
    
    .feature-icon {
        width: 50px;
    }
    
    /* Property Grid */
    .property-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
        gap: 15px;
    }
    
    .property-img {
        height: 180px;
    }
    
    /* City Carousel */
    .city-card {
        min-width: 180px;
        height: 250px;
    }
    
    /* How It Works */
    .how-it-works {
        padding: 30px 10px;
        gap: 30px;
    }
    
    .how-content h2 {
        font-size: 1.5rem;
    }
    
    .step h4 {
        font-size: 1rem;
    }
    
    .step p {
        font-size: 0.8rem;
    }
    
    /* Testimonials */
    .testimonial-left h2 {
        font-size: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .stat-box {
        min-width: 80px;
    }
    
    .stat-box .stat-number {
        font-size: 1.2rem;
    }
    
    /* Scroll Container */
    .product-badge {
        min-width: 120px;
        padding: 15px;
        font-size: 0.8rem;
    }
    
    .check-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    /* Best Properties */
    .property-title {
        font-size: 1.3rem;
    }
    
    .price {
        font-size: 1.1rem;
    }
    
    .specs {
        font-size: 0.7rem;
        gap: 10px;
    }
    
    /* Team Section */
    .team-member img {
        height: 220px;
    }
    
    /* Market Tags */
    .market-tags span {
        padding: 6px 12px;
        font-size: 0.7rem;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .section-title::after {
        width: 60px;
    }
    
    /* Tabs */
    .tab {
        padding: 6px 12px;
        font-size: 0.7rem;
    }

    .left-image img {
        display: none;
    }

    .header h1 {
      margin-left: -10px;
    }

    .header p {
      margin-left: -10px;
    }

    .left-property{
      left: -10px;
    }

    .right-section{
      left: -10px;
    }
}

/* Animations */
@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.particle {
    position: absolute;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(20px);
        opacity: 0;
    }
}

/* Utility Classes */
.mt-4 {
    margin-top: 1.5rem;
}

.text-white {
    color: white;
}

.mb-3 {
    margin-bottom: 1rem;
}

.fw-bold {
    font-weight: bold;
}

.position-relative {
    position: relative;
}