/* Custom Variables */
:root {
    --primary-color: #F97316; /* PNRG Orange */
    --primary-hover: #EA580C; /* Darker Orange */
    --dark-blue: #1E3A8A;
    --light-gray: #f8f9fa;
}

body {
    padding-top: 70px; /* Adjust for fixed navbar */
    font-family: 'Poppins', sans-serif; /* A modern, clean font */
}

/* --- Bootstrap Overrides --- */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: background-color 0.3s ease;
}

    .btn-primary:hover {
        background-color: var(--primary-hover);
        border-color: var(--primary-hover);
    }

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
}

    .btn-outline-primary:hover {
        background-color: var(--primary-color);
        color: white;
    }

.text-primary {
    color: var(--primary-color) !important;
}

/* --- 1. Hero Section --- */
.hero-section {
    min-height: 80vh;
    background: url('https://images.unsplash.com/photo-1554224155-8d04421cd698?q=80&w=2070&auto=format&fit=crop') no-repeat center center;
    background-size: cover;
    position: relative;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.7);
    }

    .hero-section .container {
        position: relative;
        z-index: 2;
    }

/* --- 2. Why Choose Us Section --- */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 1rem 3rem rgba(0,0,0,.1) !important;
    }

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* --- 4. Our Loan Products --- */
.solution-card-expanded {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

    .solution-card-expanded:hover {
        transform: translateY(-10px);
        box-shadow: 0 1rem 3rem rgba(0,0,0,.1) !important;
    }

    .solution-card-expanded .card-img-top {
        height: 200px;
        object-fit: cover;
    }

/* --- 5. How It Works Section --- */
.step-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    border: 3px solid white;
    box-shadow: 0 0 0 5px var(--primary-color);
}

/* --- 6. Testimonial Section --- */
.testimonial-card {
    background-color: var(--light-gray);
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
}

.testimonial-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-top: -75px; /* Pulls the image up */
    border: 5px solid white;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15);
}

/* --- 7. CTA Section --- */
.cta-section {
    background: linear-gradient(45deg, var(--dark-blue), var(--primary-color));
}
/* --- Styles for About Us Page --- */

/* Page Header */
.page-header {
    min-height: 40vh;
    background: linear-gradient(rgba(30, 58, 138, 0.6), rgba(30, 58, 138, 0.6)), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?q=80&w=2070&auto=format&fit=crop') no-repeat center center;
    background-size: cover;
    position: relative;
}

    .page-header h1, .page-header p {
        position: relative;
        z-index: 2;
    }

/* Team Member Card */
.team-member-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .team-member-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 1rem 2rem rgba(0,0,0,.15);
    }

.team-member-img {
    width: 100%;
    height: 250px; /* Or adjust as needed */
    object-fit: cover;
    object-position: top; /* Ensures faces are visible */
}

.team-member-info {
    padding: 1.5rem;
}