
/* ===================================
   Product Features Section Styles
   =================================== */

   .product-features-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.product-features-content h3 {
    color: var(--headings-color);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255,255,255,0.9);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-item .icon {
    margin-right: 20px;
    margin-top: 5px;
}

.feature-item .icon i {
    font-size: 24px;
    color: var(--theme-color1);
    background: linear-gradient(135deg, var(--theme-color1), var(--theme-color7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-item .content h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--headings-color);
    margin-bottom: 8px;
}

.feature-item .content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
}

.product-app-showcase {
    text-align: center;
}

.app-mockup img {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    margin-bottom: 30px;
}

.app-stats {
    margin-top: 30px;
}

.stat-card {
    background: linear-gradient(135deg, var(--theme-color1), var(--theme-color7));
    color: #fff;
    padding: 20px 15px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.stat-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}

.stat-card p {
    margin: 0;
    font-size: 12px;
    opacity: 0.9;
}

/* ===================================
   Loan Comparison Table Styles
   =================================== */

.loan-comparison-section {
    background: #fff;
}

.comparison-table-wrapper {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.comparison-table th {
    background: linear-gradient(135deg, var(--theme-color1), var(--theme-color7));
    color: #fff;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
}

.comparison-table th:first-child {
    text-align: left;
    border-radius: 8px 0 0 0;
}

.comparison-table th:last-child {
    border-radius: 0 8px 0 0;
}

.comparison-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    text-align: center;
    font-size: 14px;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--headings-color);
    background: #f8f9fa;
}

.comparison-table tr:hover {
    background: #f8f9fa;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* ===================================
   App Download Section Styles
   =================================== */

.app-download-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.download-content h3 {
    color: var(--headings-color);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

.download-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 30px;
}

.download-benefits {
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.benefit-item i {
    color: var(--theme-color1);
    margin-right: 12px;
    font-size: 16px;
}

.benefit-item span {
    font-size: 14px;
    color: var(--text-color);
}

.download-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 180px;
}

.download-btn:hover {
    background: var(--theme-color1);
    color: #fff;
    transform: translateY(-2px);
}

.download-btn i {
    font-size: 24px;
    margin-right: 12px;
}

.download-btn .small-text {
    font-size: 10px;
    display: block;
    opacity: 0.8;
}

.download-btn .large-text {
    font-size: 14px;
    font-weight: 600;
    display: block;
}

.app-screenshots {
    text-align: center;
}

.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.screenshot-item img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.screenshot-item:hover img {
    transform: scale(1.05);
}

/* Responsive Design for Product Features */
@media (max-width: 991.98px) {
    .feature-item {
        padding: 15px;
    }
    
    .feature-item .icon {
        margin-right: 15px;
    }
    
    .comparison-table-wrapper {
        padding: 20px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px 8px;
        font-size: 12px;
    }
    
    .download-buttons {
        justify-content: center;
    }
    
    .screenshot-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-item .icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .comparison-table {
        font-size: 11px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 8px 5px;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .download-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .screenshot-grid {
        grid-template-columns: 1fr;
        max-width: 200px;
    }
}


/* ===================================
   Loan Product Cards Styles
   =================================== */

.loan-products-section {
    margin: 40px 0;
}

.loan-product-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    height: 100%;
}

.loan-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-icon {
    text-align: center;
    margin-bottom: 20px;
}

.product-icon i {
    font-size: 48px;
    color: var(--theme-color1);
    background: linear-gradient(135deg, var(--theme-color1), var(--theme-color7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.loan-product-card .title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: var(--headings-color);
    margin-bottom: 20px;
}

.product-details {
    margin-bottom: 20px;
}

.product-details p {
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-color);
}

.product-details strong {
    color: var(--headings-color);
}

.product-benefits {
    margin-bottom: 25px;
}

.product-benefits h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--headings-color);
    margin-bottom: 15px;
}

.product-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-benefits li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
    color: var(--text-color);
}

.product-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--theme-color1);
    font-weight: bold;
}

/* Responsive Design for Loan Product Cards */
@media (max-width: 991.98px) {
    .loan-product-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .loan-product-card {
        padding: 20px;
    }
}


/* ===================================
   Finzigo App Introduction Styles
   =================================== */

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

.finzigo-content h2 {
    color: var(--headings-color);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.finzigo-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 30px;
}

.app-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.app-features .feature-item {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.9);
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.app-features .feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.app-features .feature-item i {
    color: var(--theme-color1);
    font-size: 20px;
    margin-right: 12px;
}

.app-features .feature-item span {
    font-weight: 600;
    color: var(--headings-color);
}

.app-stats {
    display: flex;
    gap: 30px;
    justify-content: flex-start;
}

.app-stats .stat-item {
    text-align: center;
}

.app-stats .stat-item h3 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    /* color: var(--theme-color1); */
    margin-bottom: 5px;
}

.app-stats .stat-item p {
    font-size: 14px;
    color: white;
    /* color: var(--text-color); */
    margin: 0;
}

.finzigo-app-showcase {
    text-align: center;
}

.app-mockup {
    max-width: 300px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    margin-bottom: 30px;
}

.download-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 160px;
}

.download-btn:hover {
    background: var(--theme-color1);
    color: #fff;
    transform: translateY(-2px);
}

.download-btn i {
    font-size: 24px;
    margin-right: 12px;
}

.download-btn .small-text {
    font-size: 10px;
    display: block;
    opacity: 0.8;
}

.download-btn .large-text {
    font-size: 14px;
    font-weight: 600;
    display: block;
}

/* ===================================
   Application Process Styles
   =================================== */

.application-process-section {
    background: #fff;
    padding: 80px 0;
}

.process-step-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.process-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--theme-color1), var(--theme-color7));
}

.process-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.step-number {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--theme-color1), var(--theme-color7));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.step-icon {
    margin-bottom: 20px;
}

.step-icon i {
    font-size: 48px;
    color: var(--theme-color1);
    background: linear-gradient(135deg, var(--theme-color1), var(--theme-color7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-step-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--headings-color);
    margin-bottom: 15px;
}

.process-step-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
}

/* ===================================
   Why Choose Finzigo Styles
   =================================== */

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

.feature-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.feature-card .icon {
    margin-bottom: 20px;
}

.feature-card .icon i {
    font-size: 48px;
    color: var(--theme-color1);
    background: linear-gradient(135deg, var(--theme-color1), var(--theme-color7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--headings-color);
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .app-features {
        grid-template-columns: 1fr;
    }
    
    .app-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .download-btn {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 767.98px) {
    .finzigo-content h2 {
        font-size: 28px;
    }
    
    .finzigo-content p {
        font-size: 16px;
    }
    
    .app-stats {
        gap: 20px;
    }
    
    .app-stats .stat-item h3 {
        font-size: 24px;
    }
    
    .process-step-card {
        padding: 25px 15px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
}


/* ===================================
   Enhanced Attractive Styles
   =================================== */

/* Gradient Button Styles */
.theme-btn.btn-style-one {
    background: linear-gradient(135deg, var(--theme-color1) 0%, var(--theme-color7) 50%, var(--theme-color1) 100%);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    border: none;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(79, 65, 210, 0.3);
    transition: all 0.3s ease;
}

.theme-btn.btn-style-one:hover {
    background: linear-gradient(135deg, var(--theme-color7) 0%, var(--theme-color1) 50%, var(--theme-color7) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 65, 210, 0.4);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Enhanced Finzigo Intro Section */
.finzigo-intro-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.finzigo-intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.finzigo-content h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.finzigo-content p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    line-height: 1.8;
}

.app-features .feature-item {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
}

.app-features .feature-item:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.app-features .feature-item i {
    color: #fff;
}

.app-features .feature-item span {
    color: #fff;
}

.app-stats .stat-item h3 {
    color: #fff;
    font-size: 32px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.app-stats .stat-item p {
    color: rgba(255,255,255,0.8);
}

/* Enhanced Loan Product Cards */
.loan-product-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: 1px solid #e9ecef;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.loan-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--theme-color1), var(--theme-color7));
}

.loan-product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.product-icon i {
    background: linear-gradient(135deg, var(--theme-color1), var(--theme-color7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 56px;
}

/* Enhanced Process Steps */
.process-step-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: 1px solid #e9ecef;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.process-step-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.step-number {
    background: linear-gradient(135deg, var(--theme-color1), var(--theme-color7));
    box-shadow: 0 3px 10px rgba(79, 65, 210, 0.3);
}

.step-icon i {
    background: linear-gradient(135deg, var(--theme-color1), var(--theme-color7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 56px;
}

/* Enhanced Feature Cards */
.feature-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: 1px solid #e9ecef;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--theme-color1), var(--theme-color7));
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.feature-card .icon i {
    background: linear-gradient(135deg, var(--theme-color1), var(--theme-color7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 56px;
}

/* Enhanced Download Buttons */
.download-btn {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: linear-gradient(135deg, var(--theme-color1), var(--theme-color7));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(79, 65, 210, 0.4);
}

/* Enhanced Section Backgrounds */
.why-choose-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(79,65,210,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

/* Enhanced Typography */
.sec-title h2 {
    background: linear-gradient(135deg, var(--theme-color1), var(--theme-color7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Enhanced Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.app-mockup {
    animation: float 3s ease-in-out infinite;
}

/* Enhanced Responsive Design */
@media (max-width: 991.98px) {
    .finzigo-content h2 {
        font-size: 32px;
    }
    
    .product-icon i,
    .step-icon i,
    .feature-card .icon i {
        font-size: 48px;
    }
}

@media (max-width: 767.98px) {
    .finzigo-content h2 {
        font-size: 28px;
    }
    
    .app-stats {
        gap: 15px;
    }
    
    .app-stats .stat-item h3 {
        font-size: 24px;
    }
}


/* Enhanced Gradient Button Styles */
.gradient-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
}

.gradient-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.gradient-btn:hover::before {
    left: 100%;
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-icon {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.gradient-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Enhanced Card Hover Effects */
.loan-product-card:hover .product-icon i {
    animation: pulse 1s ease-in-out;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Enhanced Section Headers */
.sec-title .sub-title {
  color: gray;
    /* background: linear-gradient(135deg, var(--theme-color1), var(--theme-color7)); */
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    background-clip: text;
    font-weight: 600;
}

/* Enhanced Product Details */
.product-details p {
    background: linear-gradient(135deg, var(--theme-color1), var(--theme-color7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.product-details strong {
    color: var(--headings-color);
    font-weight: 700;
}

/* Enhanced Benefits List */
.product-benefits li {
    position: relative;
    padding-left: 25px;
}

.product-benefits li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--theme-color1);
    font-weight: bold;
    font-size: 16px;
    background: linear-gradient(135deg, var(--theme-color1), var(--theme-color7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced Stats Animation */
.app-stats .stat-item {
    transition: all 0.3s ease;
}

.app-stats .stat-item:hover {
    transform: scale(1.1);
}

/* Enhanced Feature Cards Animation */
.feature-card:hover .icon i {
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Enhanced Process Steps */
.process-step-card:hover .step-icon i {
    animation: rotate 0.6s ease;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced Download Buttons */
.download-btn {
    position: relative;
    overflow: hidden;
}

.download-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.download-btn:hover::after {
    left: 100%;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 767.98px) {
    .gradient-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .btn-text {
        font-size: 12px;
    }
}


/* ===================================
   Contact Page Enhanced Styles
   =================================== */

/* Enhanced Contact Details Blocks */
.contact-details-block {
    transition: all 0.3s ease;
}

.contact-details-block .inner-box {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    text-align: center;
}

.contact-details-block .inner-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.contact-details-block .icon {
    margin-bottom: 20px;
}

.contact-details-block .icon i {
    font-size: 48px;
    color: var(--theme-color1);
    background: linear-gradient(135deg, var(--theme-color1), var(--theme-color7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-details-block .title {
    font-size: 20px;
    font-weight: 600;
    color: var(--headings-color);
    margin-bottom: 15px;
}

.contact-details-block .text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
}

.contact-details-block .text a {
    color: var(--theme-color1);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details-block .text a:hover {
    color: var(--theme-color7);
}

/* Enhanced Loan Application Form */
.loan-application-form {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.loan-application-form .form-group {
    margin-bottom: 25px;
}

.loan-application-form label {
    font-weight: 600;
    color: var(--headings-color);
    margin-bottom: 8px;
    display: block;
}

.loan-application-form .input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.loan-application-form .input-group i {
    position: absolute;
    left: 15px;
    color: var(--theme-color1);
    font-size: 16px;
    z-index: 2;
}

.loan-application-form .form-control {
    border: 1px solid gray;
    border-radius: 10px;
    padding: 12px 15px 12px 45px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fff;
}
.loan-application-form .form-control nice-select  {
    border: 1px solid gray;
    border-radius: 10px;
    padding: 5px 5px 5px 5px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fff;
}
.loan-application-form .form-control:focus {
    border-color: var(--theme-color1);
    box-shadow: 0 0 0 3px rgba(79, 65, 210, 0.1);
    outline: none;
}

.loan-application-form select.form-control {
    background-image: url('data:image/svg+xml;utf8,<svg fill="%234f41d2" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    padding-right: 45px;
}

.loan-application-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Checkbox Styling */
.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
}

.checkbox-wrapper input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--theme-color1);
}

.checkbox-wrapper label {
    font-size: 14px;
    color: var(--text-color);
    margin: 0;
    line-height: 1.4;
}

.checkbox-wrapper a {
    color: var(--theme-color1);
    text-decoration: none;
    font-weight: 600;
}

.checkbox-wrapper a:hover {
    color: var(--theme-color7);
}

/* Enhanced Google Map */
.google-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 30px;
}

.google-map iframe {
    width: 100%;
    height: 300px;
    border: none;
}

/* Enhanced Section Headers */
.contact-details .sec-title h2 {
    background: linear-gradient(135deg, var(--theme-color1), var(--theme-color7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .loan-application-form {
        padding: 30px 25px;
    }
    
    .contact-details-block .inner-box {
        padding: 25px 20px;
    }
}

@media (max-width: 767.98px) {
    .loan-application-form {
        padding: 25px 20px;
    }
    
    .contact-details-block .icon i {
        font-size: 40px;
    }
    
    .contact-details-block .title {
        font-size: 18px;
    }
    
    .google-map iframe {
        height: 250px;
    }
}

/* Enhanced Form Validation */
.loan-application-form .form-control:invalid {
    /* border-color: #dc3545; */
    border: 1px solid gray;
}

.loan-application-form .form-control:valid {
    /* border-color: #28a745; */
    border: 1px solid gray;
}

/* Enhanced Button Animation */
.loan-application-form .gradient-btn {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
}

/* Enhanced Contact Info Animation */
.contact-details-block:hover .icon i {
    animation: pulse 1s ease-in-out;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}


/* ===================================
   Simple & Attractive Contact Cards
   =================================== */

.contact-info-section {
    margin-bottom: 60px;
}

.contact-info-cards {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.contact-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--theme-color1), var(--theme-color7));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.contact-card .card-icon {
    margin-bottom: 20px;
}

.contact-card .card-icon i {
    font-size: 40px;
    color: var(--theme-color1);
    background: linear-gradient(135deg, var(--theme-color1), var(--theme-color7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.contact-card:hover .card-icon i {
    transform: scale(1.1);
}

.contact-card .card-content h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--headings-color);
    margin-bottom: 12px;
    margin-top: 0;
}

.contact-card .card-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
}

.contact-card .card-content a {
    color: var(--theme-color1);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-card .card-content a:hover {
    color: var(--theme-color7);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .contact-info-cards {
        padding: 30px 25px;
    }
    
    .contact-card {
        padding: 25px 15px;
    }
}

@media (max-width: 767.98px) {
    .contact-info-cards {
        padding: 25px 20px;
    }
    
    .contact-card {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .contact-card .card-icon i {
        font-size: 35px;
    }
    
    .contact-card .card-content h5 {
        font-size: 16px;
    }
}
