:root {
    --primary: #0d6efd;
    --primary-dark: #0b5ed7;
    --secondary: #6c757d;
    --success: #198754;
    --light-bg: #f8f9fa;
    --dark-text: #212529;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}


.btn-learn-more {
    background-color: #fff;
    color: #3498db;
    border: 1px solid #3498db;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s;
  }
  
  .btn-learn-more:hover {
    background-color: #3498db;
    color: #fff;
  }
  
  .btn-primary {
    background: linear-gradient(90deg, #3498db, #2ecc71);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s;
  }
  
  .btn-primay:hover {
    background: linear-gradient(90deg, #2980b9, #27ae60);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }


/*=================Nav Bar=================*/
.navbar-brand {
    font-weight: 700;
}


/*=================Hero Section=================*/
.hero-section {
    background: url('/img/loan/slider.webp') no-repeat center center;
    background-size: cover;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 110, 253, 0.5);  /* Blue overlay with opacity */
    z-index: 0;
}

.hero-bg-shape {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.loan-calculator {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.loan-calculator .form-range::-webkit-slider-thumb {
    background: #0d6efd;
}


.trust-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    margin-right: 10px;
    margin-bottom: 10px;
    backdrop-filter: blur(5px);
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.5s ease-out forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
/*=================End Hero Section=================*/

.hero-section {
   
    color: white;
    padding: 100px 0;
}

.section-padding {
    padding: 80px 0;
}

.card {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(13, 110, 253, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.testimonial-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.loan-calculator {
    background-color: var(--light-bg);
    border-radius: 10px;
    padding: 30px;
}

.cta-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0143a3 100%);
    color: white;
    padding: 80px 0;
}

.footer {
    background-color: #212529;
    color: white;
    padding: 60px 0 30px;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    margin-right: 10px;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: var(--primary);
}

.step-item {
    padding: 30px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: bold;
}

.loan-type-card {
    height: 100%;
}

.progress-thin {
    height: 8px;
}

/*=================Loan Category=================*/
.bodi {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .section-title {
    position: relative;
    margin-bottom: 2rem;
    font-weight: 700;
    color: #2c3e50;
  }
  
  .section-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 2px;
  }
  
  .loan-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 1.5rem;
    height: 100%;
  }
  
  .loan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  }
  
  .loan-card .card-img-top {
    height: 160px;
    object-fit: cover;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  
  .loan-card .card-body {
    padding: 1.5rem;
  }
  
  .loan-card .card-title {
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #2c3e50;
  }
  
  .loan-card .card-text {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }
  
  .loan-feature {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: #6c757d;
  }
  
  .loan-feature i {
    color: #3498db;
    margin-right: 0.5rem;
  }
  
  .btn-learn-more {
    background-color: #fff;
    color: #3498db;
    border: 1px solid #3498db;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s;
  }
  
  .btn-learn-more:hover {
    background-color: #3498db;
    color: #fff;
  }
  
  .btn-apply-now {
    background: linear-gradient(90deg, #3498db, #2ecc71);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s;
  }
  
  .btn-apply-now:hover {
    background: linear-gradient(90deg, #2980b9, #27ae60);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  
  .interest-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255,255,255,0.9);
    color: #e74c3c;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
  }
  
  @media (max-width: 768px) {
    .loan-card .card-img-top {
      height: 140px;
    }
  }

  /*=================End Loan Category=================*/
/*=================Start Loan bout=================*/

:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --accent-color: #20c997;
}

.pageheader-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.pageheader-shape {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 150px;
    background: white;
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0% 100%);
}

.mission-section {
    background-color: white;
    padding: 80px 0;
}

.value-card {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.value-icon {
    font-size: 2rem;
    color: var(--primary-color);
    background-color: rgba(13, 110, 253, 0.1);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.team-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.team-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-img-container {
    height: 250px;
    overflow: hidden;
}

.team-card img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.social-icons i {
    font-size: 1.2rem;
    margin: 0 5px;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.social-icons i:hover {
    color: var(--primary-color);
}

.stats-section {
    background-color: white;
    padding: 80px 0;
}

.stat-card {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.testimonial-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.testimonial-card {
    border: none;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.quote-icon {
    font-size: 2rem;
    color: rgba(13, 110, 253, 0.2);
}

.cta-section {
    background-color: var(--primary-color);
    padding: 60px 0;
    color: white;
}

.timeline-section {
    padding: 80px 0;
    background-color: white;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 3px;
    background-color: var(--primary-color);
}

.timeline-item {
    position: relative;
    padding-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -38px;
    top: 5px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.timeline-date {
    font-weight: 700;
    color: var(--primary-color);
}

/* Animated counting effect */
.counting-animation {
    display: inline-block;
}


/*=================End Loan bout=================*/

/*=================Start form=================*/
.form-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 0.5rem;
}
.header-section {
    background-color: #0d6efd;
    color: white;
    padding: 2rem 0;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
}

/*===================End form=================*/

/*=================Start FAQ=================*/


/*===================End FAQ=================*/

/*=================Start Contact=================*/

.contact-header {
    background-color: #4361ee;
    color: white;
    padding: 60px 0;
    margin-bottom: 40px;
}
.contact-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.contact-card:hover {
    transform: translateY(-5px);
}
.info-icon {
    width: 50px;
    height: 50px;
    background-color: #4361ee;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}
.form-control:focus {
    border-color: #4361ee;
    box-shadow: 0 0 0 0.25rem rgba(67, 97, 238, 0.25);
}
.btn-primary {
    background-color: #4361ee;
    border-color: #4361ee;
}
.btn-primary:hover {
    background-color: #3a56d4;
    border-color: #3a56d4;
}
.map-container {
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
}
.social-links a {
    width: 40px;
    height: 40px;
    background-color: #4361ee;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s ease;
}
.social-links a:hover {
    background-color: #3a56d4;
    transform: translateY(-3px);
}

/*=================End Contact=================*/

/*=================Start FAQ=================*/
.faq-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}
.accordion-button:not(.collapsed) {
    background-color: #e7f1ff;
    color: #0d6efd;
}
.faq-category {
    margin-bottom: 30px;
}
.faq-category-title {
    border-bottom: 2px solid #0d6efd;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.floating-help {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

/*=================End FAQ=================*/


.tracking-step.active .step-icon {
    background-color: #0d6efd;
    color: white;
  }
  .tracking-step.completed .step-icon {
    background-color: #198754;
    color: white;
  }
  .step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
  }
  .tracking-line {
    height: 3px;
    background-color: #dee2e6;
    position: relative;
    top: 25px;
    z-index: -1;
  }
  .tracking-line.completed {
    background-color: #198754;
  }
  .tracking-info {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }