/* Sonipat Home Service - Property Rental Portal CSS */

:root {
    --primary-color: #0d6efd;
    --primary-dark: #0b5ed7;
    --secondary-color: #6c757d;
    --dark-bg: #1a1d20;
    --card-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

/* Navbar */
.navbar-brand .brand-icon {
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Hero Slider */
.hero-slide-item {
    height: 520px;
    background-size: cover;
    background-position: center;
}

.hero-title {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-subtitle {
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

/* Property Card & Uniform Image Sizing */
.property-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
}

.property-img-wrapper {
    position: relative;
    width: 100% !important;
    height: 230px !important;
    min-height: 230px !important;
    max-height: 230px !important;
    overflow: hidden !important;
    background-color: #f0f0f0;
}

.property-img-wrapper img {
    width: 100% !important;
    height: 230px !important;
    max-height: 230px !important;
    object-fit: cover !important;
    object-position: center !important;
    transition: transform 0.5s ease;
}

.property-card:hover .property-img-wrapper img {
    transform: scale(1.08);
}
/* Search Box Widget */
.search-filter-box {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

/* Footer */
.footer-links a:hover {
    color: var(--primary-color) !important;
}

/* Pricing Cards */
.plan-card {
    border-radius: 12px;
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 2rem rgba(0,0,0,0.12) !important;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 800;
}
