/* General styles */
body {
    font-family: Arial, sans-serif;
    font-family: "Inter", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Oswald", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

/* Top bar (Contact Info & Social Icons) */
header {
    background-color: #000; /* Black background */
    color: #fff; /* White text */
    font-size: 0.9rem;
}

header .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header span, header a {
    color: #fff;
    margin-right: 1rem;
    text-decoration: none;
}



header a:hover {
    color: #f9a825; /* Yellow hover color */
}

/* Social Icons */
header .bi {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}



/* Navigation Bar */
.navbar {
    background-color: #fff; /* White background */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 50px;
}

/* Navigation Links */
.navbar-nav .nav-link {
    color: #000; /* Black text */
    margin-right: 1rem;
    transition: color 0.3s;
    font-family: "Oswald", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 1.3;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #f77f00; /* Orange for active and hover states */
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.dropdown-item {
    color: #000;
    font-family: "Oswald", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 0.9rem !important;
}

.dropdown-item:hover {
    background-color: #f9f9f9;
    color: #f77f00;
}

/* "Apply Now" Button */
.btn-primary {
    background-color: #00c2c7; /* Teal */
    border-color: #00c2c7;
    padding: 0.5rem 1.5rem;
    font-family: "Oswald", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.btn-primary:hover {
    background-color: #00a9ad; /* Darker teal */
    border-color: #00a9ad;
}

/* Hero Banner Styles */
/* Hero Banner Styles */
.hero-banner {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    color: #fff;
    overflow: hidden;
}

/* Carousel Styling */
#heroCarousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#heroCarousel .carousel-item img {
    height: 100vh;
    object-fit: cover;
    filter: brightness(75%); /* Slight darkening to improve text visibility */
}

/* Semi-Opaque Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Adjust opacity as needed */
    z-index: 2;
}

/* Content Container */
.hero-banner .container {
    z-index: 3;
    position: relative;
}

/* Tagline */
.hero-banner .tagline {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid #f77f00;
    border-radius: 50px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Text Shadows */
.hero-banner h1 {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-banner p {
    font-size: 1.25rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* Button Styles */
.hero-banner .btn-primary {
    background-color: #00c2c7;
    border: none;
    color: #fff;
    font-size: 1rem;
    padding: 0.75rem 2rem;
    position: relative;
}

.hero-banner .btn-primary:hover {
    background-color: #00a9ad;
}



/* Page Banner */
.page-banner {
    background: url('../img/page-banner.jpg') center center/cover no-repeat;
    color: #fff;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.breadcrumb-item a {
    color: #f77f00;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}


/* About Us Section */
.about-us {
    background-color: #f9f9f9;
}

.about-us img {
    max-height: 420px;
}

.about-us h6 {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

.about-us h2 {
    font-size: 2.5rem;
    color: #333;
}

.about-us p {
    font-size: 1rem;
    color: #666;
}

.accordion-button {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    transition: background-color 0.3s ease;
}

.accordion-button:hover {
    background-color: #f9f9f9;
}

.accordion-button.bg-warning {
    color: #fff;
}

.accordion-body {
    font-size: 0.9rem;
    color: #666;
    padding: 1rem;
}

/* Stats Section */
.stats-section i {
    color: #00c2c7;
}

.stats-section h3 {
    font-size: 2.5rem;
    color: #fff;
}

.stats-section p {
    font-size: 1rem;
    color: #fff;
}

/* Why Us Section */
.why-us {
    background: url('../img/why-us-bg.jpg') center center/cover no-repeat;
    position: relative;
    padding: 3rem 0;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.why-us h6 {
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.why-us h2 {
    font-size: 2.5rem;
    color: #fff;
}

.feature-card .icon {
    font-size: 2rem;
}

.feature-card h5 {
    font-size: 1.2rem;
    color: #fff;
}

.feature-card p {
    font-size: 0.9rem;
    color: #ccc;
}

/* Team Section */
.team-section h6 {
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.team-section h2 {
    font-size: 2.5rem;
    color: #333;
}

.team-card {
    padding: 1.5rem 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.team-card .team-image {
    width: 250px;
    height: 250px;
    overflow: hidden;
    border: 4px solid #000000;
}

.team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h5 {
    font-size: 1.5rem;
    margin-top: 1rem;
    color: #333;
}

.team-card p {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0;
}

/* Team Full Section */
.team-full-section h6 {
    font-size: 1.3rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: #f77f00;
}

.team-full-section h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #333;
    width: 70%;
    margin: 0px auto;
}

.team-card-full {
    padding: 1rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card-full:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

.team-card-full img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.team-card-full h5 {
    font-size: 1.6rem;
    margin-top: 1rem;
    color: #333;
}

.team-card-full p {
    font-size: 1.1rem;
    font-weight: bold;
    color: #e97d0a;
}

/* About Funding Section */
.about-funding h6 {
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.about-funding h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.about-funding p {
    font-size: 1rem;
    color: #666;
}

/* What We Do - Funding Page */
.what-we-do-funding h6 {
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.what-we-do-funding h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #333;
}

.service-card {
    background-color: #fff;
    position: relative;
}

.service-card .icon-box {
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
}

.service-card h5 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.service-card i {
    font-size: 5rem;
}

.service-card .service-number {
    position: absolute;
    right: 15px;
    bottom: 15px;
    font-size: 3rem;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.05);
}

.what-we-do-funding .btn {
    padding: 0.8rem 2rem;
    background-color: #0056b3;
    border: none;
    font-size: 1rem;
    font-weight: bold;
    display: inline-block;
    color: #fff;
    transition: background-color 0.3s ease;
}

.what-we-do-funding .btn:hover {
    background-color: #003f88;
}

/* Funding Circles Section */
.funding-circles h6 {
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.funding-circles h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #333;
}

/* Form Section */
.funding-form {
    border-top: 5px solid #f77f00;
    padding: 20px 10px;
}

.funding-form h4 {
    font-size: 2rem;
    color: #333;
}

.funding-form .form-control {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px 10px;
    margin-bottom: 10px;
}

.funding-form .btn {
    width: 100%;
    padding: 10px;
    background-color: #00c2c7;
    color: #fff;
    font-weight: bold;
    border: none;
    transition: background-color 0.3s ease;
}

.funding-form .btn:hover {
    background-color: #0056b3;
}

/* Steps Section */
.funding-steps {
    padding-left: 0;
}

.funding-steps li {
    display: flex;
    align-items: flex-start;
}

.funding-steps .step-circle {
    min-width: 80px;
    min-height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
}

.funding-steps h5 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.funding-steps p {
    font-size: 1.1rem;
    color: #666;
}

/* Image Stack */
.image-stack {
    position: relative;
}

.image-stack img {
    border-radius: 10px;
}

/* List Items */
.about-funding ul {
    padding: 0;
    list-style: none;
}

.about-funding ul li {
    font-size: 1rem;
    color: #333;
    display: flex;
    align-items: center;
}

.about-funding ul li i {
    font-size: 1.2rem;
}

/* Experience Box */
.experience-box {
    background-color: #00c2c7;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.experience-box h3 {
    font-size: 5rem;
    margin-bottom: 0.5rem;
}

.experience-box p.text-white {
    color: #ebebeb;
}

/* Progress Circles */
.progress-circle .circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: conic-gradient(#f77f00 0% 76%, #eaeaea 76% 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

.progress-circle span {
    font-size: 1.2rem;
}

.progress-circle p {
    font-size: 0.9rem;
    font-weight: bold;
    color: #333;
    margin-top: 8px;
}

/* What We Do Section */
.what-we-do {
    background-color: #f9f9f9;
}

.stat-box i {
    font-size: 3rem;
    color: #00c2c7;
}

.stat-box h3 {
    font-size: 2rem;
    color: #333;
}

.stat-box p {
    font-size: 1rem;
    color: #666;
}

/* Progress Bar */
.progress-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

.progress {
    height: 10px;
    border-radius: 5px;
    background-color: #eaeaea;
}

.progress-bar {
    height: 10px;
    border-radius: 5px;
    width: 0; /* Initial width */
    transition: width 1.5s ease-in-out;
}

/* Professional Services Section */
.professional-services h6 {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.professional-services h2 {
    font-size: 2.5rem;
    margin-bottom: 0;
    color: #333;
}

.service-card img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-bottom: 2px solid #00c2c7;
}

.service-card h5 {
    font-size: 1.4rem;
    color: #333;
}

.service-card p {
    font-size: 1rem;
    color: #666;
    margin: 10px 0;
}

.service-card a {
    font-size: 0.9rem;
    padding-top: 0px;
}

.service-card a i {
    display: none;
}

.service-card a:hover {
    color: #f77f00;
}

/* Loan Packages Features Section */
.loan-packages-features {
    background-color: #f9f9f9;
}

.loan-packages-features .features-highlight {
    text-align: center;
    border-radius: 10px;
}

.loan-packages-features .features-highlight h6 {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 1rem;
}

.loan-packages-features .features-highlight h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: bold;
}

.loan-packages-features .feature-card img {
    width: 80px;
    height: auto;
}

.loan-packages-features .feature-card h5 {
    font-size: 1.5rem;
    color: #333;
    margin-top: 1rem;
}

.loan-packages-features .feature-card p {
    font-size: 1.1rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Professional Loan Services Section */
.professional-loan-services h6 {
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.professional-loan-services h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #333;
}

.professional-loan-services .service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.professional-loan-services .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.professional-loan-services .service-image {
    position: relative;
    overflow: hidden;
}

.professional-loan-services .service-image img {
    border-bottom: 1px solid #ddd;
}

.professional-loan-services .service-icon {
    background-color: #00c2c7;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.professional-loan-services .service-content h5 {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.professional-loan-services .service-content a {
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
}

.professional-loan-services .service-content a i {
    font-size: 2rem;
    font-weight: bolder;
    margin-left: 10px;
}



/* Best Features Section */
.best-features h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #333;
}

.best-features p {
    font-size: 1.2rem;
    color: #666;
}

.best-features .feature-item {
    border-left: 3px solid #f77f00;
    padding-left: 1.5rem;
}

.best-features .feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.best-features .feature-icon img {
    min-width: 80px;
    height: auto;
}

.best-features .feature-content h5 {
    font-size: 1.5rem;
    color: #333;
}

.best-features .feature-content p {
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

/* Loan Steps Section */
.loan-steps h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 3.5rem;
}

.loan-steps .step-item {
    align-items: flex-start;
    margin-top: 3rem;
}

.loan-steps .step-number {
    min-width: 90px;
    min-height: 90px;
    font-size: 2rem;
    font-weight: bold;
    background-color: #f77f00;
    color: #fff;
}

.loan-steps .step-description h5 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.loan-steps .step-description p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.loan-image img {
    height: 500px;
    border-radius: 10px;
}

/* Eligibility Criteria Section */
.eligibility-criteria h2 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 1rem;
}

.eligibility-criteria p {
    font-size: 1.25rem;
    color: #666;
}

.eligibility-criteria ul {
    margin: 0;
    padding: 0;
}

.eligibility-criteria li {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

.eligibility-criteria i {
    font-size: 1.5rem;
    color: #f77f00;
    margin-right: 10px;
    margin-left: 20px;
}

/* Responsive Section */
.responsive-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #333;
}

.responsive-section p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

.responsive-section .image-wrapper img {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


/* Contact Section */
.contact-section h6 {
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.contact-section h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #333;
}

.contact-item {
    padding-bottom: 1rem;
    border-bottom: 1px solid #ddd;
}

.contact-item:last-child {
    border-bottom: none;
}

.icon-box {
    min-width: 80px;
    min-height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
}

.contact-form {
    border-top: 5px solid #f77f00;
    margin-top: 100px;
}

.contact-form h4 {
    font-size: 2.1rem;
    color: #333;
}

.contact-form .form-control {
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form .btn {
    background-color: #00c2c7;
    color: #fff;
    font-weight: bold;
    border: none;
    transition: background-color 0.3s ease;
}

.contact-form .btn:hover {
    background-color: #0056b3;
}

/* Footer styles */
.footer {
    background-color: #121212; /* Dark background */
    background-image: linear-gradient(to right, #121212, #000); /* Gradient effect */
    color: #fff; /* White text */
    font-size: 0.95rem;
}

.footer-logo {
    max-height: 60px;
}

.footer-contact {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.footer h5 {
    font-size: 1.2rem;
    color: #fff;
    font-weight: bold;
}

.footer ul li a {
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: #f9a825; /* Yellow on hover */
}

.footer-bottom {
    background-color: #000;
    font-size: 0.85rem;
    border-top: 1px solid #333;
}

/* Social Icons */
.footer .bi {
    font-size: 1.5rem;
    transition: color 0.3s;
}

.footer .bi:hover {
    color: #f77f00; /* Orange hover */
}

/* Modal Header Styling */
.modal-header {
    border-bottom: none;
    position: relative;
}

.modal-header .btn-close {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 1.25rem;
}

/* Modal Body Styling */
.modal-body {
    padding: 2rem;
}

.modal-body .form-label {
    font-weight: 600;
    color: #333;
}

.modal-body .form-control,
.modal-body .form-select {
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 0.75rem;
    font-size: 0.95rem;
}

.modal-body .form-control:focus,
.modal-body .form-select:focus {
    border-color: #007bff;
    box-shadow: none;
}

.modal-body .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .modal-content {
        margin: 1rem;
    }
    
    .hero-banner h1 {
        font-size: 2.5rem;
    }
    .hero-banner p {
        font-size: 1.05rem;
    }
}

