 /* Dark background default set karein taaki network delay par bhi white screen na dikhe */
html, body {
    background-color: #030712;
}

/* Smooth Page Load Fade-In */
body {
    animation: pageFadeIn 0.25s ease-in-out;
}

@keyframes pageFadeIn {
    from {
        opacity: 0.8;
    }
    to {
        opacity: 1;
    }
}
        /* --- DYNAMIC THEMING VARIABLES --- */
        :root[data-theme="dark"] {
            --bg-main: #030712;
            --bg-surface: #0b1329;
            --bg-card: #0f172a;
            --bg-card-border: rgba(255, 255, 255, 0.2);
            --text-primary: #ffffff;
            --text-secondary: #94a3b8;
            --text-muted: #64748b;
            --nav-bg: rgba(3, 7, 18, 0.85);
            --nav-shadow: 0 4px 20px rgba(255, 255, 255, 0.25);
            --card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
        }

        :root[data-theme="light"] {
            --bg-main: #f8fafc;
            --bg-surface: #ffffff;
            --bg-card: #ffffff;
            --bg-card-border: #e2e8f0;
            --text-primary: #0f172a;
            --text-secondary: #475569;
            --text-muted: #64748b;
            --nav-bg: rgba(255, 255, 255, 0.95);
            --nav-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
            --card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
        }

        /* --- RESET & GENERAL STYLES --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Plus Jakarta Sans', sans-serif;
            scroll-behavior: smooth;
            transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
        }

        body {
            color: var(--text-secondary);
            background-color: var(--bg-main);
            line-height: 1.5;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* --- SMART HEADER & NAVBAR --- */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: var(--nav-bg);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--bg-card-border);
            box-shadow: var(--nav-shadow);
            transition: transform 0.35s ease, background-color 0.3s ease, box-shadow 0.3s ease;
        }

        header.nav-hidden {
            transform: translateY(-100%);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
            position: relative;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .logo i {
            color: #2563eb;
            font-size: 1.5rem;
        }

        .logo-text h3 {
            font-size: 1.1rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            line-height: 1.1;
            color: var(--text-primary);
        }

        .logo-text span {
            font-size: 0.75rem;
            color: #3b82f6;
            font-weight: 500;
        }

        .nav-links {
            display: flex;
            gap: 28px;
            list-style: none;
            align-items: center;
            margin: 0 auto;
        }

        .nav-links a {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-secondary);
            transition: color 0.3s;
            cursor: pointer;
        }

        .nav-links a:hover, .nav-links a.active {
            color: #2563eb;
        }

        .nav-links a.active {
            border-bottom: 2px solid #2563eb;
            padding-bottom: 4px;
        }

        .nav-right-container {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .btn-talk {
            border: 1px solid #2563eb;
            padding: 8px 18px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
            background-color: rgba(37, 99, 235, 0.1);
            color: var(--text-primary);
            font-size: 0.85rem;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-talk:hover {
            background-color: #2563eb;
            color: #ffffff;
        }



/* Desktop par yeh button hidden rahega */
.mobile-next_page-btn {
    display: none;
}


        .theme-toggle-btn {
            background: var(--bg-card);
            border: 1px solid var(--bg-card-border);
            color: var(--text-primary);
            width: 38px;
            height: 38px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
        }

        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* --- HERO SECTION --- */
        .hero-section {
            background-color: var(--bg-main);
            color: var(--text-primary);
            position: relative;
            overflow: hidden;
            padding-top: 110px;
            padding-bottom: 80px;
            background-image: radial-gradient(rgba(37, 99, 235, 0.15) 1px, transparent 1px);
            background-size: 30px 30px;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            margin-top: 20px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(37, 99, 235, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.3);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #3b82f6;
            margin-bottom: 24px;
            font-weight: 600;
        }

        .hero-badge .dot {
            width: 6px;
            height: 6px;
            background-color: #3b82f6;
            border-radius: 50%;
        }

        .hero-title {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
            color: var(--text-primary);
        }

        .hero-title span {
            color: #3b82f6;
        }

        .hero-desc {
            color: var(--text-secondary);
            font-size: 0.95rem;
            max-width: 520px;
            line-height: 1.6;
        }

        /* Hero Floating Artworks Container */
        .hero-artworks-container {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 200px;
        }

        .hero-shield-bg {
            width: 130px;
            height: 130px;
            border-radius: 50%;
            border: 1px solid rgba(37, 99, 235, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2563eb;
            font-size: 3.5rem;
            background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 70%);
            box-shadow: var(--card-shadow);
        }

        .hero-doc-bg {
            position: absolute;
            right: 10%;
            top: 20px;
            width: 150px;
            background: var(--bg-card);
            border: 1px solid var(--bg-card-border);
            border-radius: 12px;
            padding: 14px;
            transform: rotate(6deg);
            box-shadow: var(--card-shadow);
        }

        .hero-doc-bg .doc-line {
            height: 4px;
            background: var(--bg-card-border);
            border-radius: 2px;
            margin-bottom: 8px;
        }

        .whatsapp-float {
            position: fixed;
            bottom: 24px;
            right: 24px;
            background-color: #25d366;
            color: white;
            padding: 12px 20px;
            border-radius: 30px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 0.9rem;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            z-index: 999;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }

        .whatsapp-float:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
            color: #ffffff;
        }

        /* --- LANDING PAGE: POLICIES CARDS SECTION --- */
        .policies-section {
            margin-top: -30px;
            position: relative;
            z-index: 10;
            padding-bottom: 60px;
        }

        .policies-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .policy-card {
            background: var(--bg-card);
            border-radius: 16px;
            border: 1px solid var(--bg-card-border);
            padding: 40px 32px 32px;
            text-align: center;
            box-shadow: var(--card-shadow);
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .policy-card:hover {
            transform: translateY(-4px);
        }

        .policy-card.privacy-card { border-top: 4px solid #2563eb; }
        .policy-card.terms-card { border-top: 4px solid #8b5cf6; }

        .card-icon-wrapper {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        .privacy-card .card-icon-wrapper { background: rgba(37, 99, 235, 0.15); color: #2563eb; }
        .terms-card .card-icon-wrapper { background: rgba(139, 92, 246, 0.15); color: #8b5cf6; }

        .policy-card h2 {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 12px;
        }

        .policy-card > p {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.5;
            margin-bottom: 24px;
            max-width: 380px;
        }

        .checklist {
            list-style: none;
            text-align: left;
            width: 100%;
            max-width: 320px;
            margin-bottom: 32px;
        }

        .checklist li {
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .privacy-card .checklist li i { color: #2563eb; }
        .terms-card .checklist li i { color: #8b5cf6; }

        .btn-policy {
            width: 100%;
            padding: 12px 20px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            color: #ffffff;
            border: none;
            cursor: pointer;
            transition: background 0.3s;
            margin-top: auto;
        }

        .privacy-card .btn-policy { background: #2563eb; }
        .privacy-card .btn-policy:hover { background: #1d4ed8; }
        .terms-card .btn-policy { background: #8b5cf6; }
        .terms-card .btn-policy:hover { background: #7c3aed; }

        /* --- DETAILED POLICY PAGES LAYOUT --- */
        .content-section {
            padding: 50px 0 80px;
            background-color: var(--bg-surface);
        }

        .legal-grid {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 30px;
            align-items: start;
        }

        .sidebar-card {
            background: var(--bg-card);
            border: 1px solid var(--bg-card-border);
            border-radius: 12px;
            padding: 20px 16px;
            position: sticky;
            top: 90px;
        }

        .sidebar-card h4 {
            font-size: 0.85rem;
            font-weight: 800;
            color: #2563eb;
            margin-bottom: 16px;
            padding-left: 8px;
            text-transform: uppercase;
        }

        .sidebar-menu {
            list-style: none;
        }

        .sidebar-menu li {
            margin-bottom: 4px;
        }

        .sidebar-menu li a {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.78rem;
            color: var(--text-secondary);
            padding: 8px 12px;
            border-radius: 6px;
            font-weight: 600;
            transition: all 0.2s;
        }

        .sidebar-menu li a:hover, .sidebar-menu li a.active {
            background: rgba(37, 99, 235, 0.15);
            color: #2563eb;
        }

        .legal-content-card {
            background: var(--bg-card);
            border: 1px solid var(--bg-card-border);
            border-radius: 12px;
            padding: 36px;
            box-shadow: var(--card-shadow);
        }

        .last-updated-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--bg-surface);
            color: var(--text-secondary);
            border: 1px solid var(--bg-card-border);
            font-size: 0.75rem;
            font-weight: 700;
            padding: 6px 12px;
            border-radius: 6px;
            margin-bottom: 24px;
        }

        .policy-item {
            padding-bottom: 28px;
            margin-bottom: 28px;
            border-bottom: 1px solid var(--bg-card-border);
            scroll-margin-top: 100px;
        }

        .policy-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
            margin-bottom: 0;
        }

        .policy-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }

        .policy-header i {
            color: #2563eb;
            font-size: 1.1rem;
        }

        .policy-header h3 {
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--text-primary);
        }

        .policy-item p {
            font-size: 0.88rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 10px;
        }

        .policy-item ul {
            list-style: disc;
            margin-left: 20px;
            margin-top: 8px;
            color: var(--text-secondary);
            font-size: 0.85rem;
            line-height: 1.6;
        }

        .policy-item ul li {
            margin-bottom: 6px;
        }

        .btn-back {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--bg-card);
            border: 1px solid var(--bg-card-border);
            color: var(--text-primary);
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 0.8rem;
            font-weight: 600;
            cursor: pointer;
            margin-bottom: 20px;
            transition: all 0.3s;
        }

        .btn-back:hover {
            background: #2563eb;
            color: white;
            border-color: #2563eb;
        }

        /* --- NEED HELP BANNER SECTION --- */
        .help-section {
            padding: 20px 0 60px;
            background-color: var(--bg-surface);
        }

        .help-card {
            background: var(--bg-card);
            border: 1px solid var(--bg-card-border);
            border-radius: 16px;
            padding: 32px 40px;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 30px;
            align-items: center;
            box-shadow: var(--card-shadow);
        }

        .help-left {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .help-icon-circle {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: rgba(37, 99, 235, 0.15);
            color: #2563eb;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            flex-shrink: 0;
        }

        .help-text h3 {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 4px;
        }

        .help-text h3 span { color: #2563eb; }

        .help-text p {
            font-size: 0.82rem;
            color: var(--text-secondary);
        }

        .help-right {
            border-left: 1px solid var(--bg-card-border);
            padding-left: 30px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .help-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .help-item-left {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .help-item-icon {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.95rem;
        }

        .help-item-icon.blue { background: rgba(37, 99, 235, 0.15); color: #2563eb; }
        .help-item-icon.green { background: rgba(22, 163, 74, 0.15); color: #16a34a; }
        .help-item-icon.purple { background: rgba(147, 51, 234, 0.15); color: #9333ea; }

        .help-item-info h5 {
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--text-primary);
        }

        .help-item-info p {
            font-size: 0.72rem;
            color: var(--text-secondary);
        }

        .help-item a.arrow-btn {
            color: #2563eb;
            font-size: 0.9rem;
            transition: transform 0.2s;
        }

        .help-item a.arrow-btn:hover {
            transform: translateX(4px);
        }

        /* --- STRICT ALWAYS BLACK FOOTER SECTION --- */
        footer {
            background-color: #030712 !important;
            color: #94a3b8 !important;
            padding: 60px 0 24px;
            border-top: 1px solid #1e293b;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand p {
            font-size: 0.8rem;
            margin: 16px 0;
            max-width: 280px;
            line-height: 1.5;
            color: #94a3b8 !important;
        }

        .social-icons {
            display: flex;
            gap: 12px;
        }

        .social-icons a {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #1e293b;
            border: 1px solid #334155;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff !important;
            font-size: 0.85rem;
            transition: all 0.3s;
        }

        .social-icons a:hover {
            background: #2563eb;
            border-color: #2563eb;
        }

        .footer-column h4 {
            color: #ffffff !important;
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 8px;
        }

        .footer-column ul li a {
            font-size: 0.8rem;
            color: #94a3b8 !important;
            transition: color 0.3s;
        }

        .footer-column ul li a:hover {
            color: #ffffff !important;
        }

        .contact-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.8rem;
            margin-bottom: 12px;
            color: #cbd5e1 !important;
        }

        .contact-list i {
            color: #2563eb;
            font-size: 0.9rem;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 24px;
            border-top: 1px solid #1e293b;
            font-size: 0.75rem;
            color: #94a3b8 !important;
        }

        .footer-bottom-links {
            display: flex;
            gap: 16px;
        }

        .footer-bottom-links a {
            color: #94a3b8;
            cursor: pointer;
        }

        /* --- RESPONSIVE STYLES --- */
        @media (max-width: 1024px) {
            .policies-grid { grid-template-columns: 1fr; }
            .legal-grid { grid-template-columns: 1fr; }
            .sidebar-card { position: static; }
            .help-card { grid-template-columns: 1fr; }
            .help-right {
                border-left: none;
                padding-left: 0;
                border-top: 1px solid var(--bg-card-border);
                padding-top: 20px;
            }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }

@media (max-width: 768px) {
    /* --- HEADER MOBILE VIEW FIX (LARGER BUTTONS & SPACING) --- */
    #site-header .container {
        padding: 12px 16px;
    }

    #site-header nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        width: 100%;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 1;
        min-width: 0;
    }

    .logo i {
        font-size: 1.4rem;
    }

    .logo-text h3 {
        font-size: 0.85rem;
        white-space: nowrap;
        margin: 0;
        line-height: 1.1;
    }

    .logo-text span {
        font-size: 0.7rem;
        white-space: nowrap;
    }

    .nav-right-container {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-shrink: 0;
    }

    /* Hide Desktop Button */
    .btn-talk {
        display: none !important;
    }

    /* Mobile Services Pill Button */
    .mobile-next_page-btn {
        display: inline-flex !important;
        align-items: center;
        gap: 6px;
        padding: 3px 10px;
        border: 1.5px solid #3b82f6;
        border-radius: 24px;
        font-size: 0.82rem;
        font-weight: 700;
        color: #3b82f6;
        text-decoration: none;
        background: transparent;
        white-space: nowrap;
    }

    /* Mobile Theme/Settings Gear Button */
    .theme-toggle-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        background: transparent;
        border: 1.5px solid #f59e0b;
        border-radius: 50%;
        color: #f59e0b;
        font-size: 0.95rem;
        cursor: pointer;
    }

    /* Mobile Hamburger Menu Button */
    .hamburger {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        font-size: 1.3rem;
        cursor: pointer;
        color: var(--text-primary);
        padding: 4px;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--bg-surface);
        border-bottom: 1px solid var(--bg-card-border);
        flex-direction: column;
        padding: 24px 0;
        gap: 20px;
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        margin: 0;
        z-index: 1000;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }


            .btn-talk {
                display: none;
            }

            /* HERO SECTION MOBILE REORDER */
            .hero-grid {
                display: flex;
                flex-direction: column;
                gap: 30px;
            }

            .hero-artworks-container {
                order: -1;
                width: 100%;
            }

            .hero-left-text-box {
                order: 1;
            }

            .hero-title {
                font-size: 2.1rem;
            }

            /* --- WHATSAPP FLOAT BUTTON MOBILE VIEW (ICON ONLY) --- */
            .whatsapp-float {
                padding: 0;
                width: 48px;
                height: 48px;
                border-radius: 50%;
                justify-content: center;
                font-size: 1.3rem;
            }

            .whatsapp-float span {
                display: none;
            }

            /* --- MOBILE POLICIES 2-COLUMN GRID & COMPACT SIZING --- */
            .policies-grid {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 12px !important;
            }

            .policy-card {
                padding: 20px 12px 16px !important;
            }

            .card-icon-wrapper {
                width: 44px !important;
                height: 44px !important;
                font-size: 1.1rem !important;
                margin-bottom: 12px !important;
            }

            .policy-card h2 {
                font-size: 0.95rem !important;
                margin-bottom: 6px !important;
            }

            .policy-card > p {
                font-size: 0.72rem !important;
                line-height: 1.3 !important;
                margin-bottom: 12px !important;
            }

            .checklist {
                margin-bottom: 16px !important;
            }

            .checklist li {
                font-size: 0.68rem !important;
                margin-bottom: 6px !important;
                gap: 6px !important;
            }

            .btn-policy {
                padding: 8px 12px !important;
                font-size: 0.72rem !important;
            }

            /* MOBILE FOOTER CENTERED ALIGNMENT */
            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-brand {
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .footer-brand p {
                max-width: 100%;
            }

            .social-icons {
                justify-content: center;
            }

            .contact-list li {
                justify-content: center;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
        }

        /* --- SCROLL TO TOP BUTTON STYLES --- */
        #scrollTopBtn {
            position: fixed;
            bottom: 24px;
            left: 24px;
            width: 42px;
            height: 42px;
            background-color: #2563eb;
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
            z-index: 999;
            
            /* Pehle se Hidden rahega */
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Button Active State */
        #scrollTopBtn.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        /* Hover Effect */
        #scrollTopBtn:hover {
            background-color: #1d4ed8;
            transform: translateY(-4px);
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6);
        }