:root {
    --primary-color: #007BFF;
    --secondary-color: #333;
    --background-color: #f4f7f6;
    --header-height: 80px;
    --nav-color: #fff;
    --link-hover-color: #c4e1ff;
    --hamburger-color: #333;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    line-height: 1.6;
}

/* Header Styling */
.header {
    width: 100%;
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
    background-color: #ffffff;
}

.header.scrolled {
    background: linear-gradient(135deg, #eef2f7, #f9fbff);
    backdrop-filter: blur(10px);
    box-shadow: var(--box-shadow);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Navigation Menu */
.nav-list {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hamburger Menu for Mobile */
.nav-toggle {
    display: none; /* Hide on desktop */
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative;
}

.hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--hamburger-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--hamburger-color);
    transition: transform 0.3s ease, top 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.nav-toggle.open .hamburger {
    background-color: transparent;
}

.nav-toggle.open .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.open .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Mobile Navigation Menu */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: #fff;
        padding: 80px 0 0 20px;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
        transition: right 0.4s ease-in-out;
    }

    .nav.open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .nav-toggle {
        display: block;
    }

    .header.scrolled .nav-toggle {
        /* Optional: Change hamburger color on scroll */
        color: var(--secondary-color);
    }
}

.card-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #eef2f7, #f9fbff);
}

/* GRID */
.card-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD BASE */
.card {
    position: relative;
    padding: 30px;
    border-radius: 16px;
    color: #fff;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
}

/* Glow overlay */
.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255,255,255,0.25), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Hover effect */
.card:hover {
    transform: translateY(-14px) scale(1.03);
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

.card:hover::before {
    opacity: 1;
}

/* TEXT */
.card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.card p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 22px;
    position: relative;
    z-index: 2;
    text-align: center;
}

/* BUTTON */
.card-btn {
    display: inline-block;
    /* text-align: center; */
    padding: 10px 20px;
    align-items: center;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-btn:hover {
    background: #fff;
    color: #111;
}

/* GRADIENT VARIANTS */
.gradient-1 { background: linear-gradient(135deg, #667eea, #764ba2); }
.gradient-2 { background: linear-gradient(135deg, #43cea2, #185a9d); }
.gradient-3 { background: linear-gradient(135deg, #ff758c, #ff7eb3); }
.gradient-4 { background: linear-gradient(135deg, #f7971e, #ffd200); }
.gradient-5 { background: linear-gradient(135deg, #00c6ff, #0072ff); }
.gradient-6 { background: linear-gradient(135deg, #11998e, #38ef7d); }

/* RESPONSIVE */
@media (max-width: 991px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .card-grid {
        grid-template-columns: 1fr;
    }
}
.footer {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    padding: 30px 20px;
    text-align: center;
    color: #ccc;
}

.footer-links {
    margin-bottom: 12px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    margin: 0 6px;
    transition: color 0.3s ease;
}

.footer-links span {
    color: rgba(255,255,255,0.4);
}

.footer-links a:hover {
    color: #00c6ff;
}

.footer-bottom p {
    font-size: 13px;
    color: #aaa;
}

/* Mobile spacing */
@media (max-width: 576px) {
    .footer-links a,
    .footer-links span {
        display: inline-block;
        margin: 4px 4px;
    }
}


.hero-banner {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    position: relative;
    overflow: hidden;
}

/* Decorative glow */
.hero-banner::before,
.hero-banner::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(255,255,255,0.15);
    filter: blur(120px);
    border-radius: 50%;
}

.hero-banner::before {
    top: -100px;
    left: -100px;
}

.hero-banner::after {
    bottom: -120px;
    right: -120px;
}

.hero-content {
    max-width: 700px;
    color: #fff;
    z-index: 2;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Button */
.hero-btn {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 30px;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 16px;
    }
}
.form-wrapper{
    max-width:650px;
    margin:100px auto;
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
}
h2{
    text-align:center;
    margin-bottom:20px;
}
.form-group{
    margin-bottom:15px;
}
.form-group label{
    font-weight:600;
    display:block;
    margin-bottom:6px;
}
.form-group input,
.form-group select{
    width:100%;
    padding:10px;
    border-radius:6px;
    border:1px solid #ccc;
}
.btn{
    background:#2563eb;
    color:#fff;
    border:none;
    padding:12px 25px;
    border-radius:8px;
    cursor:pointer;
    font-size:16px;
}
.btn:hover{
    background:#1e40af;
}
.step{
    display:none;
}
.step.active{
    display:block;
}
.qr-box{
    text-align:center;
}
.qr-box img{
    max-width:220px;
    margin:15px auto;
}
.amount{
    font-size:20px;
    font-weight:bold;
    color:#16a34a;
}
.timer{
    color:#dc2626;
    font-weight:bold;
    margin-top:10px;
}
.about-editorial{
    max-width:900px;
    margin:60px auto;
    padding:0 20px;
}

.about-editorial h1{
    font-size:36px;
    margin-bottom:30px;
}

.content-block{
    border-left:4px solid #2563eb;
    padding-left:20px;
    margin-bottom:30px;
}

.content-block h3{
    margin-bottom:8px;
    font-size:22px;
}

.content-block p{
    font-size:16px;
    line-height:1.7;
    color:#555;
}
.contact-content{
    max-width:900px;
    margin:100px auto;
    padding:0 20px;
    text-align:left;
}

.contact-content h1{
    font-size:36px;
    margin-bottom:20px;
    text-align:center;
}

.contact-content p{
    font-size:16px;
    line-height:1.8;
    color:#555;
    margin-bottom:20px;
}
.faq-section{
    max-width:900px;
    margin:100px auto;
    padding:0 20px;
}

.faq-section h1{
    text-align:center;
    font-size:36px;
    margin-bottom:30px;
}

.faq-item{
    margin-bottom:15px;
    border-bottom:1px solid #e5e7eb;
}

.faq-question{
    width:100%;
    background:none;
    border:none;
    text-align:left;
    padding:15px 0;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    color:#000000;
    transition:color 0.3s;
}

.faq-question:hover{
    color:#1e40af;
}

.faq-answer{
    display:none;
    padding-bottom:15px;
    color:#555;
    font-size:16px;
    line-height:1.6;
}
.policy-section{
    max-width:900px;
    margin:100px auto;
    padding:0 20px;
}

.policy-section h1{
    text-align:center;
    font-size:36px;
    margin-bottom:25px;
}

.policy-section h2{
    font-size:22px;
    margin-top:25px;
    margin-bottom:10px;
    color:#000000;
}

.policy-section p{
    font-size:16px;
    line-height:1.7;
    color:#555;
    margin-bottom:15px;
}

.policy-section ul{
    margin-left:20px;
    margin-bottom:15px;
}

.policy-section ul li{
    font-size:16px;
    line-height:1.6;
    margin-bottom:8px;
}
.policy-section{
    max-width:900px;
    margin:100px auto;
    padding:0 20px;
}

.policy-section h1{
    text-align:center;
    font-size:36px;
    margin-bottom:25px;
}

.policy-section h2{
    font-size:22px;
    margin-top:25px;
    margin-bottom:10px;
    color:#000000;
}

.policy-section p{
    font-size:16px;
    line-height:1.7;
    color:#555;
    margin-bottom:15px;
}

.policy-section ul{
    margin-left:20px;
    margin-bottom:15px;
}

.policy-section ul li{
    font-size:16px;
    line-height:1.6;
    margin-bottom:8px;
}
