* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    background: #f5f7fb;
}

/* ================= NAVBAR ================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 1%;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 114px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a73e8;
    flex-shrink: 0;
    width: 22%;

}

.brandlogo{
    width: 87%;
}

/* Nav Menu - Desktop */
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.nav-link i {
    font-size: 10px;
    transition: transform 0.3s;
}

.nav-item:hover > .nav-link {
    color: #1a73e8;
}

.nav-item:hover > .nav-link i {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
}

.nav-item:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 10px);
}

.nav-item:focus-within > .dropdown {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 10px);
}

.dropdown li {
    position: relative;
}

.dropdown > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.dropdown > li > a:hover {
    background: #f5f7fb;
    color: #1a73e8;
}

.dropdown > li > a i {
    font-size: 10px;
}

/* Sub Dropdown */
.sub-dropdown {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 200px;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    list-style: none;
    margin-left: 5px;
}

.dropdown-item:hover > .sub-dropdown {
    opacity: 1;
    visibility: visible;
    left: calc(100% + 5px);
}

.dropdown-item:focus-within > .sub-dropdown {
    opacity: 1;
    visibility: visible;
    left: calc(100% + 5px);
}

.sub-dropdown li a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.sub-dropdown li a:hover {
    background: #f5f7fb;
    color: #1a73e8;
}

/* Desktop Extras */
.desktop-extras {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.expert-top {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f0fe;
    padding: 8px 16px;
    border-radius: 30px;
    color: #1a73e8;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
    text-decoration: none;
}

.expert-top:hover {
    background: #1a73e8;
    color: #fff;
    transform: scale(1.05);
}

.sign-btn {
    padding: 8px 20px;
    border: 2px solid #1a73e8;
    background: transparent;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    color: #1a73e8;
    font-size: 14px;
    transition: all 0.3s;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

.sign-btn:hover {
    background: #1a73e8;
    color: #fff;
}

/* Mobile Only Item */
.mobile-only-item {
    display: none;
}

/* ========================= */
/* Responsive Design */
/* ========================= */

@media (max-width: 1130px) {
    .nav-menu {
        gap: 20px;
    }

    .nav-link {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 15px 4%;
    }

    .logo {
        font-size: 20px;
    }
}

/* ================= HERO ================= */

.hero {
    position: relative;
    overflow: hidden;
}

.slider {
    display: flex;
    transition: 0.6s ease-in-out;
    width: 100%;
}

.slide {
    min-width: 100%;
    min-height: calc(100vh - 70px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 8%;
}

/* Different slide backgrounds */
.slide:nth-child(1) {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #fff;
}

.slide:nth-child(2) {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: #fff;
}

.slide:nth-child(3) {
    background: linear-gradient(135deg, #11998e, #38ef7d);
    color: #fff;
}

/* LEFT TEXT */
.slide-text {
    max-width: 550px;
    animation: fadeUp 1s ease;
}

.slide-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.slide-text p {
    margin-bottom: 30px;
    font-size: 18px;
    opacity: 0.9;
}

.slider-apply {
    padding: 14px 35px;
    background: #ffcc00;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    color: #000;
}

/* RIGHT BIG CARD */
.promo-card {
    width: 420px;
    height: auto;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    color: #333;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.promo-card h3 {
    margin-bottom: 10px;
}

.promo-card h2 {
    font-size: 42px;
    color: #1a73e8;
}

.promo-card button,
.promo-card .promo-card-btn {
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    background: #1a73e8;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

/* DOTS */
.dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background: #ccc;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: #1a73e8;
    transform: scale(1.2);
}

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

/* Responsive */
@media (max-width: 900px) {
    .slide {
        flex-direction: column;
        text-align: center;
    }
    .promo-card {
        margin-top: 30px;
    }
    .slide-text h1 {
        font-size: 32px;
    }
}

/* Hero Slider Responsive */
@media (max-width: 768px) {
    .slide {
        min-height: 400px;
        padding: 40px 5%;
    }
    .slide-text h1 {
        font-size: 26px;
    }
    .slide-text p {
        font-size: 16px;
    }
    .promo-card {
        width: 100%;
        max-width: 320px;
        height: auto;
        padding: 20px;
    }
    .promo-card h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .slide {
        min-height: 350px;
        padding: 30px 4%;
    }
    .slide-text h1 {
        font-size: 22px;
    }
    .slide-text button {
        padding: 12px 28px;
        font-size: 14px;
    }
    .promo-card {
        padding: 15px;
    }
    .promo-card h2 {
        font-size: 28px;
    }
    .promo-card button {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* ================= SERVICES GRID SECTION ================= */
.services-grid-section {
    padding: 80px 8%;
    background: #f5f7fb;
}

.services-grid-section h2 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: #1f2d3d;
}

.services-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 16px;
    margin-bottom: 50px;
}

.services-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.service-grid-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    color: #333;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-grid-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(26, 115, 232, 0.15);
    border-color: #1a73e8;
}

.service-grid-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.service-grid-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f2d3d;
}

.service-grid-card p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

@media (max-width: 1200px) {
    .services-card-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }
}

@media (max-width: 768px) {
    .services-grid-section {
        padding: 60px 5%;
    }
    .services-grid-section h2 {
        font-size: 26px;
    }
    .services-subtitle {
        font-size: 14px;
        margin-bottom: 35px;
    }
    .services-card-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 15px;
    }
    .service-grid-card {
        padding: 25px 15px;
    }
    .service-grid-icon {
        font-size: 40px;
    }
    .service-grid-card h3 {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .services-grid-section {
        padding: 50px 4%;
    }
    .services-grid-section h2 {
        font-size: 22px;
    }
    .services-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .service-grid-card {
        padding: 20px 12px;
    }
    .service-grid-icon {
        font-size: 36px;
        margin-bottom: 12px;
    }
    .service-grid-card h3 {
        font-size: 13px;
        margin-bottom: 5px;
    }
    .service-grid-card p {
        font-size: 11px;
    }
}

/* LBCALC — Smart EMI Calculator Section (Home Page only) */
.lbcalc-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, #f0f6ff 0%, #e8f4f8 50%, #f5f7fb 100%);
    font-family: "Poppins", sans-serif;
}

.lbcalc-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.lbcalc-header {
    text-align: center;
    margin-bottom: 40px;
}

.lbcalc-header h2 {
    font-size: 34px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.lbcalc-header p {
    font-size: 16px;
    color: #64748b;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

.lbcalc-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.lbcalc-tab {
    padding: 12px 28px;
    border: 2px solid #1a73e8;
    border-radius: 50px;
    background: transparent;
    color: #1a73e8;
    font-size: 15px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lbcalc-tab:hover {
    background: #e8f0fe;
}

.lbcalc-tab.active {
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(26, 115, 232, 0.35);
}

.lbcalc-body {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.lbcalc-left {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.07);
}

.lbcalc-field {
    margin-bottom: 32px;
}

.lbcalc-field:last-of-type {
    margin-bottom: 28px;
}

.lbcalc-field-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.lbcalc-field-label {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
}

.lbcalc-field-value {
    font-size: 15px;
    font-weight: 700;
    color: #1a73e8;
    background: #e8f0fe;
    padding: 4px 14px;
    border-radius: 20px;
    min-width: 90px;
    text-align: center;
}

.lbcalc-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    background: linear-gradient(to right, #1a73e8 0%, #e2e8f0 0%);
    transition: background 0.1s ease;
}

.lbcalc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(26, 115, 232, 0.45);
    transition: transform 0.2s ease;
    border: 2px solid #ffffff;
}

.lbcalc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.lbcalc-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    cursor: pointer;
    border: 2px solid #ffffff;
    box-shadow: 0 3px 10px rgba(26, 115, 232, 0.45);
}

.lbcalc-summary-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 2px dashed #e2e8f0;
}

.lbcalc-summary-item {
    flex: 1;
    min-width: 90px;
    background: #f8fafc;
    border-radius: 12px;
    padding: 14px 10px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.lbcalc-summary-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.lbcalc-summary-val {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
}

.lbcalc-interest-color {
    color: #dc2626;
}

.lbcalc-right {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.lbcalc-emi-box {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    color: #fff;
    box-shadow: 0 15px 40px rgba(26, 115, 232, 0.35);
    position: relative;
    overflow: hidden;
}

.lbcalc-emi-box::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -20%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    pointer-events: none;
}

.lbcalc-emi-label {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 10px;
    font-weight: 500;
}

.lbcalc-emi-amount {
    font-size: 46px;
    font-weight: 800;
    margin: 0 0 8px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.lbcalc-emi-sublabel {
    font-size: 13px;
    opacity: 0.7;
    margin: 0;
}

.lbcalc-donut-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.lbcalc-donut {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: conic-gradient(#1a73e8 0% 60%, #dc2626 60% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lbcalc-donut-hole {
    position: absolute;
    width: 94px;
    height: 94px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.lbcalc-donut-hole span {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #dc2626;
    line-height: 1.2;
    font-family: "Poppins", sans-serif;
}

.lbcalc-donut-hole small {
    font-size: 10px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lbcalc-donut-legend {
    display: flex;
    gap: 24px;
}

.lbcalc-legend-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: #475569;
    font-weight: 500;
}

.lbcalc-legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    flex-shrink: 0;
}

.lbcalc-dot-principal {
    background: #1a73e8;
}
.lbcalc-dot-interest {
    background: #dc2626;
}

.lbcalc-apply-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #2e7d32, #43a047);
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.35);
}

.lbcalc-apply-btn:hover {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.45);
    color: #fff;
}

@media (max-width: 1024px) {
    .lbcalc-body {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .lbcalc-section {
        padding: 60px 4%;
    }
    .lbcalc-header h2 {
        font-size: 26px;
    }
    .lbcalc-body {
        flex-direction: column;
    }
    .lbcalc-left,
    .lbcalc-right {
        min-width: unset;
        width: 100%;
    }
    .lbcalc-left {
        padding: 25px 20px;
    }
    .lbcalc-emi-amount {
        font-size: 36px;
    }
    .lbcalc-tab {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .lbcalc-section {
        padding: 50px 3%;
    }
    .lbcalc-header h2 {
        font-size: 22px;
    }
    .lbcalc-summary-row {
        flex-direction: column;
    }
    .lbcalc-emi-amount {
        font-size: 30px;
    }
    .lbcalc-tabs {
        gap: 8px;
    }
    .lbcalc-tab {
        padding: 9px 16px;
        font-size: 13px;
    }
}

.investment-section {
    padding: 100px 8%;
    background: linear-gradient(135deg, #f9fbff, #eef3ff);
}

.investment-section h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.invest-card {
    position: relative;
    background: #fff;
    padding: 40px 25px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transition: 0.35s ease;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.invest-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.invest-card .icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.invest-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a2e;
}

.invest-card p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Badges */
.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
    color: #fff;
    white-space: nowrap;
}

/* Badge Colors */
.green {
    background: linear-gradient(135deg, #00c853, #69f0ae);
}
.blue {
    background: linear-gradient(135deg, #2962ff, #82b1ff);
}
.orange {
    background: linear-gradient(135deg, #ff6d00, #ffab40);
}
.teal {
    background: linear-gradient(135deg, #009688, #4db6ac);
}
.purple {
    background: linear-gradient(135deg, #6a1b9a, #ba68c8);
}

/* Tablet - 3 cards per row */
@media (max-width: 1024px) {
    .investment-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .invest-card {
        padding: 30px 20px;
    }

    .invest-card .icon {
        font-size: 42px;
        margin-bottom: 16px;
    }

    .invest-card h3 {
        font-size: 16px;
    }
}

/* Mobile - EXACTLY 2 cards per row */
@media (max-width: 768px) {
    .investment-section {
        padding: 60px 5%;
    }

    .investment-section h2 {
        font-size: 26px;
        margin-bottom: 35px;
    }

    .investment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .invest-card {
        padding: 24px 16px;
        border-radius: 18px;
    }

    .invest-card .icon {
        font-size: 38px;
        margin-bottom: 14px;
    }

    .invest-card h3 {
        font-size: 15px;
        margin-bottom: 6px;
        line-height: 1.3;
    }

    .invest-card p {
        font-size: 13px;
        line-height: 1.3;
    }

    .badge {
        top: 10px;
        left: 10px;
        padding: 5px 10px;
        font-size: 10px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .investment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .invest-card {
        padding: 20px 12px;
        border-radius: 16px;
    }

    .invest-card .icon {
        font-size: 34px;
        margin-bottom: 12px;
    }

    .invest-card h3 {
        font-size: 14px;
    }

    .invest-card p {
        font-size: 12px;
    }

    .badge {
        top: 8px;
        left: 8px;
        padding: 4px 8px;
        font-size: 9px;
    }
}

.featured-products {
    padding: 120px 8%;
    background: linear-gradient(135deg, #f9fbff, #eef3ff);
}

.section-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 80px;
}

.product-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 100px;
}

.product-row.reverse {
    flex-direction: row-reverse;
}

.product-content {
    flex: 1;
}

.product-content h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.product-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.product-content li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
}

.product-content li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ff3d7f;
    font-weight: bold;
}

.know-more {
    color: #2962ff;
    font-weight: 600;
    text-decoration: none;
}

/* CARD VISUAL */

.card-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.credit-card {
    width: 280px;
    height: 170px;
    border-radius: 20px;
    padding: 25px;
    color: #fff;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    transform: rotate(-15deg);
    transition: 0.4s ease;
}

.card-visual:hover .credit-card {
    transform: rotate(0deg) scale(1.05);
}

.green-card .credit-card {
    background: linear-gradient(135deg, #00897b, #26c6da);
}

.dark-card .credit-card {
    background: radial-gradient(circle at center, #5e35b1, #000);
}

.chip {
    width: 40px;
    height: 30px;
    background: gold;
    border-radius: 6px;
    margin-bottom: 40px;
}

.credit-card h3 {
    letter-spacing: 4px;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 900px) {
    .featured-products {
        padding: 50px 5%;
    }

    .product-row {
        flex-direction: column;
        text-align: center;
    }

    .product-row.reverse {
        flex-direction: column;
        margin-bottom: 20px;
    }

    .credit-card {
        transform: rotate(0);
    }
}

.heroes-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8fbff, #eef3f9);
    text-align: center;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e293b;
}

.section-title span {
    color: #2563eb;
}

.product-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 100px;
}

.product-row.reverse {
    flex-direction: row-reverse;
}

.product-content {
    flex: 1;
}

.product-content h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.product-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.product-content li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
}

.product-content li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ff3d7f;
    font-weight: bold;
}

.know-more {
    color: #2962ff;
    font-weight: 600;
    text-decoration: none;
}

/* CARD VISUAL */

.card-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.credit-card {
    width: 280px;
    height: 170px;
    border-radius: 20px;
    padding: 25px;
    color: #fff;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    transform: rotate(-15deg);
    transition: 0.4s ease;
}

.card-visual:hover .credit-card {
    transform: rotate(0deg) scale(1.05);
}

.green-card .credit-card {
    background: linear-gradient(135deg, #00897b, #26c6da);
}

.dark-card .credit-card {
    background: radial-gradient(circle at center, #5e35b1, #000);
}

.chip {
    width: 40px;
    height: 30px;
    background: gold;
    border-radius: 6px;
    margin-bottom: 40px;
}

.credit-card h3 {
    letter-spacing: 4px;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 900px) {
    .product-row {
        flex-direction: column;
        text-align: center;
    }

    .product-row.reverse {
        flex-direction: column;
    }

    .credit-card {
        transform: rotate(0);
    }
}

.heroes-section {
    padding: 80px 8%;
    background: linear-gradient(135deg, #f8fbff, #eef3f9);
    text-align: center;
}

.heroes-section .section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e293b;
}

.heroes-section .section-title span {
    color: #2563eb;
}

.heroes-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.hero-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    flex: 0 0 calc(25% - 18px);
    box-sizing: border-box;
}

.hero-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.12);
}

.hero-card h4 {
    margin-top: 15px;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
}

.hero-card p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

.hero-card .icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
}

.heroes-section .icon.armed {
    background: linear-gradient(135deg, #16a34a, #22c55e);
}

.heroes-section .icon.doctors {
    background: linear-gradient(135deg, #0ea5e9, #3b82f6);
}

.heroes-section .icon.govt {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.heroes-section .icon.women {
    background: linear-gradient(135deg, #ec4899, #f43f5e);
}

/* Tablet - 4 cards per row */
@media (max-width: 1024px) {
    .heroes-grid {
        gap: 20px;
    }

    .hero-card {
        flex: 0 0 calc(25% - 15px);
        padding: 30px 20px;
    }
}

/* Mobile - EXACTLY 2 cards per row */
@media (max-width: 768px) {
    .heroes-section {
        padding: 60px 5%;
    }

    .heroes-section .section-title {
        font-size: 24px;
        margin-bottom: 35px;
    }

    .heroes-grid {
        gap: 16px;
    }

    .hero-card {
        flex: 0 0 calc(50% - 8px);
        padding: 24px 16px;
        border-radius: 18px;
    }

    .hero-card .icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .hero-card h4 {
        font-size: 15px;
        margin-top: 12px;
        margin-bottom: 6px;
    }

    .hero-card p {
        font-size: 12px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .heroes-grid {
        gap: 12px;
    }

    .hero-card {
        flex: 0 0 calc(50% - 6px);
        padding: 20px 12px;
        border-radius: 16px;
    }

    .hero-card .icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .hero-card h4 {
        font-size: 14px;
    }

    .hero-card p {
        font-size: 11px;
    }
}

/* ===== Stats Section ===== */

.stats-section-modern {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 90px 20px 120px;
    color: #fff;
    text-align: center;
    position: relative;
}

.stats-header h2 {
    font-size: 34px;
    font-weight: 700;
}

.stats-header p {
    margin-top: 10px;
    color: #cbd5e1;
}

.stats-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 18px;
    backdrop-filter: blur(8px);
    transition: 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
}

.stat-box h3 {
    font-size: 32px;
    font-weight: 700;
    color: #4ade80;
}

.stat-box p {
    margin-top: 10px;
    color: #cbd5e1;
}

/* ===== Bank Logo Slider ===== */

.bank-slider-section {
    background: #f8fafc;
    padding: 16px 0;
    margin-top: -70px;
}

.slider-wrapper {
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    gap: 60px;
    animation: scroll 25s linear infinite;
    align-items: center;
}

.slider-track img {
    height: 45px;
    opacity: 0.7;
    transition: 0.3s ease;
}

.slider-track img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Infinite animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .stats-header h2 {
        font-size: 24px;
    }

    .stat-box h3 {
        font-size: 24px;
    }

    .slider-track {
        gap: 40px;
    }
}

.testimonial-section {
    padding: 90px 20px;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
}

.section-header p {
    color: #64748b;
    margin-top: 10px;
}

.testimonial-wrapper {
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s ease;
    gap: 30px;
}

.testimonial-card {
    min-width: 350px;
    background: #ffffff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.review {
    font-size: 15px;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 25px;
}

.user-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.user-left h4 {
    margin: 0;
    font-size: 15px;
}

.user-left span {
    font-size: 12px;
    color: #64748b;
}

.stars {
    color: #fbbf24;
    font-size: 16px;
}

.slider-controls {
    margin-top: 30px;
    text-align: center;
}

.slider-controls button {
    border: none;
    background: #e2e8f0;
    padding: 10px 15px;
    margin: 0 8px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s ease;
}

.slider-controls button:hover {
    background: #2563eb;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-card {
        min-width: 280px;
    }
}

.footer-modern {
    background: linear-gradient(135deg, #0f172a, #111827);
    color: #cbd5e1;
    font-family: "Inter", sans-serif;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* Top Section */
.footer-top {
    padding: 70px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-logo {
    font-size: 24px;
    color: #ffffff;
    font-weight: 700;
}

.footer-desc {
    margin-top: 15px;
    line-height: 1.6;
    font-size: 14px;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 18px;
    font-size: 15px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

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

.footer-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-col ul li a:hover {
    color: #3b82f6;
    padding-left: 5px;
}

/* App Buttons */
.app-buttons img {
    width: 140px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: 0.3s ease;
}

.app-buttons img:hover {
    transform: scale(1.05);
}

/* Middle Section */
.footer-middle {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
}

.middle-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-links a {
    margin-right: 20px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: #3b82f6;
}

.social-icons a {
    margin-left: 12px;
    color: #94a3b8;
    font-size: 16px;
    transition: 0.3s ease;
}

.social-icons a:hover {
    color: #3b82f6;
}

/* Bottom */
.footer-bottom {
    padding: 35px 0;
}

.bottom-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.payment-title {
    font-size: 13px;
    margin-bottom: 10px;
    color: #94a3b8;
}

.payment-icons img {
    height: 35px;
    margin-right: 10px;
    background: #fff;
    padding: 5px 10px;
    border-radius: 6px;
}

copyright {
    text-align: center;
}

.footer-bottom .copyright {
    text-align: center;
    margin-top: 25px;
    font-size: 13px;
    color: #64748b;
}

.emi-section {
    padding: 80px 8%;
    background: linear-gradient(135deg, #f4f7fb, #eef2f7);
    font-family: "Poppins", sans-serif;
}

.emi-container {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* LEFT CARD */
.emi-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 20px;
    width: 420px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
}

.emi-small-title {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 5px;
}

.emi-card h2 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #1f2d3d;
}

/* Fields */
.emi-field {
    margin-bottom: 25px;
}

.emi-label {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 500;
}

.emi-label .value {
    color: #2e7d32;
    font-weight: 600;
}

input[type="range"] {
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: #dfe6ed;
    outline: none;
    appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    background: #2e7d32;
    border-radius: 50%;
    cursor: pointer;
}

/* EMI Result Box */
/* .emi-result {
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    margin-top: 30px;
} */

/* .emi-result h3 {
    font-size: 28px;
    margin: 10px 0 20px;
} */

.apply-btn {
    background: white;
    color: #2e7d32;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.apply-btn:hover {
    background: #f1f1f1;
}

/* RIGHT SIDE */
.emi-content {
    max-width: 500px;
}

.emi-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1f2d3d;
}

.emi-content p {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 30px;
}

.emi-links {
    border-left: 4px solid #2e7d32;
    padding-left: 20px;
}

.emi-link {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 10px;
    transition: 0.3s;
}

.emi-link.active {
    background: #f0f9f2;
}

.emi-link h4 {
    margin-bottom: 5px;
    color: #1f2d3d;
}

.emi-link p {
    font-size: 14px;
    color: #6c757d;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .emi-container {
        flex-direction: column;
        text-align: center;
    }

    .emi-card {
        width: 100%;
    }

    .emi-content {
        max-width: 100%;
    }
}

.cc-section {
    padding: 90px 8%;
    background: linear-gradient(135deg, #f6f9fc, #edf3f9);
    font-family: "Poppins", sans-serif;
}

.cc-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

/* LEFT CONTENT */
.cc-content {
    flex: 1;
    max-width: 550px;
}

.tag {
    display: inline-block;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.cc-content h2 {
    font-size: 36px;
    color: #1f2d3d;
    margin-bottom: 20px;
}

.cc-content p {
    color: #6c757d;
    margin-bottom: 35px;
    line-height: 1.7;
}

/* FORM CARD */
.cc-form-card {
    background: white;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.07);
}

.cc-field {
    margin-bottom: 20px;
}

.cc-field label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 500;
}

.cc-field select {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #dfe6ed;
    font-size: 14px;
    transition: 0.3s;
}

.cc-field select:focus {
    border-color: #2e7d32;
    outline: none;
}

.cc-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 10px;
    margin-top: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.cc-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(46, 125, 50, 0.3);
}

.small-text {
    margin-top: 15px;
    font-size: 14px;
    color: #6c757d;
}

.small-text a {
    color: #2e7d32;
    font-weight: 600;
    text-decoration: none;
}

/* RIGHT IMAGE */
.cc-image {
    flex: 1;
    position: relative;
    text-align: center;
}

.image-bg {
    /*   position: absolute; */
    width: 320px;
    height: 320px;
    /* background: linear-gradient(135deg, #2e7d32, #66bb6a); */
    border-radius: 50% 40% 60% 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.cc-image img {
    position: relative;
    width: 350px;
    z-index: 2;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .image-bg {
        height: auto;
    }

    .cc-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .cc-content h2 {
        font-size: 28px;
    }

    .cc-image img {
        width: 280px;
    }
}

.info-section {
    padding: 90px 8%;
    background: #f5f8fc;
    font-family: "Poppins", sans-serif;
}

.info-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

/* CARD BASE */
.info-card {
    flex: 1;
    min-width: 320px;
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    transition: 0.4s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.1);
}

/* Highlight Card (Second One) */
.info-card.highlight {
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: white;
}

.info-card.highlight p {
    color: rgba(255, 255, 255, 0.9);
}

/* IMAGE */
.info-image {
    margin-bottom: 25px;
}

.info-image img {
    width: 100%;
    max-width: 250px;
}

/* TEXT */
.info-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.info-content p {
    color: #6c757d;
    margin-bottom: 30px;
    line-height: 1.6;
}

.info-card.highlight .info-content p {
    color: rgba(255, 255, 255, 0.85);
}

/* BUTTON */
.info-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: #2e7d32;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.info-btn:hover {
    background: #1b5e20;
}

.info-btn span {
    transition: 0.3s;
}

.info-btn:hover span {
    transform: translateX(5px);
}

/* White Button for Highlight Card */
.info-btn.light {
    background: white;
    color: #2e7d32;
}

.info-btn.light:hover {
    background: #f1f1f1;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .info-container {
        flex-direction: column;
    }

    .info-card {
        text-align: center;
    }

    .info-image img {
        margin: 0 auto;
    }
}

.partners-section {
    padding: 90px 8%;
    background: #f6f9fc;
    font-family: "Poppins", sans-serif;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.sub-title {
    color: #2e7d32;
    font-weight: 600;
    font-size: 14px;
}

.section-header h2 {
    font-size: 32px;
    margin-top: 10px;
}

/* TABS */
.tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.tab {
    padding: 10px 22px;
    border-radius: 50px;
    border: 1px solid #dfe6ed;
    background: white;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
}

.tab:hover {
    background: #e8f5e9;
}

.tab.active {
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: white;
    border: none;
    box-shadow: 0 5px 20px rgba(46, 125, 50, 0.3);
}

/* TAB CONTENT */
.tab-content {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.tab-content.active {
    display: block;
}

/* GRID */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 25px;
}

.logo-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.logo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.logo-card img {
    max-width: 120px;
    max-height: 50px;
}

/* ANIMATION */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 26px;
    }
}

.featured-section {
    padding: 70px 8%;
    background: linear-gradient(135deg, #eef3f8, #f8fbff);
    overflow: hidden;
    font-family: "Poppins", sans-serif;
}

/* HEADER */
.featured-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.featured-header p {
    font-weight: 600;
    font-size: 16px;
    color: #6c757d;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.line {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, #2e7d32, #4caf50);
}

/* SLIDER */
.logo-slider {
    position: relative;
    overflow: hidden;
}

.logo-track {
    display: flex;
    gap: 40px;
    animation: scroll 25s linear infinite;
}

/* LOGO CARD */
.logo-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    padding: 18px 30px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.logo-item img {
    max-height: 40px;
    max-width: 140px;
    filter: grayscale(100%);
    transition: 0.3s;
}

.logo-item:hover img {
    filter: grayscale(0%);
}

.logo-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* ANIMATION */
@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .logo-track {
        gap: 20px;
        animation-duration: 18s;
    }
}

.category-section {
    padding: 100px 8%;
    background: #f8fbff;
    font-family: "Poppins", sans-serif;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 34px;
    font-weight: 700;
    color: #1f2d3d;
    margin-bottom: 15px;
}

.section-header p {
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* GRID */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

/* CARD */
.category-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 20px;
    text-align: center;
    transition: 0.4s ease;
    position: relative;
    border: 1px solid #eef2f7;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: #2e7d32;
}

/* ICON BOX */
.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}

.icon-box img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

.category-card:hover .icon-box {
    transform: rotate(8deg) scale(1.1);
}

/* TEXT */
.category-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2d3d;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 26px;
    }
}

/* ===============================
   ABOUT PAGE — COMPLETE STYLES
================================= */

/* ---- About Hero ---- */
/* Reuses .page-hero pattern — override with about-specific gradient */
.about-hero {
    background: linear-gradient(135deg, #0d47a1 0%, #1a73e8 50%, #42a5f5 100%);
    padding: 100px 5%;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.08) 0%,
        transparent 60%
    );
    animation: heroShine 10s infinite linear;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.about-hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease forwards;
}

.about-hero-content h1 span {
    color: #ffd600;
}

.about-hero-content p {
    font-size: 20px;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

/* ---- About Tab Navigation ---- */
.about-tabs-section {
    background: #ffffff;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.tabs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.about-tabs > div {
    display: flex;
}

.about-tab {
    padding: 20px 36px;
    border: none;
    background: transparent;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.about-tab::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #1a73e8, #42a5f5);
    border-radius: 3px 3px 0 0;
    transition: width 0.3s ease;
}

.about-tab:hover {
    color: #1a73e8;
    background: #f0f6ff;
}

.about-tab.active {
    color: #1a73e8;
    font-weight: 600;
}

.about-tab.active::after {
    width: 100%;
}

/* ---- About Tab Content Sections ---- */
.about-content-section {
    padding: 80px 0;
    background: #f5f7fb;
    min-height: 500px;
}

.about-tab-content {
    display: none;
    animation: fadeInUp 0.5s ease forwards;
}

.about-tab-content.active {
    display: block;
}

/* ---- Our Story / Timeline ---- */
.story-header {
    text-align: center;
    margin-bottom: 60px;
}

.story-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1f2d3d;
    margin-bottom: 12px;
}

.story-header p {
    font-size: 17px;
    color: #64748b;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #1a73e8, #42a5f5);
    transform: translateX(-50%);
    border-radius: 3px;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(26, 115, 232, 0.35);
    position: relative;
    z-index: 2;
}

.timeline-card {
    flex: 1;
    background: #ffffff;
    padding: 28px 32px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    border-left: 4px solid #1a73e8;
}

.timeline-item:nth-child(even) .timeline-card {
    border-left: none;
    border-right: 4px solid #1a73e8;
}

.timeline-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.timeline-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a73e8;
    margin-bottom: 10px;
}

.timeline-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
}

/* ---- Mission & Vision ---- */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.mission-card {
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: 0.3s ease;
    border-top: 4px solid #1a73e8;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.mission-icon {
    font-size: 60px;
    margin-bottom: 20px;
    display: block;
}

.mission-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a73e8;
    margin-bottom: 15px;
}

.mission-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
}

.mission-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    background: linear-gradient(135deg, #0d47a1, #1a73e8);
    padding: 40px;
    border-radius: 20px;
    margin-top: 20px;
}

.highlight-item {
    text-align: center;
    color: #fff;
}

.highlight-number {
    display: block;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #ffd600;
}

.highlight-label {
    font-size: 14px;
    opacity: 0.85;
    font-weight: 500;
}

/* ---- Our Values ---- */
.values-header {
    text-align: center;
    margin-bottom: 50px;
}

.values-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1f2d3d;
    margin-bottom: 12px;
}

.values-header p {
    font-size: 17px;
    color: #64748b;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.value-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    text-align: center;
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #1a73e8, #42a5f5);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(26, 115, 232, 0.12);
}

.value-icon {
    font-size: 55px;
    margin-bottom: 20px;
    display: block;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2d3d;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
}

/* ---- Our Team ---- */
.team-header {
    text-align: center;
    margin-bottom: 50px;
}

.team-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1f2d3d;
    margin-bottom: 12px;
}

.team-header p {
    font-size: 17px;
    color: #64748b;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.team-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    text-align: center;
    transition: 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(26, 115, 232, 0.14);
}

.team-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 8px 20px rgba(26, 115, 232, 0.3);
}

.team-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2d3d;
    margin-bottom: 6px;
}

.team-role {
    display: inline-block;
    background: #e8f0fe;
    color: #1a73e8;
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 14px;
}

.team-bio {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
}

/* ---- About Stats Section ---- */
/* Reuses pattern from .stats-section-modern but scoped to about page */
.about-stats {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 90px 0;
    color: #fff;
    text-align: center;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.about-stat-box {
    background: rgba(255, 255, 255, 0.06);
    padding: 40px 30px;
    border-radius: 18px;
    backdrop-filter: blur(8px);
    transition: 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-stat-box:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
}

.about-stat-box h3 {
    font-size: 40px;
    font-weight: 700;
    color: #ffd600;
    margin-bottom: 10px;
}

.about-stat-box p {
    font-size: 15px;
    color: #cbd5e1;
    font-weight: 500;
}

/* ---- Why Choose LoanBazar ---- */
.about-why-choose {
    padding: 90px 0;
    background: #f5f7fb;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 55px;
}

.why-choose-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1f2d3d;
    margin-bottom: 12px;
}

.why-choose-header p {
    font-size: 17px;
    color: #64748b;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
}

.why-card {
    background: #ffffff;
    padding: 38px 28px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    text-align: center;
    transition: 0.3s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(26, 115, 232, 0.12);
    border-bottom: 3px solid #1a73e8;
}

.why-icon {
    font-size: 55px;
    margin-bottom: 18px;
    display: block;
}

.why-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2d3d;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
}

/* ---- About CTA Section ---- */
/* Reuses .cta-section color system */
.about-cta {
    padding: 90px 0;
    background: linear-gradient(135deg, #0d47a1, #1a73e8);
    text-align: center;
    color: #fff;
}

.about-cta-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 18px;
}

.about-cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 35px;
}

.about-cta-btn {
    display: inline-block;
    padding: 16px 50px;
    background: #ffd600;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-cta-btn:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* ---- ABOUT PAGE RESPONSIVE ---- */

@media (max-width: 992px) {
    .about-hero-content h1 {
        font-size: 40px;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
        gap: 20px;
    }

    .timeline-year {
        width: 70px;
        height: 70px;
        font-size: 15px;
        flex-shrink: 0;
    }

    .timeline-item:nth-child(even) .timeline-card {
        border-right: none;
        border-left: 4px solid #1a73e8;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 70px 5%;
    }

    .about-hero-content h1 {
        font-size: 32px;
    }

    .about-hero-content p {
        font-size: 16px;
    }

    .about-tabs {
        gap: 0;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .about-tabs > div {
        flex-shrink: 0;
    }

    .about-tab {
        padding: 16px 22px;
        font-size: 14px;
    }

    .about-content-section {
        padding: 50px 0;
    }

    .story-header h2,
    .values-header h2,
    .team-header h2 {
        font-size: 28px;
    }

    .mission-card {
        padding: 30px 20px;
    }

    .mission-highlights {
        gap: 25px;
        padding: 30px 20px;
    }

    .highlight-number {
        font-size: 30px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stat-box h3 {
        font-size: 30px;
    }

    .why-choose-header h2 {
        font-size: 28px;
    }

    .about-cta-content h2 {
        font-size: 30px;
    }

    .about-cta-content p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 26px;
    }

    .timeline-year {
        width: 58px;
        height: 58px;
        font-size: 13px;
    }

    .timeline-card {
        padding: 20px;
    }

    .values-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-cta-content h2 {
        font-size: 24px;
    }

    .about-cta-btn {
        padding: 14px 35px;
        font-size: 15px;
    }
}

/* ========================================
   PAGE SPECIFIC STYLES FOR BUSINESS LOAN
   ======================================== */

/* ----- Hero Section ----- */
.page-hero {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    padding: 80px 5%;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 60%
    );
    animation: heroShine 8s infinite linear;
}

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

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

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease forwards;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

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

/* Animation classes for cards */
.feature-card,
.step-card,
.type-card,
.eligibility-card,
.bank-card {
    opacity: 0;
    transform: translateX(100px);
}

.feature-card.animate-slide,
.step-card.animate-slide,
.type-card.animate-slide,
.eligibility-card.animate-slide,
.bank-card.animate-slide {
    animation: slideInRight 0.6s ease forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ----- Top Banks Offering Business Loans Section ----- */
.bank-rates {
    padding: 80px 5%;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1a73e8;
}

.rates-table {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

th {
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    color: white;
    padding: 20px;
    text-align: left;
    font-weight: 600;
}

td {
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
    color: #333;
}

tr:hover {
    background: #f8f9fa;
}

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

.interest-rate {
    color: #2e7d32;
    font-weight: 600;
    font-size: 16px;
}

.loan-amount {
    font-weight: 500;
}

/* ----- Financial Institutions Section ----- */
.financial-institutions {
    padding: 80px 5%;
    background: #f5f7fb;
}

.institutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.bank-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    min-height: 220px;
}

.bank-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.bank-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a73e8, #42a5f5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
}

.bank-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.bank-card ul {
    list-style: none;
    padding: 0;
}

.bank-card li {
    padding: 8px 0;
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.bank-card li::before {
    content: "✓";
    color: #2e7d32;
    font-weight: bold;
    flex-shrink: 0;
}

/* ----- Loan Features Section ----- */
.loan-features {
    padding: 80px 5%;
    background: #f5f7fb;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a73e8, #42a5f5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.feature-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* ----- Eligibility Section ----- */
.eligibility-section {
    padding: 80px 5%;
    background: white;
}

.eligibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.eligibility-card {
    background: linear-gradient(135deg, #f8f9fa, #fff);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #1a73e8;
}

.eligibility-card h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #1a73e8;
    display: flex;
    align-items: center;
    gap: 10px;
}

.eligibility-card ul {
    list-style: none;
    padding: 0;
}

.eligibility-card li {
    padding: 10px 0;
    color: #555;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.eligibility-card li:last-child {
    border-bottom: none;
}

.eligibility-card li i {
    color: #2e7d32;
}

/* ----- Documents Required Section ----- */
.documents-section {
    padding: 80px 5%;
    background: #f5f7fb;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.document-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.document-card h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #1a73e8;
    display: flex;
    align-items: center;
    gap: 10px;
}

.document-card ul {
    list-style: none;
    padding: 0;
}

.document-card li {
    padding: 12px 0;
    color: #555;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.document-card li:last-child {
    border-bottom: none;
}

.document-card li i {
    color: #1a73e8;
    width: 20px;
}

/* ----- Types of Business Loan Section ----- */
.loan-types {
    padding: 80px 5%;
    background: white;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.type-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.type-card:hover {
    transform: translateY(-10px);
    border-color: #1a73e8;
}

.type-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #1a73e8;
    margin-bottom: 20px;
}

.type-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.type-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* ----- How to Apply Section ----- */
.how-to-apply {
    padding: 80px 5%;
    background: #f5f7fb;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background: white;
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

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

.step-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.step-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* ----- EMI Calculator Section ----- */
.emi-calc {
    background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
    padding: 80px 5%;
    text-align: center;
}

.emi-box {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.emi-box h2 {
    margin-bottom: 30px;
    color: #333;
}

.emi-box h3 {
    margin-bottom: 30px;
    color: #333;
}

.emi-field {
    margin-bottom: 25px;
    text-align: left;
}

.emi-field label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: #333;
}

.emi-field input,
.emi-field select {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s;
}

.emi-field input:focus,
.emi-field select:focus {
    border-color: #1a73e8;
    outline: none;
}

.emi-result {
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
}

.emi-result h3 {
    font-size: 16px;
    margin-bottom: 10px;
    opacity: 0.9;
    color: #fff;
}

.emi-result .amount {
    font-size: 42px;
    font-weight: 700;
}

.calculate-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s;
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(26, 115, 232, 0.3);
}

/* ----- FAQ Section ----- */
.faq-section {
    padding: 80px 5%;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #333;
    transition: all 0.3s;
}

.faq-question:hover {
    color: #1a73e8;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #666;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px 25px;
    max-height: 300px;
}

/* ----- Recent Articles Section ----- */
.recent-articles {
    padding: 80px 5%;
    background: #f5f7fb;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.article-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
}

.article-content {
    padding: 25px;
}

.article-tag {
    display: inline-block;
    background: #e3f2fd;
    color: #1a73e8;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.article-content h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}

.article-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* ----- Responsive Styles ----- */
@media (max-width: 1024px) {
    .page-hero h1 {
        font-size: 36px;
    }

    .features-grid,
    .institutions-grid,
    .eligibility-grid,
    .types-grid,
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .page-hero h1 {
        font-size: 28px;
    }

    .page-hero p {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .features-grid,
    .institutions-grid,
    .eligibility-grid,
    .types-grid,
    .steps-grid,
    .articles-grid,
    .documents-grid {
        grid-template-columns: 1fr;
    }

    .emi-box {
        padding: 25px;
    }

    .emi-result .amount {
        font-size: 32px;
    }
}

/* ========================================
   HOME LOAN PAGE SPECIFIC STYLES
   ======================================== */

/* ----- Compare Section ----- */
.compare-section {
    padding: 80px 5%;
    background: #f0f4f8;
}

.compare-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.compare-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.compare-btn {
    padding: 12px 30px;
    background: #1a73e8;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.compare-btn:hover {
    background: #1565c0;
    transform: translateY(-2px);
}

.compare-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.compare-table {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.compare-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.comparison-result {
    display: none;
    margin-top: 40px;
}

.comparison-result.show {
    display: block;
}

.comparison-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.compare-card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #1a73e8;
}

.compare-card h4 {
    font-size: 18px;
    color: #1a73e8;
    margin-bottom: 15px;
}

.compare-card .rate {
    font-size: 24px;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 10px;
}

.compare-card p {
    margin-bottom: 8px;
    color: #555;
    font-size: 14px;
}

.compare-card p span {
    font-weight: 600;
    color: #333;
}

/* ----- CTA Section ----- */
.cta-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, #0d47a1, #1a73e8);
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    color: #fff;
    border: 1px solid #fff;
}

.cta-btn.primary {
    background: white;
    color: #1a73e8;
}

.cta-btn.secondary {
    border: 2px solid white;
    color: white;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: none;
}

/* ----- Home Loan Steps Container ----- */
.steps-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

/* ----- Eligibility List (Home Loan) ----- */
.eligibility-list {
    list-style: none;
    padding: 0;
}

.eligibility-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 14px;
}

.eligibility-list li:last-child {
    border-bottom: none;
}

.eligibility-list li i {
    color: #2e7d32;
    font-size: 12px;
}

/* ----- EMI Input (Home Loan) ----- */
.emi-input {
    margin-bottom: 20px;
    text-align: left;
}

.emi-input label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

.emi-input input {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.emi-input input:focus {
    outline: none;
    border-color: #1a73e8;
}

.emi-result.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

/* ----- Home Loan Responsive Overrides ----- */
@media (max-width: 768px) {
    .compare-controls {
        flex-direction: column;
        text-align: center;
    }

    .compare-table {
        overflow-x: auto;
    }

    .compare-table table {
        min-width: 600px;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .compare-section,
    .cta-section {
        padding: 50px 4%;
    }
}

/* ========================================
   AUTH PAGE - SIGN IN / SIGN UP / FORGOT
   ======================================== */

/* Full page layout */
.auth-page {
    display: flex;
    min-height: 100vh;
    font-family: "Poppins", sans-serif;
}

/* ----- Left Branding Panel ----- */
.auth-brand {
    flex: 1;
    background: linear-gradient(135deg, #0d47a1 0%, #1a73e8 50%, #42a5f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 60px 40px;
}

.auth-brand-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 420px;
}

.auth-brand-logo {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.auth-brand-tagline {
    font-size: 18px;
    opacity: 0.85;
    margin-bottom: 50px;
    line-height: 1.5;
}

.auth-brand-features {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.auth-feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    opacity: 0.9;
}

.auth-feature-item i {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

/* Decorative animated circles */
.auth-brand-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.auth-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.auth-circle-1 {
    width: 300px;
    height: 300px;
    top: -80px;
    right: -80px;
    animation: authFloat 8s ease-in-out infinite;
}

.auth-circle-2 {
    width: 200px;
    height: 200px;
    bottom: -60px;
    left: -40px;
    animation: authFloat 6s ease-in-out infinite reverse;
}

.auth-circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
    animation: authFloat 10s ease-in-out infinite 2s;
}

@keyframes authFloat {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

/* ----- Right Form Panel ----- */
.auth-form-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: #f0f4f8;
    position: relative;
    overflow: hidden;
}

/* ----- Form Container (each form) ----- */
.auth-form-container {
    width: 100%;
    max-width: 440px;
    background: white;
    border-radius: 24px;
    padding: 45px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: absolute;
    opacity: 0;
    transform: translateX(60px);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-form-container.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
    position: relative;
}

.auth-form-container.auth-exit {
    opacity: 0;
    transform: translateX(-60px);
    pointer-events: none;
}

/* Form Header */
.auth-form-header {
    text-align: center;
    margin-bottom: 35px;
}

.auth-form-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.auth-form-header p {
    color: #64748b;
    font-size: 14px;
}

/* Forgot password icon */
.auth-forgot-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a73e8, #42a5f5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
    animation: authPulse 2s ease-in-out infinite;
}

@keyframes authPulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(26, 115, 232, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(26, 115, 232, 0);
    }
}

/* ----- Floating Label Input Groups ----- */
.auth-input-group {
    position: relative;
    margin-bottom: 22px;
}

.auth-input-group input {
    width: 100%;
    padding: 16px 16px 16px 46px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    color: #1e293b;
    background: #f8fafc;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

.auth-input-group input:focus {
    border-color: #1a73e8;
    background: white;
    box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.1);
}

.auth-input-group label {
    position: absolute;
    top: 50%;
    left: 46px;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 14px;
    pointer-events: none;
    transition: all 0.3s ease;
    background: transparent;
    padding: 0;
}

.auth-input-group input:focus ~ label,
.auth-input-group input:valid ~ label {
    top: -1px;
    left: 12px;
    font-size: 11px;
    color: #1a73e8;
    background: white;
    padding: 0 6px;
    font-weight: 600;
}

.auth-input-icon {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 16px;
    transition: color 0.3s;
}

.auth-input-group input:focus ~ .auth-input-icon {
    color: #1a73e8;
}

/* Password toggle button */
.auth-toggle-pass {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #94a3b8;
    font-size: 16px;
    padding: 4px;
    transition: color 0.3s;
}

.auth-toggle-pass:hover {
    color: #1a73e8;
}

/* ----- Auth Options (remember me & forgot) ----- */
.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 13px;
}

.auth-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    cursor: pointer;
}

.auth-remember input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #1a73e8;
    cursor: pointer;
}

.auth-forgot-link {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.auth-forgot-link:hover {
    color: #0d47a1;
}

/* ----- Submit Button ----- */
.auth-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.auth-submit-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;
}

.auth-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(26, 115, 232, 0.4);
}

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

.auth-submit-btn:active {
    transform: translateY(0);
}

.auth-signup-btn {
    background: linear-gradient(135deg, #2e7d32, #43a047);
}

.auth-signup-btn:hover {
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.4);
}

.auth-reset-btn {
    background: linear-gradient(135deg, #e65100, #ff6d00);
}

.auth-reset-btn:hover {
    box-shadow: 0 10px 30px rgba(230, 81, 0, 0.4);
}

/* ----- Divider ----- */
.auth-divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
    gap: 15px;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.auth-divider span {
    color: #94a3b8;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* ----- Social Login Buttons ----- */
.auth-social-btns {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.auth-social-btn {
    flex: 1;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    color: #475569;
    transition: all 0.3s ease;
}

.auth-social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.auth-social-btn.google:hover {
    border-color: #ea4335;
    color: #ea4335;
}

.auth-social-btn.facebook:hover {
    border-color: #1877f2;
    color: #1877f2;
}

.auth-social-btn i {
    font-size: 18px;
}

/* ----- Switch Form Text ----- */
.auth-switch-text {
    text-align: center;
    color: #64748b;
    font-size: 14px;
    margin-top: 20px;
}

.auth-switch-text a {
    color: #1a73e8;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.auth-switch-text a:hover {
    color: #0d47a1;
}

/* ----- Terms checkbox ----- */
.auth-terms {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 22px;
    font-size: 12px;
    color: #64748b;
    cursor: pointer;
    line-height: 1.5;
}

.auth-terms input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #1a73e8;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
}

.auth-terms a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
}

/* ===== AUTH PAGE RESPONSIVE ===== */

/* Laptop / Small Desktop */
@media (max-width: 1200px) {
    .auth-brand {
        padding: 50px 30px;
    }

    .auth-brand-logo {
        font-size: 36px;
    }

    .auth-brand-tagline {
        font-size: 16px;
        margin-bottom: 40px;
    }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
    .auth-page {
        flex-direction: column;
    }

    .auth-brand {
        padding: 50px 30px;
        min-height: auto;
    }

    .auth-brand-content {
        text-align: center;
        max-width: 100%;
    }

    .auth-brand-features {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .auth-feature-item {
        font-size: 13px;
    }

    .auth-brand-tagline {
        margin-bottom: 30px;
    }

    .auth-form-panel {
        padding: 40px 30px;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .auth-brand {
        padding: 40px 20px;
    }

    .auth-brand-logo {
        font-size: 30px;
    }

    .auth-brand-tagline {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .auth-brand-features {
        gap: 12px;
    }

    .auth-feature-item {
        font-size: 12px;
    }

    .auth-feature-item i {
        width: 36px;
        height: 36px;
        font-size: 14px;
        border-radius: 10px;
    }

    .auth-form-container {
        padding: 35px 28px;
        border-radius: 20px;
    }

    .auth-form-header h2 {
        font-size: 24px;
    }

    .auth-form-panel {
        padding: 30px 20px;
    }

    .auth-social-btns {
        flex-direction: column;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .auth-brand {
        padding: 30px 20px;
    }

    .auth-brand-logo {
        font-size: 26px;
    }

    .auth-brand-tagline {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .auth-brand-features {
        flex-direction: column;
        align-items: center;
    }

    .auth-feature-item {
        font-size: 13px;
    }

    .auth-circle-1 {
        width: 180px;
        height: 180px;
    }

    .auth-circle-2 {
        width: 120px;
        height: 120px;
    }

    .auth-circle-3 {
        display: none;
    }

    .auth-form-panel {
        padding: 20px 15px;
    }

    .auth-form-container {
        padding: 30px 22px;
        border-radius: 18px;
    }

    .auth-form-header h2 {
        font-size: 22px;
    }

    .auth-form-header p {
        font-size: 13px;
    }

    .auth-input-group input {
        padding: 14px 14px 14px 42px;
        font-size: 14px;
    }

    .auth-submit-btn {
        padding: 14px;
        font-size: 15px;
    }

    .auth-options {
        font-size: 12px;
    }

    .auth-forgot-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

/* ===== APPLY NOW PAGE ===== */
.apply-page {
    display: flex;
    min-height: calc(100vh - 70px);
    background: linear-gradient(135deg, #f5f7fb 0%, #e8eef7 100%);
}

/* LEFT BRAND PANEL */
.apply-page .apply-brand-panel {
    flex: 1;
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 50%, #1565c0 100%);
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: white;
}

.apply-page .apply-brand-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.apply-page .apply-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    background: white;
}

.apply-page .apply-circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.apply-page .apply-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
}

.apply-page .apply-circle-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    left: 20%;
}

.apply-page .apply-brand-content {
    position: relative;
    z-index: 1;
    max-width: 500px;
    padding-left: 10px;
}

.apply-page .apply-brand-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.apply-page .apply-brand-content > p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

.apply-page .apply-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.apply-page .apply-benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 500;
}

.apply-page .apply-benefit-item i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

/* RIGHT FORM PANEL */
.apply-page .apply-form-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.apply-page .apply-form-container {
    width: 100%;
    max-width: 520px;
    background: white;
    border-radius: 20px;
    padding: 45px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.apply-page .apply-form-header {
    text-align: center;
    margin-bottom: 35px;
}

/* .apply-page .apply-product-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1a73e8, #42a5f5);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
} */

.apply-page .apply-form-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.apply-page .apply-form-header p {
    font-size: 15px;
    color: #666;
}

/* ERROR & SUCCESS MESSAGES */
.apply-page .apply-error,
.apply-page .apply-success {
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 25px;
    display: none;
    align-items: center;
    gap: 10px;
}

.apply-page .apply-error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

.apply-page .apply-success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.apply-page .apply-error.show,
.apply-page .apply-success.show {
    display: flex;
}

/* FORM INPUTS */
.apply-page .apply-input-group {
    position: relative;
    margin-bottom: 22px;
}

.apply-page .apply-row {
    display: flex;
    gap: 20px;
}

.apply-page .apply-row .apply-input-group {
    flex: 1;
}

.apply-page .apply-input-group input,
.apply-page .apply-input-group select,
.apply-page .apply-input-group textarea {
    width: 100%;
    padding: 16px 16px 16px 45px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fafafa;
    color: #333;
}

.apply-page .apply-input-group textarea {
    min-height: 100px;
    resize: vertical;
}

.apply-page .apply-input-group input:focus,
.apply-page .apply-input-group select:focus,
.apply-page .apply-input-group textarea:focus {
    outline: none;
    border-color: #1a73e8;
    background: white;
    box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.1);
}

.apply-page .apply-input-group label {
    position: absolute;
    left: 45px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    color: #888;
    pointer-events: none;
    transition: all 0.3s ease;
    background: transparent;
    padding: 0 5px;
}

.apply-page .apply-input-group textarea + label {
    top: 20px;
    transform: none;
}

.apply-page .apply-input-group input:focus + label,
.apply-page .apply-input-group input:not(:placeholder-shown) + label,
.apply-page .apply-input-group.focused label,
.apply-page .apply-input-group select:focus + label,
.apply-page .apply-input-group select:valid + label,
.apply-page .apply-input-group textarea:focus + label,
.apply-page .apply-input-group textarea:not(:placeholder-shown) + label {
    top: 0;
    font-size: 12px;
    color: #1a73e8;
    background: white;
    font-weight: 600;
}

.apply-page .apply-input-group > i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 16px;
    transition: color 0.3s ease;
}

.apply-page .apply-input-group textarea + i {
    top: 20px;
    transform: none;
}

.apply-page .apply-input-group input:focus ~ i,
.apply-page .apply-input-group.focused ~ i {
    color: #1a73e8;
}

/* SUBMIT BUTTON */
.apply-page .apply-submit-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #1a73e8, #1565c0);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
}

.apply-page .apply-submit-btn:hover {
    background: linear-gradient(135deg, #1557b0, #0d47a1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 115, 232, 0.4);
}

.apply-page .apply-submit-btn:active {
    transform: translateY(0);
}

.apply-page .apply-submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.apply-page .apply-submit-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.apply-page .apply-submit-btn:hover i {
    transform: translateX(5px);
}

/* PRIVACY TEXT */
.apply-page .apply-privacy {
    text-align: center;
    margin-top: 25px;
    font-size: 13px;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.apply-page .apply-privacy i {
    color: #1a73e8;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .apply-page {
        flex-direction: column;
    }

    .apply-page .apply-brand-panel {
        padding: 50px 30px;
        text-align: center;
    }

    .apply-page .apply-brand-content {
        max-width: 100%;
    }

    .apply-page .apply-brand-content h1 {
        font-size: 36px;
    }

    .apply-page .apply-benefits {
        align-items: center;
    }

    .apply-page .apply-form-panel {
        padding: 30px 20px;
    }

    .apply-page .apply-form-container {
        padding: 35px 25px;
    }
}

@media (max-width: 576px) {
    .apply-page .apply-row {
        flex-direction: column;
        gap: 0;
    }

    .apply-page .apply-brand-content h1 {
        font-size: 28px;
    }

    .apply-page .apply-form-header h2 {
        font-size: 24px;
    }

    .apply-page .apply-input-group input,
    .apply-page .apply-input-group select,
    .apply-page .apply-input-group textarea {
        padding: 14px 14px 14px 42px;
        font-size: 14px;
    }

    .apply-page .apply-input-group label {
        left: 42px;
        font-size: 14px;
    }

    .apply-page .apply-input-group > i {
        left: 12px;
        font-size: 14px;
    }
}

/* ================================================
   FRONTEND HAMBURGER MENU — RIGHT-SIDE DRAWER
   ================================================ */

/* --- Hamburger Button --- */
.fe-hamburger-btn {
    display: none; /* hidden on desktop */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    transition: background 0.2s ease;
    order: 3; /* push to right side in flex layout */
    flex-shrink: 0;
    margin-left: auto; /* push to far right */
    z-index: 200;
}

.fe-hamburger-btn:hover {
    background: #e8f0fe;
}

.fe-hamburger-btn span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
    transform-origin: center;
}

/* Hamburger → X animation when menu is active */
.fe-hamburger-btn.fe-active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
.fe-hamburger-btn.fe-active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.fe-hamburger-btn.fe-active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* --- Overlay --- */
.fe-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.fe-nav-overlay.fe-active {
    opacity: 1;
    pointer-events: auto;
}

/* --- Mobile Close Button inside nav-menu --- */
.fe-mobile-close-item {
    display: none;
}

.fe-close-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    background: none;
    border: none;
    font-size: 22px;
    color: #999;
    cursor: pointer;
    padding: 10px 20px 10px 0;
    transition: color 0.2s ease;
    font-family: inherit;
}

.fe-close-btn:hover {
    color: #1a73e8;
    transform: scale(1.15);
}

/* ================================================
   RESPONSIVE: Show hamburger at tablet and below
   ================================================ */

@media (max-width: 768px) {
    /* Show hamburger button */
    .fe-hamburger-btn {
        display: flex;
    }

    /* Hide desktop-extras (Talk to Expert + Sign In on desktop) */
    .desktop-extras {
        display: none !important;
    }

    /* Slide-in drawer from RIGHT */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -320px; /* hidden off-screen to the right */
        width: 300px;
        max-width: 85vw;
        height: 100vh;
        background: #fff;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 1100;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 0;
        list-style: none;
    }

    /* Open state */
    .nav-menu.fe-open {
        right: 0;
    }

    /* Show close button inside drawer */
    .fe-mobile-close-item {
        display: block;
        padding: 15px 20px 5px;
        border-bottom: 1px solid #f0f0f0;
        margin-bottom: 8px;
    }

    /* Show mobile-only items (Talk to Expert + Sign In) */
    .mobile-only-item {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 20px;
        border-top: 1px solid #f0f0f0;
        margin-top: 8px;
    }

    .mobile-only-item .expert-top {
        justify-content: center;
        text-decoration: none;
        width: 100%;
    }

    .mobile-only-item .sign-btn {
        display: block;
        text-align: center;
        padding: 10px 20px;
        background: #1a73e8;
        color: #fff;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
        transition: background 0.2s ease;
    }

    .mobile-only-item .sign-btn:hover {
        background: #1558c0;
    }

    /* Nav items in drawer: full-width block */
    .nav-item {
        width: 100%;
        border-bottom: 1px solid #f5f5f5;
    }

    .nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 20px;
        font-size: 15px;
        font-weight: 500;
        color: #222;
        width: 100%;
        transition:
            background 0.2s ease,
            color 0.2s ease;
    }

    .nav-link:hover {
        background: #f0f4ff;
        color: #1a73e8;
    }

    .nav-link i {
        font-size: 11px;
        transition: transform 0.3s ease;
    }

    /* Mobile Dropdown: expand inline (accordion style) */
    .dropdown {
        position: static;
        transform: none;
        left: auto;
        min-width: 100%;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        background: #f8f9fe;
        opacity: 1;
        visibility: visible;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        /* Override desktop opacity/visibility animation */
        pointer-events: none;
    }

    /* Dropdown open state on mobile */
    .nav-item.fe-dropdown-open > .dropdown {
        max-height: 800px;
        pointer-events: auto;
    }

    /* Rotate chevron on open */
    .nav-item.fe-dropdown-open > .nav-link i {
        transform: rotate(180deg);
    }

    /* Dropdown links */
    .dropdown > li > a {
        padding: 11px 20px 11px 32px;
        font-size: 13.5px;
        color: #444;
        border-bottom: 1px solid #eeeeee;
        background: transparent;
    }

    .dropdown > li > a:hover {
        background: #e8f0fe;
        color: #1a73e8;
    }

    .dropdown > li > a i {
        font-size: 10px;
    }

    /* Sub-dropdown: expand inline */
    .sub-dropdown {
        position: static;
        left: auto;
        top: auto;
        margin-left: 0;
        width: 100%;
        min-width: 100%;
        box-shadow: none;
        border-radius: 0;
        background: #edf2ff;
        opacity: 1;
        visibility: visible;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        pointer-events: none;
    }

    .dropdown-item.fe-sub-open > .sub-dropdown {
        max-height: 400px;
        pointer-events: auto;
    }

    /* Rotate sub-chevron on open */
    .dropdown-item.fe-sub-open > a i {
        transform: rotate(90deg);
    }

    .sub-dropdown li a {
        padding: 10px 20px 10px 44px;
        font-size: 13px;
        color: #555;
        border-bottom: 1px solid #e2e8ff;
    }

    .sub-dropdown li a:hover {
        background: #dce6ff;
        color: #1a73e8;
    }

    /* Navbar layout: logo left, hamburger right */
    .navbar {
        justify-content: space-between;
        position: relative;
    }

    .logo {
        order: 1;
    }

    .fe-hamburger-btn {
        order: 2;
        margin-left: auto;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .nav-menu {
        width: 280px;
        right: -290px;
    }

    .nav-menu.fe-open {
        right: 0;
    }

    .nav-link {
        font-size: 14px;
        padding: 13px 16px;
    }

    .dropdown > li > a {
        padding: 10px 16px 10px 28px;
        font-size: 13px;
    }

    .sub-dropdown li a {
        padding: 9px 16px 9px 40px;
        font-size: 12px;
    }

    .fe-mobile-close-item {
        padding: 12px 16px 4px;
    }

    .mobile-only-item {
        padding: 16px;
    }
}

@media (max-width: 375px) {
    .nav-menu {
        width: 260px;
        right: -270px;
    }

    .nav-link {
        font-size: 13.5px;
        padding: 12px 14px;
    }
}

/* ================= CONTACT PAGE ================= */
.contact-page {
    background: #f8fafc;
}

.contact-page .contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 5%;
}

.contact-page .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

/* Contact Info Cards */
.contact-page .contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-page .contact-info-card {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.contact-page .contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #1a73e8;
}

.contact-page .contact-info-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #1a73e8, #2563eb);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-page .contact-info-icon i {
    font-size: 22px;
    color: #fff;
}

.contact-page .contact-info-content h3 {
    font-size: 17px;
    color: #1e293b;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-page .contact-info-content p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.contact-page .contact-info-content p a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-page .contact-info-content p a:hover {
    color: #1557b0;
}

/* Contact Form Wrapper */
.contact-page .contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-page .contact-form-wrapper h2 {
    font-size: 28px;
    color: #1e293b;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-page .contact-form-wrapper > p {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 30px;
}

/* Form Input Groups */
.contact-page .contact-input-group {
    position: relative;
    margin-bottom: 22px;
}

.contact-page .contact-input-group input,
.contact-page .contact-input-group textarea,
.contact-page .contact-input-group select {
    width: 100%;
    padding: 16px 45px 16px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    color: #1e293b;
    background: #f8fafc;
    transition: all 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.contact-page .contact-input-group textarea {
    min-height: 130px;
    resize: vertical;
}

.contact-page .contact-input-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.contact-page .contact-input-group label {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    color: #94a3b8;
    pointer-events: none;
    transition: all 0.3s ease;
    background: transparent;
    padding: 0 5px;
}

.contact-page .contact-input-group textarea + label {
    top: 20px;
    transform: none;
}

.contact-page .contact-input-group input:focus,
.contact-page .contact-input-group textarea:focus,
.contact-page .contact-input-group select:focus {
    outline: none;
    border-color: #1a73e8;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.1);
}

.contact-page .contact-input-group input:focus + label,
.contact-page .contact-input-group input:not(:placeholder-shown) + label,
.contact-page .contact-input-group textarea:focus + label,
.contact-page .contact-input-group textarea:not(:placeholder-shown) + label,
.contact-page .contact-input-group select:focus + label,
.contact-page .contact-input-group select:valid + label {
    top: 0;
    font-size: 12px;
    color: #1a73e8;
    background: #fff;
}

.contact-page .contact-input-group textarea:focus + label,
.contact-page .contact-input-group textarea:not(:placeholder-shown) + label {
    top: -10px;
}

.contact-page .contact-input-group > i {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 16px;
    pointer-events: none;
    transition: color 0.3s ease;
}

.contact-page .contact-input-group textarea + i {
    top: 20px;
    transform: none;
}

.contact-page .contact-input-group input:focus ~ i,
.contact-page .contact-input-group textarea:focus ~ i,
.contact-page .contact-input-group select:focus ~ i {
    color: #1a73e8;
}

/* Submit Button */
.contact-page .contact-submit-btn {
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(135deg, #1a73e8, #2563eb);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
    margin-top: 10px;
}

.contact-page .contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 115, 232, 0.4);
}

.contact-page .contact-submit-btn:active {
    transform: translateY(0);
}

.contact-page .contact-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.contact-page .contact-submit-btn i {
    font-size: 16px;
}

/* Error & Success Messages */
.contact-page .contact-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 20px;
    display: none;
}

.contact-page .contact-error.show {
    display: block;
    animation: contactShake 0.4s ease;
}

.contact-page .contact-success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #16a34a;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 20px;
    display: none;
}

.contact-page .contact-success.show {
    display: block;
    animation: contactFadeIn 0.4s ease;
}

@keyframes contactShake {
    0%,
    100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}

@keyframes contactFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Map Section */
.contact-page .contact-map {
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-page .contact-map-inner {
    text-align: center;
    padding: 40px;
}

.contact-page .contact-map i {
    font-size: 48px;
    color: #94a3b8;
    margin-bottom: 15px;
    display: block;
}

.contact-page .contact-map p {
    color: #64748b;
    font-size: 14px;
    margin: 0;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .contact-page .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-page .contact-info-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-page .contact-info-card {
        flex: 1 1 calc(50% - 10px);
        min-width: 250px;
    }

    .contact-page .contact-form-wrapper {
        padding: 30px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .contact-page .contact-container {
        padding: 40px 4%;
    }

    .contact-page .contact-info-cards {
        flex-direction: column;
    }

    .contact-page .contact-info-card {
        flex: 1 1 100%;
    }

    .contact-page .contact-form-wrapper {
        padding: 25px 20px;
    }

    .contact-page .contact-form-wrapper h2 {
        font-size: 24px;
    }

    .contact-page .contact-input-group input,
    .contact-page .contact-input-group textarea,
    .contact-page .contact-input-group select {
        padding: 14px 40px 14px 14px;
        font-size: 14px;
    }

    .contact-page .contact-input-group label {
        font-size: 14px;
        left: 14px;
    }

    .contact-page .contact-submit-btn {
        padding: 14px 24px;
        font-size: 15px;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
    .contact-page .contact-container {
        padding: 30px 3%;
    }

    .contact-page .contact-form-wrapper h2 {
        font-size: 22px;
    }

    .contact-page .contact-info-card {
        padding: 20px;
    }

    .contact-page .contact-info-icon {
        width: 45px;
        height: 45px;
    }

    .contact-page .contact-info-icon i {
        font-size: 18px;
    }

    .contact-page .contact-input-group {
        margin-bottom: 18px;
    }

    .contact-page .contact-map {
        min-height: 150px;
    }

    .contact-page .contact-map-inner {
        padding: 25px;
    }

    .contact-page .contact-map i {
        font-size: 36px;
    }
}

/* ================= FRONTEND 404 ERROR PAGE ================= */

.error404-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f4fd 50%, #f5f7fb 100%);
}

/* Animated Background Shapes */
.error404-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.error404-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    animation: error404Float 8s ease-in-out infinite;
}

.error404-shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(
        135deg,
        rgba(26, 115, 232, 0.15),
        rgba(66, 165, 245, 0.1)
    );
    top: -100px;
    left: -50px;
    animation-delay: 0s;
}

.error404-shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(
        135deg,
        rgba(255, 214, 0, 0.15),
        rgba(255, 193, 7, 0.1)
    );
    top: 20%;
    right: -30px;
    animation-delay: 2s;
}

.error404-shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(
        135deg,
        rgba(26, 115, 232, 0.1),
        rgba(66, 165, 245, 0.08)
    );
    bottom: 10%;
    left: 10%;
    animation-delay: 4s;
}

.error404-shape-4 {
    width: 180px;
    height: 180px;
    background: linear-gradient(
        135deg,
        rgba(79, 70, 229, 0.1),
        rgba(99, 102, 241, 0.08)
    );
    bottom: -50px;
    right: 20%;
    animation-delay: 6s;
}

@keyframes error404Float {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Main Content */
.error404-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 700px;
    width: 100%;
}

/* Large 404 Number */
.error404-number {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.error404-digit {
    font-size: 120px;
    font-weight: 700;
    color: #1a73e8;
    line-height: 1;
    text-shadow: 0 10px 40px rgba(26, 115, 232, 0.3);
    animation: error404Bounce 2s ease-in-out infinite;
}

.error404-zero {
    font-size: 120px;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 3px #1a73e8;
    opacity: 0.6;
    animation: error404Pulse 2s ease-in-out infinite;
}

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

@keyframes error404Pulse {
    0%,
    100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

/* Illustration Area */
.error404-illustration {
    position: relative;
    width: 120px;
    height: 80px;
    margin: 0 auto 30px;
}

.error404-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 10px 30px rgba(238, 90, 90, 0.3);
    animation: error404IconFloat 3s ease-in-out infinite;
}

.error404-icon i {
    font-size: 24px;
    color: white;
}

.error404-rope {
    position: absolute;
    width: 3px;
    height: 30px;
    background: linear-gradient(to bottom, #64748b, #94a3b8);
    top: 55px;
    left: 50%;
    transform: translateX(-50%);
}

.error404-magnifier {
    position: absolute;
    width: 35px;
    height: 35px;
    border: 4px solid #64748b;
    border-radius: 50%;
    bottom: 0;
    right: 5px;
    background: rgba(255, 255, 255, 0.8);
    animation: error404Shake 4s ease-in-out infinite;
}

.error404-magnifier::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 4px;
    background: #64748b;
    bottom: -8px;
    right: -10px;
    transform: rotate(-45deg);
    border-radius: 2px;
}

@keyframes error404IconFloat {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes error404Shake {
    0%,
    100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

/* Error Message */
.error404-title {
    font-size: 36px;
    font-weight: 700;
    color: #1f2d3d;
    margin-bottom: 15px;
    line-height: 1.3;
}

.error404-description {
    font-size: 17px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Action Buttons */
.error404-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.error404-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.error404-btn i {
    font-size: 16px;
}

.error404-btn-primary {
    background: linear-gradient(135deg, #1a73e8, #2563eb);
    color: white;
    box-shadow: 0 8px 25px rgba(26, 115, 232, 0.35);
}

.error404-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(26, 115, 232, 0.45);
}

.error404-btn-secondary {
    background: white;
    color: #1a73e8;
    border: 2px solid #1a73e8;
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.15);
}

.error404-btn-secondary:hover {
    background: #1a73e8;
    color: white;
    transform: translateY(-3px);
}

.error404-btn-outline {
    background: transparent;
    color: #64748b;
    border: 2px solid #e2e8f0;
}

.error404-btn-outline:hover {
    border-color: #1a73e8;
    color: #1a73e8;
    transform: translateY(-3px);
}

/* Quick Links */
.error404-links {
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.error404-links-title {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 15px;
}

.error404-quick-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.error404-quick-link {
    font-size: 14px;
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    background: rgba(26, 115, 232, 0.08);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.error404-quick-link:hover {
    background: #1a73e8;
    color: white;
}

/* Footer Text */
.error404-footer-text {
    position: block;
    margin-top: 40px;
    text-align: center;
}

.error404-footer-text p {
    font-size: 14px;
    color: #94a3b8;
    font-style: italic;
}

/* Responsive - Tablet */
@media (max-width: 768px) {
    .error404-digit,
    .error404-zero {
        font-size: 80px;
    }

    .error404-number {
        gap: 10px;
    }

    .error404-title {
        font-size: 28px;
    }

    .error404-description {
        font-size: 15px;
    }

    .error404-actions {
        flex-direction: column;
        align-items: center;
    }

    .error404-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .error404-quick-links {
        gap: 10px;
    }

    .error404-quick-link {
        font-size: 13px;
        padding: 6px 12px;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .error404-page {
        padding: 30px 15px;
    }

    .error404-digit,
    .error404-zero {
        font-size: 60px;
    }

    .error404-number {
        gap: 8px;
    }

    .error404-title {
        font-size: 24px;
    }

    .error404-description {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .error404-actions {
        margin-bottom: 35px;
    }

    .error404-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .error404-links {
        padding-top: 25px;
    }

    .error404-quick-links {
        flex-direction: column;
        align-items: center;
    }

    .error404-shape-1 {
        width: 200px;
        height: 200px;
    }

    .error404-shape-2 {
        width: 120px;
        height: 120px;
    }

    .error404-shape-3,
    .error404-shape-4 {
        display: none;
    }
}

/* ================= CREDIT CARDS PAGE ================= */
.credit-cards-page {
    background: #f5f7fb;
}

/* ---- Credit Hero Section ---- */
.credit-cards-page .credit-hero {
    background: linear-gradient(135deg, #0d47a1 0%, #1a73e8 50%, #42a5f5 100%);
    padding: 80px 5%;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.credit-cards-page .credit-hero::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.08) 0%,
        transparent 60%
    );
    animation: heroShine 8s infinite linear;
}

.credit-cards-page .credit-hero h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.credit-cards-page .credit-hero p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 35px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.credit-cards-page .credit-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.credit-cards-page .credit-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.credit-cards-page .credit-hero-btn-primary {
    background: linear-gradient(135deg, #ffd600, #ffb700);
    color: #1e293b;
    box-shadow: 0 8px 25px rgba(255, 214, 0, 0.4);
}

.credit-cards-page .credit-hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 214, 0, 0.5);
}

.credit-cards-page .credit-hero-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.credit-cards-page .credit-hero-btn-secondary:hover {
    border-color: white;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* ---- Categories Section ---- */
.credit-cards-page .categories-section {
    padding: 80px 5%;
    background: #fff;
}

.credit-cards-page .categories-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.credit-cards-page .categories-section .section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.credit-cards-page .categories-section .section-title p {
    font-size: 16px;
    color: #64748b;
}

.credit-cards-page .categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.credit-cards-page .category-card {
    background: #f8fafc;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.credit-cards-page .category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #1a73e8;
    background: #fff;
}

.credit-cards-page .category-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #1a73e8, #2563eb);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: all 0.3s ease;
}

.credit-cards-page .category-card:hover .category-icon {
    background: linear-gradient(135deg, #ffd600, #ffb700);
    transform: scale(1.1);
}

.credit-cards-page .category-icon i {
    font-size: 26px;
    color: #fff;
    transition: color 0.3s ease;
}

.credit-cards-page .category-card:hover .category-icon i {
    color: #1e293b;
}

.credit-cards-page .category-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.credit-cards-page .category-card p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}

/* ---- Featured Cards Section ---- */
.credit-cards-page .featured-cards-section {
    padding: 80px 5%;
    background: #f5f7fb;
}

.credit-cards-page .featured-cards-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.credit-cards-page .featured-cards-section .section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.credit-cards-page .featured-cards-section .section-title p {
    font-size: 16px;
    color: #64748b;
}

.credit-cards-page .featured-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.credit-cards-page .featured-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.credit-cards-page .featured-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.credit-cards-page .card-visual {
    height: 200px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px;
    overflow: hidden;
}

.credit-cards-page .card-visual.platinum {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
}

.credit-cards-page .card-visual.gold {
    background: linear-gradient(135deg, #ffd600 0%, #ffb700 100%);
}

.credit-cards-page .card-visual.silver {
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
}

.credit-cards-page .card-chip {
    width: 45px;
    height: 35px;
    background: linear-gradient(135deg, #ffd700, #d4af37);
    border-radius: 6px;
    position: relative;
}

.credit-cards-page .card-chip::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 15px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.credit-cards-page .card-number {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 3px;
    font-family: monospace;
}

.credit-cards-page .card-details {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: white;
}

.credit-cards-page .card-details span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
}

.credit-cards-page .card-visual.gold .card-number,
.credit-cards-page .card-visual.gold .card-details span {
    color: rgba(30, 41, 59, 0.95);
}

.credit-cards-page .card-visual.silver .card-number,
.credit-cards-page .card-visual.silver .card-details span {
    color: rgba(255, 255, 255, 0.95);
}

.credit-cards-page .card-info {
    padding: 25px;
}

.credit-cards-page .card-bank {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

.credit-cards-page .card-name {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 15px;
    font-style: italic;
}

.credit-cards-page .card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
}

.credit-cards-page .card-features li {
    font-size: 13px;
    color: #475569;
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.credit-cards-page .card-features li i {
    color: #22c55e;
    font-size: 12px;
    margin-top: 4px;
}

.credit-cards-page .card-fee {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 15px;
    padding: 10px;
    background: #f8fafc;
    border-radius: 8px;
}

.credit-cards-page .card-fee span {
    color: #1e293b;
    font-weight: 600;
}

.credit-cards-page .card-apply-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #1a73e8, #2563eb);
    color: white;
    text-align: center;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.credit-cards-page .card-apply-btn:hover {
    background: linear-gradient(135deg, #ffd600, #ffb700);
    color: #1e293b;
    transform: scale(1.02);
}

/* ---- Compare Section ---- */
.credit-cards-page .compare-section {
    padding: 80px 5%;
    background: #fff;
}

.credit-cards-page .compare-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.credit-cards-page .compare-section .section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.credit-cards-page .compare-section .section-title p {
    font-size: 16px;
    color: #64748b;
}

.credit-cards-page .compare-table {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.credit-cards-page .compare-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.credit-cards-page .compare-table thead {
    background: linear-gradient(135deg, #1a73e8, #2563eb);
}

.credit-cards-page .compare-table th {
    padding: 18px 20px;
    text-align: center;
    color: white;
    font-weight: 600;
    font-size: 15px;
}

.credit-cards-page .compare-table th:first-child {
    text-align: left;
}

.credit-cards-page .compare-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #e2e8f0;
    text-align: center;
    font-size: 14px;
    color: #475569;
}

.credit-cards-page .compare-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: #1e293b;
}

.credit-cards-page .compare-table tbody tr:hover {
    background: #f8fafc;
}

.credit-cards-page .compare-check {
    color: #22c55e;
    font-size: 16px;
}

.credit-cards-page .compare-cross {
    color: #ef4444;
    font-size: 16px;
}

/* ---- Benefits Section ---- */
.credit-cards-page .benefits-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, #1a73e8 0%, #2563eb 100%);
}

.credit-cards-page .benefits-section .section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.credit-cards-page .benefits-section .section-title p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
}

.credit-cards-page .benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.credit-cards-page .benefit-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.credit-cards-page .benefit-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffd600;
}

.credit-cards-page .benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ffd600, #ffb700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(255, 214, 0, 0.3);
}

.credit-cards-page .benefit-icon i {
    font-size: 28px;
    color: #1e293b;
}

.credit-cards-page .benefit-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.credit-cards-page .benefit-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ---- CTA Section ---- */
.credit-cards-page .cta-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    text-align: center;
}

.credit-cards-page .cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.credit-cards-page .cta-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.credit-cards-page .cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.credit-cards-page .cta-btn {
    display: inline-block;
    padding: 16px 50px;
    background: linear-gradient(135deg, #ffd600, #ffb700);
    color: #1e293b;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 214, 0, 0.3);
}

.credit-cards-page .cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 214, 0, 0.4);
}

/* ---- Credit Cards Page Responsive ---- */
@media (max-width: 1200px) {
    .credit-cards-page .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .credit-cards-page .featured-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .credit-cards-page .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .credit-cards-page .credit-hero h1 {
        font-size: 40px;
    }

    .credit-cards-page .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .credit-cards-page .featured-cards-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

    .credit-cards-page .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .credit-cards-page .credit-hero {
        padding: 60px 4%;
    }

    .credit-cards-page .credit-hero h1 {
        font-size: 32px;
    }

    .credit-cards-page .credit-hero p {
        font-size: 15px;
    }

    .credit-cards-page .categories-section,
    .credit-cards-page .featured-cards-section,
    .credit-cards-page .compare-section,
    .credit-cards-page .benefits-section,
    .credit-cards-page .cta-section {
        padding: 50px 4%;
    }

    .credit-cards-page .categories-section .section-title h2,
    .credit-cards-page .featured-cards-section .section-title h2,
    .credit-cards-page .compare-section .section-title h2,
    .credit-cards-page .benefits-section .section-title h2 {
        font-size: 28px;
    }

    .credit-cards-page .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .credit-cards-page .category-card {
        padding: 20px 15px;
    }

    .credit-cards-page .category-icon {
        width: 50px;
        height: 50px;
    }

    .credit-cards-page .category-icon i {
        font-size: 20px;
    }

    .credit-cards-page .benefits-grid {
        grid-template-columns: 1fr;
    }

    .credit-cards-page .benefit-card {
        padding: 25px 20px;
    }

    .credit-cards-page .compare-table {
        font-size: 13px;
    }

    .credit-cards-page .compare-table th,
    .credit-cards-page .compare-table td {
        padding: 12px 10px;
    }

    .credit-cards-page .cta-content h2 {
        font-size: 28px;
    }

    .credit-cards-page .cta-btn {
        padding: 14px 35px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .credit-cards-page .credit-hero {
        padding: 50px 3%;
    }

    .credit-cards-page .credit-hero h1 {
        font-size: 26px;
    }

    .credit-cards-page .credit-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .credit-cards-page .credit-hero-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .credit-cards-page .categories-section .section-title h2,
    .credit-cards-page .featured-cards-section .section-title h2,
    .credit-cards-page .compare-section .section-title h2,
    .credit-cards-page .benefits-section .section-title h2 {
        font-size: 24px;
    }

    .credit-cards-page .categories-grid {
        grid-template-columns: 1fr;
    }

    .credit-cards-page .category-card {
        display: flex;
        align-items: center;
        gap: 15px;
        text-align: left;
        padding: 15px;
    }

    .credit-cards-page .category-icon {
        margin: 0;
        flex-shrink: 0;
    }

    .credit-cards-page .category-card p {
        display: none;
    }

    .credit-cards-page .compare-table {
        border-radius: 12px;
    }

    .credit-cards-page .compare-table th,
    .credit-cards-page .compare-table td {
        padding: 10px 8px;
        font-size: 12px;
    }

    .credit-cards-page .benefit-card {
        display: flex;
        align-items: center;
        gap: 15px;
        text-align: left;
        padding: 20px;
    }

    .credit-cards-page .benefit-icon {
        margin: 0;
        width: 55px;
        height: 55px;
        flex-shrink: 0;
    }

    .credit-cards-page .benefit-icon i {
        font-size: 22px;
    }

    .credit-cards-page .benefit-card h3 {
        font-size: 16px;
    }

    .credit-cards-page .benefit-card p {
        font-size: 12px;
    }

    .credit-cards-page .cta-content h2 {
        font-size: 22px;
    }

    .credit-cards-page .cta-content p {
        font-size: 15px;
    }

    .credit-cards-page .cta-btn {
        width: 100%;
        max-width: 280px;
    }
}

/* ================================================
   THANK YOU PAGE STYLES
   ================================================ */

.thank-you-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #eef4f9 50%, #f0f7ff 100%);
}

.ty-container {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

/* Success Icon */
.ty-icon-wrapper {
    margin-bottom: 30px;
}

.ty-icon {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ty-icon-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: tyBounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.4);
    position: relative;
    z-index: 2;
}

.ty-icon-circle i {
    font-size: 48px;
    color: #fff;
    animation: tyCheckDraw 0.4s ease-out 0.3s both;
}

.ty-icon-ring {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 3px solid rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    animation: tyRingPulse 2s ease-out infinite;
}

.ty-icon-ring-2 {
    width: 140px;
    height: 140px;
    border-color: rgba(16, 185, 129, 0.15);
    animation-delay: 0.5s;
}

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

@keyframes tyCheckDraw {
    0% {
        clip-path: inset(0 100% 0 0);
    }
    100% {
        clip-path: inset(0 0 0 0);
    }
}

@keyframes tyRingPulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Content */
.ty-content {
    margin-bottom: 35px;
    animation: tyFadeInUp 0.6s ease-out 0.2s both;
}

.ty-title {
    font-size: 42px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.2;
}

.ty-subtitle {
    font-size: 18px;
    color: #64748b;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Reference Card */
.ty-ref-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: #fff;
    padding: 20px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 40px;
    animation: tyFadeInUp 0.6s ease-out 0.3s both;
    border: 1px solid #e2e8f0;
}

.ty-ref-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a73e8, #42a5f5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ty-ref-icon i {
    font-size: 22px;
    color: #fff;
}

.ty-ref-info {
    text-align: left;
}

.ty-ref-label {
    display: block;
    font-size: 13px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.ty-ref-number {
    font-size: 22px;
    font-weight: 700;
    color: #1a73e8;
    font-family: "Poppins", monospace;
}

/* Steps Section */
.ty-steps {
    margin-bottom: 35px;
    animation: tyFadeInUp 0.6s ease-out 0.4s both;
}

.ty-steps-title {
    font-size: 22px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 25px;
}

.ty-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ty-step-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

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

.ty-step-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #eef4ff;
    color: #1a73e8;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.ty-step-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1a73e8, #42a5f5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.ty-step-icon i {
    font-size: 20px;
    color: #fff;
}

.ty-step-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.ty-step-content p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

/* Reminder Card */
.ty-reminder {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 18px 25px;
    border-radius: 12px;
    margin-bottom: 35px;
    animation: tyFadeInUp 0.6s ease-out 0.5s both;
    border: 1px solid #fbbf24;
}

.ty-reminder-icon {
    width: 44px;
    height: 44px;
    background: #f59e0b;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ty-reminder-icon i {
    font-size: 20px;
    color: #fff;
}

.ty-reminder-text {
    text-align: left;
}

.ty-reminder-text p {
    font-size: 15px;
    color: #92400e;
    margin: 0;
}

/* Action Buttons */
.ty-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
    animation: tyFadeInUp 0.6s ease-out 0.6s both;
}

.ty-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ty-btn i {
    font-size: 18px;
}

.ty-btn-primary {
    background: linear-gradient(135deg, #1a73e8, #2563eb);
    color: #fff;
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.4);
}

.ty-btn-primary:hover {
    background: linear-gradient(135deg, #2563eb, #1a73e8);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 115, 232, 0.5);
    color: #fff;
}

.ty-btn-secondary {
    background: #fff;
    color: #1a73e8;
    border: 2px solid #1a73e8;
}

.ty-btn-secondary:hover {
    background: #eef4ff;
    transform: translateY(-2px);
}

/* Contact Info */
.ty-contact {
    animation: tyFadeInUp 0.6s ease-out 0.7s both;
}

.ty-contact > p {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 15px;
}

.ty-contact-links {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.ty-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a73e8;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.ty-contact-link:hover {
    color: #2563eb;
}

.ty-contact-link i {
    font-size: 16px;
}

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

.ty-step-card.animate-in {
    opacity: 0;
    animation: tyFadeInUp 0.5s ease-out forwards;
}

/* Responsive */
@media (max-width: 768px) {
    .thank-you-page {
        padding: 40px 15px;
    }

    .ty-title {
        font-size: 32px;
    }

    .ty-subtitle {
        font-size: 16px;
    }

    .ty-steps-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .ty-step-card {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        padding: 20px;
    }

    .ty-step-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .ty-step-content {
        flex: 1;
    }

    .ty-step-badge {
        position: static;
        margin-bottom: 10px;
        display: inline-block;
    }

    .ty-actions {
        flex-direction: column;
        align-items: center;
    }

    .ty-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .ty-ref-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .ty-ref-info {
        text-align: center;
    }

    .ty-reminder {
        flex-direction: column;
        text-align: center;
    }

    .ty-reminder-text {
        text-align: center;
    }

    .ty-contact-links {
        flex-direction: column;
        gap: 12px;
    }

    .ty-icon-circle {
        width: 80px;
        height: 80px;
    }

    .ty-icon-circle i {
        font-size: 36px;
    }

    .ty-icon-ring {
        width: 100px;
        height: 100px;
    }

    .ty-icon-ring-2 {
        width: 115px;
        height: 115px;
    }
}

@media (max-width: 480px) {
    .ty-title {
        font-size: 26px;
    }

    .ty-subtitle {
        font-size: 15px;
    }

    .ty-ref-number {
        font-size: 18px;
    }

    .ty-step-content h3 {
        font-size: 15px;
    }

    .ty-step-content p {
        font-size: 13px;
    }

    .ty-btn {
        padding: 12px 20px;
        font-size: 15px;
    }
}
