: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;
}

.nav-link {
    color: #fff !important;
}


/*=================Hero Section=================*/
.hero-section {
    background: url('/img/22.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-weight: 800;
    margin-bottom: 1rem;
    font-size: 3.5rem;
}

.hero-subtitle {
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 2rem;
    font-size: 1.25rem;
}

.hero-btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-btn-primary {
    background-color: white;
    color: #6366F1;
    border: none;
}

.hero-btn-primary:hover {
    background-color: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.hero-btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    margin-left: 0.5rem;
}

.hero-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    color: white;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
    .hero-image-container {
        margin-top: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}
/*=================End Hero Section=================*/

.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: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            padding: 2rem 0;
        }
        
        .section-title {
            color: white;
            font-weight: 700;
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .text-muted {
            color: rgba(255, 255, 255, 0.8) !important;
            text-align: center;
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .loan-card {
            border: none;
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            height: 100%;
        }
        
        .loan-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }
        
        .card-img-top {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        
        .interest-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(255, 255, 255, 0.95);
            color: #333;
            padding: 8px 15px;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        
        .card-body {
            padding: 2rem;
        }
        
        .card-title {
            font-weight: 700;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        
        .card-text {
            color: #666;
            line-height: 1.6;
            margin-bottom: 2rem;
        }
        
        .btn-apply-now {
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
            padding: 12px 30px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            display: inline-block;
        }
        
        .btn-apply-now:hover {
            background: linear-gradient(45deg, #764ba2, #667eea);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }
        
        /* Crypto Card - Gold/Orange Theme */
        .crypto-card {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }
        .crypto-card .card-title {
            color: white;
        }
        .crypto-card .card-text {
            color: rgba(255, 255, 255, 0.9);
        }
        
        /* Romance Card - Pink/Purple Theme */
        .romance-card {
            background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
        }
        .romance-card .card-title {
            color: #8e2de2;
        }
        .romance-card .card-text {
            color: #666;
        }
        
        /* Tech Card - Blue/Teal Theme */
        .tech-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
        .tech-card .card-title {
            color: white;
        }
        .tech-card .card-text {
            color: rgba(255, 255, 255, 0.9);
        }
        
        /* Purchase Card - Green Theme */
        .purchase-card {
            background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
        }
        .purchase-card .card-title {
            color: #2d3748;
        }
        .purchase-card .card-text {
            color: #4a5568;
        }
        
        /* Lottery Card - Yellow/Orange Theme */
        .lottery-card {
            background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
        }
        .lottery-card .card-title {
            color: #d69e2e;
        }
        .lottery-card .card-text {
            color: #744210;
        }
        
        /* Ponzi Card - Red/Purple Theme */
        .ponzi-card {
            background: linear-gradient(135deg, #ff8a80 0%, #ff80ab 100%);
        }
        .ponzi-card .card-title {
            color: white;
        }
        .ponzi-card .card-text {
            color: rgba(255, 255, 255, 0.9);
        }
  /*=================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);
  }