@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Poppins:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand h2 {
    font-weight: 700;
    color: #0a1e39;
    font-size: 24px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #0a1e39;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #007bff;
}

/* Hero Section */
.hero {
    background-image: url("../images/cm1.jpg");
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Filters Section */
.filters {
    padding: 20px 0;
    
}

.form-select {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #96C9F4;
   
}

.form-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Property Cards Section */
.property-cards {
    padding: 40px 0;

}

.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
   
    background-color: #D9EAFD;
  
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.text-primary {
    color: #007bff !important;
}

/* Footer */
.footer {
    background: #0a1e39;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

.footer p {
    margin: 0;
}

/* Base button styling */
.btn {
    padding: 8px 16px; /* Padding for better spacing */
    font-size: 14px; /* Font size */
    font-weight: 600; /* Bold text */
    border-radius: 25px; /* Rounded corners */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
    text-transform: uppercase; /* Uppercase text */
    cursor: pointer; /* Pointer cursor on hover */
    text-align: center; /* Center text */
    display: inline-block; /* Ensure buttons are inline */
}

/* Primary button (View Details) */
.btn-primary {
    background-color: #0a1e39; /* Blue background */
    border: 2px solid #0a1e39; /* Blue border */
    color: #ffffff; /* White text */
}

.btn-primary:hover {
    background-color: #0056b3; /* Darker blue on hover */
    border-color: #0056b3; /* Darker border on hover */
    transform: translateY(-2px); /* Slight lift effect */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow */
}

/* Outline button (Brochure) */
.btn-outline-secondary {
    background-color: transparent; /* Transparent background */
    border: 2px solid #6c757d; /* Gray border */
    color: #6c757d; /* Gray text */
}

.btn-outline-secondary:hover {
    background-color: #6c757d; /* Gray background on hover */
    color: #ffffff; /* White text on hover */
    transform: translateY(-2px); /* Slight lift effect */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .btn {
        padding: 6px 12px; /* Smaller padding for smaller screens */
        font-size: 12px; /* Smaller font size for smaller screens */
    }
}


.label{
    position: absolute;
    left: -10px;
    right: auto;
    bottom: 0;
    background-color: #4a61e1;
    border-radius: 5px;
    padding: 6px 15px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
}
.labelhead{
    position: relative;
}