@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --bg-primary: #fefefe;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #e1f5fe;
    --text-primary: #334155;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --accent-blue: #60a5fa;
    --accent-purple: #8b5cf6;
    --accent-green: #10b981;
    --accent-orange: #f59e0b;
    --border-color: rgba(96, 165, 250, 0.2);
    --glass-bg: rgba(96, 165, 250, 0.05);
    --shadow: 0 4px 20px rgba(96, 165, 250, 0.15);
    --shadow-hover: 0 8px 30px rgba(96, 165, 250, 0.25);
}

 

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.container {
    max-width: auto;
    margin: 0 auto;
    margin-left: 50px;
    margin-right: 50px;
}

 

/* === HEADER: Blue Gradient + Logo & Nav in Left Corner === */
.header {
    padding: 20px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    z-index: 10;
    box-shadow: var(--shadow);
}

.nav {
    display: flex;
    justify-content: space-between; /* Logo on left, nav links spaced out */
    align-items: center;
}

.nav-links li {
  margin-left: 20px; /* or any value you want */
}


.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #1e40af;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.logo-text {
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: white;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
}

/* === HERO SECTION (unchanged) === */
.hero {
    padding: 100px 0 80px;
    text-align: center;
    background: radial-gradient(circle at 30% 20%, rgba(96, 165, 250, 0.15), transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.12), transparent 50%);
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-blue), #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent-blue), #2563eb);
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
        padding: 8px;
        position: absolute;
        top: 20px;
        right: 20px; /* 👉 Now this will work */
        z-index: 100;
    }
    
    .container {
        padding: 0 15px;
        margin-left: 10px;
        margin-right: 10px;
    }

    .logo {
        position: relative;
        z-index: 101;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px 0;
        gap: 16px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.4s ease;
        z-index: 999;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .logo-text {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
        margin-left: 10px;
        margin-right: 10px;
    }
    .container1 {
        padding: 0 15px;
    }

    .nav-links a {
        font-size: 15px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 16px;
    }
}

/* === FOOTER: Stylish but Reduced Height === */
.footer {
    padding: 30px 0; /* Reduced from 60px to 30px */
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 60px;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.1);
}

.footer-content {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 15px; /* Reduced space */
}

.footer-content a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: white;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}




/* =============Button===============*/


.load-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
}

.loadbutton {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.loadbutton:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.loadbutton:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.6);
}

hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    margin: 30px 0;
    border-radius: 2px;
    opacity: 0.8;
}


/* =============report button Button===============*/


         .complaint-section {
        text-align: center;
        margin: 2rem 0;
        padding: 1.5rem;
        background: #f8f8f8;
        border-radius: 12px;
    }

    .complaint-section h2 {
        margin-bottom: 1rem;
        font-size: 1.5rem;
        color: #333;
    }

    .complaint-section p {
        margin-bottom: 1rem;
        font-size: 1rem;
        color: #555;
    }

    #complaintBtn {
        padding: 0.75rem 1.5rem;
        border: none;
        background: #007bff;
        color: white;
        border-radius: 8px;
        cursor: pointer;
        font-size: 1rem;
        transition: background 0.3s;
    }

    #complaintBtn:hover {
        background: #0056b3;
    }
