/* ========================================
   EASY LOAN EXPRESS - CUSTOM IMPROVEMENTS
   Modern, Professional & Conversion-Focused
   MOBILE-FIRST OPTIMIZED
   ======================================== */

/* ============ MODERN COLOR SCHEME ============ */
:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    --success-color: #4ade80;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(102, 126, 234, 0.2);
}

/* ============ ENHANCED HERO SECTION ============ */
.hero-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    padding: 80px 0 60px !important;
    position: relative;
    overflow: hidden;
}

.hero-1::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-1::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-30px); }
}

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

.hero-1-content .cate {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
    border: 1px solid rgba(255,255,255,0.3);
}

.hero-1-content .title {
    color: #ffffff !important;
    font-size: 32px !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
    margin-bottom: 15px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.hero-1-content p {
    color: rgba(255,255,255,0.95) !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    margin-bottom: 25px;
}

/* ============ MODERN CTA BUTTONS ============ */
.btn.theme-btn-1 {
    background: #ffffff !important;
    color: #667eea !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    padding: 0 35px !important;
    height: 52px !important;
    line-height: 52px !important;
    border-radius: 50px !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15) !important;
    transition: all 0.3s ease !important;
    position: relative;
    overflow: hidden;
    border: none !important;
    display: inline-block !important;
    text-align: center;
}

.btn.theme-btn-1:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.3) !important;
    color: #764ba2 !important;
}

/* ============ ENHANCED FEATURED BOXES - MOBILE OPTIMIZED ============ */
.featured-boxes-area {
    margin-top: -40px;
    position: relative;
    z-index: 10;
    padding: 0 15px;
    margin-bottom: 30px;
}

/* Reduce spacing between sections on services page */
.services-area.pt-100 {
    padding-top: 50px !important;
}

.services-area.pb-70 {
    padding-bottom: 40px !important;
}

.single-featured-box {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid transparent;
    height: 100%;
    margin-bottom: 15px;
    text-align: center;
}

.single-featured-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.2);
}

.single-featured-box .icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 16px;
    margin: 0 auto 20px;
    font-size: 28px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-featured-box:hover .icon {
    transform: scale(1.05);
}

.single-featured-box h3 {
    font-size: 19px !important;
    font-weight: 700 !important;
    color: var(--text-dark) !important;
    margin-bottom: 12px !important;
    line-height: 1.4 !important;
}

.single-featured-box p {
    color: var(--text-light) !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin-bottom: 15px !important;
}

.single-featured-box .read-more-btn {
    color: var(--primary-color) !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: all 0.3s ease;
}

/* ============ TRUST BADGES - CARD STYLE ============ */
.trust-badges {
    background: transparent;
    padding: 40px 15px;
    margin: 40px 0;
    border-radius: 0;
}

.security-badge {
    background: #ffffff;
    text-align: center;
    padding: 35px 20px;
    margin-bottom: 20px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid transparent;
    height: 100%;
}

.security-badge:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.2);
}

.security-badge i {
    font-size: 48px;
    color: var(--success-color);
    margin-bottom: 18px;
    display: block;
    transition: all 0.3s ease;
}

.security-badge:hover i {
    transform: scale(1.1);
}

.security-badge h4 {
    font-size: 19px !important;
    font-weight: 700 !important;
    color: var(--text-dark) !important;
    margin-bottom: 10px !important;
    line-height: 1.3 !important;
}

.security-badge p {
    font-size: 14px !important;
    color: var(--text-light) !important;
    margin: 0 !important;
    line-height: 1.6 !important;
}

/* ============ MODERN SECTION TITLES ============ */
.section-title h2 {
    font-size: 28px !important;
    font-weight: 600 !important;
    color: var(--text-dark) !important;
    line-height: 1.4 !important;
    margin-bottom: 15px;
    position: relative;
}

.section-title p {
    font-size: 16px !important;
    color: var(--text-light) !important;
    margin-bottom: 0;
    line-height: 1.6 !important;
    font-weight: 400 !important;
}

.title-bdr {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.left-bdr, .right-bdr {
    height: 3px;
    width: 50px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
}

/* ============ ENHANCED SERVICES CARDS - MOBILE ============ */
.single-services {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 25px;
    border: 1px solid transparent;
}

.single-services:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.2);
}

.single-services .image {
    position: relative;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.single-services .image img {
    transition: transform 0.6s ease;
    width: 100%;
}

.single-services:hover .image img {
    transform: scale(1.05);
}

.single-services h3 {
    font-size: 20px !important;
    font-weight: 600 !important;
    color: var(--text-dark) !important;
    margin: 20px 20px 12px !important;
}

.single-services p {
    color: var(--text-light) !important;
    padding: 0 20px !important;
    margin-bottom: 15px !important;
    line-height: 1.7 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
}

.single-services .services-btn {
    color: var(--primary-color) !important;
    font-weight: 600 !important;
    padding: 0 20px 20px !important;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 14px !important;
}

/* ============ TESTIMONIAL ENHANCEMENTS ============ */
.testimonial-area {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    padding: 60px 0 !important;
}

.testimonial-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    margin: 15px;
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.15);
}

.testimonial-author {
    text-align: center;
    margin-bottom: 20px;
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid rgba(102, 126, 234, 0.2);
    margin-bottom: 15px;
}

.testimonial-author .author__title {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: var(--text-dark) !important;
    margin-bottom: 5px !important;
}

.testimonial-author .author__meta {
    color: var(--text-light) !important;
    font-size: 13px !important;
    display: block;
    margin-bottom: 8px !important;
    font-weight: 400 !important;
}

.testimonial-author .author__rating i {
    color: #fbbf24;
    font-size: 16px;
}

.testimonial-desc .testimonial__desc {
    color: var(--text-light) !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
    font-style: italic;
    font-weight: 400 !important;
}

/* ============ STATS/COUNTER SECTION - CARD STYLE ============ */
.stats-section {
    background: transparent;
    padding: 40px 15px;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.stat-item {
    background: #ffffff;
    text-align: center;
    padding: 35px 20px;
    margin-bottom: 20px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid transparent;
    height: 100%;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.2);
}

.stat-item .stat-number {
    font-size: 42px !important;
    font-weight: 800 !important;
    color: var(--primary-color) !important;
    margin-bottom: 12px !important;
    display: block;
    line-height: 1.1 !important;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.05);
}

.stat-item .stat-label {
    font-size: 15px !important;
    color: var(--text-light) !important;
    font-weight: 600 !important;
    display: block;
    line-height: 1.4 !important;
}

/* ============ WHY CHOOSE US ENHANCEMENTS ============ */
.why-choose-us-content ul {
    padding: 0;
    margin: 0;
}

.why-choose-us-content ul li {
    background: #ffffff;
    padding: 20px 15px;
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
    list-style: none;
}

.why-choose-us-content ul li:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.15);
}

.why-choose-us-content ul li i {
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    font-size: 18px;
    display: inline-block;
    margin-right: 12px;
    float: left;
    margin-top: 3px;
}

.why-choose-us-content ul li h3 {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: var(--text-dark) !important;
    margin: 0 0 8px 0 !important;
    padding-left: 50px;
}

.why-choose-us-content ul li p {
    color: var(--text-light) !important;
    margin: 0 !important;
    line-height: 1.7 !important;
    font-size: 14px !important;
    padding-left: 50px;
    font-weight: 400 !important;
}

/* ============ FLOATING LIVE CHAT BUTTON ============ */
.floating-chat-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
    z-index: 9999;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-chat-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 35px rgba(102, 126, 234, 0.6);
}

.floating-chat-btn i {
    color: #ffffff;
    font-size: 26px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
    }
    50% {
        box-shadow: 0 6px 25px rgba(102, 126, 234, 0.7), 0 0 0 12px rgba(102, 126, 234, 0.1);
    }
    100% {
        box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
    }
}

/* ============ URGENCY BANNER - MOBILE OPTIMIZED ============ */
.urgency-banner {
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);
    padding: 12px 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.urgency-banner p {
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}

.urgency-banner i {
    margin-right: 5px;
}

/* ============ ABOUT US SECTION ============ */
.about-content strong {
    font-weight: 500 !important;
    line-height: 1.8 !important;
}

.about-area h2 {
    font-weight: 600 !important;
}

/* ============ SERVICES AREA TITLES ============ */
.services-area .section-title h2 {
    font-weight: 600 !important;
}

/* ============ IMPROVED FORM STYLING ============ */
.form-control {
    border: 2px solid #e2e8f0 !important;
    border-radius: 10px !important;
    padding: 12px 15px !important;
    font-size: 15px !important;
    transition: all 0.3s ease !important;
}

.form-control:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1) !important;
}

/* ============ TABLET RESPONSIVENESS ============ */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-1-content .title {
        font-size: 38px !important;
    }

    .section-title h2 {
        font-size: 34px !important;
    }

    .stat-item .stat-number {
        font-size: 42px !important;
    }

    .single-featured-box {
        padding: 35px 25px;
    }

    .floating-chat-btn {
        width: 62px;
        height: 62px;
    }
}

/* ============ DESKTOP RESPONSIVENESS ============ */
@media (min-width: 992px) {
    .hero-1 {
        padding: 120px 0 100px !important;
    }

    .hero-1-content .title {
        font-size: 48px !important;
    }

    .hero-1-content p {
        font-size: 18px !important;
    }

    .section-title h2 {
        font-size: 42px !important;
        font-weight: 600 !important;
    }

    .stat-item {
        padding: 35px 20px;
    }

    .stat-item .stat-number {
        font-size: 56px !important;
        margin-bottom: 15px !important;
    }

    .stat-item .stat-label {
        font-size: 17px !important;
    }

    .floating-chat-btn {
        width: 65px;
        height: 65px;
        bottom: 30px;
        right: 30px;
    }

    .floating-chat-btn i {
        font-size: 28px;
    }

    .urgency-banner p {
        font-size: 16px !important;
    }

    .featured-boxes-area {
        margin-top: -60px;
        padding: 0 30px;
    }

    .trust-badges {
        padding: 60px 30px;
        margin: 60px 0;
    }

    .security-badge {
        padding: 45px 35px;
    }

    .security-badge i {
        font-size: 58px;
        margin-bottom: 22px;
    }

    .security-badge h4 {
        font-size: 21px !important;
        margin-bottom: 12px !important;
    }

    .security-badge p {
        font-size: 15px !important;
    }

    .stats-section {
        padding: 60px 30px;
    }

    .stat-item {
        padding: 45px 35px;
    }

    .stat-item .stat-number {
        font-size: 56px !important;
        margin-bottom: 15px !important;
    }

    .stat-item .stat-label {
        font-size: 17px !important;
    }

    .btn.theme-btn-1 {
        font-size: 16px !important;
        height: 58px !important;
        line-height: 58px !important;
        padding: 0 40px !important;
    }
}

/* ============ LARGE DESKTOP ============ */
@media (min-width: 1200px) {
    .hero-1-content .cate {
        font-size: 14px;
    }

    .single-featured-box {
        padding: 45px 35px;
    }

    .single-featured-box .icon {
        width: 75px;
        height: 75px;
        line-height: 75px;
        font-size: 34px;
        margin-bottom: 25px;
    }

    .single-featured-box h3 {
        font-size: 23px !important;
        margin-bottom: 15px !important;
    }

    .single-featured-box p {
        font-size: 15px !important;
        line-height: 1.7 !important;
    }

    .stat-item {
        padding: 50px 40px;
    }

    .stat-item .stat-number {
        font-size: 62px !important;
    }

    .stat-item .stat-label {
        font-size: 18px !important;
    }

    .security-badge {
        padding: 50px 40px;
    }

    .security-badge i {
        font-size: 64px;
        margin-bottom: 25px;
    }

    .security-badge h4 {
        font-size: 22px !important;
        margin-bottom: 14px !important;
    }

    .security-badge p {
        font-size: 16px !important;
    }
}

/* ============ SMOOTH ANIMATIONS ============ */
.fade-in {
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============ LOADING STATES ============ */
.btn-loading {
    position: relative;
    pointer-events: none;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid #ffffff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

@keyframes spin {
    to { transform: translateY(-50%) rotate(360deg); }
}

/* ============ ACCESSIBILITY IMPROVEMENTS ============ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ============ FIX FOR COLUMN PADDING ISSUES ============ */
.featured-boxes-inner .row.m-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.featured-boxes-inner .row.m-0 > [class*='col-'] {
    padding-left: 8px !important;
    padding-right: 8px !important;
}

@media (max-width: 767px) {
    .featured-boxes-inner .row.m-0 > [class*='col-'] {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

/* ============ PRINT STYLES ============ */
@media print {
    .navbar-area,
    .floating-chat-btn,
    .urgency-banner {
        display: none !important;
    }
}
﻿
/* Fix: override absolute positioning from style.css so icons sit above headings */
.single-featured-box .icon {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    margin-top: 0 !important;
    transform: none;
}
.single-featured-box:hover .icon {
    transform: scale(1.05) !important;
}