* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Tahoma, Geneva, Verdana, sans-serif;;
}


/* Hero Section */
/* Modern Hero Section with Enhanced Visual Effects */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    
    /* Multi-layered background with depth */
    background: 
        /* Top gradient overlay for text readability */
        linear-gradient(135deg, 
            rgba(26, 35, 46, 0.85) 0%,
            rgba(44, 62, 80, 0.75) 35%,
            rgba(52, 73, 94, 0.65) 70%,
            rgba(71, 85, 105, 0.8) 100%
        ),
        /* Subtle radial gradient for depth */
        radial-gradient(circle at 30% 20%, 
            rgba(255, 107, 53, 0.15) 0%,
            transparent 50%
        ),
        radial-gradient(circle at 80% 80%, 
            rgba(59, 130, 246, 0.1) 0%,
            transparent 50%
        ),
        /* Main background image */
        url('../images/img/image2.png');
    
    background-size: cover, 100% 100%, 100% 100%, cover;
    background-position: center, center, center, center;
    background-repeat: no-repeat;
    background-attachment: fixed, fixed, fixed, fixed;

    border-radius: 0 0 20px 20px;
}

/* Alternative Modern Glassmorphism Style */
.hero-section.glassmorphism {
    background: 
        /* Glassmorphism overlay */
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.05) 100%
        ),
        /* Backdrop blur effect simulation */
        linear-gradient(45deg, 
            rgba(44, 62, 80, 0.7) 0%,
            rgba(71, 85, 105, 0.6) 50%,
            rgba(52, 73, 94, 0.75) 100%
        ),
        url('../images/img/image2.png');
    
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

/* Animated Gradient Overlay Style */
.hero-section.animated-gradient {
    background: url('../images/img/image2.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-section.animated-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(255, 107, 53, 0.8) 0%,
        rgba(44, 62, 80, 0.9) 25%,
        rgba(59, 130, 246, 0.7) 50%,
        rgba(52, 73, 94, 0.85) 75%,
        rgba(168, 85, 247, 0.8) 100%
    );
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: 1;
}

/* Dark Modern with Accent Colors */
.hero-section.dark-modern {
    background: 
        /* Primary dark overlay */
        linear-gradient(135deg, 
            rgba(15, 23, 42, 0.95) 0%,
            rgba(30, 41, 59, 0.85) 50%,
            rgba(51, 65, 85, 0.9) 100%
        ),
        /* Accent color spots */
        radial-gradient(circle at 20% 30%, 
            rgba(255, 107, 53, 0.2) 0%,
            transparent 40%
        ),
        radial-gradient(circle at 80% 70%, 
            rgba(34, 197, 94, 0.15) 0%,
            transparent 40%
        ),
        radial-gradient(circle at 60% 10%, 
            rgba(168, 85, 247, 0.1) 0%,
            transparent 40%
        ),
        url('../images/img/image2.png');
    
    background-size: cover, 100% 100%, 100% 100%, 100% 100%, cover;
    background-position: center;
    background-attachment: fixed;
}

/* Luxury Premium Style */
.hero-section.luxury {
    background: 
        /* Gold accent gradient */
        linear-gradient(135deg, 
            rgba(0, 0, 0, 0.8) 0%,
            rgba(31, 41, 55, 0.85) 30%,
            rgba(17, 24, 39, 0.9) 70%,
            rgba(0, 0, 0, 0.85) 100%
        ),
        /* Subtle gold shimmer effect */
        radial-gradient(circle at 50% 0%, 
            rgba(251, 191, 36, 0.1) 0%,
            transparent 50%
        ),
        url('../images/img/image2.png');
    
    background-size: cover, 100% 100%, cover;
    background-position: center;
    background-attachment: fixed;
}

/* Mesh Gradient Modern Style */
.hero-section.mesh-gradient {
    background: url('../images/img/image2.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-section.mesh-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(168, 85, 247, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 90% 90%, rgba(34, 197, 94, 0.25) 0%, transparent 50%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.9) 100%);
    z-index: 1;
}

/* Add floating particles effect */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 2%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 2%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 2%),
        radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.1) 0%, transparent 2%),
        radial-gradient(circle at 30% 90%, rgba(255, 255, 255, 0.08) 0%, transparent 2%);
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

/* Ensure content is above all overlays */
.hero-section .container {
    position: relative;
    z-index: 10;
}

/* Animations */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(5px) rotate(-1deg); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll; /* Better performance on mobile */
        height: 100vh;
        min-height: 600px;
    }
    
    .hero-section::before,
    .hero-section::after {
        background-size: 200% 200%; /* Adjust particle density on mobile */
    }
}

/* Hover effect for interactive elements */
.hero-section:hover::before {
    animation-duration: 10s; /* Speed up gradient animation on hover */
}

/* Alternative: Image blur with sharp content */
.hero-section.image-blur {
    background: url('../images/img/image2.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-section.image-blur::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: blur(3px);
    z-index: 1;
}

.hero-section.image-blur::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(44, 62, 80, 0.85) 0%,
        rgba(52, 73, 94, 0.75) 100%
    );
    z-index: 2;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    justify-content: center;
    text-align: center;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    margin-left: 2rem;
    /* max-width: 600px; */
    line-height: 1.6;
}

.search-container span {
    color: rgba(255, 255, 255, 0.2);
}

.search-container {
    background: transparent;
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 8px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* max-width: 500px; */
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-left: 2rem;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 20px;
    background: transparent;
    font-size: 1rem;
}

.search-input::placeholder {
    color: #999;
}

.search-icon {
    padding: 12px 20px;
    color: #999;
    cursor: pointer;
}

.btn-find-property {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 8px 15px;
    border-radius: 40px;
    border: none;
    font-weight: 300;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-find-property:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.hero-indicators {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #ff6b35;
    transform: scale(1.2);
    width: 15px;
    height: 5px;
    margin-top: 2px;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 20px;
    animation: float 15s ease-in-out infinite;
}

.floating-element-1 {
    top: 20%;
    right: 10%;
    animation-delay: -5s;
}

.floating-element-2 {
    bottom: 30%;
    right: 5%;
    animation-delay: -10s;
}

.floating-element-3 {
    top: 60%;
    left: 5%;
    animation-delay: -2s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .search-container {
        max-width: 100%;
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .btn-signup, .btn-login {
        margin: 5px;
    }
}

/* Animation for elements */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 1s ease-out forwards;
}

.fade-in-delay-1 { animation-delay: 0.2s; }
.fade-in-delay-2 { animation-delay: 0.4s; }
.fade-in-delay-3 { animation-delay: 0.6s; }

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Property Filter Section */
.property-filter-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.section-header {
    margin-bottom: 40px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
    letter-spacing: -0.025em;
}

.section-subtitle {
    color: #ff6b35;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Filter Card */
.filter-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(229, 231, 235, 0.8);
}

/* Filter Labels */
.filter-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 0.9rem;
    display: block;
}

/* Form Selects */
.form-select {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 8px 8px;
    font-size: 0.95rem;
    color: #6b7280;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    appearance: none;
    transition: all 0.2s ease;
}

.form-select:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-select:hover {
    border-color: #9ca3af;
}

/* Search Button */
.search-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    border: none;
    border-radius: 20px;
    padding: 8px 18px;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(255, 107, 53, 0.2);
    text-transform: capitalize;
    letter-spacing: 0.025em;
}

.search-btn:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #d44f26 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.search-btn:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .property-filter-section {
        padding: 40px 0;
    }
    
    .filter-card {
        padding: 24px;
        border-radius: 12px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .search-btn {
        width: 100%;
        padding: 14px 28px;
    }
    
    .filter-group {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .filter-card {
        padding: 20px;
    }
}

/* Loading State */
.search-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.search-btn.loading::before {
    content: '';
    width: 16px;
    height: 16px;
    margin-right: 8px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    display: inline-block;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Custom focus styles for better accessibility */
.form-select:focus-visible {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

.search-btn:focus-visible {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}


/* Luxury Listings Section */
.luxury-listings-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    position: relative;
}

/* Section Header */
.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    letter-spacing: -0.025em;
}

.section-subtitle {
    color: #6b7280;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 0;
}

.luxury-section-header {
    display: flex;
    justify-content: space-between;
}

.section-header {
    width: 60% !important;
}

.section-header h2, p {
    text-align: left;
    font-size: 4rem;
}

.section-header h2 {
    text-align: left;
    font-size: 1.7rem;
}

.section-header p {
    text-align: left;
    font-size: 0.8rem;
    color: #ff6b35;
}


/* Explore All Toggle */
.explore-toggle {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border: none;
    border-radius: 20px;
    padding: 10px 16px;
    font-size: 0.9rem;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    height: 40px !important;
}

.explore-toggle:hover {
    background: rgba(0, 0, 0, 0.9);
}



/* Property Cards */
.property-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.property-card {
    width: 280px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    background-position: center center; /* Centers the image */
    background-position: 20px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 1;
}


/* Different background images for each property type */
.property-card[data-property="prime-land"] {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.8) 100%
    ),
    url('../images/img/image1.png') no-repeat center center / cover fixed;

}

.property-card[data-property="luxury-suburb"] {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.8) 100%
    ),
    url('../images/img/image2.png') no-repeat center center / cover fixed;
}

.property-card[data-property="luxury-villa"] {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.8) 100%
    ),
    url('../images/img/image3.png') no-repeat center center / cover fixed;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.status-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.property-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 20px;
    color: white;
}

.property-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.property-location {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 13px;
    opacity: 0.9;
}

.property-location i {
    margin-right: 6px;
    font-size: 12px;
}

.property-price {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    color: white;
}

.details-btn {
    width: 100%;
    background: linear-gradient(135deg, #ff6b35, #f7941d);
    border: none;
    color: white;
    padding: 12px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.details-btn:hover {
    background: linear-gradient(135deg, #f7941d, #ff6b35);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.container-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
}
/* Responsive Design */

@media (max-width: 1200px) {
    .property-cards {
        gap: 20px;
        justify-content: center;
        text-align: center;
        align-items: center;
        max-width: 300px;
        margin: 0 auto;
    }

    .property-card {
        max-width: 300px;
        margin: 0 auto;
    }
}


@media (max-width: 980px) {
    .property-cards {
        gap: 20px;
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
        text-align: center;
        align-items: center;
        max-width: 300px;
        margin: 0 auto;
    }

    .luxury-listings-section {
        justify-content: center;
        text-align: center;
        align-items: center;
    }

    .position-relative {
        justify-content: center;
        text-align: center;
        align-items: center;
        margin: 0 auto;
    }
    
    /* .property-card {
        max-width: 300px;
    } */
}


@media (max-width: 768px) {
    .luxury-listings-section {
        padding: 60px 0;
    }
    
    .explore-toggle {
        top: 20px;
        right: 20px;
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .property-cards {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
        gap: 25px;
        justify-content: center;
        text-align: center;
        align-items: center;
        max-width: 720px;
    }
    
    .property-card {
        width: 100%;
        max-width: 250px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }

    .section-header h2 {
        text-align: left;
        font-size: 1.7rem;
    }

    .section-header p {
        text-align: left;
        font-size: 0.7rem;
        color: #ff6b35;
    }
}

@media (max-width: 580px) { 
    .property-cards {
        grid-template-columns: 1fr !important;
        align-items: center;
        gap: 25px;
        max-width: 500px;
        margin-right: -5rem;
    }


    .property-card {
        grid-template-columns: 1fr !important;
        align-items: center;
        gap: 25px;
        width: 400px;
        max-width: 100%;
    }

    .luxury-listings-section {
        justify-content: center;
        text-align: center;
        align-items: center;
    }

    .position-relative {
        justify-content: center;
        text-align: center;
        align-items: center;
        padding: 0;
        margin: 0 auto;
        width: 400px;
        max-width: 100%;
    }

}

@media (max-width: 480px) {
    .property-content {
        padding: 20px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .explore-toggle {
        position: static;
        margin: 0 auto 30px;
        display: flex;
        justify-content: center;
    }
}

/* Loading Animation */
.property-card.loading {
    opacity: 0.7;
    pointer-events: none;
}

.details-btn.loading::before {
    content: '';
    width: 16px;
    height: 16px;
    margin-right: 8px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    display: inline-block;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}





/* About Section */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 40px;
    max-width: 90%;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    background-color: #2c3e50;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.learn-more-btn:hover {
    background-color: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3);
    color: white;
}

.btn-icon {
    margin-left: 10px;
    width: 25px;
    height: 25px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #2c3e50;
}

.about-section .about-countainer {
    display: flex;
    justify-content: space-between !important;
    margin-top: 60px;
    min-height: 400px;
    column-gap: 10px !important;
}

.about-countainer .left-content {
    width: 55%;
    max-width: 55%;
}


.about-countainer .right-content {
    width: 40%;
    max-width: 40%;
}

.image-left {
  height: 250px;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.8) 100%
  ),
  url('../images/img/image4.png');
  background-repeat: no-repeat;
  background-size: cover; /* Key property! */
  background-position: center center; /* Remove px values */
  /* Remove 'fixed' - causes issues */
  margin-top: 1em;
  margin-bottom: 1em;
  border-radius: 20px;
}


.image-container .image-right {
    height: 600px !important;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.8) 100%
    ),
    url('../images/img/image2.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center; 
    margin-top: 1em;
    border-radius: 20px;
}


/* Custom background images */
.modern-villa-bg {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%),
                url('../images/img/image4.png') no-repeat center center / cover fixed;
    background-size: cover;
    background-position: center;
}

.apartment-complex-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%),
                url('../images/img/image4.png') no-repeat center center / cover fixed;
    background-size: cover;
    background-position: center;
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .section-description {
        font-size: 1rem;
        margin-bottom: 30px;
        max-width: 100%;
    }

    .image-container {
        margin-top: 40px;
        min-height: 300px;
    }

    .about-countainer{
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        justify-items: center !important;
    }
    .about-countainer .left-content {
        width: 100%;
        max-width: 100%;
    }
    .about-countainer .right-content {
        width: 100%;
        max-width: 100%;
    }
    
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }

    .image-left,
    .image-right {
        position: relative;
        width: 100%;
        height: 250px;
        margin-bottom: 20px;
    }

    .image-right {
        margin-bottom: 0;
    }
}



/* Faq section */
.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.faq-header {
    /* text-align: center; */
    margin-top: 50px;
    margin-bottom: 50px;
}

.faq-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.faq-subtitle {
    color: #ff6b35;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-card {
    background: white;
    display: flex;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #e9ecef;
}

.faq-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.faq-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 15px;
    color: #4a5568;
    padding-right: 15px;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
    line-height: 1.4;
}

.faq-answer {
    color: #718096;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Icon colors matching the original design */
.icon-verify { color: #4c51bf; }
.icon-payment { color: #38a169; }
.icon-schedule { color: #3182ce; }
.icon-who { color: #805ad5; }
.icon-how { color: #ed8936; }
.icon-property { color: #38b2ac; }

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-card {
        padding: 20px;
    }
}




/* Testimonial section */
.testimonials-section {
  padding: 60px 0;
}

.testimonial-div {
  display: flex;
  justify-content: space-between !important;
  gap: 20px;
}


/* .testimonial-div .contianer-left {
    
} */


.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e3a8a;
}

.section-subtitle {
  font-size: 0.7rem;
  font-weight: 400;
  text-align: center;
  margin: 0 auto;
}

.testimonial-card {
  position: relative;
  border: 1px solid #e9ecef;
  background-color: white;
  border-radius: 15px;
}

.testimonials-section {
    padding: 60px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1rem;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-div {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    min-height: 400px;
}

.contianer-left {
    flex: 0 0 35%;
    height: 400px;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.8) 100%
    ),
    url('../images/img/image2.png') no-repeat center center / cover fixed;
    border-radius: 18px;
}

.property-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-align: center;
}

.modern-villa-bg {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 50%, #a29bfe 100%);
}

.testimonial-content {
    flex: 1;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease-in-out;
    padding-right: 20px;
}

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.carousel-slide.prev {
    transform: translateX(-100%);
}

.carousel-slide.next {
    transform: translateX(100%);
}

.testimonial-quote {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 15px;
    line-height: 1.4;
}

.testimonial-text {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
    margin-left: 35px;
}

.horizontal-line {
    color: #706e6e !important;
    background: #706e6e !important;
    height: 1px;
    border: none;
    margin: 50px 0 20px 0 !important;
    width: 100%;
}

.testifer-content {
    display: flex;
    align-items: center;
}

.testimonial-bg-image {
    width: 40px;
    height: 40px;
    overflow: hidden;
    border-radius: 50%;
    flex-shrink: 0;
}

.testimonial-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-content {
    margin-left: 20px !important;
}

.testimonial-nav {
    margin-top: 30px !important;
    text-align: right;
}

.testimonial-nav .btn {
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-color: #ced4da;
    color: #6b7280;
    margin: -9rem 5px 0 5px;
}

.testimonial-nav .btn:hover {
    background-color: #e9ecef;
    border-color: #adb5bd;
}

/* Responsive Design */
@media (max-width: 992px) {
    
    .testimonial-content {
        padding: 30px;
        width: 65% !important;
    }

    .section-title {
        font-size: 2rem;
    }
}



@media (max-width: 768px) {

    .testimonial-div {
        flex-direction: column;
        gap: 0;
    }

    .contianer-left {
        flex: none;
        width: 100%;
        height: 250px;
    }
    .testimonials-section {
        padding: 40px 0;
    }

    .testimonial-content {
        padding: 25px;
    }

    .testimonial-quote {
        font-size: 1.2rem;
    }

    .testimonial-text {
        margin-left: 20px;
    }

    .testimonial-nav {
        text-align: center;
        margin-top: 20px !important;
    }
}

@media (max-width: 576px) {
    .testimonial-div {
        margin: 20px 15px;
    }

    .testimonial-content {
        padding: 20px;
    }

    .testimonial-text {
        margin-left: 10px;
    }
}

/* Placeholder for author images */
.author-placeholder {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
}




/* project Pad Section */
.projectPad-section {
    /* height: 100vh; */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('../images/img/image4.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: left;
    justify-content: left;
    position: relative;
    padding: 20px;
}

.projectPad-content {
    text-align: left;
    color: white;
    max-width: 600px;
    padding: 0 20px;
}

.projectPad-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.projectPad-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background-color: white;
    color: #2c3e50;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button .btn-icon {
    background-color: #34495e;
    color: white;
}

.cta-button:hover {
    background-color: white ;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3);
    color: #34495e;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .projectPad-title {
        font-size: 2.5rem;
    }
    
    .projectPad-subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .projectPad-title {
        font-size: 2rem;
    }
    
    .projectPad-section {
        height: 100vh;
        padding: 20px 0;
    }
}

.projectPad-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
}





/* CONTACT SECTION */
.contact-section {
    padding: 80px 0;
}

.contact-form-container {
    padding: 50px;
    border-radius: 20px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-title {
    color: #1a1a1a;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-subtitle {
    color: #666;
    font-size: 0.8rem;
    margin-left: 10px;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    text-align: left;
    color: #ff6b35;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    color: #333;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.1);
    background-color: white;
}

.form-control::placeholder {
    color: #adb5bd;
    font-size: 0.95rem;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-check {
    margin: 1.5rem 0 2rem 0;
}

.form-check-input {
    margin-top: 0.25rem;
}

.form-check-label {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-left: 0.5rem;
}

.form-check-label a {
    color: #007bff;
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

.submit-btn {
    background-color: #1a365d;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background-color: #2c5282;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 54, 93, 0.3);
}

.image-container {
    height: 100%;
    min-height: 600px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.neighborhood-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-container:hover .neighborhood-image {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .contact-form-container {
        padding: 30px;
        margin-bottom: 30px;
    }
    
    .image-container {
        min-height: 400px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-form-container {
        padding: 25px;
        border-radius: 15px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .image-container {
        min-height: 300px;
        border-radius: 15px;
    }
}

/* Custom row alignment */
.contact-row {
    align-items: stretch;
}



/* Footer Section */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 30px 0;
}

.footer-content {
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

.newsletter-section h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.newsletter-form {
    position: relative;
    max-width: 300px;
}

.newsletter-input {
    background-color: #ffffff;
    border: 1px solid #404040;
    border-radius: 25px;
    padding: 12px 50px 12px 20px;
    color: #2a2a2a;
    font-size: 0.9rem;
    width: 100%;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #007bff;
    background-color: #333;
}

.newsletter-input::placeholder {
    color: #888;
}

.newsletter-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #404040;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background-color: #0056b3;
    transform: translateY(-50%) scale(1.05);
}

.newsletter-btn i {
    color: white;
    font-size: 0.8rem;
}

.footer-column h6 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 2rem;
    justify-content: flex-end;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: #2a2a2a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-icon:hover {
    background-color: #007bff;
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 20px;
    text-align: center;
}

.copyright {
    color: #888;
    font-size: 0.85rem;
    margin: 0;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .footer-column {
        margin-bottom: 2rem;
    }
    
    .social-icons {
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 40px 0 20px 0;
    }
    
    .newsletter-form {
        max-width: 100%;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Additional spacing */
.row > div {
    margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
    .row > div {
        margin-bottom: 0;
    }
}

