/* Base Styles */
        :root {
            --primary: #2c3e50;
            --secondary: #e74c3c;
            --accent: #3498db;
            --light: #ecf0f1;
            --dark: #2c3e50;
            --text: #333;
            --text-light: #7f8c8d;
            --success: #27ae60;
            --warning: #f39c12;
            --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: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text);
            background-color: #f9f9f9;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: var(--secondary);
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            text-decoration: none;
        }
        
        .btn:hover {
            background-color: #c0392b;
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }
        
       
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-bg.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 2500px 0 110px;
            text-align: center;
        }
        
        .hero-content h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .search-box {
            display: flex;
            max-width: 600px;
            margin: 0 auto 40px;
        }
        
        .search-box input {
            flex: 1;
            padding: 15px;
            border: none;
            border-radius: 4px 0 0 4px;
            font-size: 16px;
        }
        
        .search-btn {
            border-radius: 0 4px 4px 0;
        }
        
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
        }
        
        .stat-card {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 20px 30px;
            border-radius: 8px;
            backdrop-filter: blur(5px);
        }
        
        .stat-card h3 {
            font-size: 2rem;
            margin-bottom: 5px;
            color: white;
        }
        
        .stat-card p {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        /* Featured Properties */
        .featured-properties {
            padding: 80px 0;
            background-color: white;
        }
        
        .featured-properties h2 {
            text-align: center;
            margin-bottom: 50px;
            font-size: 2rem;
            color: var(--primary);
        }
        
        .property-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .property-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .property-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .property-image {
            height: 200px;
            overflow: hidden;
        }
        
        .property-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .property-card:hover .property-image img {
            transform: scale(1.05);
        }
        
        .property-details {
            padding: 20px;
        }
        
        .property-details h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--primary);
        }
        
        .property-location {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: var(--text-light);
        }
        
        .property-location i {
            margin-right: 5px;
        }
        
        .property-features {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
            padding: 10px 0;
        }
        
        .property-features span {
            display: flex;
            align-items: center;
            font-size: 0.9rem;
        }
        
        .property-features i {
            margin-right: 5px;
            color: var(--secondary);
        }
        
        .property-price {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 15px;
        }
        
        .property-price span {
            font-size: 0.9rem;
            font-weight: normal;
            color: var(--text-light);
        }
        
        .view-all {
            display: block;
            width: fit-content;
            margin: 0 auto;
        }
        
        /* Calculator Preview */
        .calculator-preview {
            padding: 80px 0;
            background-color: var(--light);
        }
        
        .calc-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .calc-content h2 {
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        .calc-content p {
            margin-bottom: 30px;
            color: var(--text-light);
        }
        
        .calc-preview {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: var(--shadow);
            margin-bottom: 30px;
        }
        
        .input-group {
            margin-bottom: 20px;
        }
        
        .input-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 500;
        }
        
        .slider {
            width: 100%;
            margin-bottom: 10px;
        }
        
        #investmentValue {
            display: block;
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--secondary);
        }
        
        .result {
            margin-top: 20px;
        }
        
        .result p {
            margin-bottom: 5px;
            color: var(--text-light);
        }
        
        .result h3 {
            font-size: 2rem;
            color: var(--success);
        }
        
        .calc-btn {
            background-color: var(--primary);
        }
        
        /* Market Insights */
        .market-insights {
            padding: 80px 0;
            background-color: white;
        }
        
        .market-insights h2 {
            text-align: center;
            margin-bottom: 50px;
            font-size: 2rem;
            color: var(--primary);
        }
        
        .insights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .insight-card {
            background-color: var(--light);
            border-radius: 8px;
            padding: 20px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .insight-card:hover {
            transform: translateY(-5px);
        }
        
        .chart-container {
            height: 200px;
            margin-bottom: 20px;
        }
        
        .insight-card h3 {
            margin-bottom: 10px;
            color: var(--primary);
        }
        
        /* Testimonials */
        .testimonials {
            padding: 80px 0;
            background-color: var(--light);
        }
        
        .testimonials h2 {
            text-align: center;
            margin-bottom: 50px;
            font-size: 2rem;
            color: var(--primary);
        }
        
        .testimonial-slider {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .testimonial-card {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: var(--shadow);
            text-align: center;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: var(--text);
        }
        
        .testimonial-author {
            font-weight: 700;
            color: var(--primary);
        }
        
        .testimonial-role {
            color: var(--text-light);
            font-size: 0.9rem;
        }
        
        /* Footer */
        .footer {
            background-color: var(--dark);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .footer-col h3 {
            margin-bottom: 20px;
            font-size: 1.2rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: var(--secondary);
        }
        
        .footer-col p {
            margin-bottom: 20px;
            color: #bdc3c7;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: var(--transition);
        }
        
        .social-links a:hover {
            background-color: var(--secondary);
            transform: translateY(-3px);
        }
        
        .footer-col ul {
            list-style: none;
        }
        
        .footer-col ul li {
            margin-bottom: 10px;
        }
        
        .footer-col ul li a {
            color: #bdc3c7;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-col ul li a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }
        
        .footer-col ul li i {
            margin-right: 10px;
            color: var(--secondary);
            width: 20px;
            text-align: center;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #bdc3c7;
            font-size: 0.9rem;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .hero-stats {
                flex-wrap: wrap;
            }
            
            .stat-card {
                width: calc(50% - 15px);
                margin-bottom: 15px;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: var(--shadow);
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .hamburger {
                display: block;
            }
            
            .hero {
                padding: 150px 0 80px;
            }
            
            .search-box {
                flex-direction: column;
            }
            
            .search-box input {
                border-radius: 4px;
                margin-bottom: 10px;
            }
            
            .search-btn {
                border-radius: 4px;
                width: 100%;
            }
            
            .stat-card {
                width: 100%;
            }
        }
        
        @media (max-width: 576px) {
            .hero-content h1 {
                font-size: 1.8rem;
            }
            
            .hero-content p {
                font-size: 1rem;
            }
            
            .featured-properties, .calculator-preview, .market-insights, .testimonials {
                padding: 60px 0;
            }
        }
        /* Bangalore Plots Specific Styles */
.bangalore-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/brigade-calista.jpg');

    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0 210px;
    text-align: center;
    margin-top: 70px; /* Account for fixed navbar */
}

.bangalore-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.bangalore-header p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.location-filters {
    padding: 30px 0;
    background-color: #f5f5f5;
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.filter-btn {
    padding: 10px 20px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn:hover {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.filter-btn.active {
    background-color: var(--secondary);
    color: white;
    border-color: var(--secondary);
}

.plots-grid {
    padding: 60px 0;
}

.price-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: var(--secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 4px;
    font-weight: 600;
}

.property-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 15px;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 8px;
    background-color: var(--light);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
      
}

.action-btn:hover {
    background-color: var(--primary);
    color: white;
}

.action-btn i {
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .bangalore-header {
        padding: 100px 0 40px;
    }
    
    .bangalore-header h1 {
        font-size: 2rem;
    }
    
    .filter-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
    
    .property-actions {
        grid-template-columns: 1fr;
    }
}