/* =========================================================
   NKNB Technology Website
   Main Stylesheet
   File path: static/css/style.css
   ========================================================= */

/* ---------- CSS Variables ---------- */

:root {
    --primary: #0b4fd8;
    --primary-dark: #063a9c;
    --primary-soft: #eaf2ff;
    --secondary: #38bdf8;

    --dark: #07142f;
    --text: #334155;
    --muted: #64748b;
    --light: #f6f9ff;
    --white: #ffffff;
    --border: #dbe7f8;

    --success: #16a34a;
    --danger: #dc2626;

    --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 18px 45px rgba(15, 23, 42, 0.12);
    --shadow-lg: 0 28px 80px rgba(15, 23, 42, 0.16);

    --radius-md: 20px;
    --container: 1280px;
    --header-height: 82px;
}

/* ---------- Reset ---------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, Arial, Helvetica, sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

ul {
    list-style: none;
}

/* ---------- Reusable Classes ---------- */

.container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 12px 30px rgba(11, 79, 216, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(11, 79, 216, 0.32);
}

.btn-outline {
    background: var(--white);
    color: var(--primary);
    border-color: rgba(11, 79, 216, 0.24);
}

.btn-outline:hover {
    background: var(--primary-soft);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-light:hover {
    background: #eef4ff;
    transform: translateY(-2px);
}

.full {
    width: 100%;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 46px;
    text-align: center;
}

.section-heading h2 {
    margin-top: 14px;
    color: var(--dark);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    letter-spacing: -1px;
}

.section-heading p {
    margin-top: 14px;
    color: var(--muted);
    font-size: 17px;
}

/* ---------- Header ---------- */

.site-header {
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(219, 231, 248, 0.9);
    backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header.is-scrolled {
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.header-wrapper {
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-mark {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-size: 24px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(11, 79, 216, 0.25);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-text strong {
    color: var(--dark);
    font-size: 24px;
    letter-spacing: 0.03em;
}

.brand-text span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--text);
    font-size: 14px;
    font-weight: 800;
    transition: all 0.22s ease;
}

.nav-link:hover,
.nav-link.active {
    background: var(--primary-soft);
    color: var(--primary);
}

.header-btn {
    flex-shrink: 0;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--white);
    color: var(--primary);
    font-size: 20px;
    display: none;
    cursor: pointer;
}

/* ---------- Home Hero ---------- */

.hero-section {
    background:
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.14), transparent 35%),
        radial-gradient(circle at 12% 20%, rgba(11, 79, 216, 0.10), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}

.home-hero {
    min-height: calc(100vh - var(--header-height));
    height: auto;
    padding: 20px 0 24px;
    display: flex;
    align-items: center;
    overflow: visible;
}

.hero-grid {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    align-items: center;
    gap: 26px;
}

.hero-content {
    max-width: 640px;
}

.hero-content .eyebrow {
    padding: 6px 15px;
    font-size: 13px;
    margin-bottom: 14px;
}

.hero-content h1 {
    margin: 0 0 16px;
    color: var(--dark);
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p {
    max-width: 590px;
    margin-bottom: 20px;
    color: var(--text);
    font-size: 16px;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.hero-actions .btn {
    padding: 11px 20px;
    font-size: 15px;
}

.hero-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 560px;
}

.hero-trust div {
    min-height: 64px;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.75);
    box-shadow: var(--shadow-sm);
}

.hero-trust strong {
    display: block;
    color: var(--dark);
    font-size: 18px;
    margin-bottom: 4px;
}

.hero-trust span {
    display: block;
    color: var(--muted);
    font-size: 14px;
    margin: 0;
}

/* ---------- Dashboard Preview ---------- */

.hero-visual {
    min-width: 0;
    transform: scale(0.68);
    transform-origin: center right;
    overflow: visible;
}

.dashboard-card {
    display: grid;
    grid-template-columns: 150px 1fr;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.home-dashboard {
    min-height: 520px;
}

.dashboard-sidebar {
    padding: 18px 14px;
    background: linear-gradient(180deg, #07142f, #0b244d);
    color: rgba(255, 255, 255, 0.72);
}

.dash-logo {
    margin-bottom: 20px;
    padding: 12px 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-size: 14px;
    font-weight: 900;
    text-align: center;
}

.dashboard-sidebar span {
    display: block;
    padding: 10px;
    margin-bottom: 7px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
}

.dashboard-sidebar .dash-active {
    background: var(--primary);
    color: var(--white);
}

.dashboard-main {
    min-width: 0;
    padding: 18px;
    background: #f8fbff;
}

.dashboard-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.dashboard-top h3 {
    color: var(--dark);
    font-size: 22px;
}

.dash-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
}

.dash-icons i {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
}

.dash-icons span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.stat-box {
    min-width: 0;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.stat-box p {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.stat-box h4 {
    margin-top: 5px;
    color: var(--dark);
    font-size: 16px;
}

.stat-box small {
    color: var(--success);
    font-size: 11px;
    font-weight: 900;
}

.stat-box.danger small {
    color: var(--danger);
}

.home-dashboard-grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 14px;
}

.chart-area,
.category-card {
    padding: 16px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: var(--white);
}

.chart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.chart-header h4,
.category-card h4 {
    color: var(--dark);
    font-size: 16px;
}

.chart-header span {
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
}

.line-chart-preview {
    height: 205px;
    margin-top: 12px;
    border-radius: 14px;
    background:
        linear-gradient(180deg, rgba(11, 79, 216, 0.06), transparent),
        repeating-linear-gradient(
            to bottom,
            transparent 0,
            transparent 38px,
            rgba(219, 231, 248, 0.75) 39px
        );
}

.line-chart-preview svg {
    width: 100%;
    height: 100%;
}

.line-chart-preview circle {
    fill: var(--primary);
}

.category-card h4 {
    margin-bottom: 14px;
}

.donut {
    width: 112px;
    height: 112px;
    margin: 4px auto 18px;
    border-radius: 50%;
    background:
        radial-gradient(circle, var(--white) 43%, transparent 44%),
        conic-gradient(
            var(--primary) 0 40%,
            var(--secondary) 40% 70%,
            #93c5fd 70% 90%,
            #dbeafe 90% 100%
        );
}

.category-card p {
    display: grid;
    grid-template-columns: 10px 1fr auto;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 12px;
    margin-top: 9px;
}

.category-card p span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.category-card p strong {
    color: var(--dark);
}

.dashboard-bottom {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.dashboard-bottom > div {
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.dashboard-bottom h4 {
    color: var(--dark);
    font-size: 14px;
    margin-bottom: 8px;
}

.dashboard-bottom p {
    color: var(--muted);
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 5px;
}

.dashboard-bottom strong {
    color: var(--dark);
}

.inventory-value {
    color: var(--primary) !important;
    font-size: 18px !important;
    font-weight: 900;
}

.mini-bars {
    height: 52px;
    margin-top: 12px;
    display: flex;
    align-items: flex-end;
    gap: 7px;
}

.mini-bars span {
    flex: 1;
    background: linear-gradient(180deg, var(--primary), #93c5fd);
    border-radius: 6px 6px 0 0;
}

.mini-bars span:nth-child(1) { height: 35%; }
.mini-bars span:nth-child(2) { height: 58%; }
.mini-bars span:nth-child(3) { height: 76%; }
.mini-bars span:nth-child(4) { height: 48%; }
.mini-bars span:nth-child(5) { height: 92%; }

/* ---------- Trust Strip ---------- */

.trust-strip {
    padding: 34px 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.trust-item {
    padding: 20px;
    border-radius: var(--radius-md);
    background: var(--light);
    border: 1px solid var(--border);
}

.trust-item strong {
    display: block;
    color: var(--dark);
    font-size: 16px;
}

.trust-item span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
}

/* ---------- Page Hero ---------- */

.page-hero {
    padding: 94px 0;
    background:
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.16), transparent 36%),
        radial-gradient(circle at 12% 25%, rgba(11, 79, 216, 0.10), transparent 28%),
        linear-gradient(180deg, #ffffff, #f3f8ff);
}

.page-hero-content {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.page-hero-content h1 {
    margin-top: 16px;
    color: var(--dark);
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.1;
    letter-spacing: -1.6px;
}

.page-hero-content p {
    margin-top: 18px;
    color: var(--text);
    font-size: 18px;
}

/* ---------- Product Section ---------- */

.product-section {
    padding: 96px 0;
    background: var(--white);
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 58px;
    align-items: center;
}

.product-content h2 {
    margin-top: 14px;
    color: var(--dark);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.12;
}

.product-content p {
    margin-top: 18px;
    color: var(--text);
    font-size: 17px;
}

.feature-grid {
    margin: 26px 0 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.feature-grid div {
    padding: 14px 16px;
    border-radius: 14px;
    background: var(--light);
    border: 1px solid var(--border);
    color: var(--dark);
    font-size: 14px;
    font-weight: 800;
}

.feature-grid i {
    color: var(--success);
    margin-right: 8px;
}

.laptop-preview {
    position: relative;
    padding: 24px;
}

.laptop-screen {
    min-height: 330px;
    padding: 18px;
    border: 10px solid #0f172a;
    border-radius: 24px;
    background: #f8fbff;
    box-shadow: var(--shadow-lg);
}

.laptop-base {
    width: 72%;
    height: 20px;
    margin: 0 auto;
    border-radius: 0 0 28px 28px;
    background: #0f172a;
}

.mini-dashboard {
    height: 100%;
}

.mini-top {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.mini-top strong {
    color: var(--dark);
}

.mini-top span {
    color: var(--muted);
    font-size: 13px;
}

.mini-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.mini-cards div {
    height: 70px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-soft), #ffffff);
    border: 1px solid var(--border);
}

.mini-chart {
    height: 110px;
    margin-top: 14px;
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(11, 79, 216, 0.14), transparent),
        var(--white);
    border: 1px solid var(--border);
}

.mini-table {
    margin-top: 14px;
    display: grid;
    gap: 8px;
}

.mini-table span {
    height: 12px;
    border-radius: 999px;
    background: #dbeafe;
}

/* ---------- Cards Sections ---------- */

.services-section,
.process-section,
.mission-section {
    padding: 96px 0;
    background: var(--light);
}

.industries-section,
.pricing-section,
.faq-section,
.contact-section,
.about-section {
    padding: 96px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.industries-grid,
.mission-grid,
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card,
.industry-card,
.mission-card,
.process-card,
.pricing-card {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover,
.industry-card:hover,
.mission-card:hover,
.process-card:hover,
.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(11, 79, 216, 0.24);
}

.service-card i,
.industry-card i,
.mission-card i {
    width: 58px;
    height: 58px;
    margin-bottom: 20px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 17px;
    font-size: 24px;
}

.service-card h3,
.industry-card h3,
.mission-card h3,
.process-card h3 {
    color: var(--dark);
    font-size: 21px;
    line-height: 1.25;
    margin-bottom: 10px;
}

.service-card p,
.industry-card p,
.mission-card p,
.process-card p {
    color: var(--muted);
    font-size: 15px;
}

.process-card span {
    width: 50px;
    height: 50px;
    margin-bottom: 18px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--primary-soft);
    color: var(--primary);
    font-weight: 900;
}

/* ---------- About ---------- */

.about-grid {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 46px;
    align-items: center;
}

.about-visual {
    min-height: 350px;
}

.office-card {
    height: 350px;
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.28), transparent 34%),
        linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-lg);
}

.office-logo {
    padding: 26px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.92);
}

.office-logo strong {
    color: var(--dark);
    display: block;
}

.office-logo span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.about-content h2 {
    margin-top: 14px;
    color: var(--dark);
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.15;
}

.about-content p {
    margin-top: 18px;
    color: var(--text);
    font-size: 17px;
}

.about-founder-btn {
    margin-top: 26px;
}

.about-values {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.value-item {
    display: flex;
    gap: 16px;
    padding: 26px;
    border-radius: var(--radius-md);
    background: var(--light);
    border: 1px solid var(--border);
}

.value-item i {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    font-size: 21px;
}

.value-item h4 {
    color: var(--dark);
    font-size: 18px;
    margin-bottom: 4px;
}

.value-item p {
    color: var(--muted);
    font-size: 14px;
}

/* ---------- Founder ---------- */

.founder-section {
    padding: 96px 0;
    background:
        radial-gradient(circle at top left, rgba(11, 79, 216, 0.10), transparent 34%),
        linear-gradient(180deg, #ffffff, #f8fbff);
}

.founder-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 50px;
    align-items: center;
}

.founder-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.founder-photo-placeholder,
.founder-photo-box {
    width: 100%;
    max-width: 370px;
    height: 440px;
    border-radius: 30px;
    overflow: hidden;
    background: #eaf2ff;
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.16);
}

.founder-photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 90px;
}

.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.founder-content h2 {
    margin: 20px 0 12px;
    color: var(--dark);
    font-size: clamp(42px, 4.6vw, 58px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.founder-content h3 {
    margin: 0 0 24px;
    color: var(--primary);
    font-size: 22px;
    line-height: 1.4;
    font-weight: 800;
}

.founder-content p {
    margin-bottom: 18px;
    color: #1d2b45;
    font-size: 18px;
    line-height: 1.68;
}

.founder-highlights {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.founder-highlights div {
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.founder-highlights strong {
    display: block;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 18px;
    font-weight: 900;
}

.founder-highlights span {
    display: block;
    color: #53657f;
    font-size: 15px;
    line-height: 1.55;
}

/* ---------- Pricing ---------- */

.pricing-card {
    position: relative;
}

.pricing-card.featured {
    border-color: rgba(11, 79, 216, 0.42);
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 900;
}

.pricing-card h3 {
    color: var(--dark);
    font-size: 25px;
}

.pricing-card > p {
    margin-top: 8px;
    color: var(--muted);
}

.price {
    margin-top: 24px;
    color: var(--dark);
    font-size: 34px;
    font-weight: 900;
    letter-spacing: -1px;
}

.price span {
    color: var(--muted);
    font-size: 15px;
    font-weight: 800;
}

.pricing-card ul {
    margin: 26px 0;
    display: grid;
    gap: 12px;
}

.pricing-card li {
    color: var(--text);
    font-size: 15px;
    display: flex;
    gap: 10px;
}

.pricing-card li::before {
    content: "✓";
    color: var(--success);
    font-weight: 900;
}

/* ---------- FAQ ---------- */

.faq-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 52px;
    align-items: start;
}

.faq-content h2 {
    margin-top: 14px;
    color: var(--dark);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
}

.faq-content p {
    margin-top: 16px;
    color: var(--muted);
    font-size: 17px;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-list details {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
}

.faq-list summary {
    padding: 18px 20px;
    color: var(--dark);
    font-weight: 900;
    cursor: pointer;
}

.faq-list details p {
    padding: 0 20px 20px;
    color: var(--muted);
    font-size: 15px;
}

/* ---------- Contact ---------- */

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
    align-items: start;
}

.contact-content h2 {
    margin-top: 14px;
    color: var(--dark);
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.15;
}

.contact-content > p {
    margin-top: 18px;
    color: var(--text);
    font-size: 17px;
}

.contact-info {
    margin-top: 28px;
    display: grid;
    gap: 14px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-weight: 800;
}

.contact-info i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.contact-note {
    margin-top: 30px;
    padding: 24px;
    border-radius: var(--radius-md);
    background: var(--light);
    border: 1px solid var(--border);
}

.contact-note h3 {
    color: var(--dark);
    font-size: 19px;
    margin-bottom: 12px;
}

.contact-note ul {
    display: grid;
    gap: 8px;
}

.contact-note li {
    color: var(--muted);
    font-size: 15px;
    display: flex;
    gap: 10px;
}

.contact-note li::before {
    content: "✓";
    color: var(--success);
    font-weight: 900;
}

.demo-form {
    padding: 34px;
    border-radius: 30px;
    background: var(--light);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.hidden-field {
    display: none;
}

.form-row {
    margin-bottom: 18px;
}

.form-row label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 14px;
    font-weight: 900;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    min-height: 48px;
    padding: 13px 15px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--white);
    color: var(--dark);
    font-size: 15px;
    outline: none;
    transition: all 0.22s ease;
}

.form-row textarea {
    resize: vertical;
    min-height: 132px;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(11, 79, 216, 0.10);
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-small-note {
    margin-top: 14px;
    color: var(--muted);
    font-size: 13px;
    text-align: center;
}

.form-message {
    margin-top: 14px;
    padding: 13px 15px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 800;
}

.form-message.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ---------- Final CTA ---------- */

.final-cta-section {
    padding: 78px 0;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 34%),
        linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.final-cta {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 42px;
}

.cta-eyebrow {
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
}

.final-cta h2 {
    margin-top: 14px;
    max-width: 780px;
    color: var(--white);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.15;
    letter-spacing: -1px;
}

.final-cta p {
    margin-top: 16px;
    max-width: 720px;
    color: #dbeafe;
    font-size: 17px;
}

.final-cta-actions {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    flex-wrap: wrap;
}

/* ---------- Footer ---------- */

.site-footer {
    background: #061126;
    color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
    padding: 64px 0 44px;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 0.8fr 1fr;
    gap: 42px;
}

.footer-brand .brand-text strong {
    color: var(--white);
}

.footer-brand .brand-text span {
    color: rgba(255, 255, 255, 0.62);
}

.footer-brand p {
    max-width: 360px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.68);
}

.social-links {
    margin-top: 22px;
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    transition: all 0.22s ease;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.site-footer h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 18px;
}

.site-footer a {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    transition: color 0.22s ease;
}

.site-footer a:hover {
    color: var(--white);
}

.site-footer p {
    font-size: 14px;
}

.site-footer p i {
    margin-right: 8px;
    color: var(--secondary);
}

.footer-bottom {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.62);
}

/* ---------- Responsive Design ---------- */

@media (min-width: 1025px) and (max-width: 1450px) {
    .container {
        width: min(100% - 34px, 1240px);
    }

    .home-hero {
        padding: 14px 0 20px;
    }

    .hero-content h1 {
        font-size: clamp(34px, 3.8vw, 48px);
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-visual {
        transform: scale(0.62);
    }

    .hero-trust div {
        min-height: 64px;
        padding: 12px 14px;
    }
}

@media (min-width: 1025px) and (max-height: 800px) {
    .home-hero {
        min-height: auto;
        padding: 14px 0 20px;
    }

    .hero-content h1 {
        font-size: clamp(34px, 3.8vw, 48px);
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-visual {
        transform: scale(0.62);
    }
}

@media (max-width: 1180px) {
    .header-btn {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
        margin-inline: auto;
    }

    .hero-content p,
    .hero-trust {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        transform: scale(1);
        transform-origin: center;
    }
}

@media (max-width: 1024px) {
    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 16px;
        border: 1px solid var(--border);
        border-radius: 22px;
        background: var(--white);
        box-shadow: var(--shadow-lg);
    }

    .main-nav.open {
        display: flex;
    }

    .nav-link {
        padding: 13px 15px;
    }

    .menu-toggle {
        display: grid;
        place-items: center;
    }

    .dashboard-card {
        grid-template-columns: 1fr;
    }

    .dashboard-sidebar {
        display: none;
    }

    .stats-grid,
    .home-dashboard-grid,
    .dashboard-bottom,
    .trust-grid,
    .services-grid,
    .process-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-grid,
    .about-grid,
    .founder-grid,
    .faq-grid,
    .contact-grid,
    .final-cta {
        grid-template-columns: 1fr;
    }

    .about-values,
    .mission-grid,
    .industries-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .founder-image {
        justify-content: flex-start;
    }

    .final-cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 760px) {
    :root {
        --header-height: 72px;
    }

    .container {
        width: min(100% - 28px, var(--container));
    }

    .brand-mark {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .brand-text strong {
        font-size: 16px;
    }

    .brand-text span {
        font-size: 10px;
    }

    .home-hero {
        min-height: auto;
        padding: 50px 0;
    }

    .hero-content h1,
    .page-hero-content h1 {
        letter-spacing: -1px;
    }

    .hero-trust,
    .stats-grid,
    .trust-grid,
    .services-grid,
    .process-grid,
    .footer-grid,
    .feature-grid,
    .two-column {
        grid-template-columns: 1fr;
    }

    .dashboard-main {
        padding: 14px;
    }

    .home-dashboard {
        min-height: auto;
    }

    .dashboard-top {
        align-items: flex-start;
    }

    .dash-icons {
        display: none;
    }

    .line-chart-preview {
        height: 160px;
    }

    .page-hero,
    .product-section,
    .services-section,
    .industries-section,
    .process-section,
    .about-section,
    .founder-section,
    .mission-section,
    .pricing-section,
    .faq-section,
    .contact-section {
        padding: 68px 0;
    }

    .page-hero-content h1 {
        font-size: 42px;
    }

    .page-hero-content p {
        font-size: 18px;
    }

    .section-heading {
        margin-bottom: 32px;
    }

    .service-card,
    .industry-card,
    .mission-card,
    .process-card,
    .pricing-card,
    .demo-form {
        padding: 24px;
    }

    .office-card {
        height: 280px;
    }

    .founder-photo-placeholder,
    .founder-photo-box {
        max-width: 340px;
        height: 410px;
    }

    .founder-content h2 {
        font-size: 42px;
    }

    .founder-content h3 {
        font-size: 20px;
    }

    .founder-content p {
        font-size: 17px;
    }

    .founder-highlights {
        grid-template-columns: 1fr;
    }

    .final-cta-section {
        padding: 58px 0;
    }

    .final-cta-actions {
        flex-direction: column;
    }

    .final-cta-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .contact-info p {
        align-items: flex-start;
    }

    .footer-grid {
        gap: 30px;
    }
}
/* =========================================================
   Home Hero Move Up Fix
   Removes extra empty space under navbar
   ========================================================= */

@media (min-width: 1001px) {
    .home-hero {
        min-height: calc(100vh - 82px) !important;
        padding: 0 0 20px !important;
        display: flex !important;
        align-items: center !important;
    }

    .hero-grid {
        transform: translateY(-75px) !important;
    }
}

/* For smaller laptop height */
@media (min-width: 1001px) and (max-height: 800px) {
    .hero-grid {
        transform: translateY(-55px) !important;
    }
}

/* Mobile/tablet normal */
@media (max-width: 1000px) {
    .hero-grid {
        transform: none !important;
    }

    .home-hero {
        padding: 50px 0 !important;
    }
}

/* =========================================================
   Uploaded Logo Size Fix
   Keeps admin-uploaded logo small in header/footer
   ========================================================= */

.site-header .brand img,
.brand .site-logo-img,
.site-logo-img {
    width: 54px !important;
    height: 54px !important;
    max-width: 54px !important;
    max-height: 54px !important;
    object-fit: contain !important;
    border-radius: 12px !important;
    display: block !important;
}

/* Prevent uploaded logo from becoming huge anywhere inside header */
.site-header img {
    max-height: 54px !important;
    width: auto !important;
}

/* Footer logo size */
.site-footer .brand img,
.site-footer .site-logo-img {
    width: 54px !important;
    height: 54px !important;
    max-width: 54px !important;
    max-height: 54px !important;
    object-fit: contain !important;
}

/* Keep brand text aligned */
.brand {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}
{% load static %}
<!DOCTYPE html>
<html lang="en">
<head>
    <!-- Basic SEO -->
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Products | Byapar Sathi | NKNB Technology</title>
    <meta name="description" content="Explore NKNB Technology products including Byapar Sathi, a business management software for inventory, sales, suppliers, reports and forecasting.">
    <meta name="author" content="NKNB Technology">
    <meta name="robots" content="index, follow">
    <meta name="theme-color" content="#0b4fd8">

    <!-- Open Graph -->
    <meta property="og:title" content="Products | NKNB Technology">
    <meta property="og:description" content="Explore Byapar Sathi and other business management software solutions from NKNB Technology.">
    <meta property="og:type" content="website">
    <meta property="og:image" content="{% static 'images/og-image.jpg' %}">
    <meta property="og:site_name" content="NKNB Technology">

   <!-- Google Font: Inter -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap" rel="stylesheet">

<!-- CSS -->
<link rel="stylesheet" href="{% static 'css/style.css' %}">

<!-- Icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">


    <!-- Favicon -->
    <link rel="icon" href="{% static 'images/favicon.png' %}" type="image/png">

    <!-- Structured Data -->
    <script type="application/ld+json">
    {
        "@context": "https://schema.org",
        "@type": "SoftwareApplication",
        "name": "Byapar Sathi",
        "applicationCategory": "BusinessApplication",
        "operatingSystem": "Web",
        "description": "Business management software for inventory, sales, suppliers, reports and forecasting.",
        "creator": {
            "@type": "Organization",
            "name": "NKNB Technology"
        }
    }
    </script>
</head>

<body>

    <!-- Header -->
    <header class="site-header" id="top">
        <div class="container header-wrapper">

            <a href="{% url 'home' %}" class="brand" aria-label="{{ site_setting.company_name|default:'NKNB Technology' }} Home">
    {% if site_setting and site_setting.logo %}
        <img
            src="{{ site_setting.logo.url }}"
            alt="{{ site_setting.company_name|default:'NKNB Technology' }}"
            class="site-logo-img"
        >
    {% else %}
        <div class="brand-mark">N</div>
    {% endif %}

    <div class="brand-text">
        <strong>{{ site_setting.company_name|default:"NKNB" }}</strong>
        <span>{{ site_setting.tagline|default:"TECHNOLOGY" }}</span>
    </div>
</a>

            <nav class="main-nav" id="mainNav" aria-label="Main Navigation">
                <a href="{% url 'home' %}" class="nav-link">Home</a>
                <a href="{% url 'about' %}" class="nav-link">About</a>
                <a href="{% url 'founder' %}" class="nav-link">Founder</a>
                <a href="{% url 'products' %}" class="nav-link active">Products</a>
                <a href="{% url 'services' %}" class="nav-link">Services</a>
                <a href="{% url 'pricing' %}" class="nav-link">Pricing</a>
                <a href="{% url 'contact' %}" class="nav-link">Contact</a>
            </nav>

            <a href="{% url 'contact' %}" class="btn btn-primary header-btn">
                <i class="fa-regular fa-calendar-check" aria-hidden="true"></i>
                Request Demo
            </a>

            <button
                class="menu-toggle"
                id="menuToggle"
                type="button"
                aria-label="Open menu"
                aria-controls="mainNav"
                aria-expanded="false"
            >
                <i class="fa-solid fa-bars" aria-hidden="true"></i>
            </button>

        </div>
    </header>

    <main>

        <!-- Page Hero -->
        <section class="page-hero">
            <div class="container page-hero-content">
                <span class="eyebrow">Our Products</span>

                <h1>
                    Business Software Built for Daily Operations
                </h1>

                <p>
                    NKNB Technology develops practical business systems that help companies
                    manage inventory, sales, suppliers, reports and operational decisions
                    from one clear platform.
                </p>
            </div>
        </section>

        <!-- Featured Product -->
        <section class="product-section">
            <div class="container product-grid">

                <div class="product-content">
                    <span class="eyebrow">Featured Product</span>
                    <h2>Byapar Sathi</h2>

                    <p>
                        Byapar Sathi is an all-in-one business management software designed
                        for retailers, wholesalers and distributors who need better control
                        over inventory, sales, suppliers, reports and forecasting.
                    </p>

                    <div class="feature-grid">
                        <div><i class="fa-solid fa-circle-check" aria-hidden="true"></i> Inventory Management</div>
                        <div><i class="fa-solid fa-circle-check" aria-hidden="true"></i> Barcode System</div>
                        <div><i class="fa-solid fa-circle-check" aria-hidden="true"></i> Low Stock Alerts</div>
                        <div><i class="fa-solid fa-circle-check" aria-hidden="true"></i> Supplier Tracking</div>
                        <div><i class="fa-solid fa-circle-check" aria-hidden="true"></i> Sales & Profit Reports</div>
                        <div><i class="fa-solid fa-circle-check" aria-hidden="true"></i> Demand Forecasting</div>
                    </div>

                    <a href="{% url 'contact' %}" class="btn btn-primary">
                        Request Byapar Sathi Demo
                        <i class="fa-solid fa-arrow-right" aria-hidden="true"></i>
                    </a>
                </div>

                <div class="laptop-preview" aria-hidden="true">
                    <div class="laptop-screen">
                        <div class="mini-dashboard">
                            <div class="mini-top">
                                <strong>Byapar Sathi</strong>
                                <span>Business Dashboard</span>
                            </div>

                            <div class="mini-cards">
                                <div></div>
                                <div></div>
                                <div></div>
                            </div>

                            <div class="mini-chart"></div>

                            <div class="mini-table">
                                <span></span>
                                <span></span>
                                <span></span>
                            </div>
                        </div>
                    </div>

                    <div class="laptop-base"></div>
                </div>

            </div>
        </section>

        <!-- Product Modules -->
        <section class="services-section">
            <div class="container">

                <div class="section-heading">
                    <span class="eyebrow">Product Modules</span>
                    <h2>What Byapar Sathi Can Manage</h2>
                    <p>
                        The system can be customised based on business size, workflow and reporting needs.
                    </p>
                </div>

                <div class="services-grid">

                    <article class="service-card">
                        <i class="fa-solid fa-boxes-stacked" aria-hidden="true"></i>
                        <h3>Inventory Module</h3>
                        <p>
                            Manage products, stock quantity, minimum stock levels, product categories,
                            barcode records and inventory value.
                        </p>
                    </article>

                    <article class="service-card">
                        <i class="fa-solid fa-cash-register" aria-hidden="true"></i>
                        <h3>Sales Module</h3>
                        <p>
                            Track sales, orders, invoices, payment records and daily business transactions.
                        </p>
                    </article>

                    <article class="service-card">
                        <i class="fa-solid fa-truck-field" aria-hidden="true"></i>
                        <h3>Supplier Module</h3>
                        <p>
                            Manage supplier details, product purchases, payment records and supplier history.
                        </p>
                    </article>

                    <article class="service-card">
                        <i class="fa-solid fa-chart-simple" aria-hidden="true"></i>
                        <h3>Reports Module</h3>
                        <p>
                            View sales reports, profit summaries, stock reports and business performance insights.
                        </p>
                    </article>

                </div>
            </div>
        </section>

        <!-- Future Products -->
        <section class="industries-section">
            <div class="container">

                <div class="section-heading">
                    <span class="eyebrow">Product Roadmap</span>
                    <h2>Future Software Solutions</h2>
                    <p>
                        NKNB Technology is planning a wider product portfolio for business operations,
                        workforce management and reporting.
                    </p>
                </div>

                <div class="industries-grid">

                    <article class="industry-card">
                        <i class="fa-solid fa-store" aria-hidden="true"></i>
                        <h3>Retail Management System</h3>
                        <p>
                            A complete solution for shops, supermarkets and small businesses that need
                            stock, sales and reporting tools.
                        </p>
                    </article>

                    <article class="industry-card">
                        <i class="fa-solid fa-calendar-days" aria-hidden="true"></i>
                        <h3>Staff Rota System</h3>
                        <p>
                            A system for managing staff availability, shifts, rota updates and urgent
                            replacement requests.
                        </p>
                    </article>

                    <article class="industry-card">
                        <i class="fa-solid fa-chart-line" aria-hidden="true"></i>
                        <h3>Forecasting Dashboard</h3>
                        <p>
                            A dashboard for demand forecasting, stock planning and business decision support.
                        </p>
                    </article>

                </div>
            </div>
        </section>

        <!-- Process -->
        <section class="process-section">
            <div class="container">

                <div class="section-heading">
                    <span class="eyebrow">Implementation</span>
                    <h2>How Product Setup Works</h2>
                    <p>
                        We follow a clear setup process before delivering a business software system.
                    </p>
                </div>

                <div class="process-grid">

                    <article class="process-card">
                        <span>01</span>
                        <h3>Requirement Review</h3>
                        <p>
                            We discuss your products, users, reporting needs and current business workflow.
                        </p>
                    </article>

                    <article class="process-card">
                        <span>02</span>
                        <h3>System Configuration</h3>
                        <p>
                            We prepare product categories, user roles, dashboard pages and database structure.
                        </p>
                    </article>

                    <article class="process-card">
                        <span>03</span>
                        <h3>Testing</h3>
                        <p>
                            We test stock updates, reports, form validation, user access and important workflows.
                        </p>
                    </article>

                    <article class="process-card">
                        <span>04</span>
                        <h3>Training & Launch</h3>
                        <p>
                            We help users understand the system before final launch and future maintenance.
                        </p>
                    </article>

                </div>
            </div>
        </section>

        <!-- CTA -->
        <section class="final-cta-section">
            <div class="container final-cta">

                <div>
                    <span class="eyebrow cta-eyebrow">Product Demo</span>
                    <h2>Want to See How Byapar Sathi Works?</h2>
                    <p>
                        Request a demo and we will explain how the software can fit your business operations.
                    </p>
                </div>

                <div class="final-cta-actions">
                    <a href="{% url 'contact' %}" class="btn btn-primary">
                        <i class="fa-regular fa-calendar-check" aria-hidden="true"></i>
                        Request Demo
                    </a>

                    <a href="{% url 'pricing' %}" class="btn btn-light">
                        View Pricing
                    </a>
                </div>

            </div>
        </section>

    </main>

    <!-- Footer -->
    <footer class="site-footer">
        <div class="container footer-grid">

            <div class="footer-brand">
                <a href="{% url 'home' %}" class="brand" aria-label="NKNB Technology Home">
                    <div class="brand-mark">N</div>
                    <div class="brand-text">
                        <strong>NKNB</strong>
                        <span>TECHNOLOGY</span>
                    </div>
                </a>

                <p>
                    Smart software solutions to simplify operations, boost efficiency
                    and support business growth.
                </p>

                <div class="social-links">
                    <a href="#" aria-label="Facebook">
                        <i class="fa-brands fa-facebook-f" aria-hidden="true"></i>
                    </a>

                    <a href="#" aria-label="LinkedIn">
                        <i class="fa-brands fa-linkedin-in" aria-hidden="true"></i>
                    </a>

                    <a href="#" aria-label="Instagram">
                        <i class="fa-brands fa-instagram" aria-hidden="true"></i>
                    </a>
                </div>
            </div>

            <div>
                <h3>Quick Links</h3>
                <a href="{% url 'home' %}">Home</a>
                <a href="{% url 'about' %}">About</a>
                <a href="{% url 'founder' %}">Founder & CEO</a>
                <a href="{% url 'products' %}">Products</a>
                <a href="{% url 'services' %}">Services</a>
                <a href="{% url 'pricing' %}">Pricing</a>
                <a href="{% url 'contact' %}">Contact</a>
            </div>

            <div>
                <h3>Products</h3>
                <a href="{% url 'products' %}">Byapar Sathi</a>
                <a href="{% url 'products' %}">POS System</a>
                <a href="{% url 'products' %}">Inventory Management</a>
                <a href="{% url 'products' %}">Reports & Analytics</a>
            </div>

            <div>
                <h3>Contact</h3>
                <p>
                    <i class="fa-solid fa-envelope" aria-hidden="true"></i>
                    info@nknbtechnology.com
                </p>

                <p>
                    <i class="fa-solid fa-phone" aria-hidden="true"></i>
                    +44 7349649735
                </p>

                <p>
                    <i class="fa-solid fa-location-dot" aria-hidden="true"></i>
                    Kathmandu, Nepal / UK
                </p>
            </div>

        </div>

        <div class="footer-bottom">
            <p>© 2026 NKNB Technology. All Rights Reserved.</p>
        </div>
    </footer>

    <script src="{% static 'js/script.js' %}"></script>
</body>
</html>


/* =========================================================
   Contact Page - Fit Request Demo Section In Screen
   ========================================================= */

.contact-section {
    padding: 45px 0 55px !important;
}

.contact-grid {
    display: grid !important;
    grid-template-columns: 0.85fr 1.15fr !important;
    align-items: start !important;
    gap: 55px !important;
}

.contact-content {
    padding-top: 15px !important;
}

.contact-content .eyebrow {
    margin-bottom: 18px !important;
}

.contact-content h2 {
    font-size: clamp(42px, 4.2vw, 62px) !important;
    line-height: 1.12 !important;
    margin-bottom: 24px !important;
}

.contact-content p {
    font-size: 20px !important;
    line-height: 1.55 !important;
    margin-bottom: 28px !important;
}

.contact-info {
    gap: 18px !important;
}

.contact-info p {
    margin: 0 !important;
    font-size: 18px !important;
}

.contact-info i {
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    font-size: 20px !important;
}

.demo-form {
    padding: 42px !important;
    border-radius: 30px !important;
}

.form-row {
    margin-bottom: 22px !important;
}

.form-row label {
    margin-bottom: 9px !important;
    font-size: 16px !important;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
    min-height: 54px !important;
    padding: 14px 18px !important;
    font-size: 17px !important;
    border-radius: 16px !important;
}

.demo-form textarea {
    min-height: 115px !important;
    resize: vertical !important;
}

.form-row.two-column {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 22px !important;
}

.demo-form .btn.full {
    margin-top: 4px !important;
    min-height: 54px !important;
    padding: 14px 22px !important;
}

/* Fit better on laptop screens */
@media (max-height: 820px) and (min-width: 1000px) {
    .contact-section {
        padding: 28px 0 40px !important;
    }

    .contact-grid {
        gap: 42px !important;
    }

    .contact-content h2 {
        font-size: 52px !important;
        margin-bottom: 18px !important;
    }

    .contact-content p {
        font-size: 18px !important;
        line-height: 1.45 !important;
        margin-bottom: 22px !important;
    }

    .contact-info {
        gap: 14px !important;
    }

    .contact-info i {
        width: 48px !important;
        height: 48px !important;
        min-width: 48px !important;
    }

    .demo-form {
        padding: 32px !important;
    }

    .form-row {
        margin-bottom: 16px !important;
    }

    .demo-form input,
    .demo-form select {
        min-height: 48px !important;
        padding: 11px 16px !important;
        font-size: 16px !important;
    }

    .demo-form textarea {
        min-height: 90px !important;
        padding: 11px 16px !important;
        font-size: 16px !important;
    }

    .demo-form .btn.full {
        min-height: 48px !important;
        padding: 12px 20px !important;
    }
}

/* Mobile */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
    }

    .contact-content h2 {
        font-size: 38px !important;
    }

    .form-row.two-column {
        grid-template-columns: 1fr !important;
    }

    .demo-form {
        padding: 26px !important;
    }
}
/* =========================================================
   Contact Page - Extra Compact Fit
   ========================================================= */

.contact-section {
    padding: 20px 0 30px !important;
}

.contact-grid {
    grid-template-columns: 0.8fr 1.2fr !important;
    gap: 34px !important;
    align-items: start !important;
}

.contact-content {
    padding-top: 4px !important;
}

.contact-content .eyebrow {
    padding: 8px 18px !important;
    font-size: 14px !important;
    margin-bottom: 14px !important;
}

.contact-content h2 {
    font-size: 44px !important;
    line-height: 1.08 !important;
    margin: 0 0 16px !important;
}

.contact-content p {
    font-size: 17px !important;
    line-height: 1.42 !important;
    margin-bottom: 20px !important;
}

.contact-info {
    display: grid !important;
    gap: 10px !important;
}

.contact-info p {
    font-size: 16px !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.contact-info i {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    font-size: 16px !important;
    border-radius: 12px !important;
}

.demo-form {
    padding: 24px 28px !important;
    border-radius: 24px !important;
}

.form-row {
    margin-bottom: 12px !important;
}

.form-row label {
    font-size: 14px !important;
    margin-bottom: 6px !important;
}

.demo-form input,
.demo-form select {
    min-height: 42px !important;
    height: 42px !important;
    padding: 8px 14px !important;
    font-size: 15px !important;
    border-radius: 13px !important;
}

.demo-form textarea {
    min-height: 70px !important;
    height: 70px !important;
    padding: 8px 14px !important;
    font-size: 15px !important;
    border-radius: 13px !important;
}

.form-row.two-column {
    grid-template-columns: 1fr 1fr !important;
    gap: 14px !important;
}

.demo-form .btn.full {
    min-height: 42px !important;
    height: 42px !important;
    padding: 8px 18px !important;
    font-size: 15px !important;
    margin-top: 2px !important;
}

.faq-section {
    padding-top: 45px !important;
}

/* Very small laptop height */
@media (max-height: 760px) and (min-width: 1000px) {
    .page-hero {
        min-height: 58vh !important;
        height: auto !important;
        padding: 70px 0 55px !important;
    }

    .contact-section {
        padding: 12px 0 24px !important;
    }

    .contact-content h2 {
        font-size: 38px !important;
    }

    .contact-content p {
        font-size: 16px !important;
        line-height: 1.35 !important;
        margin-bottom: 14px !important;
    }

    .contact-info i {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
    }

    .demo-form {
        padding: 20px 24px !important;
    }

    .form-row {
        margin-bottom: 9px !important;
    }

    .demo-form input,
    .demo-form select {
        min-height: 38px !important;
        height: 38px !important;
    }

    .demo-form textarea {
        min-height: 58px !important;
        height: 58px !important;
    }

    .demo-form .btn.full {
        min-height: 38px !important;
        height: 38px !important;
    }
}

/* Mobile */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 26px !important;
    }

    .contact-content h2 {
        font-size: 34px !important;
    }

    .form-row.two-column {
        grid-template-columns: 1fr !important;
    }

    .demo-form {
        padding: 22px !important;
    }
}
/* =========================================================
   Contact Page Best UI Layout
   Compact hero + visible request demo form
   ========================================================= */

/* Make contact page hero smaller */
body:has(.contact-section) .page-hero {
    min-height: auto !important;
    height: auto !important;
    padding: 75px 0 55px !important;
}

body:has(.contact-section) .page-hero-content {
    max-width: 980px !important;
}

body:has(.contact-section) .page-hero-content .eyebrow {
    padding: 8px 18px !important;
    font-size: 14px !important;
    margin-bottom: 18px !important;
}

body:has(.contact-section) .page-hero-content h1 {
    font-size: clamp(42px, 4.8vw, 68px) !important;
    line-height: 1.08 !important;
    margin-bottom: 18px !important;
}

body:has(.contact-section) .page-hero-content p {
    max-width: 850px !important;
    font-size: 19px !important;
    line-height: 1.55 !important;
}

/* Contact form section starts closer */
.contact-section {
    padding: 36px 0 70px !important;
}

/* Better two-column layout */
.contact-grid {
    display: grid !important;
    grid-template-columns: 0.82fr 1.18fr !important;
    gap: 50px !important;
    align-items: start !important;
}

/* Left contact content */
.contact-content {
    padding-top: 18px !important;
}

.contact-content .eyebrow {
    padding: 8px 18px !important;
    font-size: 14px !important;
    margin-bottom: 18px !important;
}

.contact-content h2 {
    font-size: clamp(38px, 3.7vw, 56px) !important;
    line-height: 1.08 !important;
    margin-bottom: 18px !important;
}

.contact-content p {
    font-size: 18px !important;
    line-height: 1.52 !important;
    margin-bottom: 24px !important;
}

/* Contact details */
.contact-info {
    display: grid !important;
    gap: 14px !important;
}

.contact-info p {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    font-size: 17px !important;
    margin: 0 !important;
}

.contact-info i {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    border-radius: 14px !important;
    font-size: 17px !important;
}

/* Form card */
.demo-form {
    padding: 30px 34px !important;
    border-radius: 28px !important;
}

/* Form spacing */
.form-row {
    margin-bottom: 15px !important;
}

.form-row label {
    font-size: 14px !important;
    margin-bottom: 7px !important;
}

/* Inputs */
.demo-form input,
.demo-form select {
    height: 46px !important;
    min-height: 46px !important;
    padding: 10px 16px !important;
    font-size: 15px !important;
    border-radius: 14px !important;
}

.demo-form textarea {
    height: 78px !important;
    min-height: 78px !important;
    padding: 10px 16px !important;
    font-size: 15px !important;
    border-radius: 14px !important;
}

/* Email + phone row */
.form-row.two-column {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 18px !important;
}

/* Submit button */
.demo-form .btn.full {
    height: 46px !important;
    min-height: 46px !important;
    padding: 10px 20px !important;
    font-size: 15px !important;
    margin-top: 4px !important;
}

/* FAQ spacing */
.faq-section {
    padding-top: 55px !important;
}

/* Laptop screen fix */
@media (max-height: 800px) and (min-width: 1000px) {
    body:has(.contact-section) .page-hero {
        padding: 52px 0 42px !important;
    }

    body:has(.contact-section) .page-hero-content h1 {
        font-size: 54px !important;
    }

    body:has(.contact-section) .page-hero-content p {
        font-size: 17px !important;
    }

    .contact-section {
        padding: 24px 0 55px !important;
    }

    .contact-grid {
        gap: 38px !important;
    }

    .contact-content h2 {
        font-size: 42px !important;
    }

    .contact-content p {
        font-size: 16px !important;
        margin-bottom: 18px !important;
    }

    .demo-form {
        padding: 24px 28px !important;
    }

    .form-row {
        margin-bottom: 11px !important;
    }

    .demo-form input,
    .demo-form select {
        height: 40px !important;
        min-height: 40px !important;
    }

    .demo-form textarea {
        height: 62px !important;
        min-height: 62px !important;
    }

    .demo-form .btn.full {
        height: 40px !important;
        min-height: 40px !important;
    }
}

/* Mobile */
@media (max-width: 900px) {
    body:has(.contact-section) .page-hero {
        padding: 55px 0 40px !important;
    }

    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .form-row.two-column {
        grid-template-columns: 1fr !important;
    }

    .demo-form {
        padding: 24px !important;
    }
}

/* =========================================================
   Contact Page Final UI Adjustment
   ========================================================= */

.contact-compact-hero {
    padding: 24px 0 18px !important;
}

.contact-compact-hero h1 {
    font-size: 46px !important;
    margin-bottom: 10px !important;
}

.contact-compact-hero p {
    font-size: 16px !important;
    line-height: 1.45 !important;
}

.contact-section {
    padding: 18px 0 45px !important;
}

.contact-content h2 {
    font-size: 38px !important;
    line-height: 1.08 !important;
}

.contact-content p {
    font-size: 15px !important;
    line-height: 1.4 !important;
}

.contact-info {
    gap: 8px !important;
}

.contact-info i {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    font-size: 14px !important;
}

.contact-info p {
    font-size: 14px !important;
}

.demo-form {
    padding: 18px 24px !important;
}

.form-row {
    margin-bottom: 8px !important;
}

.demo-form input,
.demo-form select {
    height: 36px !important;
    min-height: 36px !important;
}

.demo-form textarea {
    height: 52px !important;
    min-height: 52px !important;
}

.demo-form .btn.full {
    height: 38px !important;
    min-height: 38px !important;
}

/* =========================================================
   Contact Page - Final Screen Fit
   ========================================================= */

.contact-main {
    min-height: calc(100vh - 96px) !important;
    padding: 14px 0 20px !important;
    align-items: flex-start !important;
}

.contact-best-grid {
    grid-template-columns: 0.78fr 1.22fr !important;
    gap: 32px !important;
    align-items: start !important;
}

.contact-left {
    padding-top: 18px !important;
}

.contact-left .eyebrow {
    padding: 7px 16px !important;
    font-size: 13px !important;
    margin-bottom: 14px !important;
}

.contact-left h1 {
    font-size: 42px !important;
    line-height: 1.06 !important;
    margin-bottom: 14px !important;
}

.contact-left .lead {
    font-size: 15px !important;
    line-height: 1.45 !important;
    margin-bottom: 16px !important;
}

.contact-card-list {
    gap: 8px !important;
    margin-top: 14px !important;
}

.contact-mini-card {
    padding: 9px 12px !important;
    border-radius: 15px !important;
}

.contact-mini-card i {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    font-size: 14px !important;
    border-radius: 11px !important;
}

.contact-mini-card span {
    font-size: 10px !important;
    margin-bottom: 1px !important;
}

.contact-mini-card strong {
    font-size: 14px !important;
}

/* Form card compact */
.contact-form-panel {
    padding: 16px 20px !important;
    border-radius: 24px !important;
}

.form-title {
    margin-bottom: 10px !important;
}

.form-title h2 {
    font-size: 21px !important;
    margin-bottom: 2px !important;
}

.form-title p {
    font-size: 13px !important;
    margin: 0 !important;
}

.form-badge {
    padding: 7px 13px !important;
    font-size: 12px !important;
}

.form-row {
    margin-bottom: 7px !important;
}

.form-row label {
    font-size: 12px !important;
    margin-bottom: 4px !important;
}

.form-row.two-column {
    gap: 12px !important;
}

.demo-form input,
.demo-form select {
    height: 34px !important;
    min-height: 34px !important;
    padding: 6px 12px !important;
    font-size: 13px !important;
    border-radius: 12px !important;
}

.demo-form textarea {
    height: 46px !important;
    min-height: 46px !important;
    padding: 7px 12px !important;
    font-size: 13px !important;
    border-radius: 12px !important;
}

.demo-form .btn.full {
    height: 36px !important;
    min-height: 36px !important;
    padding: 7px 16px !important;
    font-size: 13px !important;
    margin-top: 2px !important;
}

.contact-note {
    margin-top: 7px !important;
    font-size: 11px !important;
    line-height: 1.35 !important;
}

/* Keep FAQ lower, not part of first screen */
.faq-section {
    padding-top: 45px !important;
}

/* For small laptop height */
@media (max-height: 760px) and (min-width: 1000px) {
    .contact-main {
        padding: 8px 0 16px !important;
    }

    .contact-left {
        padding-top: 10px !important;
    }

    .contact-left h1 {
        font-size: 38px !important;
    }

    .contact-left .lead {
        font-size: 14px !important;
        line-height: 1.38 !important;
    }

    .contact-mini-card {
        padding: 7px 10px !important;
    }

    .contact-form-panel {
        padding: 14px 18px !important;
    }

    .form-title h2 {
        font-size: 19px !important;
    }

    .form-row {
        margin-bottom: 6px !important;
    }

    .demo-form input,
    .demo-form select {
        height: 32px !important;
        min-height: 32px !important;
    }

    .demo-form textarea {
        height: 42px !important;
        min-height: 42px !important;
    }

    .demo-form .btn.full {
        height: 34px !important;
        min-height: 34px !important;
    }
}

/* =========================================================
   About Page - Compact Hero and Better Section Flow
   ========================================================= */

body:has(.about-section) .page-hero {
    min-height: auto !important;
    height: auto !important;
    padding: 70px 0 55px !important;
}

body:has(.about-section) .page-hero-content {
    max-width: 980px !important;
}

body:has(.about-section) .page-hero-content .eyebrow {
    padding: 8px 18px !important;
    font-size: 14px !important;
    margin-bottom: 18px !important;
}

body:has(.about-section) .page-hero-content h1 {
    font-size: clamp(42px, 5vw, 70px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.045em !important;
    margin-bottom: 18px !important;
}

body:has(.about-section) .page-hero-content p {
    max-width: 880px !important;
    font-size: 19px !important;
    line-height: 1.55 !important;
}

/* Bring next section closer */
.about-section {
    padding: 65px 0 80px !important;
}

/* Better about content alignment */
.about-grid {
    align-items: center !important;
    gap: 55px !important;
}

/* Laptop screen adjustment */
@media (max-height: 820px) and (min-width: 1000px) {
    body:has(.about-section) .page-hero {
        padding: 50px 0 42px !important;
    }

    body:has(.about-section) .page-hero-content h1 {
        font-size: 56px !important;
    }

    body:has(.about-section) .page-hero-content p {
        font-size: 17px !important;
    }

    .about-section {
        padding: 45px 0 65px !important;
    }
}

/* Mobile */
@media (max-width: 900px) {
    body:has(.about-section) .page-hero {
        padding: 55px 0 40px !important;
    }

    body:has(.about-section) .page-hero-content h1 {
        font-size: 38px !important;
    }

    body:has(.about-section) .page-hero-content p {
        font-size: 16px !important;
    }

    .about-section {
        padding: 45px 0 60px !important;
    }
}

/* =========================================================
   About Page - Full Screen First Block
   First section covers whole screen, second appears on scroll
   ========================================================= */

body:has(.about-section) .page-hero {
    min-height: calc(100vh - 96px) !important;
    height: calc(100vh - 96px) !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

body:has(.about-section) .page-hero-content {
    max-width: 1150px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
    text-align: center !important;
}

body:has(.about-section) .page-hero-content .eyebrow {
    padding: 10px 22px !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    margin-bottom: 24px !important;
}

body:has(.about-section) .page-hero-content h1 {
    max-width: 1120px !important;
    margin: 0 auto 24px !important;
    font-size: clamp(54px, 5.8vw, 86px) !important;
    line-height: 1.06 !important;
    letter-spacing: -0.055em !important;
}

body:has(.about-section) .page-hero-content p {
    max-width: 1000px !important;
    margin: 0 auto !important;
    font-size: 22px !important;
    line-height: 1.55 !important;
}

/* Second block starts after first screen */
.about-section {
    padding: 90px 0 95px !important;
    margin: 0 !important;
}

.about-grid {
    align-items: center !important;
    gap: 58px !important;
}

/* Laptop screen adjustment */
@media (max-height: 820px) and (min-width: 1000px) {
    body:has(.about-section) .page-hero {
        min-height: calc(100vh - 88px) !important;
        height: calc(100vh - 88px) !important;
    }

    body:has(.about-section) .page-hero-content h1 {
        font-size: 64px !important;
        margin-bottom: 20px !important;
    }

    body:has(.about-section) .page-hero-content p {
        font-size: 18px !important;
    }

    .about-section {
        padding: 70px 0 85px !important;
    }
}

/* Mobile */
@media (max-width: 900px) {
    body:has(.about-section) .page-hero {
        min-height: calc(100vh - 82px) !important;
        height: auto !important;
        padding: 85px 0 !important;
    }

    body:has(.about-section) .page-hero-content h1 {
        font-size: 42px !important;
        line-height: 1.12 !important;
    }

    body:has(.about-section) .page-hero-content p {
        font-size: 17px !important;
    }

    .about-section {
        padding: 60px 0 70px !important;
    }
}
/* =========================================================
   Products Page - Full Screen First Block
   First section covers whole screen, product section appears on scroll
   ========================================================= */

body:has(.product-section) .page-hero {
    min-height: calc(100vh - 96px) !important;
    height: calc(100vh - 96px) !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

body:has(.product-section) .page-hero-content {
    max-width: 1150px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
    text-align: center !important;
}

body:has(.product-section) .page-hero-content .eyebrow {
    padding: 10px 22px !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    margin-bottom: 24px !important;
}

body:has(.product-section) .page-hero-content h1 {
    max-width: 1120px !important;
    margin: 0 auto 24px !important;
    font-size: clamp(54px, 5.8vw, 86px) !important;
    line-height: 1.06 !important;
    letter-spacing: -0.055em !important;
}

body:has(.product-section) .page-hero-content p {
    max-width: 1000px !important;
    margin: 0 auto !important;
    font-size: 22px !important;
    line-height: 1.55 !important;
}

/* Product section starts after first screen */
.product-section {
    padding: 90px 0 95px !important;
    margin: 0 !important;
}

.product-grid {
    align-items: center !important;
    gap: 58px !important;
}

/* Laptop screen adjustment */
@media (max-height: 820px) and (min-width: 1000px) {
    body:has(.product-section) .page-hero {
        min-height: calc(100vh - 88px) !important;
        height: calc(100vh - 88px) !important;
    }

    body:has(.product-section) .page-hero-content h1 {
        font-size: 64px !important;
        margin-bottom: 20px !important;
    }

    body:has(.product-section) .page-hero-content p {
        font-size: 18px !important;
    }

    .product-section {
        padding: 70px 0 85px !important;
    }
}

/* Mobile */
@media (max-width: 900px) {
    body:has(.product-section) .page-hero {
        min-height: calc(100vh - 82px) !important;
        height: auto !important;
        padding: 85px 0 !important;
    }

    body:has(.product-section) .page-hero-content h1 {
        font-size: 42px !important;
        line-height: 1.12 !important;
    }

    body:has(.product-section) .page-hero-content p {
        font-size: 17px !important;
    }

    .product-section {
        padding: 60px 0 70px !important;
    }
}
/* =========================================================
   Services Page - Full Screen First Block
   First section covers whole screen, services section appears on scroll
   ========================================================= */

body:has(.services-section) .page-hero {
    min-height: calc(100vh - 96px) !important;
    height: calc(100vh - 96px) !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

body:has(.services-section) .page-hero-content {
    max-width: 1150px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
    text-align: center !important;
}

body:has(.services-section) .page-hero-content .eyebrow {
    padding: 10px 22px !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    margin-bottom: 24px !important;
}

body:has(.services-section) .page-hero-content h1 {
    max-width: 1120px !important;
    margin: 0 auto 24px !important;
    font-size: clamp(54px, 5.8vw, 86px) !important;
    line-height: 1.06 !important;
    letter-spacing: -0.055em !important;
}

body:has(.services-section) .page-hero-content p {
    max-width: 1000px !important;
    margin: 0 auto !important;
    font-size: 22px !important;
    line-height: 1.55 !important;
}

/* Services section starts after first screen */
body:has(.services-section) .services-section {
    padding: 90px 0 95px !important;
    margin: 0 !important;
}

/* Laptop screen adjustment */
@media (max-height: 820px) and (min-width: 1000px) {
    body:has(.services-section) .page-hero {
        min-height: calc(100vh - 88px) !important;
        height: calc(100vh - 88px) !important;
    }

    body:has(.services-section) .page-hero-content h1 {
        font-size: 64px !important;
        margin-bottom: 20px !important;
    }

    body:has(.services-section) .page-hero-content p {
        font-size: 18px !important;
    }

    body:has(.services-section) .services-section {
        padding: 70px 0 85px !important;
    }
}

/* Mobile */
@media (max-width: 900px) {
    body:has(.services-section) .page-hero {
        min-height: calc(100vh - 82px) !important;
        height: auto !important;
        padding: 85px 0 !important;
    }

    body:has(.services-section) .page-hero-content h1 {
        font-size: 42px !important;
        line-height: 1.12 !important;
    }

    body:has(.services-section) .page-hero-content p {
        font-size: 17px !important;
    }

    body:has(.services-section) .services-section {
        padding: 60px 0 70px !important;
    }
}