/* ========================================
       style.css — Bootstrap 5 Core Utilities
       (Lightweight standalone version)
       Values: 1rem = 16px
       ======================================== */

/* ---------- ROOT VARIABLES ---------- */
:root {
    --primary-color: #A51C30;
    --secondary-color: #91394c;
    --text-dark: #0F172A;
    --text-light: #FFFFFF;
    --text-muted: #9da4ad;
    --border-color: rgba(255, 255, 255, 0.08);
    --bg-light-gray: #F8FAFC;
    --primary-font: 'Inter', sans-serif;
    --secondary-font: 'Inter', sans-serif;
	
	 --primary-maroon: #A51C30;
        --primary-maroon-dark: #EB5A23;
        --bg-light: #f8f9fa;
        --border-pink: #f7cbd3;
        --border-grey : #d1d4f4;
        --gradient-maroon: linear-gradient(135deg, #A51C30 0%, #A51C30 100%);
	
    /* Spacers */
    --spacer: 1rem;
    --spacer-0: 0;
    --spacer-1: 0.25rem;
    /* 4px */
    --spacer-2: 0.5rem;
    /* 8px */
    --spacer-3: 1rem;
    /* 16px */
    --spacer-4: 1.5rem;
    /* 24px */
    --spacer-5: 3rem;
    /* 48px */

    /* Colors */
    --accent: #c9a84c;
    --primary-blue: #123B72;
    --text-dark: #143F73;
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-danger: #dc3545;
    --bs-warning: #ffc107;
    --bs-info: #0dcaf0;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-white: #ffffff;
    --bs-body-color: #212529;
    --bs-body-bg: #ffffff;
    --bs-border-color: #dee2e6;
    --bs-link-color: #0d6efd;
    --bs-link-hover-color: #0a58ca;
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --bs-body-font-size: 18px;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));

    /* Border Radius */
    --bs-border-radius: 0.375rem;
    --bs-border-radius-sm: 0.25rem;
    --bs-border-radius-lg: 0.5rem;
    --bs-border-radius-xl: 1rem;
    --bs-border-radius-xxl: 1.25rem;
    --bs-border-radius-pill: 50rem;

    /* Shadows */
    --bs-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --bs-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --bs-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);

    /* Breakpoints (used in media queries) */
    --bs-breakpoint-sm: 576px;
    --bs-breakpoint-md: 768px;
    --bs-breakpoint-lg: 992px;
    --bs-breakpoint-xl: 1200px;
    --bs-breakpoint-xxl: 1400px;
}

/* ---------- RESET / BASE ---------- */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--primary-font);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
}

a {
    color: var(--bs-link-color);
    text-decoration: underline;
}

a:hover {
    color: #fff;
}
img {
	border-radius: 15px;
}
.gray-section {
    background-color: #f6f8fa;
}
.white-section {
    background-color: #fff;
}
.border-bottom {
    border-bottom: 1px solid var(--primary-maroon);
}
.text-maroon {
    color: var(--primary-maroon);
}
.text-muted {
    color: var(--text-muted);
}
/* Global Section Padding Modification */
section {
    padding: 40px 0 !important;
}
ul, li {
	    padding: 0;
	line-height: 28px !important;
}
p{
	line-height: 28px !important;
}
h2, h3, h4, h5, h6 {
    line-height: 45px;
}

/* Tablet / iPad */
@media (max-width: 1024px) {
    h2, h3, h4, h5, h6 {
        line-height: 35px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    h2, h3, h4, h5, h6 {
        line-height: 28px;
    }
}
/* ---------- CONTAINER & GRID ---------- */
.container {
    width: 100%;
    padding-right: var(--spacer-3);
    padding-left: var(--spacer-3);
    margin-right: auto;
    margin-left: auto;
	position: relative;
}

.container-fluid {
    width: 100%;
    padding-right: var(--spacer-3);
    padding-left: var(--spacer-3);
    margin-right: auto;
    margin-left: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.col {
    flex: 1 0 0%;
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
}

.col-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}

.col-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}

.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}

.col-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.col-9 {
    flex: 0 0 75%;
    max-width: 75%;
}

.col-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}

.col-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

/* Offsets */
.offset-1 {
    margin-left: 8.333333%;
}

.offset-2 {
    margin-left: 16.666667%;
}

.offset-3 {
    margin-left: 25%;
}

.offset-4 {
    margin-left: 33.333333%;
}

.offset-5 {
    margin-left: 41.666667%;
}

.offset-6 {
    margin-left: 50%;
}

.offset-7 {
    margin-left: 58.333333%;
}

.offset-8 {
    margin-left: 66.666667%;
}

.offset-9 {
    margin-left: 75%;
}

.offset-10 {
    margin-left: 83.333333%;
}

.offset-11 {
    margin-left: 91.666667%;
}

.offset-12 {
    margin-left: 100%;
}

/* Order */
.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}

.order-3 {
    order: 3;
}

.order-4 {
    order: 4;
}

.order-5 {
    order: 5;
}

.order-6 {
    order: 6;
}

.order-7 {
    order: 7;
}

.order-8 {
    order: 8;
}

.order-9 {
    order: 9;
}

.order-10 {
    order: 10;
}

.order-11 {
    order: 11;
}

.order-12 {
    order: 12;
}

/* ---------- SPACING (MARGIN & PADDING) ---------- */
.m-0 {
    margin: 0;
}

.p-0 {
    padding: 0;
}

.m-1 {
    margin: 0.25rem;
}

.p-1 {
    padding: 0.25rem;
}

.m-2 {
    margin: 0.5rem;
}

.p-2 {
    padding: 0.5rem;
}

.m-3 {
    margin: 1rem;
}

.p-3 {
    padding: 1rem;
}

.m-4 {
    margin: 1.5rem;
}

.p-4 {
    padding: 1.5rem;
}

.m-5 {
    margin: 3rem;
}

.p-5 {
    padding: 3rem;
}

.m-auto {
    margin: auto;
}

/* Sides */
.mt-0 {
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-auto {
    margin-top: auto;
}

.mb-auto {
    margin-bottom: auto;
}

.ms-0 {
    margin-left: 0;
}

.me-0 {
    margin-right: 0;
}

.ms-1 {
    margin-left: 0.25rem;
}

.me-1 {
    margin-right: 0.25rem;
}

.ms-2 {
    margin-left: 0.5rem;
}

.me-2 {
    margin-right: 0.5rem;
}

.ms-3 {
    margin-left: 1rem;
}

.me-3 {
    margin-right: 1rem;
}

.ms-4 {
    margin-left: 1.5rem;
}

.me-4 {
    margin-right: 1.5rem;
}

.ms-5 {
    margin-left: 3rem;
}

.me-5 {
    margin-right: 3rem;
}

.ms-auto {
    margin-left: auto;
}

.me-auto {
    margin-right: auto;
}

.mx-0 {
    margin-left: 0;
    margin-right: 0;
}

.mx-1 {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
}

.mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.mx-3 {
    margin-left: 1rem;
    margin-right: 1rem;
}

.mx-4 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}

.mx-5 {
    margin-left: 3rem;
    margin-right: 3rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.my-0 {
    margin-top: 0;
    margin-bottom: 0;
}

.my-1 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
}

.my-2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.my-3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.my-4 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.my-5 {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.my-auto {
    margin-top: auto;
    margin-bottom: auto;
}

/* Padding sides – same pattern (pt, pb, ps, pe, px, py) */
.pt-0 {
    padding-top: 0;
}

.pb-0 {
    padding-bottom: 0;
}

.pt-1 {
    padding-top: 0.25rem;
}

.pb-1 {
    padding-bottom: 0.25rem;
}

.pt-2 {
    padding-top: 0.5rem;
}

.pb-2 {
    padding-bottom: 0.5rem;
}

.pt-3 {
    padding-top: 1rem;
}

.pb-3 {
    padding-bottom: 1rem;
}

.pt-4 {
    padding-top: 1.5rem;
}

.pb-4 {
    padding-bottom: 1.5rem;
}

.pt-5 {
    padding-top: 3rem;
}

.pb-5 {
    padding-bottom: 3rem;
}

.ps-0 {
    padding-left: 0;
}

.pe-0 {
    padding-right: 0;
}

.ps-1 {
    padding-left: 0.25rem;
}

.pe-1 {
    padding-right: 0.25rem;
}

.ps-2 {
    padding-left: 0.5rem;
}

.pe-2 {
    padding-right: 0.5rem;
}

.ps-3 {
    padding-left: 1rem;
}

.pe-3 {
    padding-right: 1rem;
}

.ps-4 {
    padding-left: 1.5rem;
}

.pe-4 {
    padding-right: 1.5rem;
}

.ps-5 {
    padding-left: 3rem;
}

.pe-5 {
    padding-right: 3rem;
}

.px-0 {
    padding-left: 0;
    padding-right: 0;
}

.px-1 {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}

.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.px-3 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-4 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-5 {
    padding-left: 3rem;
    padding-right: 3rem;
}

.py-0 {
    padding-top: 0;
    padding-bottom: 0;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-3 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-4 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* Gap (for flex/grid) */
.gap-0 {
    gap: 0;
}

.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 1rem;
}

.gap-4 {
    gap: 1.5rem;
}

.gap-5 {
    gap: 3rem;
}

/* Row gutters */
.g-0,
.gx-0 {
    --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
    --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
    --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
    --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
    --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
    --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
    --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
    --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
    --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
    --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
    --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
    --bs-gutter-y: 3rem;
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
    margin-top: calc(-1 * var(--bs-gutter-y));
}

.row>* {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}

/* ---------- SIZING ---------- */
.w-25 {
    width: 25%;
}

.h-25 {
    height: 25%;
}

.w-50 {
    width: 50%;
}

.h-50 {
    height: 50%;
}

.w-75 {
    width: 75%;
}

.h-75 {
    height: 75%;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

.w-auto {
    width: auto;
}

.h-auto {
    height: auto;
}

.mw-100 {
    max-width: 100%;
}

.mh-100 {
    max-height: 100%;
}

.vw-100 {
    width: 100vw;
}

.vh-100 {
    height: 100vh;
}

.min-vw-100 {
    min-width: 100vw;
}

.min-vh-100 {
    min-height: 100vh;
}

/* ---------- DISPLAY ---------- */
.d-none {
    display: none;
}

.d-inline {
    display: inline;
}

.d-inline-block {
    display: inline-block;
}

.d-block {
    display: block;
}

.d-grid {
    display: grid;
}

.d-table {
    display: table;
}

.d-table-cell {
    display: table-cell;
}

.d-flex {
    display: flex;
}

.d-inline-flex {
    display: inline-flex;
}

/* ---------- FLEX ---------- */
.flex-row {
    flex-direction: row;
}

.flex-column {
    flex-direction: column;
}

.flex-row-reverse {
    flex-direction: row-reverse;
}

.flex-column-reverse {
    flex-direction: column-reverse;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-nowrap {
    flex-wrap: nowrap;
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse;
}

.flex-fill {
    flex: 1 1 auto;
}

.flex-grow-0 {
    flex-grow: 0;
}

.flex-grow-1 {
    flex-grow: 1;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.flex-shrink-1 {
    flex-shrink: 1;
}

.justify-content-start {
    justify-content: flex-start;
}

.justify-content-end {
    justify-content: flex-end;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-around {
    justify-content: space-around;
}

.justify-content-evenly {
    justify-content: space-evenly;
}

.align-items-start {
    align-items: flex-start;
}

.align-items-end {
    align-items: flex-end;
}

.align-items-center {
    align-items: center;
}

.align-items-baseline {
    align-items: baseline;
}

.align-items-stretch {
    align-items: stretch;
}

.align-self-start {
    align-self: flex-start;
}

.align-self-end {
    align-self: flex-end;
}

.align-self-center {
    align-self: center;
}

.align-self-baseline {
    align-self: baseline;
}

.align-self-stretch {
    align-self: stretch;
}

/* ---------- TEXT ---------- */
.text-start {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-end {
    text-align: right;
}

.text-lowercase {
    text-transform: lowercase;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-capitalize {
    text-transform: capitalize;
}

.text-decoration-none {
    text-decoration: none;
}

.text-decoration-underline {
    text-decoration: underline;
}

.text-decoration-line-through {
    text-decoration: line-through;
}

.text-wrap {
    white-space: normal;
}

.text-nowrap {
    white-space: nowrap;
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.text-break {
    word-wrap: break-word;
    word-break: break-word;
}

/* Font weight / style */
.fw-lighter {
    font-weight: lighter;
}

.fw-light {
    font-weight: 300;
}

.fw-normal {
    font-weight: 400;
}

.fw-medium {
    font-weight: 500;
}

.fw-semibold {
    font-weight: 600;
}

.fw-bold {
    font-weight: 700;
}

.fw-bolder {
    font-weight: bolder;
}

.fst-italic {
    font-style: italic;
}

.fst-normal {
    font-style: normal;
}

.font-monospace {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

/* Font size */
.fs-1 {
    font-size: 2.5rem;
}

.fs-2 {
    font-size: 2rem;
}

.fs-3 {
    font-size: 1.75rem;
}

.fs-4 {
    font-size: 1.5rem;
}

.fs-5 {
    font-size: 1.25rem;
}

.fs-6 {
    font-size: 1rem;
}

/* Line height */
.lh-1 {
    line-height: 1;
}

.lh-sm {
    line-height: 1.25;
}

.lh-base {
    line-height: 1.5;
}

.lh-lg {
    line-height: 2;
}

/* Text Colors */
.text-primary {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-primary-rgb, 13, 110, 253), var(--bs-text-opacity));
}

.text-secondary {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-secondary-rgb, 108, 117, 125), var(--bs-text-opacity));
}

.text-success {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-success-rgb, 25, 135, 84), var(--bs-text-opacity));
}

.text-danger {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-danger-rgb, 220, 53, 69), var(--bs-text-opacity));
}

.text-warning {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-warning-rgb, 255, 193, 7), var(--bs-text-opacity));
}

.text-info {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-info-rgb, 13, 202, 240), var(--bs-text-opacity));
}

.text-light {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-light-rgb, 248, 249, 250), var(--bs-text-opacity));
}

.text-dark {
/*     --bs-text-opacity: 1; */
    color: var(--text-dark);
}

.text-white {
    --bs-text-opacity: 1;
    color: rgba(255, 255, 255, var(--bs-text-opacity));
}

.text-body {
    color: var(--bs-body-color);
}

.text-muted {
    color: var(--bs-secondary);
}

/* Text Background combos */
.text-bg-primary {
    color: #fff;
    background-color: var(--bs-primary);
}

.text-bg-secondary {
    color: #fff;
    background-color: var(--bs-secondary);
}

.text-bg-success {
    color: #fff;
    background-color: var(--bs-success);
}

.text-bg-danger {
    color: #fff;
    background-color: var(--bs-danger);
}

.text-bg-warning {
    color: #000;
    background-color: var(--bs-warning);
}

.text-bg-info {
    color: #000;
    background-color: var(--bs-info);
}

.text-bg-light {
    color: #000;
    background-color: var(--bs-light);
}

.text-bg-dark {
    color: #fff;
    background-color: var(--bs-dark);
}

/* ---------- BACKGROUND ---------- */
.bg-primary {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-primary-rgb, 13, 110, 253), var(--bs-bg-opacity));
}

.bg-secondary {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-secondary-rgb, 108, 117, 125), var(--bs-bg-opacity));
}

.bg-success {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-success-rgb, 25, 135, 84), var(--bs-bg-opacity));
}

.bg-danger {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-danger-rgb, 220, 53, 69), var(--bs-bg-opacity));
}

.bg-warning {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-warning-rgb, 255, 193, 7), var(--bs-bg-opacity));
}

.bg-info {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-info-rgb, 13, 202, 240), var(--bs-bg-opacity));
}

.bg-light {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-light-rgb, 248, 249, 250), var(--bs-bg-opacity));
}

.bg-dark {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-dark-rgb, 33, 37, 41), var(--bs-bg-opacity));
}

.bg-white {
    --bs-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--bs-bg-opacity));
}

.bg-transparent {
    background-color: transparent;
}

.bg-gradient {
    background-image: var(--bs-gradient);
}

/* ---------- BORDERS ---------- */
.border {
    border: 1px solid var(--bs-border-color);
}

.border-0 {
    border: 0;
}

.border-top {
    border-top: 1px solid var(--bs-border-color);
}

.border-end {
    border-right: 1px solid var(--bs-border-color);
}

.border-bottom {
    border-bottom: 1px solid var(--bs-border-color);
}

.border-start {
    border-left: 1px solid var(--bs-border-color);
}

.border-primary {
    border-color: var(--bs-primary);
}

.border-secondary {
    border-color: var(--bs-secondary);
}

.border-success {
    border-color: var(--bs-success);
}

.border-danger {
    border-color: var(--bs-danger);
}

.border-warning {
    border-color: var(--bs-warning);
}

.border-info {
    border-color: var(--bs-info);
}

.border-light {
    border-color: var(--bs-light);
}

.border-dark {
    border-color: var(--bs-dark);
}

.border-maroon {
    border-color: var(--primary-maroon);
}

.border-white {
    border-color: var(--bs-white);
}

.rounded {
    border-radius: var(--bs-border-radius);
}

.rounded-0 {
    border-radius: 0;
}

.rounded-1 {
    border-radius: var(--bs-border-radius-sm);
}

.rounded-2 {
    border-radius: var(--bs-border-radius);
}

.rounded-3 {
    border-radius: var(--bs-border-radius-lg);
}

.rounded-4 {
    border-radius: var(--bs-border-radius-xl);
}

.rounded-5 {
    border-radius: var(--bs-border-radius-xxl);
}

.rounded-circle {
    border-radius: 50%;
}

.rounded-pill {
    border-radius: var(--bs-border-radius-pill);
}

.rounded-top {
    border-radius: var(--bs-border-radius) var(--bs-border-radius) 0 0;
}

.rounded-end {
    border-radius: 0 var(--bs-border-radius) var(--bs-border-radius) 0;
}

.rounded-bottom {
    border-radius: 0 0 var(--bs-border-radius) var(--bs-border-radius);
}

.rounded-start {
    border-radius: var(--bs-border-radius) 0 0 var(--bs-border-radius);
}

/* ---------- SHADOWS ---------- */
.shadow-none {
    box-shadow: none;
}

.shadow-sm {
    box-shadow: var(--bs-shadow-sm);
}

.shadow {
    box-shadow: var(--bs-shadow);
}

.shadow-lg {
    box-shadow: var(--bs-shadow-lg);
}

/* ---------- POSITION ---------- */
.position-static {
    position: static;
}

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.position-fixed {
    position: fixed;
}

.position-sticky {
    position: sticky;
}

.top-0 {
    top: 0;
}

.bottom-0 {
    bottom: 0;
}

.top-50 {
    top: 50%;
}

.bottom-50 {
    bottom: 50%;
}

.start-0 {
    left: 0;
}

.end-0 {
    right: 0;
}

.start-50 {
    left: 50%;
}

.end-50 {
    right: 50%;
}

.translate-middle {
    transform: translate(-50%, -50%);
}

.translate-middle-x {
    transform: translateX(-50%);
}

.translate-middle-y {
    transform: translateY(-50%);
}

/* ---------- VISIBILITY & OPACITY ---------- */
.visible {
    visibility: visible;
}

.invisible {
    visibility: hidden;
}

.opacity-0 {
    opacity: 0;
}

.opacity-25 {
    opacity: 0.25;
}

.opacity-50 {
    opacity: 0.5;
}

.opacity-75 {
    opacity: 0.75;
}

.opacity-100 {
    opacity: 1;
}

/* ---------- OVERFLOW ---------- */
.overflow-auto {
    overflow: auto;
}

.overflow-hidden {
    overflow: hidden;
}

.overflow-visible {
    overflow: visible;
}

.overflow-scroll {
    overflow: scroll;
}

.overflow-x-auto {
    overflow-x: auto;
}

.overflow-y-hidden {
    overflow-y: hidden;
}

/* ---------- FLOAT & CLEAR ---------- */
.float-start {
    float: left;
}

.float-end {
    float: right;
}

.float-none {
    float: none;
}

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

/* ---------- TABLE ---------- */
.table {
    width: 100%;
    margin-bottom: 1rem;
    color: var(--bs-body-color);
}

.table-striped>tbody>tr:nth-of-type(odd)>* {
    background-color: rgba(0, 0, 0, 0.05);
}

.table-hover>tbody>tr:hover>* {
    background-color: rgba(0, 0, 0, 0.075);
}

.table-bordered {
    border: 1px solid var(--bs-border-color);
}

.table-bordered> :not(caption)>*>* {
    border-width: 1px;
}

.table-borderless> :not(caption)>*>* {
    border-bottom-width: 0;
}

.table-sm> :not(caption)>*>* {
    padding: 0.25rem;
}

.table-dark {
    background-color: var(--bs-dark);
    color: #fff;
}

.table-light {
    background-color: var(--bs-light);
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* ---------- IMG ---------- */
.img-fluid {
    max-width: 100%;
    height: auto;
}

.img-thumbnail {
    padding: 0.25rem;
    background-color: var(--bs-white);
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
}

/* ---------- OPACITY (TEXT & BACKGROUND) ---------- */
.text-opacity-25 {
    --bs-text-opacity: 0.25;
}

.text-opacity-50 {
    --bs-text-opacity: 0.5;
}

.text-opacity-75 {
    --bs-text-opacity: 0.75;
}

.text-opacity-100 {
    --bs-text-opacity: 1;
}

.bg-opacity-10 {
    --bs-bg-opacity: 0.1;
}

.bg-opacity-25 {
    --bs-bg-opacity: 0.25;
}

.bg-opacity-50 {
    --bs-bg-opacity: 0.5;
}

.bg-opacity-75 {
    --bs-bg-opacity: 0.75;
}

.bg-opacity-100 {
    --bs-bg-opacity: 1;
}

/* ---------- Z-INDEX ---------- */
.z-n1 {
    z-index: -1;
}

.z-0 {
    z-index: 0;
}

.z-1 {
    z-index: 1;
}

.z-2 {
    z-index: 2;
}

.z-3 {
    z-index: 3;
}

/* ---------- LISTS ---------- */
.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.list-inline {
    padding-left: 0;
    list-style: none;
}

.list-inline-item {
    display: inline-block;
}

.list-inline-item:not(:last-child) {
    margin-right: 0.5rem;
}

/* ---------- ACCESSIBILITY ---------- */
.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* ---------- STACKS ---------- */
.hstack {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-self: stretch;
}

.vstack {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-self: stretch;
}

.vr {
    display: inline-block;
    align-self: stretch;
    width: 1px;
    min-height: 1em;
    background-color: currentcolor;
    opacity: 0.25;
}

/* ---------- INTERACTIONS ---------- */
.user-select-all {
    user-select: all;
}

.user-select-auto {
    user-select: auto;
}

.user-select-none {
    user-select: none;
}

.pe-none {
    pointer-events: none;
}

.pe-auto {
    pointer-events: auto;
}

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

/* ---------- SM (≥576px) ---------- */
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }

    .col-sm-1 {
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-sm-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-sm-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-sm-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-sm-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-sm-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-sm-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-sm-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-sm-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-sm-11 {
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .d-sm-none {
        display: none;
    }

    .d-sm-block {
        display: block;
    }

    .d-sm-flex {
        display: flex;
    }

    .d-sm-grid {
        display: grid;
    }

    .d-sm-inline-flex {
        display: inline-flex;
    }

    .text-sm-start {
        text-align: left;
    }

    .text-sm-center {
        text-align: center;
    }

    .text-sm-end {
        text-align: right;
    }

    .float-sm-start {
        float: left;
    }

    .float-sm-end {
        float: right;
    }

    .float-sm-none {
        float: none;
    }

    /* Spacing sm */
    .m-sm-0 {
        margin: 0;
    }

    .p-sm-0 {
        padding: 0;
    }

    .m-sm-1 {
        margin: 0.25rem;
    }

    .p-sm-1 {
        padding: 0.25rem;
    }

    .m-sm-2 {
        margin: 0.5rem;
    }

    .p-sm-2 {
        padding: 0.5rem;
    }

    .m-sm-3 {
        margin: 1rem;
    }

    .p-sm-3 {
        padding: 1rem;
    }

    .m-sm-4 {
        margin: 1.5rem;
    }

    .p-sm-4 {
        padding: 1.5rem;
    }

    .m-sm-5 {
        margin: 3rem;
    }

    .p-sm-5 {
        padding: 3rem;
    }

    .m-sm-auto {
        margin: auto;
    }
}

/* ---------- MD (≥768px) ---------- */
@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }

    .col-md-1 {
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-md-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-md-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-md-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-md-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-md-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-md-11 {
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .col-md-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .d-md-none {
        display: none;
    }

    .d-md-block {
        display: block;
    }

    .d-md-flex {
        display: flex;
    }

    .d-md-grid {
        display: grid;
    }

    .d-md-inline-flex {
        display: inline-flex;
    }

    .text-md-start {
        text-align: left;
    }

    .text-md-center {
        text-align: center;
    }

    .text-md-end {
        text-align: right;
    }

    .float-md-start {
        float: left;
    }

    .float-md-end {
        float: right;
    }

    .float-md-none {
        float: none;
    }

    .m-md-0 {
        margin: 0;
    }

    .p-md-0 {
        padding: 0;
    }

    .m-md-1 {
        margin: 0.25rem;
    }

    .p-md-1 {
        padding: 0.25rem;
    }

    .m-md-2 {
        margin: 0.5rem;
    }

    .p-md-2 {
        padding: 0.5rem;
    }

    .m-md-3 {
        margin: 1rem;
    }

    .p-md-3 {
        padding: 1rem;
    }

    .m-md-4 {
        margin: 1.5rem;
    }

    .p-md-4 {
        padding: 1.5rem;
    }

    .m-md-5 {
        margin: 3rem;
    }

    .p-md-5 {
        padding: 3rem;
    }

    .m-md-auto {
        margin: auto;
    }
}

/* ---------- LG (≥992px) ---------- */
@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }

    .col-lg-1 {
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-lg-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-lg-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-lg-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-lg-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-lg-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-lg-11 {
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .d-lg-none {
        display: none;
    }

    .d-lg-block {
        display: block;
    }

    .d-lg-flex {
        display: flex;
    }

    .d-lg-grid {
        display: grid;
    }

    .d-lg-inline-flex {
        display: inline-flex;
    }

    .text-lg-start {
        text-align: left;
    }

    .text-lg-center {
        text-align: center;
    }

    .text-lg-end {
        text-align: right;
    }

    .float-lg-start {
        float: left;
    }

    .float-lg-end {
        float: right;
    }

    .float-lg-none {
        float: none;
    }

    .m-lg-0 {
        margin: 0;
    }

    .p-lg-0 {
        padding: 0;
    }

    .m-lg-1 {
        margin: 0.25rem;
    }

    .p-lg-1 {
        padding: 0.25rem;
    }

    .m-lg-2 {
        margin: 0.5rem;
    }

    .p-lg-2 {
        padding: 0.5rem;
    }

    .m-lg-3 {
        margin: 1rem;
    }

    .p-lg-3 {
        padding: 1rem;
    }

    .m-lg-4 {
        margin: 1.5rem;
    }

    .p-lg-4 {
        padding: 1.5rem;
    }

    .m-lg-5 {
        margin: 3rem;
    }

    .p-lg-5 {
        padding: 3rem;
    }

    .m-lg-auto {
        margin: auto;
    }
}

/* ---------- XL (≥1200px) ---------- */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }

    .col-xl-1 {
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-xl-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-xl-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-xl-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-xl-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-xl-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-xl-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-xl-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-xl-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-xl-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-xl-11 {
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .col-xl-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .col-xl-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .d-xl-none {
        display: none;
    }

    .d-xl-block {
        display: block;
    }

    .d-xl-flex {
        display: flex;
    }

    .d-xl-grid {
        display: grid;
    }

    .d-xl-inline-flex {
        display: inline-flex;
    }

    .text-xl-start {
        text-align: left;
    }

    .text-xl-center {
        text-align: center;
    }

    .text-xl-end {
        text-align: right;
    }

    .m-xl-0 {
        margin: 0;
    }

    .p-xl-0 {
        padding: 0;
    }

    .m-xl-1 {
        margin: 0.25rem;
    }

    .p-xl-1 {
        padding: 0.25rem;
    }

    .m-xl-2 {
        margin: 0.5rem;
    }

    .p-xl-2 {
        padding: 0.5rem;
    }

    .m-xl-3 {
        margin: 1rem;
    }

    .p-xl-3 {
        padding: 1rem;
    }

    .m-xl-4 {
        margin: 1.5rem;
    }

    .p-xl-4 {
        padding: 1.5rem;
    }

    .m-xl-5 {
        margin: 3rem;
    }

    .p-xl-5 {
        padding: 3rem;
    }

    .m-xl-auto {
        margin: auto;
    }
}

/* ---------- XXL (≥1400px) ---------- */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .col-xxl-1 {
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-xxl-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-xxl-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-xxl-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-xxl-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-xxl-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-xxl-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-xxl-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-xxl-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-xxl-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-xxl-11 {
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .col-xxl-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .col-xxl-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .d-xxl-none {
        display: none;
    }

    .d-xxl-block {
        display: block;
    }

    .d-xxl-flex {
        display: flex;
    }

    .d-xxl-grid {
        display: grid;
    }

    .d-xxl-inline-flex {
        display: inline-flex;
    }

    .text-xxl-start {
        text-align: left;
    }

    .text-xxl-center {
        text-align: center;
    }

    .text-xxl-end {
        text-align: right;
    }

    .m-xxl-0 {
        margin: 0;
    }

    .p-xxl-0 {
        padding: 0;
    }

    .m-xxl-1 {
        margin: 0.25rem;
    }

    .p-xxl-1 {
        padding: 0.25rem;
    }

    .m-xxl-2 {
        margin: 0.5rem;
    }

    .p-xxl-2 {
        padding: 0.5rem;
    }

    .m-xxl-3 {
        margin: 1rem;
    }

    .p-xxl-3 {
        padding: 1rem;
    }

    .m-xxl-4 {
        margin: 1.5rem;
    }

    .p-xxl-4 {
        padding: 1.5rem;
    }

    .m-xxl-5 {
        margin: 3rem;
    }

    .p-xxl-5 {
        padding: 3rem;
    }

    .m-xxl-auto {
        margin: auto;
    }
}


/* ======================================================================
           SHARED COMPONENTS (kicker, buttons, headings)
           ====================================================================== */
.kicker {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.25rem;
    color: var(--color-accent);
}

.main-heading {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
}

.lead-text {

    line-height: 1.6;
    color: var(--color-gray-text);
    /* margin-bottom: 2.5rem; */
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-white);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-standard);
    display: inline-block;
    text-decoration: none;
}

.btn-primary:hover {
    /* background-color: #d12046; */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 44, 77, 0.2);
    color: #fff;
}
/* 
.btn-white {
    background: var(--color-white);
    color: var(--color-accent);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    width: fit-content;
    transition: var(--transition-standard);
    border: none;
    cursor: pointer;
} */

/* .btn-white:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
} */

.btn-outline-white {
    border: 1px solid var(--color-white);
    background: transparent;
    color: var(--color-white);
    padding: 8px 26px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-standard);
}

.btn-outline-white:hover {
    background: var(--color-white);
    color: #000;
}

.display-heading {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: -1.5px;
    margin-bottom: 1.25rem;
}



/* ============================================================
       NAVBAR CUSTOM DESIGN SPEC STYLES
    ============================================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

/* Global Section Padding Modification */
section {
    padding: 40px 0 !important;
}

/* Typography & Components */
h1 {
    font-family: var(--font-primary);
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 32px;
}

/* Unified Subheading Class */
.section-title {
    font-family: var(--font-primary);
    font-size: 40px;
    font-weight: 600;
    line-height: 46px;
    margin-bottom: 10px;
/* 	color: var(--text-dark); */
}

h3 {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 600 ;
    line-height: 1.3;
    margin-bottom: 12px;
}

p {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn {
    font-family: var(--font-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    line-height: 1.2;
}

/* @media (max-width: 480px) {
    .btn {
        padding: 14px 11px;
    }
} */

.btn-maroon {
    background-color: var(--primary-maroon);
    color: white;
    border: 2px solid var(--primary-maroon);
}

.btn-maroon:hover {
    background-color: var(--primary-maroon-dark);
    border-color: var(--primary-maroon-dark);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-dark);
    border: 1.5px solid var(--text-dark);
}

.btn-outline:hover {
    background-color: rgba(0, 0, 0, 0.05);
	color: var(--primary-maroon);
}

.btn-dark {
    background-color: var(--primary-maroon);
    color: white;
    border: 2px solid var(--primary-maroon);
}

.btn-dark:hover {
    background-color: #0b223c;
    border-color: #0b223c;
}

.btn-white {
    background-color: white;
    color: var(--primary-maroon);
    border: 2px solid var(--primary-maroon);
}

.btn-white:hover {
    background-color: #f8f9fa;
	color: var(--primary-maroon);
}

/* ==========================================================================
   🏗️ GLOBAL STRUCTURAL ELEMENTS
   ========================================================================== */
.main-header {
    width: 100%;
    background: var(--text-light);
    border-bottom: 1px solid var(--bg-light-gray);
    position: sticky;
    top: 0;
    z-index: 1000;
    font-family: var(--primary-font);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-logo {
    width: 180px;
}
/* ==========================================================================
   🍔 HAMBURGER INTERACTIVE TRIGGERS
   ========================================================================== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.hamburger-bar {
    width: 100%;
    height: 2.5px;
    background-color: var(--text-dark, #0f172a);
    border-radius: 4px;
    transition: all 0.25s ease-in-out;
}

/* Smooth rotational morph curves for X Close layout state */
.mobile-menu-toggle.open .hamburger-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.open .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.open .hamburger-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1005;
}

.mobile-overlay.active {
    display: block;
}

/* Hidden by default on Desktop */
.mobile-only-actions {
    display: none;
}

/* ==========================================================================
   📱 RESPONSIVE MOBILE MEDIA QUERY
   ========================================================================== */
@media (max-width: 480px){
	.nav-link {
		padding: 16px;
	}
}
@media (max-width: 1024px) {
    /* Hide top header desktop buttons on mobile completely */
    .header-actions {
        display: none !important;
    }

    /* Show Hamburger Icon */
    .mobile-menu-toggle {
        display: flex !important;
    }

    /* Structural side drawer layout configurations */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background: #ffffff;
        box-shadow: -10px 0 30px rgba(15, 23, 42, 0.1);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 24px 40px 24px;
        gap: 20px;
        overflow-y: auto;
        transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1008;
    }

    .nav-menu.open {
        right: 0 !important;
    }

    .nav-link {
        width: 100%;
        font-size: 16px;
        padding: 12px 16px !important;
        color: var(--text-dark, #0f172a);
    }

    /* Action buttons stacked inside the drawer below links */
    .mobile-only-actions {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #e2e8f0;
    }

    .mobile-only-actions .cta-button {
        display: block;
        text-align: center;
        width: 100%;
        padding: 12px 16px;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
    }
}

/* ==========================================================================
   🔗 DESKTOP NAVIGATION MECHANICS
   ========================================================================== */
.main-header .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    background: none;
    border: none;
    padding: 22px 12px;
    font-size: 16px;
    font-weight: 500 !important;
    color: var(--text-dark, #0f172a);
    text-decoration: none;
    transition: all 0.18s ease;
}

.nav-link:hover {
    color: var(--primary-maroon, #a81c38);
}
/* ==========================================================================
   🖼组合 MEGA MENU INTERIOR PROMO FOOTERS
   ========================================================================== */
.panel-footer {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--bg-light-gray);
    text-align: center;
}

.footer-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary-color);
    text-decoration: none;
}

.panel-footer-grid {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--bg-light-gray);
    display: flex;
    justify-content: space-between;
}

.panel-footer-grid a {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.18s;
}

.panel-footer-grid a:hover {
    color: var(--secondary-color);
}

/* ==========================================================================
   🏁 HEADER ACTIONS & CTA PLATFORMS
   ========================================================================== */
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.plain-link {
    padding: 8px 12px;
}

.cta-button {
    background-color: var(--primary-maroon);
    color: var(--text-light);
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 10px -2px rgba(249, 104, 49, 0.25);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-button:hover {
    background-color: var(--primary-maroon-dark);
/*     box-shadow: 0 8px 16px -2px rgba(15, 23, 42, 0.2);
    transform: translateY(-1px); */
	color: #fff;
}

.cta-button:active {
    transform: translateY(0);
}
.cta-button.outline {
	border: 1px solid var(--primary-maroon);
	color: var(--primary-maroon);
	background: none;
}


/* ==========================================================================
   🧱 COMPONENT MODULE: SYSTEM MEGA FOOTER
   ========================================================================== */
.site-footer {
    background-color: #fafafb;
    font-family: var(--primary-font);
    color: var(--text-light);
    width: 100%;
	    border-top: 2px solid var(--primary-maroon);
	padding-bottom: 0;
}

.max-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Typography Hierarchy inside Footer */
.footer-heading {
    color: var(--primary-maroon);
    font-family: var(--secondary-font);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.95;
}

.footer-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Nav links engines within columns */
.footer-links-list li {
    margin-bottom: 2px;
}

.footer-links-list a {
    font-size: 16px;
    color: var(--text-dark) !important;
    text-decoration: none;
    font-weight: 400 !important;
    transition: all 0.18s ease;
    display: inline-block;
}

.footer-links-list a:hover {
    color: var(--primary-maroon);
    transform: translateX(3px);
}

/* Contact Strip configurations */
.contact-info-list a {
    /* font-size: 16px; */
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.18s ease;
}

.contact-info-list a:hover {
    color: var(--primary-maroon);
}

.contact-icon {
    font-size: 16px;
    user-select: none;
}

/* Brand area Social circles */
.social-icon-btn {
        width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 1);
    color: var(--primary-maroon);
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.18s ease, color 0.18s ease;
}

.social-icon-btn:hover {
    background-color: var(--text-dark);
    color: var(--text-light);
}

.contact-icon i {
    color: var(--primary-maroon);
}

.footer-contact-details {
    font-size: 16px;
    color: var(--text-dark);
}

/* Divider Rules & Base legal bars */
.footer-divider {
    border-top: 1px solid var(--border-color);
    opacity: 1;
}

.copyright-text,
.bottom-policy-links a {
    font-size: 16px;
    color: #fff;
}

.bottom-policy-links a {
    transition: color 0.18s ease;
}

.bottom-policy-links a:hover {
    color: #fff;
}

.footer-copyright {
	flex-direction: row;
}
/* ==========================================================================
   COMMING SOON
   ========================================================================== */
.main-container {
    width: 100%;
    max-width: 42rem;
    text-align: center;
    margin: 0 auto;
    padding: 60px 0;
}

.brand-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: var(--text-light);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.03);
    margin-bottom: 2rem;
}

.brand-pill__dot {
    width: 6px;
    height: 6px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--secondary-color);
}

.hero-title {
    font-size: clamp(2.25rem, 6vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    text-align: center;
}

.hero-title mark {
    background: transparent;
    color: var(--secondary-color);
}

.hero-lead {
    font-family: var(--secondary-font);
    color: var(--text-muted);
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    line-height: 1.6;
    max-width: 36rem;
    margin: 0 auto 2.5rem auto;
}

/* Subscription Interactive Block */
.cta-form {
    display: flex;
    background-color: var(--text-light);
    border: 1px solid var(--border-color);
    padding: 0.375rem;
    border-radius: 100px;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
    transition: border-color 0.2s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-form:focus-within {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 1px var(--secondary-color), 0 4px 12px rgba(249, 104, 49, 0.1);
}

.form-control {
    flex: 1;
    background: transparent;
    border: none;
    font-family: inherit;
    color: var(--text-dark);
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
    width: 100%;
}

.form-control:focus {
    outline: none;
}

.form-control::placeholder {
    color: var(--text-muted);
    opacity: 0.8;
}

.btn-submit {
    font-family: inherit;
    background-color: var(--secondary-color);
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.75rem 1.75rem;
    border-radius: 100px;
    border: none;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color 0.15s ease, transform 0.1s ease;
}

.btn-submit:hover {
    background-color: var(--secondary-color-hover);
}

.btn-submit:focus-visible {
    outline: 2px solid var(--text-dark);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px var(--secondary-color-focus);
}

.btn-submit:active {
    transform: scale(0.98);
}

/* -------------------------------------------------------------
         * MOBILE ADAPTABILITY BREAKPOINT
         * ------------------------------------------------------------- */
@media (max-width: 480px) {
    .cta-form {
        border-radius: 12px;
        padding: 0.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .form-control {
        text-align: center;
        padding: 0.5rem;
    }

    .btn-submit {
        width: 100%;
        border-radius: 8px;
        padding: 0.875rem;
    }
}



.w-100 {
    width: 100% !important;
}

/* Lists */
.check-list {
    list-style: none;
    margin-bottom: 20px;
	padding: 0;
}

.check-list li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-dark);
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 22px;
    height: 22px;
    background-color: var(--primary-maroon);
    border-radius: 50%;
}

.check-list li::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 8px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* .check-list.white-checks li::before { background-color: white; } */
/* .check-list.white-checks li::after { border-color: var(--primary-maroon); } */

.bullet-list {
    list-style: none;
}

.bullet-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
}

.bullet-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

/* Decorative Elements */
.wave-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

/* Hero Extracted Classes */
.hero-section {
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    min-height: 700px; 
    display: flex;
    align-items: center;
    justify-content: center;
/*     padding-top: 110px !important; */
}
.hero-section-title {
    font-weight: 700;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.hero-lead-text {
    max-width: 540px;
    font-size: 18px;
}
@media (max-width: 768px) {
    .hero-lead-text {
        margin: 0 auto 20px; 
		text-align: left;
    }
}

.hero-btn-group {
    gap: 16px;
}

/* Satisfaction Extracted Classes */
.satisfaction-section {
    background-color: #f6f8fa;
}

.satisfaction-sub {
    font-weight: 600;
    color: var(--text-dark);
}

.alert-box {
    background-color: #fff;
    border-radius: 16px;
    padding: 24px 32px;
    font-size: 18px;
    color: var(--primary-maroon-dark);
    font-weight: 500;
    max-width: 580px;
    line-height: 1.6;
    border: 1px solid #000;
}

.shield-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shield-overlay {
    position: absolute;
    text-align: center;
    color: white;
    width: 100%;
}

.shield-number {
    font-family: var(--font-primary);
    font-size: 47px;
    font-weight: 600;
    line-height: 1;
}
.shield-main-label {
	    font-size: 16px;
    line-height: 16px;
	margin-top: -8px;
}

.shield-label {
        font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
/*     margin-top: 2px; */
}

.shield-shadow {
    position: absolute;
    bottom: -20px;
    width: 140px;
    height: 12px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 50%;
}

/* Rules */
.rules-section {
/*     background-color: #ffffff; */
}

.rules-section .check-list li {
    font-size: 18px;
    margin-bottom: 15px;
/*     line-height: 1.6; */
}

/* Built Differently */
.built-differently-section {
    background-color: #f6f8fa;
}

.built-differently-lead {
    max-width: 600px;
    margin: 0 auto;
    font-size: 18px;
}

.comparison-card {
    background: #ffffff;
    border: 1px solid var(--primary-maroon);
    border-radius: 24px;
    display: flex;
    overflow: hidden;
    max-width: 900px;
    margin: 48px auto 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.comparison-left {
    flex: 1;
    background: #f6f8fa;
    padding: 30px 30px 20px 30px;
    color: white;
    border-radius: 20px;
    margin: 15px;
}

.comparison-right {
	flex: 1;
    padding: 30px 30px 20px 30px;
	margin: 15px;
}

.comparison-title {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 24px;
}

.comparison-left .comparison-title {
    color: var(--text-dark);
}

.comparison-right .comparison-title {
    color: var(--primary-maroon);
}

.comparison-left .bullet-list li {
    color: var(--text-dark);
}

.comparison-left .bullet-list li::before {
    background-color: var(--text-dark);
}

.comparison-right .bullet-list li {
    color: var(--text-dark);
    opacity: 0.9;
}

.comparison-right .bullet-list li::before {
    background-color: var(--primary-maroon);
}

/* Showcase */
.showcase-section {
    background: #ffffff;
}

.showcase-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Purpose */
.purpose-section {
/*     background: #f6f8fa; */
/* 	padding-bottom: 0 !important; */
}

/* .purpose-section .section-title {  } */
/* .purpose-section p { color: rgba(255,255,255,0.8); } */
.purpose-section h3 {
    font-size: 26px;
}

@media (max-width: 480px) {
    .purpose-section h3 {
        font-size: 22px;
    }
	.purpose-section .col-md-5,
	.purpose-section .col-md-6{
		    text-align: center !important;
	}

}

@media (max-width: 768px) {

	.purpose-section .col-md-5, 
	.purpose-section .col-md-6{
		    text-align: left !important;
	}
}

/* Customers Extracted Classes */
.customers-section {
/*     background-color: #f6f8fa; */
    position: relative;
}

.customers-lead {
    max-width: 650px;
    margin: 0 auto;
}

.sub-card {
    background: #ffffff;
    border: 1px solid #f0f2f5;
    border-radius: 16px;
    padding: 31px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--primary-maroon);
}

.sub-card-small {
	    background: #ffffff;
    border: 1px solid #f0f2f5;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 22px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--primary-maroon);
}
@media (max-width: 480px) {
    .sub-card {
        padding: 30px;
    }
}

.sub-card h4 {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.sub-card p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 18px;
    margin: 0;
    line-height: 28px;
    color: var(--text-dark);
/*     max-width: 400px; */
}

.sub-card p i {
    flex-shrink: 0;
    margin-top: 4px; /* Adjust for vertical alignment */
	    color: var(--primary-maroon);
}

.right-showcase-card {
    border: 1px solid #f0f2f5;
    border-radius: 20px;
    padding: 30px;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    /* height: 100%; */
    gap: 20px;
    border: 1px solid var(--primary-maroon);
}
.right-showcase-card-small {
	    gap: 4px;
}
@media (max-width: 480px){
	.right-showcase-card-small {
    gap: 15px;
}
}
.right-showcase-card-small h4 {
	margin-bottom: 0 !important;
}
.right-showcase-card h4 {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-maroon);
    margin-bottom: 9px;
}

.right-showcase-card p {
    color: var(--text-dark);
    margin-bottom: 0;
	margin-top: 5px;
}

/* Why We Started Extracted Classes */
.why-started-section {
    background-color: var(--primary-maroon);
}

.why-started-lead {
    max-width: 700px;
    margin: 0 auto;
    font-weight: 500;
}

.why-started-text {
    font-size: 18px;
    margin-bottom: 0px;
    color: #fff;
}
@media (max-width: 480px) {
    .why-started-text {
        text-align: center;
    }
}

.gallery-box {
    border: 1px solid var(--primary-maroon);
    border-radius: 20px;
    padding: 15px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Carousel Implementation (Local Service Section) */
.local-service-section {
/*     background-color: #fafafb; */
    /* background: var(--primary-maroon); */
    position: relative;
}

.local-service-lead {
    max-width: 600px;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 27px;
    width: 100%;
}

.carousel-slide {
        flex: 0 0 calc(30% - 16px);
    min-width: calc(20% - 16px);
    box-sizing: border-box;
}
@media (max-width: 480px) {
    .carousel-slide {
        flex: 0 0 calc(100% - 12px) !important;
        min-width: calc(100% - 12px) !important;
    }
}

.service-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    height: 100%;
    transition: transform 0.3s ease, border-color 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-maroon);
}

.service-img-placeholder {
    width: 100%;
/*     height: 300px; */
    background-color: #fff;
    position: relative;
    overflow: hidden;
	padding: 24px;
}

.service-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	border-radius: 20px;
}

.service-body {
    padding: 0 24px;
}

.slider-controls {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    justify-content: flex-start;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #dee2e6;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-dark);
}

.slider-btn:hover {
    border-color: var(--primary-maroon);
    /* color: #fff;
            background:var(--primary-maroon) ; */
}

.slider-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    border-color: #dee2e6 !important;
    color: var(--text-dark) !important;
}

#nextBtn {
    background: var(--primary-maroon);
    color: #fff;
}

/* More Than A Website Extracted Classes */
.more-than-section {
/*     background-color: #ffffff; */
}

.more-than-sub {
    font-weight: 600;
    color: var(--text-dark);
}

.feature-row-card {
    border: 1px solid var(--primary-maroon);
    border-radius: 20px;
    padding: 24px 32px;
    margin-bottom: 16px;
    background: white;
    transition: all 0.3s ease;
}

.feature-row-card:hover {
    border-color: var(--primary-maroon);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.02);
}

.feature-row-card h3 {
    margin-bottom: 4px;
    font-size: 24px;
}
@media (max-width: 768px){
	.feature-row-card h3 {
    font-size: 22px;
}
}
.feature-row-card p {
    margin: 0;
    font-size: 18px;
}

.circle-arrow-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-maroon);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* Bottom CTA Panel Extracted Classes */
.cta-panel {
    background: #f6f8fa;
    border-radius: 32px;
    padding: 60px;
    color: white;
    /* margin-top: 48px; */
    position: relative;
    overflow: hidden;
}
.cta-panel.border {
	    background: #fff;
    border-radius: 32px;
    padding: 60px;
    color: white;
    /* margin-top: 48px; */
    position: relative;
    overflow: hidden;
    border: 1px solid #cbc8c8;
}

.cta-panel .section-title {
    color: var(--text-dark);
    line-height: 1.3;
}

.cta-panel p {
    /* color: rgba(255, 255, 255, 0.9); */
}

.cta-panel .check-list {
    margin-bottom: 0;
    color: white;
}
@media (max-width: 480px) {
	.cta-panel .check-list {
		margin-bottom: 25px;
	}
}
.cta-btn-group {
    gap: 16px;
    margin-top: 20px;
    margin: auto;
}

/* Row Layout Helpers */
.row-gap {
    row-gap: 20px;
}

/* Responsive Breakpoints & Clean Typography Scale Override */
@media (max-width: 1200px) {
    h1 {
        font-size: 45px;
    }

    .container {
        max-width: 960px;
    }

    .carousel-slide {
        flex: 0 0 calc(50% - 12px);
        min-width: calc(50% - 12px);
    }
}

@media (max-width: 992px) {
    section {
        padding: 40px 0 !important;
    }

    .col-md-6,
    .col-md-5,
    .col-md-7 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .hero-section {
        text-align: center;
    }

    .hero-section .check-list {
        display: inline-block;
        text-align: left;
		margin-bottom: 10px;
    }

    .hero-section .d-flex {
        justify-content: center;
    }

    .wave-bg {
        display: none;
    }

    .satisfaction-section .row {
        flex-direction: column-reverse;
        text-align: center;
    }

    .alert-box {
        margin: 0 auto;
    }

    .shield-container {
        margin-bottom: 32px;
    }

    .comparison-card {
        flex-direction: column;
    }

    .comparison-right {
        margin: 15px;
		padding-top: 10px;
    }

    .purpose-section {
        text-align: center;
    }

    .purpose-section .check-list {
        display: inline-block;
        text-align: left;
    }

    .why-started-section .row {
        flex-direction: row;
        gap: 0px;
    }

    .cta-panel {
        padding: 40px;
    }

    .cta-panel .d-flex {
        flex-direction: column;
        gap: 16px;
    }

    .cta-panel .btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 31px;
        line-height: 1.3;
        margin-bottom: 10px;
		text-align: left;
    }

    .section-title {
        font-size: 26px !important;
        line-height: 1.35;
        margin-bottom: 20px;
    }

    p {
        font-size: 18px;
    }

    .check-list li {
        font-size: 18px;
    }

    .check-list li::before {
        top: 2px;
    }

    .check-list li::after {
        top: 6px;
    }

    .btn {
/*         width: 100%; */
    }

	.hero-section {
		min-height: auto;
	}
    .hero-section .d-flex {
        flex-direction: column;
        gap: 10px;
        max-width: fit-content;
/*         margin: auto; */
    }

    .feature-row-card {
        flex-direction: row;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }

    .feature-row-card div {
        text-align: left;
    }

    .feature-row-card p {
        max-width: 235px;
    }

    .carousel-slide {
        
        flex: 0 0 calc(50% - 12px);
        min-width: calc(50% - 12px);
    }

    .slider-controls {
        justify-content: center;
    }

    .cta-panel {
        padding: 32px 24px !important;
        border-radius: 20px;
    }

    .cta-panel .col-md-5 {
        max-width: fit-content;
        margin: auto;
    }
}

.font-large {
    font-size: 46px;
}
@media (max-width: 480px) {
    .font-large {
    font-size: 32px;
}
	.sub-card h4 {
		font-size: 20px;
	}
	.hero-section .d-flex {
        max-width: 100%;
    }
}
@media (max-width: 768px){
	.font-large {
    font-size: 27px;
}
}

/* --- Timeline --- */
.timeline-box {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
/*     left: 26px; */
    top: 0;
    bottom: 62px;
    width: 2px;
    background: repeating-linear-gradient(
        to bottom,
        #e2e8f0 0 6px,
        transparent 6px 12px
    );
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 40px;
}

.timeline-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #fff;
    color: var(--primary-maroon);
    font-weight: 500;
    font-size: 25px;
    border: 2px solid var(--primary-maroon);
    z-index: 2;
}
.timeline-split-left h3, .timeline-split-right h3 {
	font-weight: 500;
	margin: 0;
}


@media (min-width: 768px) {
    .timeline-line {
        left: 50%;
        transform: translateX(-50%);
    }

    .timeline-item {
        padding-left: 0;
    }

    .timeline-number {
        left: 50%;
        transform: translateX(-50%);
    }

    .timeline-split-left {
        text-align: right;
        padding-right: 48px;
        margin-right: 50%;
    }

    .timeline-split-right {
        text-align: left;
        padding-left: 48px;
        margin-left: 50%;
    }
}

@media (max-width: 480px) {

    .timeline-split-right,
    .timeline-split-left {
        text-align: left;
    }
    .timeline-line {
            position: absolute;
        left: 34px;
        top: 0;
        bottom: 62px;
        width: 2px;
        background: repeating-linear-gradient(to bottom, #e2e8f0 0 6px, transparent 6px 12px);
}
}



/* Custom Precise Spacing & Sizing Overrides */
.section-name {
    padding-top: 5rem;
    padding-bottom: 5rem;
    width: 100%;
}

.bg-section-1 {
    background-color: #f6f8fa;
}

.bg-section-2 {
    background-color: #f8f9fa;
}

.bg-section-3 {
    background-color: var(--primary-maroon);
}



.sub-title-1 {
    font-family: var(--font-body);
    /* font-size: 1.05rem; */
    line-height: 1.5;
/*     color: var(--text-muted); */
    max-width: 680px;
	text-align: left;
}

/* Custom Table Card UI Components */
.custom-table-card {
    background: #ffffff;
    border: 1px solid var(--primary-maroon);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
}

.custom-table th {
    font-family: var(--font-primary);
    color: var(--primary-maroon);
    font-weight: 600;
    font-size: 18px;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--primary-maroon);
    vertical-align: top;
}

.custom-table td {
    padding: 1.25rem 0;
    font-family: var(--font-body);
    /* font-size: 1.05rem; */
    color: #2c333f;
    border-bottom: 1px solid var(--primary-maroon);
    vertical-align: top;
}

.custom-table tr:last-child td {
    border-bottom: none;
}

.arrow-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: var(--primary-maroon);
    border-radius: 50%;
    color: #ffffff;
    margin-right: 12px;
    flex-shrink: 0;
}

/* Custom Card UI Components for Section 2 */
.custom-growth-card {
    background: #ffffff;
    border: 1px solid var(--primary-maroon);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 24px rgba(44, 51, 63, 0.02);
    height: 100%;
	text-align: center;
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
	border: 1px solid var(--bs-border-color);
	    background: var(--primary-maroon);
	margin: 0 auto 15px;
}

.icon-circle svg {
    width: 26px;
    height: 26px;
    stroke: #fff;
    fill: none;
}

.card-title {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 22px;
    color: #0b1320;
}

.card-desc {
    font-family: var(--font-body);
    /* font-size: 0.95rem; */
    line-height: 1.6;
    color: var(--text-dark);
	margin: 0;
}

/* Section 3 Styling */
.cta-heading {
    font-family: var(--font-primary);
    /* font-weight: 600; */
    font-size: 32px;
    color: #ffffff;
    line-height: normal;
}

.cta-text {
    font-family: var(--font-body);
    font-size: 20px;
    line-height: 1.6;
    color: #f7cbd3;
    max-width: 850px;
}

/* Targeted Responsive Mobile View Adjustments */
@media (max-width: 992px) {
    .section-name {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .cta-heading {
        font-size: 26px;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {

    /* Section 1 Mobile Fixes */
    .custom-table-card {
        padding: 1.25rem 1rem;
    }

    .custom-table th {
        font-size: 16px;
        padding-bottom: 0.75rem;
    }

    .custom-table td {
        padding: 10px;
        /* font-size: 0.95rem; */
    }

    /* Prevent text wrapping issues by aligning flex elements cleanly */
    .custom-table td .d-flex {
        align-items: flex-start !important;
    }

    .arrow-circle {
        margin-top: 2px;
        margin-right: 8px;
        width: 20px;
        height: 20px;
    }

    .arrow-circle svg {
        width: 8px;
        height: 8px;
    }

    /* Section 2 Mobile Cards Spacing Fixes */
    .custom-growth-card {
        padding: 1.75rem 1.25rem;
    }

    .icon-circle {
        margin-bottom: 1rem;
    }
}


.bg-features {
    background-color: #ffffff;
}

.bg-faq {
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Section Background Abstract Glow (FAQ Right Side Subtle Graphic) */
/* .bg-faq::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(165, 28, 48, 0.04) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
    pointer-events: none;
} */

.faq-content-wrapper {
    position: relative;
    z-index: 2;
}


.section-sub-heading {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 2.1rem;
/*     color: #4a4a4a; */
    /* margin-top: 2rem;
    margin-bottom: 2rem; */
}

.text-desc-muted {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.5;
/*     color: #2c3e50; */
    max-width: 680px;
}



.section-title span {
    color: var(--primary-maroon);
}

.features-desc-left {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.6;
/*     color: #2c333f; */
}

.feature-item {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid var(--primary-maroon);
}

.feature-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.feature-title {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 22px;
    color: #0b1320;
    margin-bottom: 0.5rem;
}

.feature-text {
    font-family: var(--font-body);
    /* font-size: 1rem; */
    line-height: 1.5;
/*     color: var(--text-muted); */
    margin: 0;
}

/* Accordion Component Design matching exactly image_d98999.jpg */
.faq-accordion-container {
    max-width: 820px;
    margin: 0 auto;
}

.accordion-item-custom {
    background: #ffffff;
    border: 1px solid var(--primary-maroon);
    border-radius: 20px;
    margin-bottom: 1.25rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-trigger-custom {
    width: 100%;
    padding: 1.25rem 2rem;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    cursor: pointer;
    outline: none;
}

.accordion-trigger-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.accordion-number-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid #7a7a7a;
    border-radius: 50%;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: #555555;
    flex-shrink: 0;
}

.accordion-question-text {
    font-family: var(--primary-font);
    font-size: 20px;
    font-weight: 500;
/*     color: #444444; */
}
@media (max-width: 480px){
	.accordion-question-text {
		font-size: 18px;
	}
}

.accordion-icon-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 1px solid #555555;
    border-radius: 50%;
    color: #333333;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.accordion-icon-toggle svg {
    width: 12px;
    height: 12px;
    stroke-width: 2.5;
}

/* Accordion Slide Toggle Details */
.accordion-panel-custom {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.accordion-inner-content {
    padding: 0 2rem 1.5rem 4.75rem;
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.5;
/*     color: #555555; */
}

/* Accordion Active States */
.accordion-item-custom.is-open .accordion-icon-toggle {
    transform: rotate(45deg);
}

/* Section Bottom Border Indicator line */
.bottom-indicator-line {
    width: 100%;
    height: 2px;
    background-color: var(--primary-maroon);
    margin-top: 3rem;
}

/* Responsive Grid Mechanics Layout Rules */
@media (max-width: 992px) {

    /* .section-title { font-size: 2.1rem; } */
    .section-sub-heading {
        font-size: 26px;
		margin-top: 30px !important;
    }

    /* .section-title { font-size: 2.25rem; margin-bottom: 1.5rem; } */
    .accordion-trigger-custom {
        padding: 1.25rem 1.5rem;
    }

    .accordion-inner-content {
        padding: 0 1.5rem 1.25rem 4.25rem;
    }
}

@media (max-width: 576px) {
    .section-padding {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }

    .accordion-trigger-custom {
        padding: 1rem;
    }

    .accordion-inner-content {
        padding: 0 1rem 1rem 3.25rem;
    }

    /* .accordion-question-text { font-size: 1rem; margin-bottom: 20px;} */
    .bottom-indicator-line {
        margin-top: 20px;
    }
}
@media (max-width: 768px){
	.bottom-indicator-line {
		    margin-top: 2rem;
	}
}

/* contact page */


.help-section {
/*     background-color: #fff; */
}

.help-heading {
    margin-bottom: 40px;
}


.help-subtitle {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    font-size: 19px;
    line-height: 1.5;
    color: #172333;
}

.help-cards-row {
    align-items: stretch;
}

.help-card {
    min-height: 325px;
    padding: 30px 22px 26px;
    background-color: #ffffff;
    border: 1.5px solid var(--primary-maroon);
    border-radius: 28px;
    box-shadow: 0 14px 28px rgba(18, 33, 50, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.help-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    background-color: var(--primary-maroon);
    /* box-shadow: 0 7px 12px rgba(165, 28, 48, 0.1); */
    flex-shrink: 0;
}
.help-icon img {
	width: 53px;
}

.help-icon i {
    font-size: 46px;
    color: #fff;
    line-height: 1;
}

.help-card-title {
    color: #06192a;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.22;
    margin-bottom: 14px;
        font-family: var(--font-primary);
}

.help-card-text {
    color: #172333;
    font-size: 18px;
    line-height: 1.45;
	margin:0;
}

@media (min-width: 992px) {
    .help-section .container {
        max-width: 1320px;
    }

    .help-cards-row {
        --bs-gutter-x: 2rem;
    }
}

@media (max-width: 991px) {
    .help-heading .section-title {
        font-size: 40px;
    }

    .help-heading {
        margin-bottom: 40px;
    }

    .help-card {
        min-height: 360px;
    }
}

@media (max-width: 575px) {

    

    .help-heading .section-title {
        font-size: 34px;
    }

    .help-subtitle {
        font-size: 18px;
    }

    .help-card {
        min-height: auto;
        padding: 28px 20px;
    }

    .help-card-title {
        font-size: 20px;
    }

    .help-card-text {
        font-size: 18px;
    }
}

.process-section {
/*     background: #f6f8fa; */
}

.process-header {
    margin-bottom: 60px;
}



.process-subtitle {
    font-size: 20px;
/*     color: #555e6b; */
}

.process-item {
    position: relative;
    gap: 28px;
    align-items: flex-start;
}

.process-border {
    border-left: 1px solid var(--primary-maroon);
    padding-left: 30px;
}

.process-number {
        width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #fff;
    color: var(--primary-maroon);
    font-weight: 500;
    font-size: 25px;
    border: 2px solid var(--primary-maroon);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.process-number span {
    font-size: 25px;
    font-weight: 600;
    color: var(--primary-maroon);
    line-height: 1;
}

.process-content h3 {
    font-size: 20px;
    font-weight: 600;
/*     color: #4b4b4b; */
    margin-bottom: 14px;
}

.process-content p {
    font-size: 19px;
    line-height: 1.55;
/*     color: #555e6b; */
    margin-bottom: 0;
}

@media (max-width:991px) {

    .process-header {
        margin-bottom: 35px;
    }

    .process-header .section-title {
        font-size: 42px;
    }

    .process-border {
        border-left: none;
        padding-left: 0;
    }

    .process-item {
        margin-bottom: 35px;
    }
}

@media (max-width:576px) {

    .process-header .section-title {
        font-size: 34px;
    }

    .process-subtitle {
        font-size: 18px;
    }

    .process-item {
        gap: 20px;
    }

    .process-number {
        width: 70px;
        height: 70px;
    }

    .process-number span {
        font-size: 20px;
    }

    

    .process-content p {
        font-size: 18px;
    }
}

.founder-section {
/*     background-color: #f6f8fa; */
	    border-top: 1px solid var(--primary-maroon);
}

.founder-heading {
    margin-bottom: 45px;
}


.founder-image-wrapper {
    max-width: 490px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.founder-image {
    width: 100%;
    height: 580px;
    display: block;
    object-fit: cover;
    object-position: center top;
    border-radius: 28px;
    background-color: var(--bg-light);
}

.founder-info-card {
    position: absolute;
    right: -32px;
    bottom: 0;
    width: 84%;
    padding: 24px 25px 26px;
    background-color: #ffffff;
    border: 1px solid var(--primary-maroon);
    border-radius: 24px;
    box-shadow: 0 12px 30px rgba(44, 51, 63, 0.08);
}

.founder-label {
    display: inline-block;
/*     padding: 3px 9px; */
    margin-bottom: 14px;
    color: var(--primary-maroon);
    background-color: var(--bg-pink-light);
    border-radius: 5px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
}

.founder-name {
    margin-bottom: 10px;
    color: var(--primary-maroon);
    font-size: 30px;
    font-weight: 600;
    line-height: 1.2;
}

.founder-info-divider {
    height: 1px;
    margin-bottom: 16px;
    background-color: var(--primary-maroon);
}

.founder-role {
    gap: 12px;
}

.founder-role i {
    margin-top: 2px;
    color: var(--primary-maroon);
    font-size: 36px;
}

.founder-role p {
    color: var(--text-dark);
    font-size: 18px;
    line-height: 1.35;
/* 	margin-top: 10px; */
}

.founder-content {
    max-width: 610px;
    margin-left: auto;
}

.founder-content-title {
    margin-bottom: 32px;
    color: var(--text-dark);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
}

.founder-content>p {
    margin-bottom: 18px;
    color: var(--text-dark);
    font-size: 18px;
    line-height: 1.45;
}

.founder-quote {
    gap: 18px;
    margin: 24px 0;
    padding: 20px 22px;
    background-color: var(--bg-light);
    border: 1.5px solid var(--primary-maroon);
    border-radius: 16px;
}

.founder-quote i {
    flex-shrink: 0;
    color: var(--primary-maroon);
    font-size: 42px;
    line-height: 1;
}

.founder-quote p {
    color: var(--text-dark);
    font-size: 18px;
    line-height: 1.45;
}

.founder-quote strong {
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
}

.founder-linkedin-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 255px;
    padding: 13px 28px;
    color: #ffffff;
    background: var(--gradient-maroon);
    border: 1px solid var(--primary-maroon);
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.founder-linkedin-btn:hover {
    color: #ffffff;
    background: var(--primary-maroon-dark);
    border-color: var(--primary-maroon-dark);
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .founder-heading .section-title {
        font-size: 42px;
    }

    .founder-image-wrapper {
        max-width: 560px;
        margin-bottom: 25px;
    }

    .founder-content {
        max-width: 100%;
        margin-left: 0;
    }

    .founder-content-title {
        font-size: 38px;
    }
}

@media (max-width: 575px) {
    .founder-heading {
        margin-bottom: 32px;
    }

    .founder-heading .section-title {
        font-size: 34px;
    }

    .founder-image-wrapper {
        padding-bottom: 125px;
        width: 327px;
    }

    .founder-image {
        height: 430px;
        border-radius: 22px;
    }

    .founder-info-card {
        right: 15px;
        bottom: 0;
        width: calc(100% - 30px);
        padding: 20px;
    }

    .founder-name {
        font-size: 25px;
    }

    .founder-role i {
        font-size: 30px;
    }

    .founder-role p {
        font-size: 18px;
    }

    .founder-content-title {
        font-size: 26px;
    }

    .founder-content>p {
        font-size: 18px;
    }

    .founder-quote {
        gap: 14px;
        padding: 18px;
    }

    .founder-quote i {
        font-size: 34px;
    }

    .founder-quote p {
                font-size: 18px;
        margin: 0;
    }

    .founder-linkedin-btn {
        width: 100%;
        min-width: 0;
    }
}

.business-form-section {
/*     background-color: #ffffff; */
}

.business-form-heading {
    margin-bottom: 30px;
}

.business-form-heading p {
    margin-bottom: 0;
/*     color: var(--text-muted); */
    line-height: 1.5;
}

/* Form outer card */
.business-form-wrapper {
    width: 100%;
    max-width: 545px;
    min-height: 642px;
    margin: 0 auto;
    padding: 34px 46px 50px;
    background-color: #ffffff;
    border: 1px solid var(--primary-maroon);
    border-radius: 20px;
    box-shadow:
        0 12px 30px rgba(44, 51, 63, 0.08),
        0 28px 60px rgba(44, 51, 63, 0.08);
}

.business-contact-form {
    width: 100%;
}

/* Every field block */
.business-contact-form .form-group {
    margin-bottom: 25px;
}

.business-contact-form label,
.business-contact-form legend {
    display: block;
    width: 100%;
    margin: 0 0 5px;
    padding: 0;
    color: var(--text-dark);
    border: 0;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25;
}

/* Inputs, select and textarea */
.business-contact-form input[type="text"],
.business-contact-form input[type="email"],
.business-contact-form input[type="tel"],
.business-contact-form select,
.business-contact-form textarea {
    display: block;
    width: 100%;
    color: var(--text-dark);
    background-color: #ffffff;
    border: 1px solid var(--border-grey);
    border-radius: 4px;
    outline: none;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

/* .form-group input::placeholder,
.form-group textarea::placeholder {
    color: #000;
    opacity: 1;
} */

.business-contact-form input[type="text"],
.business-contact-form input[type="email"],
.business-contact-form input[type="tel"],
.business-contact-form select {
    height: 50px;
    padding: 7px 9px;
}

.business-contact-form textarea {
    min-height: 68px;
    padding: 8px 9px;
    resize: vertical;
}
/* 
.business-contact-form input::placeholder,
.business-contact-form textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.35;
} */

/* .business-contact-form select {
    color: rgba(85, 94, 107, 0.4);
    cursor: pointer;
} */

.business-contact-form input:focus,
.business-contact-form select:focus,
.business-contact-form textarea:focus {
    border-color: var(--primary-maroon);
    box-shadow: 0 0 0 3px rgba(165, 28, 48, 0.08);
}
/* .form-group input[type="text"]::placeholder,
.form-group input[type="email"]::placeholder,
.form-group input[type="tel"]::placeholder,
.business-contact-form textarea::placeholder {
    color: var(--text-dark);
    opacity: 1;
} */
/* Checkbox section */
.business-interest-group {
    min-width: 0;
    margin: 18px 0 19px;
    padding: 0;
    border: 0;
}

.business-interest-group legend {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 11px;
    color: #000;
}

.business-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
	
    width: 100%;
}

.business-option {
    display: flex !important;
    align-items: center;
    gap: 10px;
    margin: 0 !important;
    cursor: pointer;
}

.business-option input[type="checkbox"] {
    appearance: none;
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
    margin: 0;
    background-color: #ffffff;
    border: 1px solid var(--text-muted);
    border-radius: 5px;
    cursor: pointer;
    position: relative;
}

.business-option input[type="checkbox"]:checked {
    background-color: var(--primary-maroon);
    border-color: var(--primary-maroon);
}

.business-option input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 6px;
    width: 5px;
    height: 9px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(45deg);
}

.business-option span {
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
}

.business-contact-form .form-group:last-child {
    margin-bottom: 0;
}

@media (max-width: 575px) {
    .business-form-heading .section-title {
        font-size: 32px;
    }


    .business-form-wrapper {
        max-width: 100%;
        min-height: auto;
        padding: 32px 28px 42px;
        border-radius: 18px;
    }

    .business-options {
        column-gap: 20px;
    }
}

@media (max-width: 380px) {
    .business-form-wrapper {
        padding-right: 20px;
        padding-left: 20px;
    }

    .business-options {
        grid-template-columns: 1fr;
        row-gap: 12px;
    }
}

.quick-conversation-section {
/*     background-color: #ffffff; */
}

.quick-conversation-heading {
    margin-bottom: 44px;
}


.quick-conversation-row {
    max-width: 960px;
    margin-right: auto;
    margin-left: auto;
}

.quick-contact-list {
    width: 100%;
    max-width: 490px;
}

.quick-contact-item {
    display: grid;
    grid-template-columns: 92px 20px 1fr;
    column-gap: 18px;
    align-items: center;
    min-height: 116px;
    margin-bottom: 45px;
}

@media (max-width: 768px){
	.quick-contact-item {
    margin-bottom: 20px;
}
}

.quick-contact-item:last-child {
    margin-bottom: 0;
}

/* Large maroon circles */

.quick-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--gradient-maroon);
    border-radius: 50%;
}

.quick-contact-icon i {
    color: #ffffff;
    font-size: 34px;
    line-height: 1;
}

/* Pink vertical divider and center dot */

.quick-contact-line {
    position: relative;
    width: 20px;
    height: 80px;
}

.quick-contact-line::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background-color: var(--primary-maroon);
    transform: translateX(-50%);
}

.quick-contact-line span {
    position: absolute;
    top: 10px;
    left: 50%;
    width: 9px;
    height: 9px;
    background-color: var(--bg-pink-light);
    border-radius: 50%;
    transform: translateX(-50%);
}

/* Contact content */

.quick-contact-details {
    padding-top: 2px;
}

.quick-contact-details h3 {
    margin-bottom: 2px;
    color: var(--text-dark);
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
}

.quick-contact-details a,
.quick-contact-highlight {
    display: inline-block;
    margin-bottom: 2px;
    color: var(--primary-maroon);
    font-family: var(--font-body);
    font-weight: 600;
    line-height: 1.35;
    text-decoration: none;
}

.quick-contact-details a:hover {
    color: var(--primary-maroon-dark);
}

.quick-contact-details p {
    margin: 0;
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.45;
}

/* Image card */

.quick-conversation-image-card {
    width: 100%;
    max-width: 460px;
    margin-left: auto;
    padding: 18px;
    background-color: #ffffff;
    border: 1px solid var(--primary-maroon);
    border-radius: 20px;
}

.quick-conversation-image-card img {
    display: block;
    width: 100%;
    height: 375px;
    object-fit: cover;
    border-radius: 12px;
}

/* Tablet */

@media (max-width: 991px) {
    .quick-conversation-heading .section-title {
        font-size: 38px;
    }

    .quick-contact-list {
        max-width: 540px;
        margin-right: auto;
        margin-left: auto;
    }

    .quick-conversation-image-card {
        max-width: 100%;
        margin-top: 42px;
        margin-right: auto;
        margin-left: auto;
    }

    .quick-conversation-image-card img {
        height: 330px;
    }
}

/* Mobile */

@media (max-width: 575px) {
    .quick-conversation-heading {
        margin-bottom: 34px;
    }

    .quick-conversation-heading .section-title {
        font-size: 32px;
    }

    .quick-contact-item {
        grid-template-columns: 70px 14px 1fr;
        column-gap: 12px;
        min-height: 100px;
        margin-bottom: 35px;
    }

    .quick-contact-icon {
        width: 70px;
        height: 70px;
    }

    .quick-contact-icon i {
        font-size: 26px;
    }

    .quick-contact-line {
        width: 14px;
        height: 68px;
    }

    .quick-contact-line span {
        width: 8px;
        height: 8px;
    }


    /* .quick-contact-details a,
    .quick-contact-highlight,
    .quick-contact-details p {
        font-size: 16px;
    } */

    .quick-conversation-image-card {
        margin-top: 34px;
        padding: 12px;
        border-radius: 16px;
    }

    .quick-conversation-image-card img {
        height: 230px;
        border-radius: 10px;
    }
}

/* New section features */
        .local-business-section {
/*     background-color: #f6f8fa; */
}

.local-business-heading {
    margin-bottom: 36px;
}

.local-business-heading .section-title {
    margin-bottom: 14px;
    color: var(--text-dark);
    
    
    line-height: 1.2;
}

.local-business-heading p {
    color: var(--text-dark);
    
    line-height: 1.45;
}

.local-business-row { 
    margin-right: auto;
    margin-left: auto;
    align-items: stretch;
}

.local-business-row > div {
    display: flex;
}

.local-business-card {
    width: 100%;
    overflow: hidden;
    background-color: #ffffff;
    border: 1px solid var(--primary-maroon);
    border-radius: 20px;
    box-shadow: 0 16px 34px rgba(44, 51, 63, 0.08);
}

.local-business-image {
    position: relative;
    height: 285px;
    margin: 10px 10px 0;
    overflow: hidden;
    border-radius: 14px;
}

.local-business-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.local-business-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(44, 51, 63, 0) 45%,
        rgba(44, 51, 63, 0.9) 100%
    );
}

.local-business-overlay {
    position: absolute;
    right: 16px;
    bottom: 14px;
    left: 16px;
    z-index: 2;
}

.local-business-overlay h3 {
    margin-bottom: 0;
    color: #ffffff;
    font-family: var(--font-primary);
    
    
    line-height: 1.3;
}

.local-business-content {
    padding: 12px 12px 18px;
}

.local-business-content p {
    color: var(--text-dark);
    
    line-height: 1.45;
}

@media (max-width: 991px) {
    .local-business-heading .section-title {
        
    }

    .local-business-row {
        max-width: 720px;
    }
}

@media (max-width: 767px) {
    .local-business-heading {
        margin-bottom: 30px;
    }

    .local-business-heading .section-title {
        
    }

    .local-business-heading p {
        
    }

    .local-business-heading p br {
        display: none;
    }

    .local-business-image {
        height: 260px;
    }
}

@media (max-width: 575px) {
    .local-business-card {
        border-radius: 16px;
    }

    .local-business-image {
        height: 230px;
        margin: 8px 8px 0;
        border-radius: 11px;
    }

    .local-business-overlay {
        right: 13px;
        bottom: 12px;
        left: 13px;
    }

    .local-business-overlay h3 {
        
    }

    .local-business-content {
        padding: 12px 12px 16px;
    }

    .local-business-content p {
        
    }
}

/* New section Pricing */
    .transparent-section {
    background: #fff;
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

.transparent-heading {
    margin-bottom: 38px;
}

.transparent-heading .section-title {
    margin-bottom: 0;
    color: var(--text-dark);
    
    
    line-height: 1.15;
}

.transparent-row {
    margin-bottom: 34px;
}

.transparent-item {
    text-align: center;
	list-style-type: none;
}
.transparent-item p {
	font-weight: 500;
}

.transparent-icon {
    width: 108px;
    height: 108px;
    margin: 0 auto 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-pink-light);
    border-radius: 50%;
    box-shadow: 0 8px 18px rgba(44, 51, 63, 0.08);
	font-size: 30px;
    color: var(--primary-maroon);
    border: 1px solid var(--bs-border-color);
}

.transparent-icon i {
    color: var(--primary-maroon);
    font-size: 30px;
    
}

.transparent-item h3 {
    margin-bottom: 0;
    color: var(--text-dark);
    
    
    
    line-height: 1.4;
}

.transparent-note {
       max-width: 545px;
    margin: 0 auto;
    padding: 22px 36px;
    text-align: center;
    color: var(--text-dark);
    background: #fff;
    border-radius: 16px;
    line-height: 1.55;
    border: 1px solid var(--primary-maroon);
}

@media (max-width: 991px) {

    .transparent-heading .section-title {
        
    }

    .transparent-item {
        margin-bottom: 10px;
    }

    .transparent-row {
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {

    .transparent-icon {
        width: 90px;
        height: 90px;
    }

    .transparent-icon i {
        
    }

    .transparent-item h3 {
        
    }

    .transparent-note {
        padding: 18px 20px;
        
    }
}

  /*=========================================
    PRIVACY POLICY LAYOUT STYLES
    =========================================*/

    .privacy-hero h1 {
      font-size: var(--h1);
      color: var(--white);
      margin-bottom: 1.25rem;
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    .privacy-content h5 {
      font-size: var(--h5); 
      color: var(--orange); 
      margin-top: 2.5rem; 
      margin-bottom: 1rem;
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    .privacy-content h6 {
      font-size: var(--h6); 
      color: var(--text-dark); 
      margin-top: 1.5rem; 
      font-weight: 600;
      margin-bottom: 1.25rem;
      letter-spacing: -0.02em;
    }

    .privacy-hero p, .privacy-content p {
      margin-bottom: 1.25rem; 
      color: var(--text-body);
    }

    /*=========================================
    PRIVACY POLICY LAYOUT STYLES
    =========================================*/
    /* Hero Headline Block Wrapper */
    .privacy-hero {
      background-color: var(--dark-bg);
      padding: 60px 0;
      color: var(--white);
		    margin-top: 0px;
    }
    .privacy-hero p {
      color: rgba(255, 255, 255, 0.85);
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Content Layout Container */
    .privacy-content {
      padding: 60px 0;
    }

    @media (max-width: 768px) {
      .privacy-hero { padding: 40px 0; }
      .privacy-content { margin: 20px 20px; }
    }


  /* =========================================
  TERMS & CONDITION LAYOUT STYLES
  ========================================= */
  .terms-hero h1 {
    font-size: var(--h1);
    color: var(--white);
    margin-bottom: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
  }
  
  .terms-content h5 { 
    font-size: var(--h5); 
    color: var(--orange); 
    margin-top: 2.5rem; 
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
	  text-transform: uppercase;
  }
  
  .terms-content h6 { 
    font-size: var(--h6); 
    color: var(--text-dark); 
    margin-top: 1.5rem; 
    font-weight: 600; 
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
  }
  
  .terms-hero p, .terms-content p { 
    margin-bottom: 1.25rem; 
    color: var(--text-body); 
  }

  /* =========================================
  TERMS & CONDITION LAYOUT STYLES
  ========================================= */
  /* Hero Headline Block Wrapper */
  .terms-hero {
    background-color: var(--dark-bg);
    padding: 60px 0;
    color: var(--white);
  }
  .terms-hero p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Content Layout Container */
  .terms-content {
    padding: 60px 0;
  }

  @media (max-width: 768px) {
    .terms-hero { padding: 40px 0; }
    .terms-content { margin: 20px 20px; }
  }

.transparent-icon-text{
	font-size:18px;
	font-weight: 600;
	margin: 10px;
}
.section-bizfire-product-text{
	font-size:24px;
	font-weight:600;
}
@media (max-width: 480px){
	.section-bizfire-product-text {
		font-size: 18px;
	}
}
@media (max-width: 768px){
	.section-bizfire-product-text {
		font-size: 20px;
	}
}

/*header active */

.nav-link {
  position: relative;
  display: inline-block;
  text-decoration: none;
/*   padding: 8px 0; */
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 3px;
  background: var(--primary-maroon); /* Change to your brand color */
  border-radius: 2px;
  transition: width 0.3s ease;
}

/* Hover */
.nav-link:hover::after {
  width: 100%;
}

/* Active page */
.current-menu-item > .nav-link::after,
.current_page_item > .nav-link::after,
.nav-link.active::after {
  width: 100%;
}

.current-menu-item > .nav-link,
.current_page_item > .nav-link,
.nav-link.active {
  color: var(--primary-maroon);
  font-weight: 600;
}


.hero-dark{
margin-top: 0px !important;
}


/* Form Alerts */
/* Styled Green & Red Alert Messages */
.custom-alert {
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.custom-alert-success {
    background-color: #d1e7dd;
    color: #0f5132;
    border: 1px solid #badbcc;
}

.custom-alert-danger {
    background-color: #f8d7da;
    color: #842029;
    border: 1px solid #f5c2c7;
}

/* Red asterisk indicator for required fields */
.required-star {
    color: #a51c30;
    font-weight: bold;
}

/* Contact Page Thank You Popup Overlay & Box */
    .contact-thankyou-popup {
        position: fixed;
        inset: 0;
        z-index: 99999;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: .3s ease;
    }

    .contact-thankyou-popup.active {
        opacity: 1;
        visibility: visible;
    }

    .contact-thankyou-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,.7);
    }

    .contact-thankyou-box {
        position: relative;
        width: 95%;
        max-width: 500px;
        background: #fff;
        border-radius: 12px;
        padding: 40px 30px;
        text-align: center;
        z-index: 2;
        animation: contactPopupScale .3s ease;
    }

    @keyframes contactPopupScale {
        from { transform: scale(.9); opacity: 0; }
        to { transform: scale(1); opacity: 1; }
    }

    .contact-thankyou-close {
        position: absolute;
        top: 12px;
        right: 18px;
        background: none;
        border: none;
        font-size: 32px;
        cursor: pointer;
        color: #000;
        line-height: 1;
    }

    .contact-thankyou-close:hover { color: var(--primary-maroon); }

    .contact-thankyou-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
        border-radius: 50%;
        background: #28a745;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 38px;
    }

    .contact-thankyou-box h2 {
        font-size: 30px;
        margin-bottom: 12px;
        color: #111;
    }

    .contact-thankyou-box p {
        font-size: 16px;
        color: #555;
        line-height: 1.6;
        margin-bottom: 25px;
    }

/* Hero sections */
.hero-section.faq-hero {
	background-image: url('../img/faq-hero.webp' );
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% auto;
}
.hero-section.who-we-serve-hero {
	background-image: url('../img/who-we-serve-hero.webp' );
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% auto;
}
.hero-section.about-hero {
	background-image: url('../img/about-hero.webp' );
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% auto;
}
.hero-section.pricing-hero {
	background-image: url('../img/pricing-hero.webp' );
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% auto;
}

.hero-section.features-hero {
	background-image: url('../img/features-hero.webp' );
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% auto;
}
.hero-section.contact-hero {
	background-image: url('../img/contact-hero.webp' );
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% auto;
}
@media (max-width: 480px){
	.hero-section.faq-hero {
	background-image: url('../img/faq-hero-res.webp' );
	background-repeat: no-repeat;
	background-position: top;
	background-size: 100% auto;
}
.hero-section.who-we-serve-hero {
	background-image: url('../img/who-we-serve-hero-res.webp' );
	background-repeat: no-repeat;
	background-position: top;
	background-size: 85% auto;
}
.hero-section.about-hero {
	background-image: url('../img/about-hero-res-2.webp' );
	background-repeat: no-repeat;
	background-position: top;
	background-size: 79% auto;
}
.hero-section.pricing-hero {
	background-image: url('../img/pricing-hero-res.webp' );
	background-repeat: no-repeat;
	background-position: top;
	background-size: 100% auto;
}

.hero-section.features-hero {
	background-image: url('../img/features-hero-res.webp' );
	background-repeat: no-repeat;
	background-position: top;
	background-size: 80% auto;
}
.hero-section.contact-hero {
	background-image: url('../img/contact-hero-res.webp' );
	background-repeat: no-repeat;
	background-position: top;
	background-size: 86% auto;
}
	.mobile-container {
		margin-top: 300px;
	}
	.mobile-container-small {
		margin-top: 230px;
	}
}
.margin-left {
	margin-left: 15px;
}
.min-width{
	    min-width: 260px;
}
@media (max-width: 480px){
	.margin-left {
		margin-left: 0;
	}
	.hero-video {
		display: none;
	}
	.hero-video.home{
		display: block;
	}
}


/* App section */

        .review-content {
/*             max-width: 900px; */
            margin: auto;
        }


        .review-content p {
            font-size: 18px;
            line-height: 1.9;
            color: var(--text-dark);
            margin-bottom: 24px;
        }

        .review-card {
            margin-top: 45px;
            padding: 40px;
            border: 1px solid #e5e7eb;
            border-radius: 20px;
            background: #fff;
        }

        .review-card h4 {
            font-size: 24px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

        .review-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .review-list li {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            line-height: 1.8;
            color: var(--text-dark);
            padding: 16px 0;
            border-bottom: 1px solid #ececec;
        }

        .review-list li:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .check-icon {
            width: 30px;
            height: 30px;
            border-radius: 50%;
/*             background: #16a34a; */
			background: var(--primary-maroon);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 700;
            flex-shrink: 0;
            margin-top: 2px;
        }

        @media (max-width:991px) {

            .review-management-section {
                padding: 70px 0;
            }

            .section-title {
                font-size: 38px;
            }

            .review-card {
                padding: 30px;
            }

        }

        @media (max-width:767px) {

            .review-management-section {
                padding: 60px 0;
            }

            .section-title {
                font-size: 30px;
            }

            .review-content p {
                font-size: 18px;
            }

            .review-card {
                padding: 24px;
            }

            .review-card h4 {
                font-size: 20px;
            }

            .review-list li {
                font-size: 18px;
                gap: 12px;
            }

            .check-icon {
                width: 26px;
                height: 26px;
                font-size: 13px;
            }

        }
.google-map {
	width: 100%; 
	overflow: hidden;
	padding: 0 !important;
}

/* Contractor Handbook */
  /* ── Hero Card ── */
        .hero-card {
            background: linear-gradient(145deg, #ffffff 0%, #f9faff 100%);
            border-radius: var(--radius);
            padding: 40px 48px 32px;
            box-shadow: var(--shadow-card);
            border-left: 6px solid var(--primary-maroon);
            margin-bottom: 48px;
            transition: box-shadow 0.25s ease;
			margin-top: 50px;
        }

        .hero-card:hover {
            box-shadow: var(--shadow-hover);
        }

        .hero-badge {
            display: inline-block;
            font-family: var(--font-mono);
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--primary-maroon);
            background: rgba(217, 93, 43, 0.08);
            padding: 4px 16px;
            border-radius: 20px;
            margin-bottom: 12px;
        }

        .hero-title {
            font-family: var(--font-primary);
            font-weight: 700;
            font-size: 42px;
            letter-spacing: 0.5px;
            color: var(--primary-maroon);
            text-transform: uppercase;
            line-height: 1.1;
			text-align: left;
        }

        .hero-sub {
            font-size: 18px;
            color: var(--text-muted);
            margin-top: 6px;
            font-weight: 400;
            max-width: 700px;
        }

        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 28px;
            margin-top: 20px;
            padding-top: 18px;
            border-top: 1px solid var(--border-light);
            font-family: var(--font-mono);
            font-size: 12px;
            color: var(--text-muted);
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .hero-meta span {
            color: var(--primary-maroon);
            font-weight: 600;
        }

        .hero-meta i {
            margin-right: 6px;
            opacity: 0.6;
        }

        /* ── Part Section ── */
        .part-section {
            margin-bottom: 40px;
        }

        .part-card {
            background: #ffffff;
            border-radius: var(--radius);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            transition: box-shadow 0.25s ease;
        }

        .part-card:hover {
            box-shadow: var(--shadow-hover);
        }

        .part-header {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px 24px;
            padding: 18px 28px;
            background: var(--accent);
            border-bottom: 1px solid var(--border-light);
        }

        .part-num {
            font-family: var(--font-mono);
            font-size: 16px;
            font-weight: 600;
            color: var(--primary-maroon);
            letter-spacing: 1px;
            background: rgba(217, 93, 43, 0.08);
            padding: 2px 14px;
            border-radius: 20px;
        }

        .part-title {
            font-family: var(--font-primary);
            font-size: 22px;
            font-weight: 600;
            letter-spacing: 0.3px;
            text-transform: uppercase;
            color: var(--primary-maroon);
            flex: 1;
        }

        .part-range {
            font-family: var(--font-mono);
            font-size: 12px;
            color: var(--text-muted);
            background: #eef1f7;
            padding: 2px 16px;
            border-radius: 20px;
            letter-spacing: 0.3px;
            margin-left: auto;
        }

        /* ── Chapter Grid ── */
        .chapter-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 12px;
            padding: 20px 24px 24px;
        }

        .chapter-card {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            background: #fafbff;
            border-radius: 8px;
            text-decoration: none;
            color: var(--text-dark);
            transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
            border: 1px solid transparent;
            position: relative;
        }

        .chapter-card:hover {
            background: #ffffff;
            border-color: var(--border-light);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
            transform: translateY(-2px);
			color: var(--text-dark);
        }

        .chapter-card:hover .chapter-arrow {
            opacity: 1;
            transform: translateX(0);
            color: var(--primary-maroon);
        }

        .chapter-num {
            font-family: var(--font-mono);
            font-size: 16px;
            font-weight: 500;
            color: var(--text-muted);
            min-width: 28px;
            transition: color 0.2s ease;
        }

        .chapter-card:hover .chapter-num {
            color: var(--primary-maroon);
        }

        .chapter-title {
            font-size: 16px;
            font-weight: 450;
            flex: 1;
            line-height: 1.3;
        }

        .chapter-arrow {
            font-size: 12px;
            color: var(--border-light);
            opacity: 0;
            transform: translateX(-6px);
            transition: all 0.2s ease;
        }

        /* ── Footer ── */
        .footer {
            margin-top: 56px;
            padding-top: 24px;
            border-top: 1px solid var(--border-light);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            font-family: var(--font-mono);
            font-size: 11px;
            color: var(--text-muted);
            letter-spacing: 0.8px;
            text-transform: uppercase;
			margin-bottom: 40px;
        }

        .footer a {
            color: var(--primary-maroon);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s ease;
        }

        .footer a:hover {
            color: var(--primary-maroon);
            text-decoration: underline;
        }

        .footer-icons {
            display: flex;
            gap: 20px;
            font-size: 16px;
        }

        .footer-icons i {
            opacity: 0.35;
            transition: opacity 0.2s ease, transform 0.2s ease;
            cursor: default;
        }

        .footer-icons i:hover {
            opacity: 0.8;
            transform: scale(1.1);
        }

        /* ── Responsive ── */
        @media (max-width: 900px) {
            .hero-card {
                padding: 32px 28px 28px;
            }

            .hero-title {
                font-size: 34px;
            }

            .hero-sub {
                font-size: 16px;
            }

            .part-header {
                padding: 14px 20px;
            }

            .part-title {
                font-size: 19px;
            }

            .chapter-grid {
                grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
                padding: 16px 18px 18px;
                gap: 10px;
            }

            .chapter-title {
                font-size: 16px;
            }
        }

        @media (max-width: 640px) {
           

            .hero-card {
                padding: 24px 18px 20px;
                border-left-width: 4px;
            }

            .hero-badge {
                font-size: 10px;
                padding: 3px 12px;
            }

            .hero-title {
                font-size: 26px;
            }

            .hero-sub {
                font-size: 16px;
            }

            .hero-meta {
                gap: 16px;
                font-size: 10px;
                flex-direction: column;
                gap: 4px;
                margin-top: 14px;
                padding-top: 12px;
            }

            .part-header {
                padding: 12px 16px;
                gap: 6px 12px;
            }

            .part-num {
                font-size: 16px;
                padding: 1px 10px;
            }

            .part-title {
                font-size: 18px;
                flex: 1 1 100%;
            }

            .part-range {
                font-size: 16px;
                padding: 0;
                margin-left: 0;
            }

            .chapter-grid {
                grid-template-columns: 1fr;
                padding: 12px 14px 14px;
                gap: 8px;
            }

            .chapter-card {
                padding: 10px 14px;
            }

            .chapter-num {
                font-size: 16px;
                min-width: 22px;
            }

            .chapter-title {
                font-size: 16px;
            }

            .footer {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
                margin-top: 36px;
                padding-top: 16px;
                font-size: 10px;
            }

            .footer-icons {
                font-size: 13px;
                gap: 14px;
            }
        }

        @media (max-width: 400px) {
            .hero-title {
                font-size: 22px;
            }
            .part-title {
                font-size: 16px;
            }
            .chapter-title {
                font-size: 16px;
            }
            .chapter-card {
                padding: 8px 12px;
            }
        }

/*  */
@media (max-width: 768px){
	.section-center {
	text-align: center;
}
	.section-left {
		text-align: left;
	}
}

 .cta-panel-section {
	padding-top: 0 !important;
}