@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800&family=Inter:wght@400;500&display=swap');

:root {
    --ign-navy:   #0f1f3d;
    --ign-blue:   #1a4a8a;
    --ign-sky:    #0ea5e9;
    --ign-teal:   #06b6d4;
    --ign-glow:   rgba(14,165,233,0.18);
    --ign-border: rgba(14,165,233,0.14);
    --ff-head:    'Outfit', sans-serif;
    --ff-body:    'Inter', sans-serif;
    --nav-h:      80px;
    --transition: 0.32s cubic-bezier(0.16,1,0.3,1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    position: relative;
}

.site-header {
    /* position: sticky; */
    top: 0;
    z-index: 1000;
    width: 100%;
    background: #4e3a0a;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    height: var(--nav-h, 80px);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgb(255 255 255 / 29%);
    box-shadow: 0 2px 24px rgba(10,40,90,0.06);
}


.site-header ~ * {
    overflow-x: hidden;
}


main {
    overflow-x: hidden;
    width: 100%;
}


.navbar {
    width: 100%;
    position: relative;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%; 
    margin: 0 auto;
    padding: 0 2rem;
}

/* ---- Logo ---- */
.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo img {
    height: 72px;
    width: auto;
    display: block;
}

/* ---- Desktop Nav ---- */
.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0.2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--ff-head);
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

.nav-link:hover,
.has-mega:hover > .nav-link {
    color: var(--ign-sky);
    background: rgba(14,165,233,0.07);
}

.arrow-icon {
    width: 14px;
    height: 14px;
    transition: transform var(--transition);
    flex-shrink: 0;
}

.has-mega:hover .arrow-icon {
    transform: rotate(180deg);
}

/* ---- Mega Menu ---- */
.has-mega {
    position: static;
}

.mega-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    border-top: 2px solid var(--ign-sky);
    box-shadow: 0 24px 60px -12px rgba(10,40,90,0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    pointer-events: none;
    z-index: 999;
}

.has-mega:hover .mega-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;
}
.has-mega.mega-open > .nav-link {
    color: var(--ign-sky);
    background: rgba(14,165,233,0.07);
}
.has-mega.mega-open .arrow-icon {
    transform: rotate(180deg);
}
.mega-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
}

.mega-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 280px;
    gap: 2.5rem;
}

.mega-label {
    font-family: var(--ff-head);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--ign-sky);
    margin-bottom: 1rem;
}

.mega-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    margin-bottom: 2px;
}

.mega-item:hover {
    background: #f8faff;
    transform: translateX(4px);
}

.mega-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mega-icon svg {
    width: 20px;
    height: 20px;
}

.mega-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mega-text strong {
    font-family: var(--ff-head);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ign-navy);
    display: block;
}

.mega-text span {
    font-size: 0.78rem;
    color: #64748b;
}

/* ---- Featured Panel ---- */
.mega-featured-inner {
    background: linear-gradient(145deg, var(--ign-navy) 0%, var(--ign-blue) 100%);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feat-badge {
    display: inline-block;
    background: rgba(14,165,233,0.2);
    color: #7dd3fc;
    font-family: var(--ff-head);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 1rem;
    width: fit-content;
}

.mega-featured-inner h3 {
    font-family: var(--ff-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.mega-featured-inner p {
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.feat-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.feat-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #cbd5e1;
    font-family: var(--ff-head);
}

.feat-list svg {
    width: 16px;
    height: 16px;
    color: var(--ign-sky);
    flex-shrink: 0;
}

.feat-cta {
    display: inline-block;
    background: var(--ign-sky);
    color: #fff;
    font-family: var(--ff-head);
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.65rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    margin-top: auto;
    transition: background 0.2s, transform 0.2s;
    width: fit-content;
}

.feat-cta:hover {
    background: #0284c7;
    transform: translateY(-1px);
}

/* ---- Nav Right ---- */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-quote {
    font-family: var(--ff-head);
    background: linear-gradient(135deg, var(--ign-sky) 0%, var(--ign-blue) 100%);
    color: #fff;
    padding: 0.65rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
    transition: 0.25s;
    box-shadow: 0 6px 20px var(--ign-glow);
    white-space: nowrap;
}

.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px var(--ign-glow);
}

/* ---- Hamburger ---- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: 1px solid var(--ign-border);
    border-radius: 8px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ign-navy);
    border-radius: 2px;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- Offcanvas ---- */
.offcanvas {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    height: 100dvh;
    background: #fff;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    transition: right 0.32s cubic-bezier(0.16,1,0.3,1);
    box-shadow: -10px 0 50px rgba(10,40,90,0.12);
    overflow: hidden;
    visibility: hidden;
    transform: translateX(0);
    will-change: right;
}

.offcanvas.open {
    right: 0;
    visibility: visible;
}

.offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--ign-border);
    flex-shrink: 0;
    background: #fff;
}

.offcanvas-header img {
    height: 40px;
    width: auto;
}

.offcanvas-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
    cursor: pointer;
    transition: 0.2s;
    flex-shrink: 0;
}

.offcanvas-close:hover {
    background: #fee2e2;
    border-color: #fca5a5;
}

.offcanvas-close svg {
    width: 18px;
    height: 18px;
    color: #374151;
}

.offcanvas-body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 1rem 1.5rem 3rem;
    -webkit-overflow-scrolling: touch;
}

/* ---- Mobile Nav ---- */
.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.mobile-nav li {
    border-bottom: 1px solid #f1f5f9;
    list-style: none;
}

.mobile-nav > li > a {
    display: flex;
    align-items: center;
    font-family: var(--ff-head);
    font-weight: 600;
    font-size: 1rem;
    color: var(--ign-navy);
    text-decoration: none;
    padding: 1rem 0;
    transition: color 0.2s;
}

.mobile-nav > li > a:hover {
    color: var(--ign-sky);
}

/* ---- Accordion ---- */
.accordion-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    font-family: var(--ff-head);
    font-weight: 600;
    font-size: 1rem;
    color: var(--ign-navy);
    padding: 1rem 0;
    cursor: pointer;
    text-align: left;
}

.acc-arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.accordion-toggle[aria-expanded="true"] .acc-arrow {
    transform: rotate(180deg);
}

.accordion-body {
    list-style: none;
    padding: 0 0 0.75rem 0.5rem;
    margin: 0;
    display: none;
}

.accordion-body.open {
    display: block;
}

.accordion-body li {
    border: none;
    list-style: none;
}

.accordion-body li a {
    display: block;
    padding: 0.55rem 0.75rem;
    font-size: 0.9rem;
    color: #475569;
    text-decoration: none;
    border-radius: 6px;
    font-family: var(--ff-head);
    transition: background 0.2s, color 0.2s;
}

.accordion-body li a:hover {
    background: rgba(14,165,233,0.07);
    color: var(--ign-sky);
}

.mobile-quote {
    display: block;
    text-align: center;
    width: 100%;
    border-radius: 10px;
    padding: 0.85rem 1rem;
    margin-top: 1rem;
}

/* ---- Overlay ---- */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(10,20,40,0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    backdrop-filter: blur(3px);
    height: 100vh;
}

.overlay.open {
    opacity: 1;
    visibility: visible;
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
    .nav-menu { display: none !important; }
    .btn-quote:not(.mobile-quote) { display: none !important; }
    .hamburger { display: flex !important; }
}

@media (max-width: 768px) {
    .nav-logo img { height: 42px; }
    .nav-container { padding: 0 1rem; }
}

@media (max-width: 480px) {
    .nav-logo img { height: 36px; }
    .nav-container { padding: 0 0.75rem; }
}



 




 














/* footer  */

/* ══ FOOTER ══ */
.footer {
  font-family: 'Inter', sans-serif;
  background: #080f24;
  color: #fff;
}

/* ── CTA Banner ── */
.footer-cta {
  background: linear-gradient(120deg, #0f1f3d 0%, #1547b8 50%, #0284c7 100%);
  padding: 60px 24px;
  position: relative;
  overflow: hidden;
}
.footer-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.footer-cta-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.footer-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.footer-cta-left h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 10px;
  color: #fff;
}
.footer-cta-left h2 span {
  color: #38bdf8;
}
.footer-cta-left p {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
  max-width: 440px;
}
.footer-cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.fcta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #0f1f3d;
  font-size: 14px;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform .3s, box-shadow .3s;
}
.fcta-btn-primary i { font-size: 18px; transition: transform .3s; }
.fcta-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(0,0,0,.25); }
.fcta-btn-primary:hover i { transform: translateX(4px); }
.fcta-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,.35);
  text-decoration: none;
  transition: all .3s;
}
.fcta-btn-outline i { font-size: 18px; }
.fcta-btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.6);
}

/* ── Main Footer ── */
.footer-main { padding: 72px 24px 0; }
.footer-container { max-width: 1180px; margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

/* Brand */
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.footer-logo strong { font-weight: 800; color: #38bdf8; }
.footer-logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1547b8, #0ea5e9);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo-icon i { font-size: 20px; color: #fff; }

.footer-brand-desc {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  margin-bottom: 24px;
}

/* Contact list */
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: transform .25s;
}
.footer-contact-item:hover { transform: translateX(4px); }
.fci-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(14,165,233,.12);
  border: 1px solid rgba(14,165,233,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fci-icon i { font-size: 16px; color: #0ea5e9; }
.fci-label { font-size: 11px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .06em; }
.fci-val { font-size: 13px; font-weight: 600; color: #fff; margin-top: 2px; }

/* Socials */
.footer-socials { display: flex; gap: 10px; }
.fsocial {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: 18px;
  text-decoration: none;
  transition: all .3s;
}
.fsocial:hover {
  background: #0ea5e9;
  border-color: #0ea5e9;
  color: #fff;
  transform: translateY(-3px);
}

/* Footer Cols */
.footer-col-title {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .25s, gap .25s;
}
.footer-links a i { font-size: 14px; color: #0ea5e9; opacity: 0; transition: opacity .25s; }
.footer-links a:hover { color: #fff; gap: 10px; }
.footer-links a:hover i { opacity: 1; }

.footer-badge {
  background: #0ea5e9;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 50px;
  margin-left: 4px;
}

/* Newsletter */
.footer-newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px;
  padding: 28px 32px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.footer-nl-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-nl-icon {
  font-size: 32px;
  color: #0ea5e9;
  flex-shrink: 0;
}
.footer-nl-title {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.footer-nl-sub { font-size: 13px; color: rgba(255,255,255,.45); }

.footer-nl-form {
  display: flex;
  gap: 0;
  flex-shrink: 0;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}
.footer-nl-input {
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 20px;
  font-size: 13.5px;
  color: #fff;
  width: 240px;
}
.footer-nl-input::placeholder { color: rgba(255,255,255,.35); }
.footer-nl-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #0ea5e9;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border: none;
  padding: 12px 22px;
  cursor: pointer;
  transition: background .3s;
  white-space: nowrap;
}
.footer-nl-btn i { font-size: 16px; }
.footer-nl-btn:hover { background: #0284c7; }

/* Tech Stack */
.footer-tech {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0 28px;
  flex-wrap: wrap;
}
.footer-tech-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.35);
  white-space: nowrap;
}
.footer-tech-list { display: flex; gap: 8px; flex-wrap: wrap; }
.ftech {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  color: rgba(255,255,255,.55);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 50px;
  transition: all .3s;
}
.ftech:hover {
  background: rgba(14,165,233,.12);
  border-color: rgba(14,165,233,.25);
  color: #38bdf8;
}

/* ── Bottom Bar ── */
.footer-bottom {
  background: rgba(0,0,0,.25);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 24px;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,.4);
}
.footer-copy strong { color: rgba(255,255,255,.7); }
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  transition: color .25s;
}
.footer-bottom-links a:hover { color: #0ea5e9; }
.footer-bottom-links span {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
}
.footer-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.4);
}
.footer-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,.2); }
  50%       { box-shadow: 0 0 0 6px rgba(34,197,94,.08); }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand-col { grid-column: 1 / -1; }
  .footer-nl-input { width: 180px; }
}
@media (max-width: 640px) {
  .footer-cta-inner { flex-direction: column; }
  .footer-cta-btns { width: 100%; }
  .fcta-btn-primary, .fcta-btn-outline { justify-content: center; flex: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand-col { grid-column: auto; }
  .footer-newsletter { flex-direction: column; align-items: flex-start; }
  .footer-nl-form { width: 100%; }
  .footer-nl-input { flex: 1; min-width: 0; width: auto; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 10px; }
  .footer-bottom-links { justify-content: center; }
}


 





































































/* --- MINIMAL WHITE LOGIN PAGE STYLES --- */

:root {
    --bg-light: #f8fafc;
    --card-bg: #ffffff;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --primary-color: #6366f1;
    --primary-hover: #4f46e5;
    --border-color: #e2e8f0;
    --error-color: #ef4444;
}

.login-section {
    background-color: var(--bg-light);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: system-ui, -apple-system, sans-serif;
    color: var(--text-main);
    padding: 20px;
    box-sizing: border-box;
}

/* Card Container */
.login-container {
    width: 100%;
    max-width: 420px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 32px;
    box-sizing: border-box;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 
                0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

/* Header */
.login-header {
    text-align: center;
    margin-bottom: 32px;
}

.login-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 8px 0;
    color: var(--text-main);
}

.login-title__brand {
    color: var(--primary-color);
}

.login-subtitle {
    color: var(--text-muted);
    font-size: 0.925rem;
    margin: 0;
}

/* Form layouts */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-label {
    font-size: 0.825rem;
    font-weight: 600;
    color: #475569;
}

.forgot-link, .footer-link {
    font-size: 0.825rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.forgot-link:hover, .footer-link:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* Inputs fields */
.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 14px;
    color: #94a3b8;
    pointer-events: none;
}

.form-input {
    width: 100%;
    padding: 12px 14px 12px 42px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-main);
    font-size: 0.95rem;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.form-input::placeholder {
    color: #94a3b8;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.form-input.is-invalid {
    border-color: var(--error-color);
    background-color: #fffafb;
}

.error-message {
    color: var(--error-color);
    font-size: 0.8rem;
    margin-top: 2px;
}

/* Custom Checkbox */
.form-options {
    display: flex;
    align-items: center;
}

.remember-me {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 24px;
    cursor: pointer;
    user-select: none;
}

.remember-me input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 16px;
    width: 16px;
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    transition: all 0.2s;
}

.remember-me:hover input ~ .checkmark {
    border-color: var(--primary-color);
}

.remember-me input:checked ~ .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 7px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.remember-me input:checked ~ .checkmark:after {
    display: block;
}

.remember-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Primary Login Button */
.btn-primary-login {
    background: var(--primary-color);
    border: none;
    padding: 14px;
    border-radius: 10px;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background 0.2s ease, transform 0.1s ease;
    margin-top: 4px;
}

.btn-primary-login:hover {
    background: var(--primary-hover);
}

.btn-primary-login:active {
    transform: scale(0.98);
}

/* Footer info */
.login-footer {
    margin-top: 28px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- RESPONSIVE BREAKPOINT --- */
@media (max-width: 480px) {
    .login-container {
        padding: 32px 24px;
        border: none;
        box-shadow: none;
        background: transparent;
    }
    .login-section {
        background: #ffffff; /* pure white fallback on active mobile spaces */
    }
}























 /* Spinner animation */
.spin-icon {
    animation: spin 1s linear infinite;
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Location suggestions dropdown */
.location-suggestions {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    z-index: 999;
    max-height: 220px;
    overflow-y: auto;
    margin-top: 2px;
}

.location-suggestions:empty {
    display: none;
}

.suggestion-item {
    border-bottom: 1px solid #f1f5f9;
    line-height: 1.4;
}

.suggestion-item:last-child {
    border-bottom: none;
}



















/* ── Google Font ─────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600&family=Nunito:wght@300;400;500;600&display=swap');

/* ── Root Tokens ─────────────────────────────────────────────────────────── */
:root {
    --k-gold:        #c9941a;
    --k-gold-light:  #f0c040;
    --k-gold-dim:    rgba(201,148,26,0.15);
    --k-gold-border: rgba(201,148,26,0.30);
    --k-deep:        #0a0800;
    --k-deep2:       #120e02;
    --k-surface:     #1a1505;
    --k-surface2:    #231c07;
    --k-text:        #f5ecd0;
    --k-text-muted:  #a8935a;
    --k-primary:     #b87d10;
    --k-primary-h:   #9a6608;
    --k-error:       #d94f4f;
    --k-success:     #3ab58a;
}
/* ── Page Background ─────────────────────────────────────────────────────── */
.dashboard-section {
    background:
        radial-gradient(ellipse 70% 40% at 50% 0%, rgba(124,111,208,0.18) 0%, transparent 70%),
        radial-gradient(ellipse 50% 30% at 80% 80%, rgba(201,168,76,0.10) 0%, transparent 60%),
        #4e3a0a !important;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Mandala watermark */
.dashboard-section::before {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(700px, 95vw);
    height: min(700px, 95vw);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Ccircle cx='100' cy='100' r='98' fill='none' stroke='%23c9a84c' stroke-width='0.3' opacity='0.18'/%3E%3Ccircle cx='100' cy='100' r='80' fill='none' stroke='%23c9a84c' stroke-width='0.3' opacity='0.15'/%3E%3Ccircle cx='100' cy='100' r='60' fill='none' stroke='%23c9a84c' stroke-width='0.3' opacity='0.12'/%3E%3Ccircle cx='100' cy='100' r='40' fill='none' stroke='%23c9a84c' stroke-width='0.3' opacity='0.10'/%3E%3Ccircle cx='100' cy='100' r='20' fill='none' stroke='%23c9a84c' stroke-width='0.3' opacity='0.10'/%3E%3Cline x1='100' y1='2' x2='100' y2='198' stroke='%23c9a84c' stroke-width='0.2' opacity='0.10'/%3E%3Cline x1='2' y1='100' x2='198' y2='100' stroke='%23c9a84c' stroke-width='0.2' opacity='0.10'/%3E%3Cline x1='16' y1='16' x2='184' y2='184' stroke='%23c9a84c' stroke-width='0.2' opacity='0.08'/%3E%3Cline x1='184' y1='16' x2='16' y2='184' stroke='%23c9a84c' stroke-width='0.2' opacity='0.08'/%3E%3Cpolygon points='100,4 120,80 196,80 134,126 158,198 100,154 42,198 66,126 4,80 80,80' fill='none' stroke='%23c9a84c' stroke-width='0.3' opacity='0.08'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
}

.dashboard-section .container {
    position: relative;
    z-index: 1;
}

/* ── Card ────────────────────────────────────────────────────────────────── */
.dashboard-section .card {
    background: var(--k-surface) !important;
    border: 1px solid var(--k-gold-border) !important;
    border-radius: 20px !important;
    box-shadow:
        0 0 0 1px rgba(201,168,76,0.08),
        0 24px 64px rgba(0,0,0,0.55),
        inset 0 1px 0 rgba(201,168,76,0.12) !important;
    position: relative;
    overflow: hidden;
}

/* Top gold shimmer line */
.dashboard-section .card::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--k-gold), transparent);
    opacity: 0.6;
}

/* ── Typography ──────────────────────────────────────────────────────────── */
.dashboard-section .card,
.dashboard-section .card * {
    font-family: 'Nunito', sans-serif;
    color: var(--k-text);
}

.dashboard-title {
    font-family: 'Cinzel', serif !important;
    font-weight: 600 !important;
    font-size: 2rem !important;
    color: var(--k-text) !important;
    letter-spacing: 0.04em;
}

.dashboard-title .text-primary,
.dashboard-section .text-primary {
    color: var(--k-gold) !important;
}

.dashboard-subtitle {
    color: var(--k-text-muted) !important;
    font-size: 0.875rem !important;
    letter-spacing: 0.02em;
}

/* ── Divider accent under header ─────────────────────────────────────────── */
.dashboard-section .text-center.mb-4::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    margin: 12px auto 0;
    background: linear-gradient(90deg, transparent, var(--k-gold), transparent);
    border-radius: 2px;
}

/* ── Labels ──────────────────────────────────────────────────────────────── */
.dashboard-section .form-label {
    color: var(--k-gold-light) !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.dashboard-section .form-label .text-muted,
.dashboard-section .text-muted {
    color: var(--k-text-muted) !important;
}

/* ── Inputs & Selects ────────────────────────────────────────────────────── */
.dashboard-section .form-control,
.dashboard-section .form-select {
    background: var(--k-surface2) !important;
    border: 1px solid var(--k-gold-border) !important;
    border-radius: 10px !important;
    color: var(--k-text) !important;
    font-family: 'Nunito', sans-serif !important;
    font-size: 0.9rem !important;
    padding: 10px 14px !important;
    transition: border-color 0.25s, box-shadow 0.25s !important;
}

.dashboard-section .form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    padding-right: 36px !important;
}

.dashboard-section .form-control::placeholder {
    color: var(--k-text-muted) !important;
    opacity: 0.7;
}

.dashboard-section .form-control:focus,
.dashboard-section .form-select:focus {
    border-color: var(--k-gold) !important;
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15) !important;
    background: #26203f !important;
    outline: none !important;
}

.dashboard-section .form-control.bg-light {
    background: rgba(201,168,76,0.04) !important;
    color: var(--k-text-muted) !important;
    cursor: default;
}

/* Select option text */
.dashboard-section .form-select option {
    background: var(--k-surface2);
    color: var(--k-text);
}

/* ── Input Group ─────────────────────────────────────────────────────────── */
.dashboard-section .input-group-text {
    background: var(--k-surface2) !important;
    border: 1px solid var(--k-gold-border) !important;
    color: var(--k-gold) !important;
    border-radius: 10px !important;
}

.dashboard-section .input-group .form-control {
    border-left: none !important;
    border-radius: 0 10px 10px 0 !important;
}

.dashboard-section .input-group .input-group-text:first-child {
    border-right: none !important;
    border-radius: 10px 0 0 10px !important;
}

.dashboard-section .input-group .input-group-text:last-child {
    border-left: none !important;
    border-radius: 0 10px 10px 0 !important;
}

/* ── Gender btn-check ────────────────────────────────────────────────────── */
.dashboard-section .btn-outline-primary {
    border-color: var(--k-gold-border) !important;
    color: var(--k-text-muted) !important;
    background: var(--k-surface2) !important;
    border-radius: 10px !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    padding: 9px 8px !important;
    transition: all 0.2s !important;
}

.dashboard-section .btn-check:checked + .btn-outline-primary {
    background: var(--k-gold-dim) !important;
    border-color: var(--k-gold) !important;
    color: var(--k-gold-light) !important;
    box-shadow: 0 0 12px rgba(201,168,76,0.20) !important;
}

.dashboard-section .btn-outline-primary:hover {
    background: var(--k-gold-dim) !important;
    border-color: var(--k-gold-border) !important;
    color: var(--k-gold-light) !important;
}

/* ── Submit Button ───────────────────────────────────────────────────────── */
.dashboard-section .btn-primary {
    background: linear-gradient(135deg, #b8922e 0%, var(--k-gold) 50%, #b8922e 100%) !important;
    background-size: 200% 100% !important;
    border: none !important;
    border-radius: 10px !important;
    color: #1a1200 !important;
    font-family: 'Cinzel', serif !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.08em;
    padding: 13px !important;
    transition: background-position 0.4s ease, transform 0.15s, box-shadow 0.2s !important;
    box-shadow: 0 4px 20px rgba(201,168,76,0.25) !important;
}

.dashboard-section .btn-primary:hover:not(:disabled) {
    background-position: right center !important;
    box-shadow: 0 6px 28px rgba(201,168,76,0.40) !important;
    transform: translateY(-1px);
}

.dashboard-section .btn-primary:active {
    transform: scale(0.98) !important;
}

.dashboard-section .btn-primary:disabled {
    opacity: 0.6 !important;
    cursor: not-allowed;
}

/* ── Alerts ──────────────────────────────────────────────────────────────── */
.dashboard-section .alert-danger {
    background: rgba(226,92,106,0.12) !important;
    border: 1px solid rgba(226,92,106,0.35) !important;
    color: #f08090 !important;
    border-radius: 10px !important;
}

.dashboard-section .alert-success {
    background: rgba(78,203,160,0.12) !important;
    border: 1px solid rgba(78,203,160,0.35) !important;
    color: #5ddcb2 !important;
    border-radius: 10px !important;
}

/* ── Validation ──────────────────────────────────────────────────────────── */
.dashboard-section .invalid-feedback {
    color: #f08090 !important;
    font-size: 0.78rem !important;
}

.dashboard-section .form-control.is-invalid,
.dashboard-section .form-select.is-invalid {
    border-color: var(--k-error) !important;
}

/* ── Location Suggestions ────────────────────────────────────────────────── */
.location-suggestions {
    background: var(--k-surface2) !important;
    border: 1px solid var(--k-gold-border) !important;
    border-radius: 10px !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.45) !important;
}

.suggestion-item {
    color: var(--k-text) !important;
    border-bottom: 1px solid rgba(201,168,76,0.08) !important;
    transition: background 0.15s;
}

.suggestion-item:last-child { border-bottom: none !important; }

.suggestion-item:hover,
.suggestion-item.bg-light {
    background: var(--k-gold-dim) !important;
    color: var(--k-gold-light) !important;
}

.suggestion-item.suggestion-empty {
    color: var(--k-text-muted) !important;
}

/* ── Footer link ─────────────────────────────────────────────────────────── */
.dashboard-section .text-muted.small {
    color: var(--k-text-muted) !important;
}

.dashboard-section a.text-primary {
    color: var(--k-gold) !important;
    text-decoration: none;
    transition: color 0.2s;
}

.dashboard-section a.text-primary:hover {
    color: var(--k-gold-light) !important;
}

/* ── Spinner ─────────────────────────────────────────────────────────────── */
.spin-icon {
    animation: kundli-spin 1s linear infinite;
    stroke: var(--k-gold);
}

@keyframes kundli-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ── Scrollbar ───────────────────────────────────────────────────────────── */
.location-suggestions::-webkit-scrollbar { width: 4px; }
.location-suggestions::-webkit-scrollbar-track { background: var(--k-surface2); }
.location-suggestions::-webkit-scrollbar-thumb { background: var(--k-gold-border); border-radius: 4px; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 576px) {
    .dashboard-title { font-size: 1.6rem !important; }
    .dashboard-section::before { opacity: 0.5; }
}



































/* ── Loader ──────────────────────────────────────────────────────────────── */
.k-loader {
    width: 40px;
    height: 40px;
    border: 3px solid var(--k-gold-border);
    border-top-color: var(--k-gold);
    border-radius: 50%;
    animation: kundli-spin 0.9s linear infinite;
}

/* ── Action Bar ──────────────────────────────────────────────────────────── */
.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--k-text-muted);
    font-size: 0.875rem;
    font-family: 'Nunito', sans-serif;
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid var(--k-gold-border);
    border-radius: 8px;
    background: var(--k-surface2);
    transition: color 0.2s, border-color 0.2s;
}

.btn-back:hover {
    color: var(--k-gold-light);
    border-color: var(--k-gold);
}

.btn-export {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #1a1200;
    background: linear-gradient(135deg, #b8922e 0%, var(--k-gold) 50%, #b8922e 100%);
    background-size: 200% 100%;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-position 0.4s, box-shadow 0.2s, transform 0.15s;
    box-shadow: 0 4px 16px rgba(201,168,76,0.25);
}

.btn-export:hover:not(:disabled) {
    background-position: right center;
    box-shadow: 0 6px 24px rgba(201,168,76,0.40);
    transform: translateY(-1px);
}

.btn-export:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

/* ── Report Header Card ──────────────────────────────────────────────────── */
.report-header-card {
    background: var(--k-surface) !important;
    border-color: var(--k-gold-border) !important;
    border-radius: 20px !important;
    box-shadow: 0 0 0 1px rgba(201,168,76,0.08), 0 24px 64px rgba(0,0,0,0.55), inset 0 1px 0 rgba(201,168,76,0.12) !important;
    position: relative;
    overflow: hidden;
}

.report-header-card::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--k-gold), transparent);
    opacity: 0.7;
}

.report-om {
    font-size: 2.8rem;
    color: var(--k-gold);
    line-height: 1;
    margin-bottom: 12px;
    text-shadow: 0 0 24px rgba(201,168,76,0.45);
}

.report-name {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--k-gold-light);
    letter-spacing: 0.06em;
    margin-bottom: 6px;
}

.report-tagline {
    font-family: 'Nunito', sans-serif;
    font-size: 0.8rem;
    color: var(--k-text-muted);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0;
}

.report-divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--k-gold), transparent);
    margin: 20px auto;
}

/* ── Meta Grid ───────────────────────────────────────────────────────────── */
.report-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--k-gold-border);
    border: 1px solid var(--k-gold-border);
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
}

.rmi {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 18px;
    background: var(--k-surface2);
    transition: background 0.2s;
}

.rmi:hover {
    background: #26203f;
}

.rmi-label {
    font-family: 'Nunito', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--k-gold);
}

.rmi-value {
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--k-text);
    word-break: break-word;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 576px) {
    .report-name { font-size: 1.5rem; }
    .report-meta-grid { grid-template-columns: 1fr; }
    .report-om { font-size: 2rem; }
}