/*
Theme Name: Digitalbyanuj
Theme URI: https://example.com
Author: Anuj Luthra
Author URI: https://example.com
Description: Custom WordPress theme for Maxforce Digital (multi-page layout via single index.php router).
Version: 1.0
Text Domain: Digitalbyanuj
*/

/* ====== BASIC RESET & BODY ====== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
    color: #0f172a;
    background: #0b1220;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ====== LAYOUT ====== */
.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ====== HEADER ====== */
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-8483083313197176"     crossorigin="anonymous"></script>
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo a {
    font-weight: 700;
    font-size: 20px;
    color: #e5e7eb;
}

.logo span {
    color: #38bdf8;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.main-nav a {
    color: #cbd5f5;
    font-size: 14px;
}

.main-nav a:hover,
.main-nav a.active {
    color: #38bdf8;
}

/* ====== BUTTONS ====== */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
}

.btn-primary {
    background: linear-gradient(135deg, #38bdf8, #6366f1);
    color: #0b1120;
}

.btn-secondary {
    border: 1px solid rgba(148, 163, 184, 0.4);
    color: #e5e7eb;
}

/* ====== HERO ====== */
.hero {
    padding: 64px 0 40px;
    background: radial-gradient(circle at top left, #0ea5e9 0, transparent 55%),
                radial-gradient(circle at bottom right, #6366f1 0, #020617 60%);
    color: #e5e7eb;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
    gap: 40px;
    align-items: center;
}

.hero h1 {
    font-size: 38px;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero p {
    font-size: 16px;
    color: #cbd5f5;
}

.hero-actions {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-note {
    margin-top: 12px;
    font-size: 12px;
    color: #9ca3af;
}

.hero-card {
    background: rgba(15, 23, 42, 0.9);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    margin-bottom: 16px;
}

/* ====== SECTIONS ====== */
.section-label {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 11px;
    color: #9ca3af;
    margin-bottom: 12px;
}

.features,
.page-section,
.logos,
.cta-strip {
    padding: 48px 0;
    color: #e5e7eb;
}

.features h2,
.page-hero h1,
.page-section h2 {
    font-size: 28px;
    margin-bottom: 16px;
}

.logo-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    color: #9ca3af;
}

/* ====== GRIDS ====== */
.feature-grid,
.cards-grid,
.pricing-grid,
.cards-list,
.contact-grid,
.two-column {
    display: grid;
    gap: 24px;
}

.feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card,
.pricing-card {
    background: rgba(15, 23, 42, 0.95);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(148, 163, 184, 0.25);
}

.cards-list .card.horizontal {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pricing-card.featured {
    border-color: #38bdf8;
    box-shadow: 0 10px 40px rgba(56, 189, 248, 0.25);
}

.price {
    font-size: 22px;
    margin: 8px 0 12px;
}

/* ====== CTA STRIP ====== */
.cta-strip {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.15), rgba(99, 102, 241, 0.15));
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

/* ====== PAGE HERO ====== */
.page-hero {
    padding: 52px 0 24px;
    color: #e5e7eb;
}

.page-hero p {
    margin-top: 8px;
    color: #9ca3af;
}

/* ====== FORMS ====== */
.contact-form label {
    display: block;
    font-size: 14px;
    margin-bottom: 12px;
    color: #e5e7eb;
}

.contact-form input,
.contact-form textarea {
    margin-top: 6px;
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: rgba(15, 23, 42, 0.9);
    color: #e5e7eb;
}

.alert.success {
    background: rgba(22, 163, 74, 0.15);
    border: 1px solid rgba(22, 163, 74, 0.6);
    color: #bbf7d0;
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 16px;
}

/* ====== FOOTER ====== */
.site-footer {
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    padding: 32px 0 16px;
    color: #9ca3af;
    background: #020617;
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 16px;
}

.footer-col h4 {
    margin-bottom: 10px;
    color: #e5e7eb;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 6px;
}

.footer-bottom {
    text-align: center;
    font-size: 12px;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }
    .main-nav ul {
        gap: 12px;
        font-size: 13px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .contact-grid,
    .two-column {
        grid-template-columns: 1fr;
    }
}