/* Custom CSS for HomeMitra */

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
}

.navbar {
    transition: background-color 0.3s ease-in-out;
    padding: 10px 0 10px 15;
}

.navbar .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1rem;
}

.property-card {
    border: 1px solid #1c2732;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #5a6268;
    border-color: #545b62;
}

.hero-section {
    background-size: cover;
    background-position: center;
    color: white;
}

.full-width {
    width: 100%;
    margin: 0;
    padding: 0;
}


/* Full Width Sections with Padding */
.featured-properties-section .container-fluid,
.about-contact-section .container-fluid,
.about-us-section .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}

/* Services Section */
.services-section {
    padding: 60px 0;
    background-color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-item {
    border: 1px solid #e9ecef;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.service-title {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #f8f9fa;
}

.service-title i {
    font-size: 1.5rem;
    margin-right: 15px;
    color: #007bff;
}

.service-dropdown {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
}

.service-item.active .service-dropdown {
    padding: 20px;
    max-height: 200px;
}

/* Property Type Buttons */
.property-types {
    gap: 25px; /* Increased gap for more margin */
}

.property-types button {
    padding: 8px 20px; /* Decreased padding */
    font-size: 12px; /* Decreased font size */
}

/* Ensure main content containers are full width */
.container, .container-fluid {
    width: 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}