﻿/* ===== PAGE TITLE (Same Red Gradient Style) ===== */
.seo-content {
    max-width: 95%;
    margin: 10px auto;
    padding: 10px 10px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

    /* Headings */
    .seo-content h1 {
        font-size: 28px;
        color: #1f2937;
        margin-bottom: 15px;
        border-left: 5px solid #2563eb; /* Blue accent */
        padding-left: 12px;
    }

    .seo-content h2 {
        font-size: 22px;
        color: #111827;
        margin-top: 10px;
        margin-bottom: 12px;
    }

    /* Paragraph text */
    .seo-content p {
        font-size: 16px;
        line-height: 1.75;
        color: #374151;
        margin-bottom: 14px;
    }

/* Highlight keywords */
.seo-highlight {
    color: #2563eb;
    font-weight: 600;
}

.banking-hero {
    background: linear-gradient(135deg,#004aad,#007bff);
    color: white;
    text-align: center;
    padding: 28px 20px;
}

    .banking-hero h1 {
        margin: 0;
        font-size: 30px;
    }

    .banking-hero p {
        margin-top: 10px;
        font-size: 16px;
        opacity: 0.95;
    }

/* ===== INTRO SECTION (Using Your Existing Style) ===== */
.banking-intro {
    background: #fafafa;
    border-left: 4px solid #b11226;
    padding: 10px;
    margin: 20px auto;
    border-radius: 12px;
    max-width: 95%;
}

    .banking-intro p {
        font-size: 15.5px;
        line-height: 1.7;
        color: #333;
    }

/* ===== SERVICES GRID (Reusing Your Grid System) ===== */
.banking-services {
    max-width: 95%;
    margin: auto;
    background: #f9fafb;
    padding: 30px;
    border-radius: 12px;
}

    .banking-services h2 {
        text-align: center;
        color: #c4161c;
        margin-bottom: 25px;
    }

/* Reuse .services-grid if already exists */
.banking-grid {
    display: grid;
    /*grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));*/
    grid-template-columns: repeat(4, 1fr); /* 🔥 Force 4 cards */
    gap: 10px;
    padding: 10px 0;
}

/* ===== SERVICE CARD (Aligned With Your Existing Card) ===== */
.banking-card {
    background: #ffffff;
    padding: 20px 22px;
    border-radius: 12px;
    border: 1px solid #d1d5db;
    box-shadow: 0 6px 16px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

    /* Accent Bar – Brand Red Instead of Blue */
    .banking-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 5px;
        height: 100%;
        background: #c4161c;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .banking-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 26px rgba(0,0,0,0.14);
        border-color: #fca5a5;
    }

        .banking-card:hover::before {
            opacity: 1;
        }

    .banking-card h3 {
        margin: 0;
        font-size: 18px;
        font-weight: 600;
        color: #1f2937;
    }

    .banking-card p {
        margin: 10px 0;
        font-size: 14.5px;
        color: #6b7280;
        flex-grow: 1;
    }

/* ===== BENEFITS SECTION ===== */
.banking-benefits {
    background: #ffffff;
    padding: 35px 20px;
    margin-top: 30px;
}

    .banking-benefits h2 {
        text-align: center;
        color: #c4161c;
        margin-bottom: 25px;
    }

    .banking-benefits ul {
        max-width: 95%;
        margin: auto;
        padding-left: 20px;
    }

        .banking-benefits ul li {
            margin-bottom: 8px;
            font-size: 14.5px;
            color: #374151;
        }

/* ===== FAQ SECTION ===== */
.banking-faq {
    max-width: 95%;
    margin: 40px auto;
    padding: 20px;
}

    .banking-faq h2 {
        text-align: center;
        color: #c4161c;
        margin-bottom: 25px;
    }

.faq-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 14px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

    .faq-item h3 {
        margin: 0;
        font-size: 15px;
        color: #b11226;
    }

    .faq-item p {
        margin-top: 6px;
        font-size: 14px;
        color: #4b5563;
    }

/* ===== CTA SECTION ===== */
.banking-cta {
    background: linear-gradient(135deg,#004aad,#007bff);
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin-top: 30px;
}

    .banking-cta h2 {
        margin-bottom: 12px;
    }

.banking-btn {
    display: inline-block;
    background: #ffffff;
    color: #c4161c;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .banking-btn:hover {
        background: #fef2f2;
        transform: translateY(-2px);
    }

/* ===== MOBILE OPTIMIZATION ===== */
@media (max-width: 768px) {

    .banking-hero h1 {
        font-size: 24px;
    }

    .banking-card {
        padding: 18px;
    }

    .banking-intro {
        margin: 20px;
    }
}



/* Desktop to Tablet (Switch to 3 columns) */
@media (max-width: 1200px) {
    .banking-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet to Large Mobile (Switch to 2 columns) */
@media (max-width: 900px) {
    .banking-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small Mobile (Switch to 1 column) */
@media (max-width: 600px) {
    .banking-grid {
        grid-template-columns: 1fr;
    }    
}

.service-details-container {
    max-width: 95%;
    margin: 40px auto;
}

    .service-details-container h1 {
        color: #c4161c;
        margin-bottom: 20px;
    }

.service-description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-cta {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}
.breadcrumb {
    max-width: 95%;
    margin: 20px auto;
    font-size: 14px;
}

    .breadcrumb a {
        color: #c4161c;
        text-decoration: none;
    }

    .breadcrumb span {
        font-weight: bold;
        color: #333;
    }

    /* ===============================
   SERVICE DETAIL LINK
================================ */
.service-detail-link {
    text-decoration: none;
    color: #c4161c;
    font-weight: 700;
    position: relative;
    transition: color 0.3s ease;
}

/* Underline animation */
.service-detail-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #c4161c;
    transition: width 0.3s ease;
}

/* Hover effect */
.service-detail-link:hover {
    color: #a30f15;
}

.service-detail-link:hover::after {
    width: 100%;
}
/* Align the link with the existing website design */
.website-link {
    margin-top: 20px; /* Adds space above the link */
    text-align: center; /* Centers the link */
}

    .website-link a {
        font-size: 16px; /* Sets font size */
        color: #c4161c; /* Uses primary red color */
        font-weight: bold; /* Makes the link text bold */
        text-decoration: none; /* Removes the underline for a clean look */
        transition: color 0.3s ease; /* Smooth color change on hover */
    }

        .website-link a:hover {
            color: #b11226; /* Hover color (darker red) */
            text-decoration: underline; /* Adds underline on hover for interactivity */
        }