/* NAVIHAAN SOLUTIONS - COMPLETE STYLESHEET */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto+Condensed:wght@400;700&display=swap');

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

:root {
    --cyan: #00d4ff;
    --pink: #ff0080;
    --gold: #ffd700;
    --dark: #0a0e27;
    --darker: #050814;
    --card: #141829;
    --text: #ffffff;
    --gray: #a0a4b8;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Roboto Condensed', Arial, sans-serif;
    background: var(--darker);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ============ SPARKLES ============ */
#sparkles { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 9999; }
.sparkle {
    position: absolute; width: 4px; height: 4px; background: white; border-radius: 50%;
    animation: sparkle 1.5s ease forwards; box-shadow: 0 0 10px rgba(255,255,255,0.8);
}
@keyframes sparkle {
    0% { opacity: 0; transform: scale(0) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.5) rotate(180deg); }
    100% { opacity: 0; transform: scale(0) rotate(360deg); }
}

/* ============ BACKGROUND ORBS ============ */
.animated-bg { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.3; animation: float 20s ease-in-out infinite; }
.orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, var(--cyan), transparent); top: -200px; left: -200px; }
.orb-2 { width: 500px; height: 500px; background: radial-gradient(circle, var(--pink), transparent); bottom: -150px; right: -150px; animation-delay: -7s; }
.orb-3 { width: 400px; height: 400px; background: radial-gradient(circle, var(--gold), transparent); top: 50%; left: 50%; animation-delay: -14s; }
@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(100px, -100px); }
    66% { transform: translate(-50px, 100px); }
}

/* ============ NAVIGATION ============ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(10,14,39,0.95); backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.1); padding: 0.8rem 0;
}

.nav-container {
    max-width: 1400px; margin: 0 auto; padding: 0 2rem;
    display: flex; align-items: center; justify-content: space-between;
}

.logo { display: flex; align-items: center; gap: 0.8rem; }

.logo-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--cyan), #0080ff);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    font-family: 'Bebas Neue', sans-serif; font-size: 2rem; font-weight: 900;
    color: white; box-shadow: 0 0 30px rgba(0,212,255,0.5);
    animation: glow 2s ease-in-out infinite;
}
@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0,212,255,0.5); }
    50% { box-shadow: 0 0 40px rgba(0,212,255,0.8); }
}

.logo-text { display: flex; flex-direction: column; }

.logo-name {
    font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; font-weight: 900;
    letter-spacing: 2px; line-height: 1;
    background: linear-gradient(135deg, var(--cyan), #0080ff);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.logo-tagline {
    font-size: 0.65rem; letter-spacing: 1.5px; color: var(--gray);
    font-weight: 600; line-height: 1; margin-top: 0.2rem;
}

.nav-menu {
    display: flex; gap: 0.3rem; list-style: none; align-items: center;
}

.nav-menu a {
    font-family: 'Bebas Neue', sans-serif; font-size: 1.15rem;
    letter-spacing: 1.5px; color: var(--text); text-decoration: none;
    padding: 0.7rem 1rem; border-radius: 8px; transition: all 0.3s ease;
    display: inline-flex; align-items: center; gap: 0.4rem;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--cyan); background: rgba(0,212,255,0.1);
}

.ngo-tag {
    background: linear-gradient(135deg, var(--gold), #ffaa00);
    color: #000; font-size: 0.55rem; padding: 0.2rem 0.4rem;
    border-radius: 4px; font-weight: 900; letter-spacing: 0.5px;
}

.nav-actions { display: flex; gap: 1rem; align-items: center; }

.btn-admin {
    padding: 0.6rem 1.1rem; background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1); color: white;
    border-radius: 8px; font-family: 'Bebas Neue'; font-size: 0.9rem;
    letter-spacing: 1.5px; text-decoration: none; transition: 0.3s;
    display: flex; align-items: center; gap: 0.5rem;
}

.btn-admin:hover {
    background: linear-gradient(135deg, var(--cyan), #0080ff);
    transform: translateY(-2px); box-shadow: 0 5px 20px rgba(0,212,255,0.4);
}

.btn-enquire {
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, var(--pink), #ff6b35);
    border: none; color: white; border-radius: 8px;
    font-family: 'Bebas Neue'; font-size: 1rem; letter-spacing: 1.5px;
    cursor: pointer; transition: 0.3s;
    box-shadow: 0 5px 20px rgba(255,0,128,0.3);
}

.btn-enquire:hover {
    transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,0,128,0.5);
}

.hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer;
}
.hamburger span { width: 25px; height: 3px; background: white; border-radius: 2px; }

/* ============ HERO SECTION ============ */
.hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    padding: 140px 2rem 60px; text-align: center;
}

.hero-content { max-width: 1100px; margin: 0 auto; }

.hero-label {
    display: inline-block; font-family: 'Bebas Neue'; font-size: 0.85rem;
    letter-spacing: 2.5px; color: var(--cyan); margin-bottom: 2rem;
    padding: 0.8rem 2rem; border: 2px solid var(--cyan); border-radius: 50px;
    background: rgba(0,212,255,0.05); animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(0,212,255,0.3); }
    50% { box-shadow: 0 0 40px rgba(0,212,255,0.6); }
}

.hero-title {
    font-family: 'Bebas Neue'; font-size: 5rem; font-weight: 900;
    line-height: 1.1; letter-spacing: 4px; margin-bottom: 1.5rem;
}

.gradient {
    background: linear-gradient(135deg, var(--cyan), #0080ff);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.15rem; color: var(--gray); margin-bottom: 3rem;
    line-height: 1.8; letter-spacing: 0.5px;
}

.hero-stats {
    display: flex; justify-content: center; gap: 4rem;
    margin-bottom: 3rem; flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-num {
    font-family: 'Bebas Neue'; font-size: 3.5rem; font-weight: 900;
    background: linear-gradient(135deg, var(--cyan), #0080ff);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-label {
    font-family: 'Bebas Neue'; font-size: 0.85rem; letter-spacing: 2px;
    color: var(--gray); margin-top: 0.5rem;
}

.hero-btns {
    display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap;
}

.btn-primary {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--cyan), #0080ff);
    border: none; color: white; border-radius: 10px;
    font-family: 'Bebas Neue'; font-size: 1.1rem; letter-spacing: 2px;
    cursor: pointer; transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0,212,255,0.4);
    display: inline-flex; align-items: center; gap: 0.8rem;
}

.btn-primary:hover {
    transform: translateY(-3px); box-shadow: 0 15px 40px rgba(0,212,255,0.6);
}

.btn-secondary {
    padding: 1rem 2.5rem; background: transparent;
    border: 2px solid var(--cyan); color: var(--cyan); border-radius: 10px;
    font-family: 'Bebas Neue'; font-size: 1.1rem; letter-spacing: 2px;
    cursor: pointer; transition: 0.3s;
}

.btn-secondary:hover {
    background: rgba(0,212,255,0.1); transform: translateY(-3px);
}

/* ============ SERVICES SECTION ============ */
.services { padding: 100px 2rem; }
.container { max-width: 1400px; margin: 0 auto; }

.section-head { text-align: center; margin-bottom: 80px; }

.section-tag {
    font-family: 'Bebas Neue'; font-size: 0.9rem; letter-spacing: 3px;
    color: var(--cyan); display: block; margin-bottom: 1rem;
}

.section-title {
    font-family: 'Bebas Neue'; font-size: 3.5rem; font-weight: 900;
    letter-spacing: 3px; margin-bottom: 1.5rem;
}

.section-desc {
    font-size: 1.1rem; color: var(--gray); line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--card); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px; padding: 3rem 2.5rem; position: relative;
    overflow: hidden; transition: 0.4s;
}

.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--cyan), #0080ff);
    transform: scaleX(0); transition: 0.4s;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
    transform: translateY(-10px); border-color: var(--cyan);
    box-shadow: 0 20px 60px rgba(0,212,255,0.3);
}

.card-icon {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--cyan), #0080ff);
    border-radius: 15px; display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem; margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,212,255,0.4);
}

.card-icon.gold {
    background: linear-gradient(135deg, var(--gold), #ffaa00);
    box-shadow: 0 10px 30px rgba(255,215,0,0.4);
}

.service-card.spark .ngo-ribbon {
    position: absolute; top: 20px; right: -30px;
    background: linear-gradient(135deg, var(--gold), #ffaa00);
    color: #000; font-family: 'Bebas Neue'; font-size: 0.75rem;
    letter-spacing: 2px; padding: 0.5rem 3rem; transform: rotate(45deg);
    box-shadow: 0 3px 10px rgba(0,0,0,0.3); font-weight: 900;
}

.service-card h3 {
    font-family: 'Bebas Neue'; font-size: 1.8rem; letter-spacing: 2px;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray); line-height: 1.7; margin-bottom: 1.5rem;
    font-size: 1rem;
}

.features { list-style: none; margin-bottom: 2rem; }

.features li {
    padding: 0.6rem 0; color: var(--gray); display: flex;
    align-items: center; gap: 0.8rem; font-size: 1.15rem;
}

.features i { color: var(--cyan); font-size: 0.9rem; }
.features.gold i { color: var(--gold); }

.card-btn {
    display: inline-flex; align-items: center; gap: 0.8rem;
    padding: 0.8rem 1.8rem;
    background: linear-gradient(135deg, var(--cyan), #0080ff);
    color: white; border-radius: 8px; font-family: 'Bebas Neue';
    font-size: 1rem; letter-spacing: 1.5px; text-decoration: none;
    transition: 0.3s;
}

.card-btn:hover {
    transform: translateX(5px); box-shadow: 0 5px 20px rgba(0,212,255,0.5);
}

.card-btn.gold {
    background: linear-gradient(135deg, var(--gold), #ffaa00);
    color: #000;
}

.card-btn.gold:hover {
    box-shadow: 0 5px 20px rgba(255,215,0,0.5);
}

.card-num {
    position: absolute; bottom: 20px; right: 20px;
    font-family: 'Bebas Neue'; font-size: 6rem; font-weight: 900;
    color: rgba(255,255,255,0.02); line-height: 1; pointer-events: none;
}

/* ============ CTA SECTION ============ */
.cta {
    padding: 100px 2rem; background: var(--card);
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.cta h2 {
    font-family: 'Bebas Neue'; font-size: 3.5rem; letter-spacing: 3px;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem; color: var(--gray); margin-bottom: 3rem;
}

.cta-btns {
    display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap;
}

.btn-cta {
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--cyan), #0080ff);
    border: none; color: white; border-radius: 12px;
    font-family: 'Bebas Neue'; font-size: 1.2rem; letter-spacing: 2px;
    cursor: pointer; transition: 0.3s;
    box-shadow: 0 10px 40px rgba(0,212,255,0.4);
    display: inline-flex; align-items: center; gap: 1rem;
}

.btn-cta:hover {
    transform: translateY(-5px); box-shadow: 0 15px 50px rgba(0,212,255,0.6);
}

.btn-cta-outline {
    padding: 1.2rem 3rem; background: transparent;
    border: 2px solid var(--cyan); color: var(--cyan); border-radius: 12px;
    font-family: 'Bebas Neue'; font-size: 1.2rem; letter-spacing: 2px;
    text-decoration: none; transition: 0.3s;
    display: inline-flex; align-items: center; gap: 1rem;
}

.btn-cta-outline:hover {
    background: rgba(0,212,255,0.1); transform: translateY(-5px);
}

/* ============ FOOTER ============ */
.footer {
    padding: 80px 2rem 30px; background: var(--dark);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem; margin-bottom: 3rem;
}

.footer-logo { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.5rem; }

.footer p { color: var(--gray); line-height: 1.8; margin-bottom: 1.5rem; }

.social { display: flex; gap: 1rem; }

.social a {
    width: 45px; height: 45px; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gray); transition: 0.3s;
}

.social a:hover {
    background: linear-gradient(135deg, var(--cyan), #0080ff);
    color: white; transform: translateY(-3px);
}

.footer h4 {
    font-family: 'Bebas Neue'; font-size: 1.2rem; letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.8rem; }
.footer ul a {
    color: var(--gray); text-decoration: none; transition: 0.3s;
    display: inline-block;
}
.footer ul a:hover { color: var(--cyan); transform: translateX(5px); }

.footer-col i { color: var(--cyan); margin-right: 0.5rem; }

.footer-bottom {
    padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center; color: var(--gray);
}

/* ============ MODAL ============ */
.modal {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    z-index: 10000; align-items: center; justify-content: center;
}

.modal.active { display: flex; animation: fadeIn 0.3s; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.8); backdrop-filter: blur(10px);
}

.modal-content {
    position: relative; background: var(--card);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 20px;
    padding: 3rem; max-width: 700px; width: 90%; max-height: 90vh;
    overflow-y: auto; box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: slideUp 0.3s;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-close {
    position: absolute; top: 1.5rem; right: 1.5rem; width: 40px; height: 40px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px; color: var(--gray); cursor: pointer; transition: 0.3s;
    display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}

.modal-close:hover {
    background: linear-gradient(135deg, var(--pink), #ff6b35);
    color: white;
}

.modal h2 {
    font-family: 'Bebas Neue'; font-size: 2.5rem; letter-spacing: 2px;
    margin-bottom: 1rem;
}

.modal p { color: var(--gray); margin-bottom: 2rem; }

form { display: flex; flex-direction: column; gap: 1.5rem; }

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

form input, form select, form textarea {
    width: 100%; padding: 0.9rem 1.2rem;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px; color: white; font-family: inherit;
    font-size: 1rem; transition: 0.3s;
}

form input:focus, form select:focus, form textarea:focus {
    outline: none; border-color: var(--cyan);
    background: rgba(0,212,255,0.05);
    box-shadow: 0 0 20px rgba(0,212,255,0.2);
}

form textarea { resize: vertical; }

.btn-submit {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--cyan), #0080ff);
    border: none; color: white; border-radius: 10px;
    font-family: 'Bebas Neue'; font-size: 1.1rem; letter-spacing: 2px;
    cursor: pointer; transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0,212,255,0.4);
    display: inline-flex; align-items: center; justify-content: center; gap: 0.8rem;
}

.btn-submit:hover {
    transform: translateY(-2px); box-shadow: 0 15px 40px rgba(0,212,255,0.6);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .hero-title { font-size: 4rem; }
    .section-title { font-size: 3rem; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-menu, .nav-actions { display: none; }
    .hero-title { font-size: 3rem; }
    .section-title { font-size: 2.5rem; }
    .services-grid { grid-template-columns: 1fr; }
    .cta h2 { font-size: 2.5rem; }
    .hero-stats { gap: 2rem; }
}

/* Page Hero */
.page-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 2rem 80px;
}

.page-title {
    font-family: 'Bebas Neue';
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
}

.page-desc {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.content-section {
    padding: 80px 2rem;
}

/* Fix for select dropdown styling */
form select {
    background: rgba(255,255,255,0.05) !important;
    color: white !important;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    background-size: 1.2rem !important;
    padding-right: 2.5rem !important;
}

form select option {
    background: #141829 !important;
    color: white !important;
    padding: 0.5rem !important;
}

form select:hover {
    background: rgba(255,255,255,0.08) !important;
}
