/* =========================================
   1. VARIABLES & RESET (Brand Colors)
   ========================================= */
:root {
    --bg-dark: #0b0e14;        /* Deepest Navy Black */
    --bg-card: #151a23;        /* Slightly lighter for cards */
    --primary: #00f2ea;        /* Cyber Neon Cyan */
    --secondary: #ff0055;      /* Neon Pink/Red */
    --text-main: #ffffff;
    --text-muted: #94a3b8;     /* Soft Grey for reading */
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

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

/* =========================================
   2. NAVBAR (Glassmorphism Effect)
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(11, 14, 20, 0.85); /* Semi-transparent */
    backdrop-filter: blur(12px); /* Blur effect like Apple/Windows 11 */
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i { color: var(--text-main); }
.logo span {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 242, 234, 0.5);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
}

/* Hover Underline Animation */
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }

.cta-btn {
    background: linear-gradient(45deg, var(--secondary), #ff4d4d);
    color: white;
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 0, 85, 0.4);
    border: none;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 85, 0.6);
}

.menu-toggle { display: none; font-size: 1.5rem; cursor: pointer; color: white; }

/* =========================================
   3. HERO SECTION (Cinematic Look)
   ========================================= */
.hero-section {
    position: relative;
    height: 85vh; /* Covers 85% of screen height */
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('images/hero-bg.jpg') no-repeat center center/cover;
    margin-top: -60px; /* To go behind navbar */
}

/* Dark Overlay to make text readable */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(11,14,20,0.4), var(--bg-dark));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.badge {
    background: rgba(0, 242, 234, 0.1);
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 20px;
}

/* Gradient Text Effect */
.highlight {
    background: linear-gradient(90deg, var(--primary), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-primary, .btn-secondary {
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--primary);
    color: #0b0e14;
    box-shadow: 0 0 20px rgba(0, 242, 234, 0.3);
}
.btn-primary:hover {
    background: #ffffff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.btn-secondary {
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover { background: rgba(255,255,255,0.15); border-color: white; }

/* =========================================
   4. FEATURED SECTION (Google Discover Cards)
   ========================================= */
.section-padding { padding: 80px 0; }

.section-heading {
    font-size: 2rem;
    margin-bottom: 40px;
    border-left: 5px solid var(--secondary);
    padding-left: 15px;
    color: white;
}

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

/* The Card Design */
.premium-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.6);
    border-color: var(--primary);
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.premium-card:hover .card-image img {
    transform: scale(1.1); /* Zoom effect on hover */
}

.category-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.8);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 2px solid var(--secondary);
}

.card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-content h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    line-height: 1.4;
    font-weight: 700;
}

.card-content h3 a { color: white; }
.card-content h3 a:hover { color: var(--primary); }

.card-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #6b7d96;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 15px;
    margin-top: auto;
}

.card-meta i { color: var(--secondary); margin-right: 6px; }

/* =========================================
   5. TRUST SECTION
   ========================================= */
.trust-section {
    background: linear-gradient(to right, #0e1118, #161b24);
    padding: 70px 0;
    margin-top: 60px;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 30px;
}

.trust-item {
    padding: 20px;
}

.trust-item i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(0, 242, 234, 0.3);
}

.trust-item h4 { font-size: 1.3rem; margin-bottom: 10px; color: white; }
.trust-item p { color: var(--text-muted); font-size: 0.95rem; }

/* =========================================
   6. FOOTER
   ========================================= */
.footer {
    background: #05070a;
    padding-top: 70px;
    margin-top: 60px;
    font-size: 0.95rem;
    border-top: 1px solid var(--glass-border);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-brand h2 { font-size: 1.8rem; margin-bottom: 20px; color: white; }
.footer-brand span { color: var(--secondary); }
.footer-brand p { color: var(--text-muted); max-width: 350px; line-height: 1.7; }

.footer-nav h4, .footer-legal h4 {
    color: white;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
    padding-bottom: 5px;
}

.footer-nav ul li, .footer-legal ul li { margin-bottom: 12px; }
.footer-nav a, .footer-legal a { color: var(--text-muted); transition: 0.2s; }
.footer-nav a:hover, .footer-legal a:hover { color: var(--primary); padding-left: 5px; }

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    color: #444;
    font-size: 0.9rem;
}

/* =========================================
   7. RESPONSIVE DESIGN (Mobile & Tablet)
   ========================================= */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 3rem; }
}

@media (max-width: 768px) {
    /* Navbar Mobile Styles */
    .menu-toggle { display: block; }
    
    .nav-links {
        display: none; /* Hidden by default on mobile */
    }

    /* JavaScript will add this class when button is clicked */
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%; /* Just below the navbar */
        left: 0;
        width: 100%;
        background: var(--bg-card);
        padding: 30px 20px;
        border-bottom: 2px solid var(--primary);
        box-shadow: 0 10px 30px rgba(0,0,0,0.9);
        animation: slideDown 0.3s ease forwards;
        gap: 20px;
    }

    .nav-links a {
        font-size: 1.2rem;
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .cta-btn { display: none; } /* Hide CTA on mobile to save space */
    
    /* Hero Section Mobile */
    .hero-section { height: auto; padding: 100px 0 60px; min-height: auto; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .btn-primary, .btn-secondary { width: 100%; }

    /* Trust Grid Mobile */
    .trust-grid { grid-template-columns: 1fr; gap: 40px; }
    
    /* Footer Mobile */
    .footer-top { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .footer-brand p { margin: 0 auto; }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
/* =========================================
   8. CONTACT PAGE STYLES (Add to style.css)
   ========================================= */

/* Header specifically for contact page */
.contact-header {
    text-align: center;
    padding: 120px 0 60px; /* Top padding to clear navbar */
    background: radial-gradient(circle at center, rgba(0, 242, 234, 0.1), var(--bg-dark));
}

.contact-header h1 { font-size: 2.5rem; margin-bottom: 15px; }
.contact-header p { color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Left side smaller, Form wider */
    gap: 40px;
    padding-bottom: 80px;
}

/* Info Card Styling */
.contact-info { padding: 40px; }
.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
}
.info-item i {
    font-size: 1.5rem;
    color: var(--primary);
    background: rgba(0, 242, 234, 0.1);
    padding: 15px;
    border-radius: 50%;
}
.info-item span { display: block; font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; }
.email-link { color: white; font-weight: 600; font-size: 1.1rem; }
.email-link:hover { color: var(--secondary); }

.social-icons { margin-top: 40px; display: flex; gap: 20px; }
.social-icons a {
    color: var(--text-muted);
    font-size: 1.5rem;
    transition: 0.3s;
}
.social-icons a:hover { color: var(--primary); transform: translateY(-3px); }

/* Form Styling */
.contact-form-wrapper { padding: 40px; }
.form-group { margin-bottom: 25px; }
.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-main);
    font-weight: 500;
}

/* Premium Inputs */
input, textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3); /* Dark input background */
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-family: inherit;
    transition: 0.3s;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 242, 234, 0.2);
    background: rgba(0, 0, 0, 0.5);
}

/* Mobile Responsive for Contact Page */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr; /* Stack on top of each other */
        gap: 30px;
    }
    .contact-info, .contact-form-wrapper { padding: 25px; }
}
/* =========================================
   9. LEGAL PAGES FIX (Add to bottom of style.css)
   ========================================= */
.page-content ul {
    list-style: disc; /* बुलेट पॉइंट्स वापस लाएं */
    padding-left: 20px;
    margin-bottom: 20px;
}
.page-content li {
    margin-bottom: 10px;
    color: var(--text-muted);
}
.page-content strong {
    color: var(--text-main);
}
