body {
    font-family: 'Poppins', sans-serif;
}

/* Theme Colors */
:root {
    --primary-red: #c9242b;
    --accent-yellow: #fec712;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-red);
    color: white;
}

/* Navbar */
.navbar-brand {
    font-size: 22px;
}

.nav-link {
    font-weight: 500;
}

.nav-link:hover {
    color: var(--primary-red) !important;
}

/* Footer */
.footer {
    background-color: var(--primary-red);
}

.footer-link {
    color: white;
    text-decoration: none;
}

.footer-link:hover {
    color: var(--accent-yellow);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebe5d;
    color: white;
}

/* Breadcrumb Section */
.breadcrumb-section {
    background-color: #c9242b;
}

.breadcrumb a {
    color: #fec712;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Real Estate Hero */
.realestate-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('../images/real.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
}

/* Featured Section */
.featured-property {
    background-color: #f8f9fa;
}

/* CTA Section */
.cta-section {
    background-color: #c9242b;
}

/* Finance Hero */
.finance-hero {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url('../images/finance-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 75vh;
}

/* Loan Card Hover Effect */
.loan-card {
    border-radius: 10px;
    transition: 0.3s ease;
}

.loan-card:hover {
    transform: translateY(-8px);
    border-bottom: 4px solid #fec712;
}

/* Why Choose Section */
.why-choose {
    background-color: #f8f9fa;
}

/* Finance CTA */
.finance-cta {
    background-color: #c9242b;
}

/* What We Do Hero */
.whatwedo-hero {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url('../images/whatwedo-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 70vh;
}

/* Service Box */
.service-box {
    border-radius: 10px;
    transition: 0.3s ease;
}

.service-box:hover {
    transform: translateY(-8px);
    border-bottom: 4px solid #fec712;
}

/* CTA */
.whatwedo-cta {
    background-color: #c9242b;
}

/* About Hero */
.about-hero {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url('../images/about-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 70vh;
}

/* Partner Logos */
.partner-logo {
    max-height: 70px;
    filter: grayscale(100%);
    transition: 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Team Card */
.team-card {
    border-radius: 10px;
    transition: 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    border-bottom: 4px solid #fec712;
}

/* HOME HERO */
.home-hero {
    background: linear-gradient(135deg, #c9242b, #9e1d22);
    padding: 100px 0;
}

/* Service Cards */
.home-service-card {
    border-radius: 12px;
    transition: 0.3s ease;
}

.home-service-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid #fec712;
}

/* CTA */
.home-cta {
    background-color: #c9242b;
}

/* Partner Grid Box */
.partner-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.partner-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Logo Styling */
.partner-logo {
    max-height: 60px;
    filter: grayscale(100%);
    transition: 0.3s ease;
}

.partner-box:hover .partner-logo {
    filter: grayscale(0%);
}