/* ===================================
   Root Variables
=================================== */
:root {
    --accent-start: #4d0000;
    --accent-end: #300d0d;
    --text-dark: #0b0b0b;
    --text-light: #ffffff;
    --text-yellow: yellow;
    --header-h: 72px;
    --max-w: 1200px;
    --ease: cubic-bezier(.2, .9, .2, 1);
    --fast: 180ms;
    --mid: 360ms;
    --radius: 12px;
    --muted: rgba(38, 9, 9, 0.55);
}

/* ===================================
   Base Styles
=================================== */
@font-face {
    font-family: Quizlo;
    src: url(/Fonts/Quizlo-DEMO-BF68b930ec7eb9d.otf);
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    background: #fff;
    color: var(--text-dark);
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--fast) var(--ease);
}

button {
    cursor: pointer;
    font-family: inherit;
    transition: all var(--fast) var(--ease);
}

/* ===================================
   Header
=================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: background var(--mid) var(--ease), color var(--fast) var(--ease);
}

.site-header .header-inner {
    width: 100%;
    max-width: var(--max-w);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    transition: all var(--mid) var(--ease);
}

/* Light/Dark Header Modes */
.site-header.light {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.site-header.dark {
    background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
    color: var(--text-light);
}

/* ===================================
   Branding
=================================== */
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: inherit;
}

.brand .mark {
    display: none;
}

.brand .name {
    font-family: Quizlo, sans-serif;
    font-size: 22px;
}

/* ===================================
   Navigation
=================================== */
.primary {
    display: flex;
    align-items: center;
    gap: 24px;
}

.primary a {
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 6px;
}

.site-header.light .primary a {
    color: var(--text-dark);
}

.site-header.dark .primary a {
    color: var(--text-light);
}

.primary a:hover {
    color: var(--text-yellow);
}

/* ===================================
   Buttons
=================================== */
.cta-quote,
.btn.primary {
    background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
    color: var(--text-light);
    border: none;
    padding: 10px 18px;
    border-radius: var(--radius);
    font-weight: 600;
}

.btn.ghost {
    background: transparent;
    border: 1px solid var(--accent-start);
    color: var(--accent-start);
}

/* ===================================
   Hamburger
=================================== */
.hamburger {
    background: none;
    border: none;
    display: none;
    flex-direction: column;
    gap: 5px;
}

.hamburger .bar {
    width: 24px;
    height: 2px;
    background: currentColor;
    transition: all var(--fast) var(--ease);
}

@media (max-width: 900px) {
    .primary {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

/* ===================================
   Mobile Menu
=================================== */
.mobile-overlay {
    position: fixed;
    inset: 0;
    display: none;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1000;
}

.mobile-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 360px;
    background: #fff;
    height: 100%;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transform: translateX(100%);
    transition: transform var(--mid) var(--ease);
}

.mobile-overlay.active {
    display: block;
}

.mobile-overlay.active .mobile-panel {
    transform: translateX(0);
}

/* ===================================
   Modal (Get a Quote)
=================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    display: none;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: #fff;
    width: 90%;
    max-width: 600px;
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    position: relative;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-close {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.modal-close .bar {
    width: 20px;
    height: 2px;
    background: var(--text-dark);
}

.modal-close .bar:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
    /* transform: ; */
}

.modal-close .bar:nth-child(2) {
    display: none;
}

.modal-close .bar:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

.modal-note {
    font-size: 14px;
    margin-bottom: 16px;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.modal-grid .field.full {
    grid-column: 1 / -1;
}

.field label {
    font-size: 14px;
    display: block;
    margin-bottom: 4px;
    font-weight: 500;
}

.field input,
.field textarea {
    width: 100%;
    padding: 10px;
    border-radius: var(--radius);
    border: 1px solid #ddd;
    font-family: inherit;
}

.modal-actions {
    margin-top: 16px;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.quote-success {
    display: none;
    text-align: center;
}

.quote-success.active {
    display: block;
}

/* ===================================
   Hero Section
=================================== */
.hero {
    padding-top: calc(var(--header-h) + 40px);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fafafa;
}

/* ===================================
   Footer
=================================== */
.site-footer {
    background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
    color: var(--text-light);
    padding: 40px 20px;
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    max-width: var(--max-w);
    margin: 0 auto;
}

.footer-inner a:hover {
    color: var(--text-yellow);
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.footer-socials .social {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all var(--fast) var(--ease);
}

.footer-socials .social:hover {
    background: var(--text-yellow);
    color: #000;
}




/* =========================
   Services & Cards
   ========================= */
.services-section {
    background: #fafbfc;
    padding: clamp(56px, 7.5vw, 96px) 18px;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
}

.section-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    text-align: center;
}

.services-section h2 {
    font-size: clamp(28px, 4.2vw, 36px);
    margin: 0 0 8px;
    font-weight: 800;
    color: var(--text-dark);
}

.services-section .subtitle {
    color: rgba(11, 11, 11, 0.7);
    margin: 10px 0 36px;
    font-size: 15px;
}

/* Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    align-items: stretch;
}

/* Card base */
.card {
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 8px 30px rgba(6, 10, 20, 0.06);
    transition: transform var(--mid) var(--ease), box-shadow var(--mid) var(--ease);
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 320px;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgb(6, 10, 20);
}

.card.coming-soon {
    filter: grayscale(1) contrast(.9);
    opacity: .85;
}

.card-icon {
    width: 72px;
    height: 72px;
    margin: 8px auto 6px;
    object-fit: contain;
    display: block;
}

.card-header {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 6px 0;
}

.card-price {
    font-size: 18px;
    color: var(--accent-start);
    font-weight: 700;
    margin-bottom: 4px;
}

.card-desc {
    color: rgba(11, 11, 11, 0.78);
    font-size: 14px;
    line-height: 1.45;
    flex-grow: 1;
    margin-bottom: 6px;
}

.card-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
}

.btn {
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    border: 0;
    font-size: 0.8rem;
}

.btn.primary,
.btn.add-to-cart {
    background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
    color: var(--text-light);
}

.btn.ghost,
.btn.get-quote {
    background: transparent;
    border: 1px solid rgba(11, 11, 11, 0.08);
    color: var(--text-dark);
}

.btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Bundle styling */
.bundle-card {
    border: 2px solid var(--accent-start);
    background: linear-gradient(180deg, #fff, #fff8f8);
    grid-row: span 1;
}

.bundle-card.featured {
    box-shadow: 0 22px 80px rgba(77, 0, 0, 0.08);
    transform: translateY(0);
}

.offer-badge {
    position: absolute;
    top: 35px;
    right: -50px;
    background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
    color: var(--text-light);
    padding: 6px 36px;
    font-weight: 800;
    transform: rotate(45deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    font-size: 0.8rem;
}

.value-badge {
    position: absolute;
    top: 18px;
    left: 12px;
    background: #fff3eb;
    color: var(--accent-start);
    padding: 6px 10px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
}

/* =========================
   Mini cart UI
   ========================= */
.cart-toggle {
    position: fixed;
    right: 18px;
    bottom: 18px;
    background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
    color: #fff;
    border-radius: 999px;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    font-size: 14px;
    z-index: 2200;
    box-shadow: 0 20px 60px rgba(6, 10, 20, 0.16);
    border: 0;
    cursor: pointer;
}

.cart-toggle #cartCount {
    display: block;
    font-size: 11px;
    margin-top: 5px;
    font-weight: 600;
}

.mini-cart {
    position: fixed;
    right: 18px;
    bottom: 86px;
    width: 360px;
    max-width: 92vw;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 40px 120px rgba(6, 10, 20, 0.2);
    overflow: hidden;
    z-index: 2200;
    display: flex;
    flex-direction: column;
    transform: translateY(12px);
    transition: opacity .28s var(--ease), transform .28s var(--ease);
    opacity: 0;
    pointer-events: none;
}

.mini-cart[aria-hidden="false"] {
    opacity: 1;
    pointer-events: auto;
    transform: none;
}

.mini-cart-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(6, 10, 20, 0.03);
    font-weight: 700;
    font-size: 1.3rem;
}

.mini-cart-body {
    padding: 12px 14px;
    max-height: 320px;
    overflow: auto;
    font-size: 1rem;
}

.cart-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 1rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fafafa;
    padding: 8px;
    border-radius: 8px;
}

.cart-item .meta {
    display: flex;
    gap: 8px;
    align-items: center;
}

.cart-item .meta .title {
    font-weight: 700;
    font-size: 14px;
}

.cart-item .price {
    font-weight: 800;
    color: var(--accent-start);
}

.mini-cart-foot {
    padding: 12px 14px;
    border-top: 1px solid rgba(6, 10, 20, 0.03);
}

.cart-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 1rem;
}

.mini-cart-actions {
    display: flex;
    gap: 8px;
    justify-content: space-between;
}

.cart-disclaimer {
    font-size: 12px;
    color: rgba(11, 11, 11, 0.6);
    margin-bottom: 8px;
}

.mini-cart-close {
    background: transparent;
    border: 0;
    font-size: 18px;
    cursor: pointer;
}



@font-face {
    font-family: "Quizlo";
    src: url("/Fonts/Quizlo-DEMO-BF68b930ec7eb9d.otf");
    font-display: swap;
}

/* Reset & base */
* {
    box-sizing: border-box
}

html,
body {
    height: 100%;
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none
}

img {
    max-width: 100%;
    display: block
}

button {
    font: inherit
}

/* Header: fixed + responsive behavior */
header.site-header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1200;
    transition: transform 260ms var(--ease), background 320ms var(--ease), box-shadow 320ms var(--ease), color 220ms var(--ease), opacity 220ms var(--ease);
    /* default visible */
}

.header-inner {
    width: 100%;
    max-width: var(--max-w);
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px
}

/* Hidden state (scroll down) */
header.site-header.hidden {
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
}

/* Color modes:
     - nav-light = light text (used on dark sections)
     - nav-dark  = dark text (used on light sections)
  */
header.site-header.nav-light {
    background: linear-gradient(90deg, #650000d1, #300d0dd4);
    color: var(--text-light);
    box-shadow: none;
    backdrop-filter: blur(10px);
}

header.site-header.nav-dark {
    background: rgba(255, 255, 255, 0.98);
    color: var(--text-dark);
    box-shadow: 0 6px 18px rgba(12, 12, 12, 0.06);
}

/* Brand */
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: inherit;
    text-decoration: none
}

.brand .mark {

display: none;
}

.brand .name {
    font-family: "Quizlo", sans-serif;
    font-size: 20px;
    letter-spacing: 0.6px
}

/* small-screen smaller logo text */
@media (max-width:420px) {
    .brand .name {
        font-size: 16px
    }
}

/* Primary nav (desktop) */
nav.primary {
    display: flex;
    align-items: center;
    gap: 18px
}

nav.primary a {
    padding: 6px 8px;
    border-radius: 8px;
    font-weight: 600;
    transition: color var(--fast) var(--ease), background var(--fast) var(--ease)
}

/* hover accent */
header.site-header.nav-light nav.primary a:hover {
    color: var(--text-yellow);
}

header.site-header.nav-dark nav.primary a:hover {
    color: var(--accent-start);
}

/* CTA */
.cta-quote {
    border: 0;
    padding: 8px 14px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 180ms var(--ease)
}

header.site-header.nav-light .cta-quote {
    background: var(--text-light);
    color: var(--accent-start);
}

header.site-header.nav-dark .cta-quote {
    background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
    color: var(--text-light);
}

.cta-quote:active {
    transform: translateY(1px) scale(.995)
}

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: 0;
    gap: 5px;
    flex-direction: column;
    align-items: flex-end;
    padding: 6px;
    cursor: pointer
}

.hamburger .bar {
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 200ms var(--ease), opacity 200ms var(--ease);
    color: white;
}

@media (max-width: 900px) {
    nav.primary {
        display: none
    }

    .hamburger {
        display: flex
    }
}

/* Mobile overlay + panel (full-screen accessible) */
.mobile-overlay {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 1150;
}

.mobile-overlay[aria-hidden="false"] {
    display: block
}

.mobile-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
}

.mobile-panel {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 84%;
    max-width: 380px;
    background: #fff;
    padding: 20px;
    transform: translateX(14%);
    transition: transform var(--mid) var(--ease);
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mobile-overlay[aria-hidden="false"] .mobile-panel {
    transform: translateX(0);
}

.panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px
}

.panel-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 6px
}

.panel-links a {
    padding: 10px 4px;
    font-weight: 700;
    color: var(--text-dark)
}

.panel-bottom {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: space-between
}

/* Modal (quote) matching your original structure */
.modal-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1250
}

.modal-overlay[aria-hidden="false"] {
    display: flex
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px)
}

.modal {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 720px;
    background: #fff;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-6px);
    transition: transform 260ms var(--ease), opacity 260ms var(--ease)
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px
}

.modal-header h3 {
    margin: 0;
    font-size: 20px
}

.modal-close {
    background: none;
    border: 0;
    padding: 6px;
    display: inline-flex;
    gap: 4px;
    cursor: pointer
}

.modal-close .bar {
    display: block;
    width: 18px;
    height: 2px;
    background: #333;
    margin: 3px 0
}

.modal-note {
    margin-top: 10px;
    color: #444
}

.modal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 12px
}

.field label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600
}

.field input,
.field textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #e6e6e6;
    font-size: 14px
}

.field.full {
    grid-column: 1 / -1
}

.modal-actions {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    justify-content: flex-end
}

.btn {
    padding: 8px 12px;
    border-radius: 10px;
    border: 0;
    cursor: pointer;
    font-weight: 700
}

.btn.ghost {
    background: transparent;
    border: 1px solid #ddd;
    color: #333
}

.btn.primary {
    background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
    color: var(--text-light)
}

.quote-success {
    display: none;
    text-align: center
}

.quote-success[aria-hidden="false"] {
    display: block
}

@media (max-width:680px) {
    .modal {
        padding: 16px;
        max-width: 92%
    }

    .modal-grid {
        grid-template-columns: 1fr
    }
}

/* Hero + sections for testing nav color */
/* ===== HERO SECTION ===== */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 8%;
    background: #fff;
    color: #111;
    transition: background 0.3s ease, color 0.3s ease;
}

.hero-inner {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    position: relative;
}

.hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin: 20px 0;
}

.hero .lead {
    color: #444;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.cta-quote {
    background: var(--primary, #111);
    color: #fff;
    border: none;
    padding: 12px 26px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-quote:hover {
    background: #333;
}

.btn.ghost {
    border: 2px solid #111;
    color: #111;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn.ghost:hover {
    background: #111;
    color: #fff;
}

.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-frame {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.visual-frame img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.visual-frame img.active {
    opacity: 1;
}

.visual-controls {
    position: absolute;
    bottom: 16px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.control {
    background: rgba(0, 0, 0, 0.4);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.control:hover {
    background: rgba(0, 0, 0, 0.6);
}

.carousel-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}

.dots {
    display: flex;
    gap: 8px;
}

.dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
}

.dots span.active {
    background: #111;
}

.progress-wrap {
    flex: 1;
    background: #eee;
    height: 3px;
    border-radius: 3px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: #111;
    width: 0%;
    transition: width 4s linear;
}



@media (max-width: 900px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-visual {
        width: 100%;
    }

    .visual-frame {
        height: 300px;
    }
}

.section-light {
    padding: 80px 20px;
    min-height: 60vh;
    background: #fff;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center
}

.section-dark {
    padding: 80px 20px;
    min-height: 60vh;
    background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center
}

/* Footer */
.site-footer {
    background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
    color: var(--text-light);
    padding: 48px 20px;
    margin-top: 40px
}

.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    align-items: start
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 12px
}

.social {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none
}

/* small utilities */
.visually-hidden {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}

/* ========================
     Why Choose Us (Dark Theme)
  ===========================*/
#why-choose-us {
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    padding: 80px 5%;
    color: var(--text-light);
    text-align: center;
}

#why-choose-us h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 12px;
}

#why-choose-us .subtitle {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto 50px;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.choose-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 35px 25px;
    backdrop-filter: blur(6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.choose-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.choose-card:hover::before {
    opacity: 1;
}

.choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.icon-wrap {
    background: rgba(255, 255, 255, 0.12);
    color: var(--text-yellow);
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    transition: all 0.3s var(--ease);
}

.choose-card:hover .icon-wrap {
    background: var(--text-yellow);
    color: var(--accent-start);
}

.choose-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 10px;
}

.choose-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    #why-choose-us {
        padding: 60px 20px;
    }

    .choose-card {
        padding: 25px 20px;
    }
}


/* ======================
      LIGHT SERVICES SECTION
  ====================== */
.light-services {
    background: #fafafa;
    color: var(--text-dark);
    padding: 100px 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.services-container {
    max-width: var(--max-w);
    margin: 0 auto;
    text-align: center;
}

.light-services h2 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 0.5em;
    color: var(--accent-start);
}

.subtitle {
    color: var(--accent-end);
    font-size: 1.1rem;
    margin-bottom: 3em;
}

/* Subtle decorative background shapes */
.light-services::before,
.light-services::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(77, 0, 0, 0.08), transparent 70%);
    z-index: 0;
}

.light-services::before {
    top: -100px;
    left: -150px;
}

.light-services::after {
    bottom: -120px;
    right: -120px;
}

/* Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    justify-items: center;
    z-index: 1;
    position: relative;
}

/* Card */
.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 8px 30px rgba(6, 10, 20, 0.06);
    transition: transform var(--mid) var(--ease), box-shadow var(--mid) var(--ease);
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 320px;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.253);
}

.service-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
    transition: width 0.4s var(--ease);
}

.service-card:hover::after {
    width: 100%;
}

.icon {
    display: flex;
    justify-content: center;
}

.icon img {
    height: 80px;
    margin-bottom: 1.2rem;
    transition: transform 0.3s ease;
}

.service-card:hover .icon img {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: black;
    margin-bottom: 0.6rem;
}

.price {
    color: var(--accent-start);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.service-card p {
    opacity: 0.8;
    margin-bottom: 1.8rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Buttons */
.actions {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
}

.btn-primary {
    background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
    color: var(--text-light);
    padding: 0.6rem 1.4rem;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    border: 0;
    font-size: 0.8rem;
}

.btn-primary:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-start);
    color: var(--accent-start);
    padding: 0.6rem 1.4rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.btn-outline:hover {
    background: var(--accent-start);
    color: var(--text-light);
    transform: scale(1.05);
}

/* See All Button */
.see-all-btn {
    display: inline-block;
    margin-top: 3rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
    color: var(--text-light);
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s var(--ease);
}

.see-all-btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .light-services h2 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .service-card {
        padding: 1.6rem;
    }
}

/* ======================
   CART STYLING
====================== */
.cart-icon {
    position: fixed;
    top: 15px;
    right: 20px;
    background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 25px;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: 0.3s ease;
    display: flex;
}

.cart-icon img {
    height: 30px;
}

.cart-icon:hover {
    transform: scale(1.05);
}

.cart-icon span {
    background: var(--text-yellow);
    color: var(--accent-start);
    padding: 2px 8px;
    border-radius: 50%;
    margin-left: 6px;
    font-weight: 700;
}

.cart {
    position: fixed;
    top: 0;
    right: -400px;
    width: 360px;
    height: 100vh;
    background: #fff;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

.cart.open {
    right: 0;
}

.cart-header {
    padding: 20px;
    background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    margin: 0;
}

.close-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fafafa;
    border-radius: 8px;
    padding: 10px 15px;
    margin-bottom: 10px;
    transition: 0.3s;
}

.cart-item:hover {
    background: #f2f2f2;
}

.cart-item .info {
    text-align: left;
}

.remove-btn {
    background: transparent;
    border: none;
    font-size: 1.3rem;
    color: var(--accent-start);
    cursor: pointer;
    font-weight: 700;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #ddd;
}

.cart-footer .total {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--accent-end);
}

#checkoutBtn {
    width: 100%;
}









/* --- CONTACT SECTION --- */
.contact-section {
    padding: 100px 20px;
    background: #fafafa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 20px;
    color: #330c0a;
}

.contact-info p {
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.contact-list li {
    margin-bottom: 12px;
    color: #333;
    font-size: 1rem;
}

.contact-list strong {
    color: #330c0a;
}

.contact-list a {
    color: #330c0a;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.contact-list a:hover {
    border-bottom: 1px solid #f4c542;
    color: #5c0e08;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
}

.social-icon {
    background: #330c0a;
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.15rem;
}

.social-icon:hover {
    background: #f4c542;
    color: #330c0a;
    transform: scale(1.08);
}

/* --- FORM CONTAINER --- */
.contact-form-container {
    background: #fff;
    padding: 40px 35px;
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-form-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #330c0a;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #330c0a;
    box-shadow: 0 0 0 3px rgba(51, 12, 10, 0.1);
    outline: none;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-primary {
    background: #330c0a;
    color: #fff;
    border: none;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1rem;
}

.btn-primary:hover {
    background: #5c0e08;
    transform: translateY(-2px);
}

/* --- SUCCESS MESSAGE --- */
.form-success {
    margin-top: 20px;
    background: #eaf9ea;
    padding: 22px;
    border: 1px solid #c6ecc6;
    border-radius: 10px;
    text-align: center;
    color: #155724;
    font-weight: 600;
    transition: 0.4s ease;
}

.hidden {
    display: none;
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1024px) {
    .contact-section {
        padding: 80px 15px;
    }

    .contact-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .contact-form-container {
        padding: 30px 25px;
    }

    .contact-hero {
        padding: 90px 15px 80px;
    }

    .contact-hero .hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 80px 15px 70px;
    }

    .contact-hero .hero-title {
        font-size: 1.9rem;
    }

    .contact-form-container {
        padding: 25px 20px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 14px;
    }
}


/* =============================
   SERVICES PAGE - HERO SECTION
============================= */
.hero.light-theme {
  position: relative;
  background: linear-gradient(135deg, #330c0a, #5c0e08);
  color: #fff;
  text-align: center;
  padding: 140px 20px 120px;
  overflow: hidden;
}

/* Hero video behind content */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;             /* low opacity to keep it subtle */
  mix-blend-mode: overlay;  /* blends video with gradient background */
  z-index: 0;
}

/* Existing animated glow overlay */
.hero.light-theme::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 30%, rgba(255, 255, 255, 0.08), transparent 70%),
              radial-gradient(circle at 80% 70%, rgba(255, 200, 66, 0.05), transparent 70%);
  animation: pulse-bg 12s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2; /* ensures content sits in front */
}


@keyframes pulse-bg {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Content */
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.hero-content p {
    max-width: 700px;
    margin: 0 auto 35px;
    font-size: 1.15rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* Primary button */
.btn-primary {
    display: inline-block;
    background: #f4c542;
    color: #330c0a;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary:hover {
    background: #fff;
    color: #330c0a;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
    .hero.light-theme {
        padding: 100px 15px 90px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn-primary {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

/* === ABOUT PAGE STYLES === */

/* About Hero Section */
.about-hero {
    padding: 100px 20px;
    background: linear-gradient(135deg, #330c0a, #5c0e08);
    color: #fff;
    text-align: center;
}

.about-hero .container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.about-hero .subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 30px;
}

.about-hero .btn.primary {
    background: #fff;
    color: #330c0a;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-hero .btn.primary:hover {
    background: #5c0e08;
    color: #fff;
}

/* Blog Section */
.about-blog {
    padding: 80px 20px;
    background: #fafafa;
}

.about-blog .section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.about-blog h2 {
    text-align: center;
    font-size: 2rem;
    color: #330c0a;
    margin-bottom: 10px;
}

.about-blog .subtitle {
    text-align: center;
    font-size: 1rem;
    color: #555;
    margin-bottom: 40px;
}

/* Search Bar */
.blog-search {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.blog-search input {
    width: 100%;
    max-width: 500px;
    padding: 12px 18px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.blog-search input:focus {
    outline: none;
    border-color: #330c0a;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 1.2rem;
    color: #330c0a;
    margin-bottom: 10px;
}

.blog-content p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
}

.blog-content .btn.ghost {
    display: inline-block;
    padding: 8px 18px;
    border: 1.5px solid #330c0a;
    color: #330c0a;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.blog-content .btn.ghost:hover {
    background: #330c0a;
    color: #fff;
}


/* Responsive Tweaks */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2rem;
    }

    .about-hero .subtitle {
        font-size: 1rem;
    }

    .blog-content h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 80px 15px;
    }

    .about-blog {
        padding: 60px 15px;
    }

    .blog-search input {
        width: 90%;
    }
}


/* =============================
   OUR VISION — LIGHT THEME
============================= */
.our-vision.light-theme {
    background: linear-gradient(180deg, #fff9f9 0%, #f8f4f4 100%);
    color: var(--text-dark);
    padding: clamp(80px, 9vw, 140px) 20px;
    font-family: "Poppins", sans-serif;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 0;
}

/* Inner Grid Layout */
.vision-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 70px);
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Headings */
.our-vision h2 {
    font-size: clamp(30px, 4.5vw, 42px);
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--accent-start);
    position: relative;
}

.our-vision h2::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-start), var(--text-yellow));
    bottom: -12px;
    left: 0;
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* Subtitle & Text */
.our-vision .subtitle {
    font-size: 1.15rem;
    color: rgba(30, 30, 30, 0.75);
    margin-bottom: 18px;
    font-weight: 500;
}

.our-vision .vision-text {
    line-height: 1.85;
    color: rgba(30, 30, 30, 0.85);
    margin-bottom: 36px;
    font-size: 1rem;
}

/* Primary Button */
.our-vision .btn.primary {
    background: var(--accent-start);
    color: var(--text-light);
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 6px 25px rgba(77, 0, 0, 0.25);
}

.our-vision .btn.primary:hover {
    background: var(--accent-end);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(77, 0, 0, 0.35);
}

/* Vision Image */
.vision-image img {
    width: 100%;
    border-radius: 16px;
    border: 4px solid rgba(77, 0, 0, 0.08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.vision-image img:hover {
    transform: scale(1.03) rotate(-0.5deg);
    box-shadow: 0 18px 45px rgba(77, 0, 0, 0.3);
}

/* Decorative Glows */
.our-vision::before,
.our-vision::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.3;
    z-index: 1;
}

.our-vision::before {
    width: 280px;
    height: 280px;
    background: rgba(255, 230, 0, 0.4);
    top: -90px;
    left: -120px;
}

.our-vision::after {
    width: 320px;
    height: 320px;
    background: rgba(77, 0, 0, 0.35);
    bottom: -110px;
    right: -110px;
}


/* Responsive Layout */
@media (max-width: 900px) {
    .vision-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .our-vision h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .vision-content {
        order: 2;
    }

    .vision-image {
        order: 1;
    }

    .vision-image img {
        max-width: 90%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .our-vision.light-theme {
        padding: 60px 15px;
    }

    .our-vision h2 {
        font-size: 2rem;
    }

    .our-vision .subtitle {
        font-size: 1rem;
    }

    .our-vision .vision-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .our-vision .btn.primary {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}


/* =========================
   MISSION SECTION (PREMIUM)
   ========================= */
.mission-section {
    background: radial-gradient(circle at top left, #3a0000 0%, #0d0101 80%);
    color: #fff;
    padding: clamp(80px, 10vw, 140px) 20px;
    font-family: "Poppins", sans-serif;
    overflow: hidden;
    position: relative;
}

.mission-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    align-items: center;
    gap: 70px;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Text Side --- */
.mission-text {
    max-width: 600px;
}

.section-title {
    font-size: clamp(30px, 5vw, 46px);
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #fbff00, #ff0000);
    bottom: -8px;
    left: 0;
    border-radius: 4px;
}

.mission-intro {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 25px 0 15px;
    line-height: 1.6;
    font-weight: 500;
}

.mission-body {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
    margin-bottom: 35px;
    font-size: 1rem;
}

/* --- Image + Stats --- */
.mission-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat h3 {
    font-size: 2rem;
    background: linear-gradient(90deg, #fbff00, #ff0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.stat p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 4px;
}

/* --- CTA Button --- */
.btn-primary {
    display: inline-block;
    background: linear-gradient(90deg, #fbff00, #ff0000);
    color: #000;
    font-weight: 600;
    padding: 13px 32px;
    border-radius: 35px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(90deg, #1d0000, #150000);
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 0 25px rgba(255, 255, 0, 0.5);
}

/* =========================
   CTA SECTION
   ========================= */
.cta-section {
    background: linear-gradient(135deg, #4d0000, #300d0d);
    color: #fff;
    padding: clamp(60px, 10vw, 100px) 18px;
    text-align: center;
    font-family: "Poppins", sans-serif;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before,
.cta-section::after {
    content: "";
    position: absolute;
    filter: blur(120px);
    opacity: 0.25;
    z-index: 1;
}

.cta-section::before {
    width: 300px;
    height: 300px;
    background: #ff0000;
    top: -100px;
    left: -100px;
}

.cta-section::after {
    width: 350px;
    height: 350px;
    background: #fbff00;
    bottom: -120px;
    right: -120px;
}

.cta-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    margin-bottom: 18px;
}

.cta-section p {
    font-size: 1.05rem;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.85);
}

.cta-btn {
    display: inline-block;
    background: #fbff00;
    color: #4d0000;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s var(--ease);
}

.cta-btn:hover {
    background: #fff;
    color: #300d0d;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

/* CTA Responsive */
@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 1.9rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .cta-btn {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
}

/* =========================
   TESTIMONIALS
   ========================= */
.testimonials {
    background: #fff;
    color: #0b0b0b;
    padding: clamp(80px, 10vw, 140px) 18px;
    font-family: "Poppins", sans-serif;
    text-align: center;
    position: relative;
}

.testimonials h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 30px;
    color: #4d0000;
    position: relative;
}

.testimonials h2::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4d0000, #300d0d);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 4px;
}

.testimonials .subtitle {
    color: rgba(0, 0, 0, 0.7);
    font-size: 16px;
    margin-bottom: 50px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    justify-content: center;
    align-items: stretch;
}

.testimonial-card {
    background: #fff7f7;
    border-radius: 14px;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 35px rgba(77, 0, 0, 0.1);
    transition: transform 0.35s cubic-bezier(.2, .9, .2, 1), box-shadow 0.35s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(77, 0, 0, 0.2);
}

.testimonial-card .client-photo {
    width: 70px;
    height: 70px;
    margin-bottom: 18px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card .client-feedback {
    font-size: 0.95rem;
    color: #0b0b0b;
    line-height: 1.6;
    margin-bottom: 12px;
    font-style: italic;
}

.testimonial-card .client-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #4d0000;
}

.testimonial-card .client-role {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.6);
}

/* Testimonials Responsive */
@media (max-width: 768px) {
    .testimonial-card .client-photo {
        width: 60px;
        height: 60px;
    }

    .testimonial-card .client-feedback {
        font-size: 0.9rem;
    }

    .testimonial-card .client-name {
        font-size: 1rem;
    }
}



.about-story,
.about-values,
.about-blogs,
.about-team {
    padding: 100px 20px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.about-story h2,
.about-values h2,
.about-blogs h2,
.about-team h2 {
    text-align: center;
    font-size: 2.4rem;
    color: #330c0a;
    margin-bottom: 40px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.about-story p {
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: center;
    line-height: 1.8;
    color: #444;
    font-size: 1.05rem;
}

/* ========== VALUES SECTION ========== */

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 30px;
    justify-content: center;
    align-items: stretch;
}

.value-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.35s ease;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    color: #330c0a;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.value-card p {
    color: #555;
    font-size: 0.98rem;
    line-height: 1.7;
}

/* ========== BLOG SECTION ========== */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-card h3 {
    margin: 20px 20px 10px;
    font-size: 1.3rem;
    color: #330c0a;
    font-weight: 600;
}

.blog-card p {
    margin: 0 20px 20px;
    color: #555;
    line-height: 1.7;
    font-size: 0.97rem;
}

.blog-card a.btn-read {
    margin: auto 20px 20px;
    color: #5c0e08;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.25s ease;
}

.blog-card a.btn-read:hover {
    color: #ff6a00;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* "View All" Button Centered */
.center {
    text-align: center;
    margin-top: 40px;
}

.btn.primary {
    display: inline-block;
    background: linear-gradient(135deg, #330c0a, #5c0e08);
    color: #fff;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn.primary:hover {
    background: linear-gradient(135deg, #5c0e08, #ff6a00);
}

/* ========== TEAM SECTION ========== */

.about-team .team-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.about-team img {
    width: 260px;
    height: 260px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #5c0e08;
}

.about-team h3 {
    font-size: 1.5rem;
    color: #330c0a;
    margin-bottom: 10px;
}

.about-team p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

/* ========== RESPONSIVE DESIGN ========== */

@media (max-width: 1024px) {

    .about-story,
    .about-values,
    .about-blogs,
    .about-team {
        padding: 80px 16px;
    }
}

@media (max-width: 768px) {
    .about-team .team-card {
        flex-direction: column;
        text-align: center;
    }

    .about-team img {
        margin-bottom: 20px;
    }

    .blog-card img {
        height: 180px;
    }

    .value-card {
        padding: 24px 18px;
    }

    .about-story h2,
    .about-values h2,
    .about-blogs h2,
    .about-team h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {

    .about-story h2,
    .about-values h2,
    .about-blogs h2,
    .about-team h2 {
        font-size: 1.7rem;
    }

    .blog-card h3 {
        font-size: 1.15rem;
    }

    .value-card h3 {
        font-size: 1.15rem;
    }

    .btn.primary {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
}
.mark{
display: none;
}


.blog-controls {
display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    align-items: center;
}

/* Search Bar */
.blog-search {
  flex: 1;
}

.blog-search input {
  width: 100%;
  max-width: 400px;
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 1rem;
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all var(--fast) var(--ease);
}

.blog-search input:focus {
  outline: none;
  box-shadow: 0 4px 20px rgba(77,0,0,0.4);
}

/* Categories Sidebar */
.blog-categories {
  flex: 0 0 180px;
}

.blog-categories h4 {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #330c0a;
}

.blog-categories ul {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
}

.blog-categories ul li {
  margin: 0 10px;
  width: auto;
  padding: 0 5px;
}

.blog-categories button {
  width: 100%;
  background: #fff;
  border: 1.5px solid var(--accent-start);
  border-radius: var(--radius);
  padding: 8px 12px;
  color: var(--accent-start);
  cursor: pointer;
  transition: all var(--fast) var(--ease);
  font-size: 0.9rem;
}

.blog-categories button:hover,
.blog-categories button.active {
  background: linear-gradient(45deg, var(--accent-start), var(--accent-end));
  color: var(--text-light);
}


/* Category Badge */
.blog-card .category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent-start);
  color: var(--text-light);
  padding: 5px 12px;
  font-size: 0.8rem;
  border-radius: var(--radius);
  z-index: 2;
}

/* Responsive */
@media (max-width: 1024px) {
  .blog-controls {
    flex-direction: column;
    align-items: flex-start;
  }
  .blog-categories {
    flex: 1;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .about-blog h2 {
    font-size: 2rem;
  }
  .blog-content h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .about-blog {
    padding: 60px 15px;
  }
  .blog-search input {
    width: 100%;
  }
}

/* Popup Container */
#newsletter-popup {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.4s ease-in-out;
}

/* Popup Box */
.popup-content {
  background: #fff;
  color: #000;
  padding: 40px 30px;
  border-radius: 16px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  animation: scaleIn 0.3s ease;
}

/* Close Button */
#close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #888;
  transition: 0.2s;
}
#close-popup:hover {
  color: #000;
}

/* Form */
#popup-form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#popup-form input {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}
#popup-form button {
  background: #000;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
#popup-form button:hover {
  background: #333;
}

.success-msg {
  color: #28a745;
  display: none;
  margin-top: 15px;
  font-weight: 600;
}

.note {
  font-size: 0.85rem;
  color: #777;
  margin-top: 10px;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}
@keyframes scaleIn {
  from {transform: scale(0.8); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}



