:root {
    --accent: #6c5ce7;
    --dark: #0f172a;
    --text: #475569;
    --light: #f8fafc;
    --white: #ffffff;
    --grad: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: var(--text); overflow-x: hidden; line-height: 1.6; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* NAVBAR FIX */
.navbar { 
    background: rgba(255, 255, 255, 0.95); 
    backdrop-filter: blur(12px); 
    padding: 15px 0; 
    position: fixed; 
    width: 100%; 
    top: 0; 
    z-index: 1000; 
    border-bottom: 1px solid rgba(0,0,0,0.05); 
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 24px; font-weight: 800; color: var(--dark); text-decoration: none; }
.logo span { color: var(--accent); }

/* Toggle hidden on desktop */
.menu-toggle { display: none; font-size: 22px; cursor: pointer; color: var(--dark); }

.nav-links { display: flex; align-items: center; }
.nav-links a { text-decoration: none; color: var(--dark); margin-left: 30px; font-weight: 600; font-size: 14px; transition: 0.3s; }
.nav-links a:hover { color: var(--accent); }
.nav-cta { background: var(--grad); color: white !important; padding: 10px 22px; border-radius: 50px; box-shadow: 0 5px 15px rgba(108, 92, 231, 0.2); }

/* SLIDER */
.slider-section { margin-top: 70px; height: 500px; position: relative; overflow: hidden; }
.slide img { width: 100%; height: 100%; object-fit: cover; }

/* Overlay ko left alignment ke liye set kiya */
.slide-overlay { 
    position: absolute; 
    inset: 0; 
    background: rgba(0,0,0,0.1); 
    display: flex; 
    align-items: center; 
    justify-content: flex-start; /* Content ko left se start karega */
}

/* Container ko left align karne ke liye margin hatana zaroori hai */
.slide-overlay .container {
    margin-left: 5% !important; /* Screen ke kinare se thoda gap */
    margin-right: auto !important;
    max-width: 100%; /* Pure screen width allow karne ke liye */
}

/* Glass box settings */
.glass-content { 
    background: rgba(255, 255, 255, 0.15); 
    backdrop-filter: blur(15px); 
    padding: 40px; 
    border-radius: 30px; 
    max-width: 500px; /* Width thodi kam ki hai takki right side ki image na dhabe */
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    text-align: left; /* Text ko box ke andar left rakhega */
}

.glass-content h1 { font-size: 52px; line-height: 1.1; margin-bottom: 15px; }
.glass-content h1 span { color: #a29bfe; }

/* BUTTONS */
.btn-primary { 
    background: var(--grad); color: white; padding: 16px 32px; border-radius: 12px; 
    text-decoration: none; display: inline-block; font-weight: bold; border: none; cursor: pointer;
}
.full-width { width: 100%; }

/* GRID SYSTEM */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 80px 0; align-items: center; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }

/* FEATURES & TEXT */
.badge { background: #e0e7ff; color: var(--accent); padding: 5px 12px; border-radius: 50px; font-weight: 800; font-size: 11px; }
.hero-text-block h2 { font-size: 42px; color: var(--dark); margin: 15px 0; line-height: 1.2; }
.hero-text-block h2 span { color: var(--accent); }
.trust-icons { display: flex; gap: 15px; margin: 25px 0; font-size: 13px; font-weight: bold; flex-wrap: wrap; }
.ti i { color: var(--accent); }

/* VIDEO CARD */
.video-card { position: relative; border-radius: 25px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.video-card img { width: 100%; display: block; }
.play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 70px; height: 70px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--accent); }

/* STATS */
.stats-section { background: var(--dark); padding: 40px 0; border-radius: 30px; margin: 0 20px; color: white; }

/* FORM */
.support-section { background: var(--light); padding: 80px 0; }
.support-form { background: white; padding: 30px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 15px; }
input, textarea { padding: 14px; border: 1px solid #e2e8f0; border-radius: 10px; width: 100%; font-family: inherit; }

/* FOOTER */
.main-footer { background: #020617; color: white; padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; margin-bottom: 30px; }
.footer-links a { display: block; color: #94a3b8; text-decoration: none; margin-bottom: 8px; font-size: 14px; }
.footer-bottom { border-top: 1px solid #1e293b; padding-top: 20px; text-align: center; color: #64748b; font-size: 12px; }

/* MOBILE RESPONSIVE FIXES */
@media (max-width: 992px) {
    .grid-2 { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-video-block { order: -1; }
    .trust-icons { justify-content: center; }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; } /* Show only on mobile */
    .nav-links { 
        display: none; position: absolute; top: 100%; left: 0; width: 100%; 
        background: white; flex-direction: column; padding: 20px; box-shadow: 0 15px 30px rgba(0,0,0,0.1); 
    }
    .nav-links.active { display: flex; }
    .nav-links a { margin: 12px 0; margin-left: 0; width: 100%; text-align: center; }
    
    .slider-section { height: 400px; }
    .glass-content h1 { font-size: 36px; }
    .desktop-only-btn { display: none; } /* Slider button hidden on mobile for cleaner look */
    .grid-4 { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

