/* --- Variables & Core Setup --- */
:root {
    --primary-blue: #0b1120;
    --bizz-blue: #0044cc;
    --bizz-green: #00b359;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --border-color: #e2e8f0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background-color: var(--white); color: var(--text-dark); overflow-x: hidden; }

/* Nepali Font Class */
.nepali-text { font-family: 'Noto Sans Devanagari', sans-serif; }

/* --- Top Status Bar --- */
.top-bar { background-color: var(--primary-blue); color: #cbd5e1; display: flex; justify-content: space-between; padding: 8px 5%; font-size: 13px; font-weight: 400; }
.top-bar span { display: inline-flex; align-items: center; gap: 8px; }
.top-bar .divider { margin: 0 15px; opacity: 0.3; }
.top-bar-right { display: flex; align-items: center; gap: 12px; }
.top-nepali { color: var(--bizz-green); font-weight: 600; letter-spacing: 0.5px; }
.top-bar-right a { color: var(--primary-blue); background: var(--white); width: 22px; height: 22px; display: inline-flex; justify-content: center; align-items: center; border-radius: 50%; text-decoration: none; font-size: 12px; transition: 0.3s; }
.top-bar-right a:hover { background: var(--bizz-green); color: var(--white); }

/* --- Main Header & Thin Logo Subtext --- */
.main-header { background: var(--white); box-shadow: 0 4px 20px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; }
.header-container { display: flex; justify-content: space-between; align-items: center; padding: 0 5%; max-width: 1400px; margin: auto; height: 85px; }

.logo { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; text-decoration: none; margin-top: 5px; }
.logo img { height: 45px; object-fit: contain; }
/* THIN, SMALL FONT FOR ZISHAN NETWORK AS REQUESTED */
.logo-subtext { font-family: 'Inter', sans-serif; font-size: 9.5px; font-weight: 300; color: #64748b; text-transform: uppercase; letter-spacing: 1.2px; margin-top: 2px; margin-left: 2px;}

.center-nav { display: flex; height: 100%; }
.nav-item { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 0 35px; cursor: pointer; color: #334155; font-weight: 600; border-bottom: 4px solid transparent; transition: 0.3s; font-size: 14px; }
.nav-item { text-decoration: none; } /* Add this line to remove underlines from the links */
.nav-item i { font-size: 22px; margin-bottom: 6px; color: var(--bizz-blue); transition: 0.3s; }
.nav-item:hover { background: #f8fafc; }
.nav-item.active { border-bottom-color: var(--bizz-green); color: var(--bizz-green); }
.nav-item.active i { color: var(--bizz-green); }

.right-nav { display: flex; gap: 20px; align-items: center; }
.action-item { display: flex; align-items: center; gap: 8px; text-decoration: none; color: #334155; font-size: 14px; font-weight: 600; padding: 10px 15px; border-radius: 8px; transition: 0.3s; }
.action-item i { font-size: 18px; color: var(--bizz-blue); }
.btn-highlight { background: rgba(0, 179, 89, 0.1); color: var(--bizz-green); border: 1px solid rgba(0, 179, 89, 0.2); }
.btn-highlight i { color: var(--bizz-green); }

/* --- Hero & Form Section --- */
.hero-section { background-color: var(--bg-light); padding: 50px 5%; display: flex; justify-content: center; }
.hero-wrapper { max-width: 1200px; width: 100%; display: flex; background: var(--white); box-shadow: 0 10px 40px rgba(0,0,0,0.08); border-radius: 16px; overflow: hidden; }

.promo-banner { flex: 1; background: linear-gradient(135deg, var(--bizz-blue), var(--bizz-green)); color: var(--white); padding: 50px; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: center; }
.promo-content { position: relative; z-index: 2; }
.banner-subtitle { font-size: 18px; color: #ffd700; margin-bottom: 15px; font-weight: 700; text-shadow: 1px 1px 3px rgba(0,0,0,0.3); }
.promo-content h2 { font-size: 44px; line-height: 1.1; margin-bottom: 25px; font-weight: 900; letter-spacing: -1px; }
.promo-content p { font-size: 17px; margin-bottom: 35px; opacity: 0.95; line-height: 1.6; }
.promo-btn { background: var(--white); color: var(--bizz-blue); border: none; padding: 14px 28px; border-radius: 30px; font-size: 16px; font-weight: 800; cursor: pointer; display: flex; align-items: center; gap: 10px; transition: transform 0.3s, box-shadow 0.3s; }
.promo-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.background-icon { position: absolute; bottom: -30px; right: -30px; font-size: 250px; color: rgba(255,255,255,0.05); transform: rotate(-15deg); }

.lead-form-container { flex: 1.2; padding: 50px; background: #ffffff; }
.form-header { font-size: 22px; color: var(--primary-blue); font-weight: 700; margin-bottom: 5px; }
.form-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 30px; }
.form-row { display: flex; gap: 20px; margin-bottom: 20px; }
.two-col { grid-template-columns: 1fr 1fr; }
.input-group { flex: 1; display: flex; flex-direction: column; }
.input-group label { font-size: 13px; font-weight: 600; color: #475569; margin-bottom: 8px; }
.input-group label span { color: #ef4444; }
.input-group input, .input-group select { width: 100%; padding: 14px; border: 1px solid var(--border-color); border-radius: 8px; font-size: 14px; outline: none; background: #f8fafc; transition: 0.3s; font-family: 'Inter', sans-serif; }
.input-group input:focus, .input-group select:focus { border-color: var(--bizz-green); background: var(--white); box-shadow: 0 0 0 3px rgba(0, 179, 89, 0.1); }
.btn-submit { width: 100%; background: var(--bizz-green); color: var(--white); border: none; padding: 16px; font-size: 16px; font-weight: 800; border-radius: 8px; cursor: pointer; margin-top: 15px; transition: background 0.3s; letter-spacing: 1px; }
.btn-submit:hover { background: #00994d; }

/* --- FAQ Section --- */
.faq-section { max-width: 900px; margin: 80px auto; padding: 0 20px; }
.faq-title { text-align: center; font-size: 36px; margin-bottom: 50px; color: var(--primary-blue); font-weight: 900; letter-spacing: -1px; }
.faq-item { border: 1px solid var(--border-color); border-radius: 10px; margin-bottom: 15px; overflow: hidden; background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.02); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 20px 25px; cursor: pointer; font-weight: 600; font-size: 16px; color: var(--primary-blue); background: #f8fafc; transition: background 0.3s; }
.faq-question:hover { background: #f1f5f9; }
.faq-question .icon { font-size: 14px; color: var(--bizz-green); transition: transform 0.3s; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; background: var(--white); }
.faq-answer p { padding: 20px 25px; color: var(--text-muted); font-size: 15px; line-height: 1.7; border-top: 1px solid var(--border-color); }
.faq-item.active .faq-question .icon { transform: rotate(45deg); color: #ef4444; }

/* --- Footer --- */
footer { background: var(--primary-blue); color: #94a3b8; padding: 80px 20px 30px; position: relative; border-top: 5px solid var(--bizz-green); }
.footer-content { max-width: 1200px; margin: auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 50px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 40px; margin-bottom: 30px; }
.footer-section h4 { color: var(--white); font-size: 18px; margin-bottom: 25px; font-weight: 700; letter-spacing: 0.5px; }
.footer-section p { font-size: 14px; margin-bottom: 12px; line-height: 1.6; }
.footer-section i { margin-right: 12px; color: var(--bizz-green); font-size: 16px; width: 20px; text-align: center; }
.trust-badges { max-width: 1200px; margin: 0 auto 30px; display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; padding: 20px; background: rgba(255,255,255,0.03); border-radius: 12px; }
.trust-badges span { display: flex; align-items: center; gap: 10px; color: #e2e8f0; font-size: 14px; font-weight: 600; }
.trust-badges span i { color: var(--bizz-green); font-size: 20px; }
.copyright { text-align: center; color: #64748b; font-size: 13px; }

@media (max-width: 992px) {
    .header-container { flex-wrap: wrap; height: auto; padding: 15px 5%; gap: 15px; }
    .hero-wrapper { flex-direction: column; }
    .two-col { grid-template-columns: 1fr; }
}


/* --- FLOATING MOBILE CALL BUTTON --- */
.mobile-call-btn {
    display: none; /* Hidden on desktop */
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #00b359, #008040);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 179, 89, 0.4);
    z-index: 1000;
    align-items: center;
    gap: 10px;
    animation: pulseCallBtn 2s infinite;
}

@keyframes pulseCallBtn {
    0% { box-shadow: 0 0 0 0 rgba(0, 179, 89, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 179, 89, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 179, 89, 0); }
}

/* Only show on screens smaller than 768px (Mobile/Tablet) */
@media (max-width: 768px) {
    .mobile-call-btn {
        display: flex;
    }
    /* Add padding to footer so the button doesn't cover content */
    footer { padding-bottom: 80px; }
}
