* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, sans-serif;
        }
        
        :root {
            --primary: #1A237E;
            --secondary: #FF5722;
            --light: #F5F7FF;
            --accent: #E3F2FD;
            --dark: #0D47A1;
            --gray: #546E7A;
            --white: #FFFFFF;
            --success: #2E7D32;
            --warning: #FF8F00;
            --info: #0277BD;
            --saffron: #FF9933;
            --green: #138808;
        }
        
        body {
            background-color: var(--light);
            color: var(--primary);
            line-height: 1.6;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 40px;
            background-color: var(--white);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
            flex-wrap: wrap;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            flex: 1;
            min-width: 200px;
        }
        
        .logo {
            font-size: 28px;
            font-weight: 800;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .logo i {
            color: var(--secondary);
        }
        
        .logo span {
            color: var(--secondary);
        }
        
        .india-flag {
            display: inline-flex;
            margin-left: 10px;
        }
        
        .flag-stripe {
            width: 4px;
            height: 20px;
            margin: 0 1px;
        }
        
        .saffron { background-color: var(--saffron); }
        .white { background-color: white; border: 1px solid #ddd; }
        .green { background-color: var(--green); }
        
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--primary);
            cursor: pointer;
            padding: 5px;
        }
        
        nav {
            display: flex;
            gap: 20px;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        nav.active {
            display: flex;
        }
        
        nav a {
            text-decoration: none;
            color: var(--primary);
            font-weight: 600;
            font-size: 15px;
            transition: color 0.3s;
            position: relative;
            padding: 8px 0;
            white-space: nowrap;
        }
        
        nav a:hover {
            color: var(--secondary);
        }
        
        nav a.active {
            color: var(--secondary);
        }
        
        nav a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: var(--secondary);
            border-radius: 2px;
        }
        
        .dropdown {
            position: relative;
        }
        
        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--white);
            min-width: 220px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            border-radius: 8px;
            z-index: 1;
            padding: 10px 0;
        }
        
        .dropdown:hover .dropdown-content {
            display: block;
        }
        
        .dropdown-content a {
            display: block;
            padding: 12px 20px;
            color: var(--primary);
            text-decoration: none;
            transition: background-color 0.3s;
            white-space: nowrap;
        }
        
        .dropdown-content a:hover {
            background-color: var(--light);
            color: var(--secondary);
        }
        
        .header-buttons {
            display: flex;
            gap: 12px;
            align-items: center;
            flex: 1;
            justify-content: flex-end;
            min-width: 200px;
        }
        
        .btn {
            padding: 10px 22px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
            font-size: 15px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            white-space: nowrap;
        }
        
        .btn-primary {
            background-color: var(--secondary);
            color: var(--white);
        }
        
        .btn-primary:hover {
            background-color: #e64A19;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(255, 87, 34, 0.2);
        }
        
        .btn-secondary {
            background-color: var(--primary);
            color: var(--white);
        }
        
        .btn-secondary:hover {
            background-color: #0D1B5E;
            transform: translateY(-2px);
        }
        
        .btn-outline {
            background-color: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        
        .btn-outline:hover {
            background-color: var(--primary);
            color: var(--white);
        }
        
        .btn-success {
            background-color: var(--success);
            color: var(--white);
        }
        
        .btn-success:hover {
            background-color: #1B5E20;
            transform: translateY(-2px);
        }
        
        .btn-info {
            background-color: var(--info);
            color: var(--white);
        }
        
        .btn-info:hover {
            background-color: #01579B;
            transform: translateY(-2px);
        }
        
        /* Hero Section - Indian Focus */
        .hero {
            padding: 60px 40px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            background: linear-gradient(135deg, #F5F7FF 0%, #E8EAF6 100%);
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 153, 51, 0.1) 0%, transparent 70%);
            z-index: 0;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
        .hero-content h1 {
            font-size: 42px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
        }
        
        .hero-content h1 span {
            color: var(--secondary);
            background: linear-gradient(90deg, var(--saffron), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .hero-content p {
            font-size: 17px;
            color: var(--gray);
            margin-bottom: 25px;
            max-width: 95%;
        }
        
        .search-box {
            background-color: var(--white);
            border-radius: 12px;
            padding: 15px;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            margin-top: 25px;
            border: 1px solid #E0E0E0;
        }
        
        .search-box i {
            color: var(--secondary);
            font-size: 18px;
        }
        
        .search-box input {
            flex: 1;
            border: none;
            outline: none;
            font-size: 15px;
            padding: 8px 0;
            color: var(--primary);
        }
        
        .search-box input::placeholder {
            color: #757575;
        }
        
        .hero-buttons {
            display: flex;
            gap: 12px;
            margin-top: 20px;
            flex-wrap: wrap;
        }
        
        .hero-visual {
            background: linear-gradient(135deg, var(--accent) 0%, #FFCCBC 100%);
            border-radius: 20px;
            height: 350px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            border: 2px solid white;
        }
        
        .hero-visual i {
            font-size: 100px;
            color: var(--primary);
            opacity: 0.9;
            z-index: 1;
        }
        
        .hero-visual::after {
            content: '';
            position: absolute;
            width: 180px;
            height: 180px;
            background-color: rgba(255, 153, 51, 0.1);
            border-radius: 50%;
            top: -40px;
            right: -40px;
        }
        
          /* Add this to your existing CSS */
    .hero-image {
        transition: opacity 1s ease-in-out;
    }
    
    .hero-image.active {
        opacity: 1 !important;
    }
    
    .image-indicator.active {
        background: var(--secondary) !important;
    }
        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, var(--primary) 0%, #0D1B5E 100%);
            color: var(--white);
            padding: 70px 40px;
            text-align: center;
        }
        
        .page-header h1 {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 20px;
        }
        
        .page-header p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
            color: rgba(255, 255, 255, 0.8);
        }
        
        /* Page Content */
        .page-content {
            padding: 60px 40px;
            background-color: var(--white);
        }
        
        .section-title {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        .section-subtitle {
            font-size: 17px;
            color: var(--gray);
            max-width: 700px;
            margin-bottom: 40px;
        }
        
        /* Tabs */
        .tabs {
            display: flex;
            border-bottom: 2px solid #eee;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        
        .tab {
            padding: 12px 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            border-bottom: 3px solid transparent;
        }
        
        .tab.active {
            color: var(--secondary);
            border-bottom: 3px solid var(--secondary);
        }
        
        .tab:hover:not(.active) {
            color: var(--secondary);
        }
        
        .tab-content {
            display: none;
            animation: fadeIn 0.5s;
        }
        
        .tab-content.active {
            display: block;
        }
        
        /* Indian Market Highlights */
        .indian-market {
            padding: 50px 40px;
            background-color: var(--white);
        }
        
        .market-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0 40px;
        }
        
        .stat-card {
            text-align: center;
            padding: 20px;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            border-radius: 12px;
            border-left: 4px solid var(--secondary);
            transition: transform 0.3s;
        }
        
        .stat-card:hover {
            transform: translateY(-5px);
        }
        
        .stat-card h3 {
            font-size: 28px;
            color: var(--secondary);
            margin-bottom: 8px;
        }
        
        .stat-card p {
            color: var(--gray);
            font-size: 14px;
        }
        
        .city-highlights {
            margin-top: 40px;
        }
        
        .cities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
        }
        
        .city-card {
            background: var(--light);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid #E0E0E0;
            transition: all 0.3s;
        }
        
        .city-card:hover {
            border-color: var(--secondary);
            box-shadow: 0 6px 12px rgba(0,0,0,0.05);
        }
        
        .city-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }
        
        .city-tag {
            background: var(--info);
            color: white;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
        }
        
        .city-price {
            color: var(--gray);
            font-size: 14px;
            margin-bottom: 10px;
        }
        
        .city-stats {
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            color: var(--gray);
        }
        
        /* Financial Services Highlight - Indian */
        .finance-highlight {
            padding: 40px;
            background: linear-gradient(135deg, #FFF3E0 0%, #FFECB3 100%);
            border-radius: 16px;
            margin: 30px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
            border: 1px solid #FFE0B2;
        }
        
        .finance-highlight h2 {
            text-align: center;
            font-size: 30px;
            margin-bottom: 30px;
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .finance-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }
        
        .finance-card {
            background: var(--white);
            border-radius: 14px;
            padding: 25px;
            transition: all 0.3s;
            border-left: 4px solid var(--secondary);
            cursor: pointer;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
        }
        
        .finance-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .finance-card i {
            font-size: 32px;
            color: var(--secondary);
            margin-bottom: 15px;
        }
        
        .finance-card h3 {
            font-size: 18px;
            margin-bottom: 10px;
            color: var(--primary);
        }
        
        .finance-card p {
            color: var(--gray);
            font-size: 14px;
            margin-bottom: 15px;
        }
        
        /* Government Schemes */
        .govt-schemes {
            padding: 60px 40px;
            background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
        }
        
        .schemes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        
        .scheme-card {
            background: var(--white);
            border-radius: 14px;
            padding: 25px;
            box-shadow: 0 6px 16px rgba(0,0,0,0.06);
            border-top: 4px solid var(--success);
        }
        
        .scheme-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            font-size: 22px;
            color: white;
        }
        
        .scheme-card h3 {
            font-size: 20px;
            margin-bottom: 12px;
            color: var(--primary);
        }
        
        .scheme-card ul {
            list-style: none;
            margin-bottom: 20px;
        }
        
        .scheme-card ul li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .scheme-card ul li i {
            color: var(--success);
            font-size: 14px;
        }
        
        /* Property Types */
        .property-types {
            padding: 60px 40px;
            background-color: var(--white);
        }
        
        .types-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
        }
        
        .type-card {
            background-color: var(--light);
            border-radius: 14px;
            padding: 25px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
            transition: all 0.3s;
            cursor: pointer;
            border: 1px solid #E0E0E0;
        }
        
        .type-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
            border-color: var(--secondary);
        }
        
        .type-card i {
            font-size: 36px;
            color: var(--secondary);
            margin-bottom: 15px;
        }
        
        .type-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .type-card p {
            color: var(--gray);
            font-size: 14px;
        }
        
        /* Investment Options */
        .investment-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        
        .investment-card {
            background-color: var(--white);
            border-radius: 14px;
            padding: 25px;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
            transition: all 0.3s;
            border: 1px solid #E0E0E0;
        }
        
        .investment-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
        }
        
        .investment-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .investment-card .return-rate {
            background-color: var(--success);
            color: var(--white);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            margin-left: auto;
        }
        
        /* Indian Bank Partners */
        .bank-partners {
            padding: 40px;
            background-color: var(--white);
            border-radius: 16px;
            margin: 30px;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
        }
        
        .banks-grid {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
        }
        
        .bank-logo {
            width: 110px;
            height: 50px;
            background-color: #f8fafc;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--primary);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
            border: 1px solid #E0E0E0;
            font-size: 14px;
        }
        
        /* Tax Benefits Section */
        .tax-benefits {
            padding: 60px 40px;
            background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
        }
        
        .tax-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        
        .tax-card {
            border-radius: 14px;
            padding: 25px;
            background: var(--white);
        }
        
        .tax-card h3 {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .tax-card p {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        /* Loan Calculator - Indian */
        .calculator-section {
            padding: 60px 40px;
            background-color: var(--white);
        }
        
        .calculator-container {
            background: linear-gradient(135deg, var(--primary) 0%, #0D1B5E 100%);
            border-radius: 18px;
            padding: 35px;
            color: var(--white);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 35px;
        }
        
        .calculator-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .form-group label {
            font-weight: 600;
            font-size: 14px;
        }
        
        .form-group input {
            padding: 12px 16px;
            border-radius: 8px;
            border: none;
            font-size: 15px;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--white);
        }
        
        .form-group input:focus {
            outline: 2px solid var(--secondary);
        }
        
        .range-slider {
            width: 100%;
            height: 6px;
            -webkit-appearance: none;
            appearance: none;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 4px;
            outline: none;
        }
        
        .range-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: var(--secondary);
            cursor: pointer;
        }
        
        .calculator-result {
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 14px;
            padding: 25px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .result-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .result-item:last-child {
            border-bottom: none;
            font-weight: 700;
            font-size: 17px;
            color: var(--secondary);
        }
        
        /* Featured Properties */
        .featured-properties {
            padding: 60px 40px;
            background-color: var(--light);
        }
        
        .properties-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
        }
        
        .property-card {
            background-color: var(--white);
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
        }
        
        .property-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
        }
        
        .property-img {
            height: 180px;
            background-color: var(--accent);
            position: relative;
            overflow: hidden;
        }
        
        .property-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .property-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background-color: var(--secondary);
            color: var(--white);
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
        }
        
        .property-content {
            padding: 18px;
        }
        
        .property-price {
            font-size: 22px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 8px;
        }
        
        .property-address {
            color: var(--gray);
            font-size: 14px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .property-features {
            display: flex;
            justify-content: space-between;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }
        
        .feature {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 12px;
            color: var(--gray);
        }
        
        .feature i {
            color: var(--secondary);
            margin-bottom: 5px;
            font-size: 16px;
        }
        
        /* Insurance Plans */
        .insurance-plans {
            padding: 60px 40px;
            background-color: var(--white);
        }
        
        .plans-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .plan-card {
            background-color: var(--white);
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
            transition: all 0.3s;
            border: 1px solid #E0E0E0;
        }
        
        .plan-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
        }
        
        .plan-header {
            padding: 25px;
            text-align: center;
            color: var(--white);
        }
        
        .plan-basic .plan-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
        
        .plan-premium .plan-header {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }
        
        .plan-enterprise .plan-header {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }
        
        .plan-price {
            font-size: 36px;
            font-weight: 800;
            margin: 10px 0;
        }
        
        .plan-features {
            padding: 25px;
        }
        
        .plan-features ul {
            list-style: none;
        }
        
        .plan-features ul li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .plan-features ul li i {
            color: var(--success);
        }
        
        /* CTA Section */
        .cta-section {
            padding: 60px 40px;
        }
        
        .cta-box {
            background: linear-gradient(135deg, var(--primary) 0%, #283593 100%);
            border-radius: 20px;
            padding: 50px;
            color: var(--white);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-box::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 153, 51, 0.1) 0%, transparent 70%);
        }
        
        .cta-content h3 {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 20px;
        }
        
        .cta-content p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 17px;
            margin-bottom: 25px;
            max-width: 90%;
        }
        
        .cta-visual {
            height: 180px;
            background-color: var(--accent);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0.9;
        }
        
        /* Footer */
        footer {
            background-color: var(--primary);
            color: var(--white);
            padding: 50px 40px 25px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 35px;
            margin-bottom: 40px;
        }
        
        .footer-column h4 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--white);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 12px;
        }
        
        .footer-column ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
        }
        
        .footer-column ul li a:hover {
            color: var(--secondary);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            font-size: 13px;
        }
        
        /* RERA Badge */
        .rera-badge {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: var(--primary);
            color: white;
            padding: 10px 15px;
            border-radius: 8px;
            font-size: 12px;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
        }
        
        .rera-badge:hover {
            background: var(--dark);
        }
        
        /* Contact Form */
        .contact-form {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .form-control {
            margin-bottom: 20px;
        }
        
        .form-control label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        
        .form-control input,
        .form-control textarea,
        .form-control select {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 15px;
        }
        
        .form-control input:focus,
        .form-control textarea:focus,
        .form-control select:focus {
            outline: 2px solid var(--secondary);
            border-color: var(--secondary);
        }
        
        /* About Page */
        .about-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .team-card {
            text-align: center;
            background: var(--light);
            padding: 25px;
            border-radius: 14px;
        }
        
        .team-card img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin-bottom: 15px;
            object-fit: cover;
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            header {
                padding: 15px 30px;
            }
        }
        
        @media (max-width: 992px) {
              
    .header-buttons {
        order: 2;
        min-width: auto;
        flex-direction: row;
        gap: 8px;
        margin-left: auto;
        margin-right: 15px;
    }
    
    .header-buttons .btn {
        width: auto;
        padding: 8px;
        border-radius: 50%;
        aspect-ratio: 1/1;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .header-buttons .btn-text {
        display: none;
    }
    
    .header-buttons .fas {
        margin: 0;
        font-size: 16px;
    }
    
    .header-buttons .btn-outline {
        background: transparent;
        border: 1px solid var(--primary);
        color: var(--primary);
    }
    
    .header-buttons .btn-primary {
        background: var(--primary);
        border: 1px solid var(--primary);
        color: white;
    }
    
    .menu-toggle {
        display: block;
        order: 3;
        margin-left: 0;
    }
    
    .logo-container {
        order: 1;
        min-width: auto;
        flex-grow: 1;
    }
            .hero, .calculator-container, .cta-box {
                grid-template-columns: 1fr;
                gap: 35px;
            }
            
            .hero-content h1 {
                font-size: 36px;
            }
            
            .search-box {
                flex-direction: column;
                align-items: stretch;
                gap: 10px;
            }
            
            .search-box button {
                width: 100%;
            }
            
            .menu-toggle {
                display: block;
                order: 2;
            }
            
            .logo-container {
                order: 1;
                min-width: auto;
            }
            
            .header-buttons {
                order: 3;
                min-width: auto;
                justify-content: flex-end;
            }
            
            nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: var(--white);
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                gap: 15px;
                z-index: 1000;
            }
            
            nav.active {
                display: flex;
            }
            
            .dropdown-content {
                position: static;
                box-shadow: none;
                border-radius: 0;
                padding-left: 20px;
                display: none;
            }
            
            .dropdown:hover .dropdown-content {
                display: none;
            }
            
            .dropdown.active .dropdown-content {
                display: block;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            
            header {
                padding: 12px 20px;
            }
            
            .hero, .property-types, .featured-properties, .govt-schemes, .tax-benefits, 
            .calculator-section, .cta-section, .page-content, .insurance-plans {
                padding: 40px 20px;
            }
            
            .page-header {
                padding: 50px 20px;
            }
            
            .page-header h1 {
                font-size: 32px;
            }
            
            .finance-highlight, .bank-partners {
                margin: 20px;
                padding: 25px;
            }
            
            .hero-content h1 {
                font-size: 28px;
            }
            
            .section-title {
                font-size: 26px;
            }
            
          .header-buttons {
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }
    
    .header-buttons .btn {
        width: auto;
        padding: 8px;
        justify-content: center;
    }
    
            
            .cta-box, .calculator-container {
                padding: 30px 20px;
            }
            
            .rera-badge {
                bottom: 10px;
                right: 10px;
                font-size: 10px;
                padding: 8px 12px;
            }
        }
        
        @media (max-width: 480px) {
            .logo {
                font-size: 24px;
            }
            
            .hero-content h1 {
                font-size: 24px;
            }
            
            .section-title {
                font-size: 22px;
            }
            
            .btn {
                padding: 8px 16px;
                font-size: 14px;
            }
            
            /*.header-buttons {*/
            /*    width: 100%;*/
            /*    order: 4;*/
            /*    margin-top: 15px;*/
            /*}*/
             .header-buttons {
        order: 2;
        width: auto;
        margin-top: 0;
        margin-right: 10px;
    }
    
    .header-buttons .btn {
        width: 36px;
        height: 36px;
        padding: 0;
    }
    
    .menu-toggle {
        order: 3;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Adjust header padding for better spacing */
    header {
        padding: 10px 15px;
    }
            
            .market-stats {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 360px) {
    .logo {
        font-size: 18px;
        max-width: 110px;
    }
    
    .header-buttons .btn,
    .menu-toggle {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }
}
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes slideUp {
            from { 
                opacity: 0;
                transform: translateY(30px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in {
            animation: fadeIn 0.8s ease-in;
        }
        
        .slide-up {
            animation: slideUp 0.8s ease-out;
        }
        
        /* Page Styling */
        .page {
            display: none;
        }
        
        .page.active {
            display: block;
        }
        
    
    .property-img {
        position: relative;
        height: 200px;
        background-color: var(--accent);
        overflow: hidden;
    }
    
    .property-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .property-card:hover .property-img img {
        transform: scale(1.05);
    }
  
    
    
    /* Listings Page Styles */
    .listings-page {
        display: none;
    }
    
    .listings-page.active {
        display: block;
    }
    
    .listings-header {
        background: linear-gradient(135deg, var(--primary) 0%, #0D1B5E 100%);
        color: var(--white);
        padding: 60px 40px;
    }
    
    .listings-filters {
        background: var(--white);
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        margin-bottom: 30px;
    }
    
    .filter-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .filter-group {
        display: flex;
        flex-direction: column;
    }
    
    .filter-group label {
        margin-bottom: 8px;
        font-weight: 600;
        color: var(--primary);
    }
    
    .filter-group select,
    .filter-group input {
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 6px;
        font-size: 14px;
    }
    
    .properties-listings-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .pagination {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 40px;
    }
    
    .page-number {
        padding: 8px 15px;
        border: 1px solid #ddd;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .page-number.active {
        background: var(--secondary);
        color: white;
        border-color: var(--secondary);
    }
    
    .page-number:hover:not(.active) {
        background: var(--light);
    }



    .listings-page {
        display: none;
    }
    
    .listings-page.active {
        display: block;
    }
    
    .listings-header {
        background: linear-gradient(135deg, var(--primary) 0%, #0D1B5E 100%);
        color: var(--white);
        padding: 60px 40px;
    }
    
    .listings-filters {
        background: var(--white);
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        margin-bottom: 30px;
    }
    
    .filter-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .filter-group {
        display: flex;
        flex-direction: column;
    }
    
    .filter-group label {
        margin-bottom: 8px;
        font-weight: 600;
        color: var(--primary);
    }
    
    .filter-group select,
    .filter-group input {
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 6px;
        font-size: 14px;
    }
    
    .properties-listings-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .pagination {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 40px;
    }
    
    .page-number {
        padding: 8px 15px;
        border: 1px solid #ddd;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .page-number.active {
        background: var(--secondary);
        color: white;
        border-color: var(--secondary);
    }
    
    .page-number:hover:not(.active) {
        background: var(--light);
    }

