/*================================index===========================
==================================index===========================*/


 :root {
            --bg: #ffffff; --text: #111827; --primary: #0052cc; --accent: #c5a059;
            --card-bg: #f9fafb; --border: #e5e7eb; --footer-bg: #000000;
        }
        body.dark-mode {
            --bg: #030712; --text: #f3f4f6; --card-bg: #111827; --border: #374151;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; scroll-behavior: smooth; }
        body { background: var(--bg); color: var(--text); transition: 0.3s; line-height: 1.8; overflow-x: hidden; }

        /* --- PROGRESS BAR --- */
        #scrollProgress { position: fixed; top: 0; left: 0; height: 4px; background: var(--primary); z-index: 3000; width: 0%; transition: 0.1s; }

        /* --- NAVIGATION --- */
        nav {
            display: flex; justify-content: space-between; align-items: center;
            padding: 15px 8%; background: var(--bg); border-bottom: 1px solid var(--border);
            position: sticky; top: 0; z-index: 2000; width: 100%;
        }
        .logo { font-size: 1.6rem; font-weight: 800; color: var(--primary); text-decoration: none; }
        .nav-links { display: flex; gap: 30px; list-style: none; align-items: center; }
        .nav-links a { text-decoration: none; color: var(--text); font-weight: 500; transition: 0.3s; }

        /* --- LAYOUT --- */
        section { padding: 120px 8%; min-height: 80vh; display: flex; flex-direction: column; justify-content: center; border-bottom: 1px solid var(--border); }
        .container { max-width: 1200px; margin: 0 auto; width: 100%; }
        h2 { font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1; letter-spacing: -3px; margin-bottom: 30px; }
        .modern-text { font-size: 1.2rem; max-width: 700px; opacity: 0.8; margin-bottom: 40px; }
/* 2. CSS to clean up the PDF (Hides UI elements) */
    @media print {
        nav, .hamburger, #themeIcon, #scrollProgress, .btn-outline, .modal-overlay, footer {
            display: none !important;
        }
        body {
            background: white !important;
            color: black !important;
        }
        section {
            page-break-inside: avoid;
            border-bottom: 1px solid #eee !important;
        }
        .btn-primary {
            display: none !important; /* Hides the download button itself in the PDF */
        }
    }
        /* --- CARDS & GRID --- */
        .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
        .modern-card { padding: 30px; border-left: 3px solid var(--primary); background: transparent; transition: 0.3s; }
        .modern-card:hover { background: var(--card-bg); transform: translateX(10px); }
        .modern-card h3 { margin-bottom: 15px; font-size: 1.5rem; }

        /* --- BUTTONS --- */
        .btn { display: inline-block; padding: 18px 35px; border-radius: 50px; font-weight: 700; text-decoration: none; transition: 0.4s; cursor: pointer; border: none; font-size: 0.9rem; }
        .btn-primary { background: var(--primary); color: white; }
        .btn-outline { border: 1px solid var(--primary); color: var(--primary); background: transparent; margin-top: 15px; }
        .btn-outline:hover { background: var(--primary); color: white; }

        /* --- IMAGE LOGIC --- */
        .img-holder { width: 100%; height: 500px; border-radius: 30px; overflow: hidden; margin: 40px 0; }
        .img-holder img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%); transition: 0.5s; }
        .img-holder:hover img { filter: grayscale(0%); transform: scale(1.02); }

        /* --- MODAL --- */
        .modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); display: none; align-items: center; justify-content: center; z-index: 9999; }
        .modal { background: var(--bg); padding: 50px; border-radius: 30px; text-align: center; max-width: 500px; border: 1px solid var(--primary); }

        /* --- HAMBURGER --- */
        .hamburger { display: none; cursor: pointer; flex-direction: column; gap: 6px; }
        .hamburger span { width: 28px; height: 2px; background: var(--text); transition: 0.3s; }

        /* --- FOOTER --- */
        footer { background: var(--footer-bg); color: #777; padding: 120px 8% 40px; }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 50px; }
        .footer-col h4 { color: white; margin-bottom: 25px; font-size: 1.1rem; }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 12px; }
        .footer-col a { color: #777; text-decoration: none; transition: 0.3s; }
        .footer-col a:hover { color: var(--primary); }

        @media (max-width: 992px) {
            .hamburger { display: flex; }
            .nav-links { position: fixed; top: 70px; left: 0; width: 100%; background: var(--bg); flex-direction: column; height: 0; overflow: hidden; transition: 0.5s; }
            .nav-links.open { height: calc(100vh - 70px); padding: 40px 0; }
        }








/*================================Banking===========================
==================================Banking===========================*/





        




.bank-portal-2026 {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    padding: 0 5%; /* 5% Side Gap */
}

/* HERO */
.bank-hero { padding: 100px 0; }
.kicker { color: var(--primary); font-weight: 800; letter-spacing: 2px; font-size: 0.8rem; }
.bank-hero h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.1; margin: 20px 0; }
.accent-gold { color: var(--accent); }

/* VISUAL GRID DESIGN */
.visual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding-bottom: 80px;
}
.cine-card {
    position: relative;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}
.cine-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}
.cine-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: white;
}
.cine-card:hover img { transform: scale(1.1); }
.btn-read-more {
    background: white; color: black; border: none; padding: 10px 20px;
    border-radius: 50px; font-weight: 700; cursor: pointer; margin-top: 15px;
    width: fit-content; transition: 0.3s;
}
.btn-read-more:hover { background: var(--accent); color: white; }

/* EXPANDED SECTIONS */
.bank-info-section { padding: 120px 0; border-bottom: 1px solid var(--border); }
.bg-alt { background: var(--card-bg); margin-left: -5.3%; margin-right: -5.3%; padding-left: 5%; padding-right: 5%; }
.bg-dark { background: #0a0a0a; color: white; margin-left: -5.3%; margin-right: -5.3%; padding-left: 5%; padding-right: 5%; }
.split-flex { display: flex; align-items: center; gap: 80px; max-width: 1300px; margin: 0 auto; }
.split-flex.reverse { flex-direction: row-reverse; }
.text-side, .image-side { flex: 1; }
.image-side img { width: 100%; border-radius: 20px; }
.container-mid { max-width: 800px; margin: 0 auto; }

/* MODALS */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9); backdrop-filter: blur(10px);
    display: none; align-items: center; justify-content: center; z-index: 2000;
}
.modal-card {
    background: var(--bg); padding: 50px; border-radius: 25px;
    width: 90%; max-width: 500px; position: relative;
}
.modal-x { position: absolute; top: 20px; right: 20px; font-size: 2rem; border: none; background: none; cursor: pointer; }
.btn-cta { background: var(--primary); color: white; border: none; padding: 15px; width: 100%; border-radius: 10px; cursor: pointer; font-weight: 700; margin-top: 20px; }

@media (max-width: 992px) {
    .split-flex, .split-flex.reverse { flex-direction: column; text-align: center; }
}







/*================================Car Insurance===========================
==================================Car Insurance===========================*/






/* GLOBAL RESET & OVERFLOW FIX */
* { box-sizing: border-box; }
html, body { overflow-x: hidden; width: 100%; margin: 0; padding: 0; background: var(--bg); color: var(--text); font-family: 'Inter', sans-serif; }

.motor-master-2026 { width: 100%; }

/* HERO SECTION */
.motor-hero {
    height: 90vh; display: flex; align-items: center; padding: 0 10%;
    position: relative; overflow: hidden;
    background: radial-gradient(circle at 80% 20%, #1a1a2e, transparent);
}
.hero-video-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, var(--bg) 40%, transparent); z-index: 1;
}
.hero-inner { position: relative; z-index: 2; max-width: 800px; }
.text-glow { color: var(--primary); text-shadow: 0 0 20px rgba(0, 242, 255, 0.5); }
.status-badge { color: var(--primary); font-family: monospace; letter-spacing: 4px; border-left: 3px solid var(--primary); padding-left: 15px; margin-bottom: 20px; }
.motor-hero h1 { font-size: clamp(3.5rem, 10vw, 7rem); font-weight: 900; line-height: 0.95; }

.quick-action-bar { display: flex; gap: 40px; margin-top: 50px; }
.action-item strong { display: block; font-size: 2rem; color: var(--primary); }
.action-item span { font-size: 0.8rem; opacity: 0.6; text-transform: uppercase; }

/* DUAL TRACK */
.insurance-dual {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
    padding: 100px 10%; margin-top: -100px; position: relative; z-index: 3;
}
.track-card {
    padding: 60px; border-radius: 24px; border: 1px solid var(--border);
    background: rgba(17, 17, 17, 0.8); backdrop-filter: blur(20px);
}
.track-card.premium { border-color: var(--primary); box-shadow: 0 20px 40px rgba(0, 242, 255, 0.1); }
.track-tag { color: var(--primary); font-weight: 900; font-size: 0.7rem; margin-bottom: 10px; }
.feature-list { list-style: none; padding: 0; margin: 30px 0; }
.feature-list li { padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.price-estimate { font-size: 1.5rem; font-weight: 800; color: var(--primary); margin-top: 20px; }

/* TECH GRID */
.tech-deep-dive { padding: 150px 10%; background: #080808; }
.tech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 60px; }
.tech-box { padding: 40px; background: var(--bg); border: 1px solid var(--border); border-radius: 12px; }
.tech-box:hover { border-color: var(--accent); }
.tech-box .icon { font-size: 2rem; margin-bottom: 20px; }

/* BLUEPRINT */
.claim-blueprint { padding: 100px 10%; }
.blueprint-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 50px; }
.b-step { position: relative; padding: 30px; background: var(--card-bg); border-radius: 8px; }
.b-step span { position: absolute; top: -20px; left: 20px; font-size: 4rem; font-weight: 900; opacity: 0.1; color: var(--primary); }

/* FOOTER */
.motor-footer { background: var(--footer-bg) !important; padding: 100px 10% 40px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; margin-bottom: 60px; }
.f-col h4 { color: var(--primary); margin-bottom: 25px; }
.f-col a { display: block; color: var(--text); text-decoration: none; margin-bottom: 15px; opacity: 0.7; }
.copyright { text-align: center; font-size: 0.8rem; opacity: 0.4; padding-top: 40px; border-top: 1px solid var(--border); }

/* RESPONSIVE FIXES */
@media (max-width: 1024px) {
    .insurance-dual, .tech-grid, .blueprint-steps, .footer-grid { grid-template-columns: 1fr; }
    .motor-hero { height: auto; padding: 120px 5% 100px; }
    .quick-action-bar { flex-direction: column; gap: 20px; }
}












