/* ============================================================
   ROOT TOKENS
   ============================================================ */
:root {
  --navy: #062b52;
  --navy-dark: #031b34;
  --gold: #f6a800;
  --gold-deep: #e28a00;
  --teal: #0e9f9a;
  --ink: #19304a;
  --muted: #66768a;
  --line: #dde6ef;
  --paper: #ffffff;
  --soft: #f4f8fb;
  --cream: #fff7df;
  --white: #FFFFFF;
  --shadow: 0 18px 45px rgba(6, 43, 82, 0.14);
  --radius: 10px;
  --transition: 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Golos Text", sans-serif;
  background: var(--paper);
  line-height: 1.65;
  overflow-x: clip;
}

img {
  display: block;
  max-width: 100%;
}

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

h1,
h2,
h3 {
  font-family: "Merriweather", Georgia, serif;
  line-height: 1.2;
  letter-spacing: normal;
}

p {
  margin: 0 0 14px;
  color: #222222;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
}

.section-title {
  /* max-width: 860px; */
  margin: 0 auto 15px;
  text-align: center;
}

.main-title {
  font-family: "Merriweather", Georgia, serif;
  color: var(--navy);
  font-size: clamp(26px, 3.5vw, 44px);
  line-height: 1.4;
  letter-spacing: normal;
  margin: 0 0 15px 0;
}

.small-title {
  font-family: "Merriweather", Georgia, serif;
  color: var(--navy);
  font-size: clamp(26px, 3.5vw, 38px);
  line-height: 1.4;
  letter-spacing: normal;
  margin: 0 0 10px 0;
}

.small-title span {
  color: var(--gold);
}

.main-title span {
  color: var(--gold);
}

.section-title p {
  margin: 0;
  color: #222222;

}


.mt-0 {
  margin-top: 0 !important;
}

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

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

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

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

.p-left {
  padding-left: 3rem;
}

.rounded {
  border-radius: 12px;
}

.shadow {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.shadow-sm {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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


/* ============================================================
   WOW.js + Animate.css glue
   ============================================================ */
.wow {
  visibility: hidden;
}

.wow.animated {
  visibility: visible;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-duration: 0.85s;
}

@media (prefers-reduced-motion: reduce) {

  .wow,
  .wow.animated {
    visibility: visible;
    animation: none !important;
  }
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: min(1600px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 60px 0;
}

.position-relative {
  position: relative;
}

/* Grid System */
.grid-2-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.grid-3-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-4-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: auto;
  min-width: 160px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 500;
  /* white-space: nowrap; */
  cursor: pointer;
  line-height: normal;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn i {
  line-height: normal;
}



.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.btn-gold {
  color: #011B40;
  background: linear-gradient(102.94deg, #FFBA09 0%, #FF871B 100%);
  border-color: #FFB40B;
}


.btn-gold:hover {
  background: linear-gradient(135deg, #ffdc6a, var(--gold));
}

.btn-dark {
  color: #fff;
  background: linear-gradient(90deg, #001B40 0%, #244473 100%);
  border-color: #021E43;
}

.btn-dark:hover {
  background: linear-gradient(90deg, #031E40 0%, #27497A 100%);
}

.btn-outline {
  color: #fff;
  border-color: #FDFEFF;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.22);
}

.btn-green {
  color: #fff;
  background: linear-gradient(90deg, #3E7A25 0%, #649F29 100%);
  border-color: #407C25;
}

.btn-green:hover {
  background: linear-gradient(90deg, #468729 0%, #68A331 100%);
}


/* ============================================================
   EYEBROW / PILL LABELS
   ============================================================ */

/* Pill badge */
.badge-pill {
  display: inline-block;
  background: #FFFFFF;
  color: #03224D;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: normal;
  padding: 8px 22px;
  border-radius: 50px;
  margin-bottom: 15px;
}

.badge-pill.light-orange {
  background: #FFEBD8;
  color: #1D3C69;
}

.pill,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: auto;
  padding: 8px 22px;
  border-radius: 999px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(6, 43, 82, 0.1);
  margin-bottom: 14px;
}

.pill.light,
.eyebrow.light {
  color: var(--navy);
  background: #fff;
}

.light-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: auto;
  padding: 7px 20px;
  border-radius: 999px;
  color: #5b3900;
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(135deg, #fff3c4, #ffe085);
  margin-bottom: 14px;
}

mark,
h2 span {
  color: var(--gold);
  background: transparent;
}

/* ============================================================
   ACTIONS (CTA button groups)
   ============================================================ */
.actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ============================================================
   TOP STRIP
   ============================================================ */
.top-strip {
  min-height: auto;
  padding: 8px 0px;
  color: #07407D;
  font-size: 16px;
  font-weight: 500;
  background: linear-gradient(90deg, #FFB30B 0%, #FF8D1A 100%);
}

.top-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.top-strip-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-strip-left span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.top-strip-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.top-strip-right a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #07407D;
  font-size: 16px;
  line-height: 1;
  transition: color var(--transition);
}

.top-strip-right a i {
  font-size: 13px;
}

.top-strip-right a:hover {
  color: #001B40;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.09);
  padding: 10px 0px;

}

.site-header .container {
  display: flex;
  justify-content: space-between;
}

.navbar {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

}

.brand img {
  width: 260px;
}

/* ============================================================
   NEW DROPDOWN NAVIGATION MENU
   ============================================================ */
.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 5px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list>li>a {
  font-size: 18px;
  font-weight: 400;
  color: #000;
  padding: 10px 15px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  transition: all var(--transition);
}

.nav-list>li>a:hover,
.nav-list>li>a.active {
  color: #E04503;
}

.dropdown-icon {
  font-size: 10px;
  margin-left: 5px;
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--paper);
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
  list-style: none;
  margin: 0;
}

.has-dropdown:hover>.dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  transition: all var(--transition);
}

.dropdown li a:hover {
  background-color: var(--cream);
  color: var(--gold-deep);
}

/* Sub-Dropdown (Flyout Right) */
.has-sub-dropdown {
  position: relative;
}

.sub-dropdown-icon {
  font-size: 10px;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.sub-dropdown {
  position: absolute;
  top: 0;
  left: 100%;
  background: var(--paper);
  min-width: 240px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  z-index: 101;
  list-style: none;
  margin: 0;
}

.has-sub-dropdown:hover>.sub-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.has-sub-dropdown:hover>a .sub-dropdown-icon {
  transform: rotate(90deg);
}

.sub-dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  transition: all var(--transition);
}

.sub-dropdown li a:hover {
  background-color: var(--cream);
  color: var(--gold-deep);
}

/* ============================================================
   PREMIUM MEGA DROPDOWN (HORIZONTAL TABS & SIDEBAR)
   ============================================================ */

/* Outer Nav Item Position Static for full-width capability */
.has-mega-dropdown {
  position: static;
}

.mega-trigger {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  padding: 10px 15px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: color 0.25s ease;
  white-space: nowrap;
}

.mega-trigger:hover,
.has-mega-dropdown.is-open .mega-trigger {
  color: #E04503;
}

.mega-arrow {
  font-size: 11px;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.has-mega-dropdown.is-open .mega-arrow {
  transform: rotate(180deg);
}

/* Floating Mega Dropdown Panel */
.mega-dropdown {
  position: fixed;
  top: var(--mega-top, 95px);
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  width: min(1360px, calc(100vw - 48px));
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  box-shadow:
    0 10px 40px rgba(6, 43, 82, 0.08),
    0 30px 80px rgba(6, 43, 82, 0.18),
    0 0 0 1px rgba(6, 43, 82, 0.04);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1),
    transform 0.3s cubic-bezier(0.25, 1, 0.5, 1),
    visibility 0.3s;
  z-index: 999;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.has-mega-dropdown.is-open .mega-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* 1. TOP TAB BAR */
.mega-tabbar {
  display: flex;
  background: linear-gradient(180deg, #f0f4f8 0%, #e8edf3 100%);
  padding: 12px 18px;
  border-bottom: 1px solid rgba(6, 43, 82, 0.06);
  gap: 10px;
}

.mega-tabbar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 0px;
  background: #fff;
  font-family: "Golos Text", sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 1000px;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
}



.mega-tabbar__btn i {
  font-size: 15px;
  opacity: 0.85;
  transition: transform 0.28s ease;
}

.mega-tabbar__btn:hover,
.mega-tabbar__btn.active {
  background: linear-gradient(102.94deg, #FFBA09 0%, #FF871B 100%);
  color: var(--navy);
  border-color: rgba(6, 43, 82, 0.08);
  box-shadow: 0 2px 8px rgba(6, 43, 82, 0.06);
  color: #2b1c00 !important;
  border-radius: 1000px;
}

.mega-tabbar__btn:hover i {
  transform: scale(1.1);
}

/* ── Temple Tab ── */
.mega-tabbar__btn[data-mtab="temple"] {
  /* background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(255, 152, 0, 0.35), 0 1px 3px rgba(0, 0, 0, 0.06); */

  color: #032048;
}

/* .mega-tabbar__btn[data-mtab="temple"].active i {
  opacity: 1;
} */

/* ── Church Tab ── */
.mega-tabbar__btn[data-mtab="church"] {
  /* background: linear-gradient(135deg, #0e9f9a 0%, #0a7e7a 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(14, 159, 154, 0.35), 0 1px 3px rgba(0, 0, 0, 0.06); */

  color: #CD2222;
}

/* .mega-tabbar__btn[data-mtab="church"].active i {
  opacity: 1;
} */

/* ── Mosque Tab ── */
.mega-tabbar__btn[data-mtab="mosque"] {
  /* background: linear-gradient(135deg, #43a047 0%, #2e7d32 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(67, 160, 71, 0.35), 0 1px 3px rgba(0, 0, 0, 0.06); */

  color: #437F27;

}

/* .mega-tabbar__btn[data-mtab="mosque"].active i {
  opacity: 1;
} */

/* ── Trust Tab ── */
.mega-tabbar__btn[data-mtab="trust"] {
  /* background: linear-gradient(135deg, #7c4dff 0%, #5e35b1 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(124, 77, 255, 0.35), 0 1px 3px rgba(0, 0, 0, 0.06); */

  color: #4B3089;
}

.mega-tabbar__btn[data-mtab="trust"].active i {
  opacity: 1;
}

/* 2. BODY SECTION (sidebar + panels) */
.mega-body {
  display: flex;
  background: #ffffff;
  min-height: 400px;
}

/* LEFT SIDEBAR (promotions/CTA) */
.mega-promo {
  width: 300px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  border-right: none;
  background: transparent;
}

.mega-promo__panel {
  display: none;
  flex-direction: column;
  padding: 28px;
  height: 100%;
  animation: megaFadeIn 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  border-right: 1px solid rgba(0, 0, 0, 0.04);
}

.mega-promo__panel.active {
  display: flex;
}

/* ── Sidebar Color Themes per Entity ── */
.mega-promo__panel[data-promo="temple"] {
  background: linear-gradient(180deg, #fff8ef 0%, #fff1e0 50%, #ffe8cc 100%);
  border-right-color: rgba(255, 152, 0, 0.12);
}

.mega-promo__panel[data-promo="church"] {
  background: linear-gradient(180deg, #edf8f7 0%, #ddf3f2 50%, #c8ece9 100%);
  border-right-color: rgba(14, 159, 154, 0.12);
}

.mega-promo__panel[data-promo="mosque"] {
  background: linear-gradient(180deg, #eef7ee 0%, #ddf0dd 50%, #c8e6c9 100%);
  border-right-color: rgba(67, 160, 71, 0.12);
}

.mega-promo__panel[data-promo="trust"] {
  background: linear-gradient(180deg, #f3eeff 0%, #ece1ff 50%, #e0d0ff 100%);
  border-right-color: rgba(124, 77, 255, 0.12);
}

/* Sidebar title colors per theme */
.mega-promo__panel[data-promo="temple"] .mega-promo__title {
  color: #bf5700;
}

.mega-promo__panel[data-promo="church"] .mega-promo__title {
  color: #0a7e7a;
}

.mega-promo__panel[data-promo="mosque"] .mega-promo__title {
  color: #2e7d32;
}

.mega-promo__panel[data-promo="trust"] .mega-promo__title {
  color: #5e35b1;
}

/* Sidebar phone colors per theme */
.mega-promo__panel[data-promo="temple"] .mega-promo__phone {
  color: #c56200;
}

.mega-promo__panel[data-promo="church"] .mega-promo__phone {
  color: #087f7b;
}

.mega-promo__panel[data-promo="mosque"] .mega-promo__phone {
  color: #2e7d32;
}

.mega-promo__panel[data-promo="trust"] .mega-promo__phone {
  color: #5e35b1;
}

/* Sidebar link colors per theme */
.mega-promo__panel[data-promo="temple"] .mega-promo__link {
  color: #d97706;
}

.mega-promo__panel[data-promo="church"] .mega-promo__link {
  color: #0e9f9a;
}

.mega-promo__panel[data-promo="mosque"] .mega-promo__link {
  color: #43a047;
}

.mega-promo__panel[data-promo="trust"] .mega-promo__link {
  color: #7c4dff;
}

.mega-promo__img-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 160px;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(6, 43, 82, 0.1);
}

.mega-promo__img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.mega-promo__panel:hover .mega-promo__img {
  transform: scale(1.08);
}

/* Image backgrounds */
.mega-promo__img--temple {
  background-image: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.4)), url('../img/wel-come-img-1.jpg');
}

.mega-promo__img--church {
  background-image: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.4)), url('../img/churches.jpg');
}

.mega-promo__img--mosque {
  background-image: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.4)), url('../img/mosques.jpg');
}

.mega-promo__img--trust {
  background-image: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.4)), url('../img/trusts.jpg');
}

.mega-promo__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 152, 0, 0.95);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(6px);
}

.mega-promo__badge--blue {
  background: rgba(14, 159, 154, 0.95);
  color: #ffffff;
}

.mega-promo__badge--green {
  background: rgba(67, 160, 71, 0.95);
  color: #ffffff;
}

.mega-promo__badge--purple {
  background: rgba(124, 77, 255, 0.95);
  color: #ffffff;
}

.mega-promo__title {
  font-family: "Golos Text", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px 0;
  line-height: 1.35;
}

.mega-promo__desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: #5a6577;
  margin: 0 0 20px 0;
}

.mega-promo__phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 24px;
  transition: color 0.2s;
}

.mega-promo__phone:hover {
  color: var(--gold-deep);
}

.mega-promo__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 1000px;
  text-align: center;
  transition: all 0.28s ease;
  box-shadow: 0 6px 18px rgba(255, 152, 0, 0.3);

  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--gold);
}

.mega-promo__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(255, 152, 0, 0.45);
}

.mega-promo__cta--blue {
  background: linear-gradient(135deg, #0e9f9a 0%, #0a7e7a 100%);
  box-shadow: 0 6px 18px rgba(14, 159, 154, 0.3);
}

.mega-promo__cta--blue:hover {
  box-shadow: 0 8px 26px rgba(14, 159, 154, 0.45);
}

.mega-promo__cta--green {
  background: linear-gradient(135deg, #43a047 0%, #2e7d32 100%);
  box-shadow: 0 6px 18px rgba(67, 160, 71, 0.3);
}

.mega-promo__cta--green:hover {
  box-shadow: 0 8px 26px rgba(67, 160, 71, 0.45);
}

.mega-promo__cta--purple {
  background: linear-gradient(135deg, #7c4dff 0%, #5e35b1 100%);
  box-shadow: 0 6px 18px rgba(124, 77, 255, 0.3);
}

.mega-promo__cta--purple:hover {
  box-shadow: 0 8px 26px rgba(124, 77, 255, 0.45);
}

.mega-promo__link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 16px;
  transition: all 0.2s;
}

.mega-promo__link:hover {
  gap: 8px;
}

/* RIGHT FEATURE PANELS WRAPPER */
.mega-panels {
  flex: 1;
  padding: 36px;
  background: #ffffff;
}

.mega-fpanel {
  display: none;
}

.mega-fpanel.active {
  display: block;
}

/* 3-column Layout grid */
.mega-fpanel__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  height: 100%;
}

.mega-flist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mega-flist li a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink);
  transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  padding: 8px 10px;
  border-radius: 10px;
  margin-left: -12px;
  text-decoration: none;
}

.mega-flist li a:hover {
  background: #f8fafc;
  transform: translateX(4px);
}

/* Icon / arrow decoration dynamic colors based on tab type */
.mega-fpanel[data-fpanel="temple"] .mega-flist li a i {
  color: #ff9800;
}

.mega-fpanel[data-fpanel="church"] .mega-flist li a i {
  color: #0e9f9a;
}

.mega-fpanel[data-fpanel="mosque"] .mega-flist li a i {
  color: #3e7a25;
}

.mega-fpanel[data-fpanel="trust"] .mega-flist li a i {
  color: #6f42c1;
}

.mega-flist li a i {
  width: 30px;
  flex-shrink: 0;
  font-size: 24px;
  text-align: center;
  transition: transform 0.25s ease;
}

.mega-flist li a:hover i {
  transform: translateX(3px);
}

.mega-flist li a strong {

  font-weight: 400;
  color: #2b1c00 !important;
  line-height: 1.35;
  transition: color 0.2s;
}

/* Dynamic strong tag colors on hover */
.mega-fpanel[data-fpanel="temple"] .mega-flist li a:hover strong {
  color: #ff9800;
}

.mega-fpanel[data-fpanel="church"] .mega-flist li a:hover strong {
  color: #0e9f9a;
}

.mega-fpanel[data-fpanel="mosque"] .mega-flist li a:hover strong {
  color: #3e7a25;
}

.mega-fpanel[data-fpanel="trust"] .mega-flist li a:hover strong {
  color: #6f42c1;
}

@keyframes megaFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── RESPONSIVE MEDIA QUERIES ── */
@media (max-width: 991px) {
  .has-mega-dropdown {
    width: 100%;
  }

  .mega-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 16px;
    padding: 12px 8px;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
  }

  .mega-dropdown {
    position: static;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    display: none;
    /* Controlled by active class in JS */
    border: none;
    background: #f8fafc;
  }

  .has-mega-dropdown.is-open .mega-dropdown {
    display: flex;
    transform: none !important;
  }

  .mega-tabbar {
    flex-wrap: wrap;
    background: #eef2f7;
    padding: 12px;
    gap: 6px;
  }

  .mega-tabbar__btn {
    padding: 10px;
    font-size: 13px;
    flex: unset;
    width: calc(50% - 3px);
  }

  .mega-tabbar__btn.active::after {
    display: none;
  }

  .mega-body {
    flex-direction: column;
    min-height: auto;
  }

  .mega-promo {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(6, 43, 82, 0.05);
    background: #f1f5f9;
  }

  .mega-promo__panel {
    padding: 20px;
  }

  .mega-promo__img-wrap {
    height: 120px;
  }

  .mega-panels {
    padding: 20px;
  }

  .mega-fpanel__cols {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .mega-flist {
    gap: 12px;
  }
}


.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--ink);
}

.mobile-close-btn {
  display: none !important;
}

.mobile-overlay {
  display: none !important;
}

/* ============================================================
   HEADER ACTION BUTTONS
   ============================================================ */
.header-action {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* .btn-login {
  background: var(--navy-dark) !important;
  color: #ffffff !important;
  border: 2px solid var(--navy-dark) !important;
  padding: 10px 26px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  transition: all var(--transition) !important;
}

.btn-login:hover {
  background: var(--navy) !important;
  border-color: var(--navy) !important;
  box-shadow: 0 4px 15px rgba(3, 27, 52, 0.25) !important;
} */

/* .btn-demo {
  background: #4caf50 !important;
  color: #ffffff !important;
  border: 2px solid #4caf50 !important;
  padding: 10px 26px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  transition: all var(--transition) !important;
}

.btn-demo:hover {
  background: #43a047 !important;
  border-color: #43a047 !important;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.25) !important;
}

.btn-pill {
  border-radius: 50px !important;
} */

.mobile-only-btn {
  display: none !important;
}

/* ============================================================
   RESPONSIVE NAVIGATION (DRAWER STYLE)
   ============================================================ */
@media (max-width: 991px) {
  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 24px 30px;
    box-shadow: -10px 0 30px rgba(6, 43, 82, 0.15);
    z-index: 1000;
    transition: right 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
    overflow-y: auto;
    max-height: calc(100vh - 120px);
  }

  .nav-list>li {
    width: 100%;
    border-bottom: 1px solid var(--line);
  }

  .nav-list>li:last-child {
    border-bottom: 0;
  }

  .nav-list>li>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 16px;
    padding: 12px 8px;
  }

  .dropdown,
  .sub-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    display: none;
    transform: none;
    box-shadow: none;
    padding: 5px 0 10px 16px;
    background: var(--soft);
    border-radius: 0;
    width: 100%;
    min-width: unset;
  }

  .has-dropdown:hover>.dropdown,
  .has-sub-dropdown:hover>.sub-dropdown {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .dropdown li a,
  .sub-dropdown li a {
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 4px;
  }

  .mobile-close-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--ink);
    padding: 0;
    width: 32px;
    height: 32px;
  }

  .mobile-overlay {
    display: block !important;
    position: fixed;
    inset: 0;
    background: rgba(3, 27, 52, 0.4);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .mobile-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }

  .header-action {
    display: none !important;
  }

  .mobile-only-btn {
    display: block !important;
    width: 100%;
    margin-top: 15px;
    padding: 0 8px;
  }

  .mobile-only-btn .btn {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px !important;
  }
}

/* ============================================================
   HERO — OWL CAROUSEL
   ============================================================ */

/* ── SLIDE ── */
.hero-slide {
  position: relative;
  min-height: 520px;
  height: 100vh;
  max-height: 800px;
  display: flex !important;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.hero-slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  transform: scale(1);
  transition: transform 10s ease-out;
}

.owl-item.active .hero-slide__bg {
  transform: scale(1.1);
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #011B42 0%, #1661A2 50%, #011B42 100%), #FFFFFF;
  opacity: 0.6;
}

/* Slide 1 bg */
.slide-1 .hero-slide__bg {
  background-image: url('../img/slider-img-1.jpg');
}

/* Slide 2 bg */
.slide-2 .hero-slide__bg {
  background-image: url('../img/slider-img-1.jpg');
}

/* Slide 3 bg */
.slide-3 .hero-slide__bg {
  background-image: url('../img/slider-img-1.jpg');
}

/* ── CONTENT ── */
.hero-slide__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 30px 20px;
  max-width: 1400px;
  width: 100%;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease 0.3s, transform 0.7s ease 0.3s;
  background: linear-gradient(180deg, rgba(5, 0, 0, 0.15) 0%, rgba(2, 30, 70, 0.5) 50%, rgba(1, 28, 67, 0.5) 100%);

}

.owl-item.active .hero-slide__content {
  opacity: 1;
  transform: translateY(0);
}



/* Headline */
.hero-headline {
  font-family: "Merriweather", Georgia, serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 16px;
  margin-top: 0px;
}


.inner-hero .hero-headline {
  font-size: 34px;
  line-height: 50px
}

.hero-headline span {
  color: var(--gold);
}

/* Sub-text */
.hero-sub {
  font-size: clamp(0.88rem, 1.6vw, 1.05rem);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  /* max-width: 680px; */
  margin: 0 auto 20px;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}


.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--gold);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.75);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* ── OWL DOTS ── */
.hero-carousel .owl-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.hero-carousel .owl-dot span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45) !important;
  margin: 0 5px;
  transition: background 0.3s, transform 0.3s;
}

.hero-carousel .owl-dot.active span {
  background: var(--gold) !important;
  transform: scale(1.35);
}

/* ── OWL NAV ── */
.hero-carousel .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 46px;
  height: 46px;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.15) !important;
  border: 2px solid rgba(255, 255, 255, 0.4) !important;
  color: var(--white) !important;
  font-size: 1.4rem !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: background 0.2s !important;
}

.hero-carousel .owl-nav button:hover {
  background: rgba(245, 166, 35, 0.75) !important;
  border-color: var(--gold) !important;
}

.hero-carousel .owl-nav .owl-prev {
  left: 18px;
}

.hero-carousel .owl-nav .owl-next {
  right: 18px;
}

/* ── PROGRESS BAR ── */
.slide-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--gold);
  width: 0%;
  z-index: 20;
  transition: width 0.1s linear;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .hero-slide {
    height: 88vw;
    min-height: 380px;
  }

  .hero-slide__content {
    padding: 0 14px 56px;
  }

  .hero-buttons {
    gap: 10px;
  }

  .btn {
    padding: 11px 20px;
    font-size: 0.85rem;
  }

  .hero-carousel .owl-nav button {
    width: 36px;
    height: 36px;
    font-size: 1rem !important;
  }
}


/* ============================================================
   INTRO / ABOUT
   ============================================================ */
.welcome-aboutus {
  background: linear-gradient(180deg, #fff 0%, #f6fbff 100%);
  position: relative;
}

.welcome-aboutus .container {
  position: relative;
  z-index: 2;
}

.welcome-aboutus::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 180px;
  height: 220px;
  background: url(../img/welcome-bg-2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  opacity: 0.6;

}

.welcome-aboutus::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 250px;
  background: url(../img/welcome-bg-1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  opacity: 0.6;
}

/* .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
} */



.about-images .inner-big-img-div {
  border: 3px solid #FFFFFF;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  overflow: hidden;
}

.about-images .inner-big-img-div img {
  width: 100%;
  height: 100%;
}

.mini-grid {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.mini-grid img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
  border: 3px solid #FFFFFF;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}


.check-ico {
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 3px;
}

/* Intro org-type badges */
.intro-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--soft);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  transition: border-color var(--transition), background var(--transition);
}

.intro-badge i {
  color: var(--gold);
  font-size: 15px;
}

.intro-badge:hover {
  border-color: var(--gold);
  background: var(--cream);
}

/* ============================================================
   FEATURES / MANAGEMENT SECTION
   ============================================================ */
.feature-system {
  background: linear-gradient(104.05deg, #DFEEFF 0.33%, #FFF9E0 83.56%);
}

/* Tabs */
.tabs {
  display: inline-flex;
  align-items: center;
  margin: 0 auto 36px;
  padding: 5px;

}



/* Center the inline-flex tabs inside the container */
.feature-system .container>.tabs {
  display: flex;
  justify-content: center;
}

.tabs {
  display: inline-flex;
}

/* Wrapper to center the tabs */
.feature-system .tabs {
  display: flex;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 36px;

  border: 1px solid var(--line);
  border-radius: 1000px;
  background: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.04);
}

.tabs button {
  /* min-height: 46px; */
  padding: 12px 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: 1000px;
  color: var(--ink);
  font-family: "Golos Text", sans-serif;
  font-size: 16px;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  white-space: nowrap;
}

/* Vertical divider between buttons */
.tabs button+button::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5px;
  height: 22px;
  background: var(--line);
  transition: opacity var(--transition);
}

.tabs button img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.tabs button:hover {
  color: var(--navy);
}

/* Individual tab button colors */
#tabTemples {
  color: #032048;
}

#tabChurches {
  color: #CD2222;
}

#tabMosques {
  color: #437F27;
}

#tabTrusts {
  color: #4B3089;
}

.tabs button.active {
  color: #2b1c00 !important;
  background: linear-gradient(102.94deg, #FFBA09 0%, #FF871B 100%);
}

/* Hide divider next to active button */
.tabs button.active+button::before,
.tabs button.active::before {
  opacity: 0;
}

/* Feature layout grid */
.tab-panel {
  display: none;
}

.tab-panel--active {
  display: grid;
  animation: contentFade 0.4s ease forwards;
}

.tab-panel--hidden {
  display: none;
}

.feature-layout {
  grid-template-columns: 0.50fr 1.28fr;
  gap: 22px;
  align-items: start;
}

/* ── SPOT CARD (left image panel) ── */
.spot-card {
  border-radius: 14px;
  /* overflow: hidden; */
  position: relative;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 8px 28px rgba(6, 43, 82, 0.07);
  display: block;
  padding: 0;
  border-radius: 10px;
}

.spot-card>img {
  width: 100%;
  height: 582px;
  object-fit: cover;
  object-position: top;
  border-radius: 0;
  display: block;
  border-radius: 10px;
}

/* Bottom overlay on spot-card */
.spot-card__overlay {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: #ffffffed;
  border-top: 1px solid var(--line);
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 10px;
}

.spot-card__icon-box {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background: linear-gradient(135deg, #FFBE08 0%, #FF9118 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.spot-card__icon-box img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.spot-card__text h3 {
  margin: 0 0 5px;
  color: #011B40;
  font-size: 18px;
  font-weight: 600;
  font-family: "Golos Text", sans-serif;
}

.spot-card__text p {
  margin: 0;
  color: #222222;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

/* Dot indicator below spot card */
.spot-card__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 10px 0 14px;
}

.spot-card__dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
}

.spot-card__dots span.active {
  background: var(--gold);
  width: 20px;
  border-radius: 4px;
}

/* ── FEATURE GRID (right 3x2 cards) ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@keyframes contentFade {
  from {
    opacity: 0.2;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Feature card */
.feature-card {
  box-shadow: none;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform var(--transition), box-shadow var(--transition);
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F8FA 100%);
  border: 1px solid #FB8C13;
  border-radius: 10px;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 38px rgba(6, 43, 82, 0.13);
}

/* Gold icon box */
.feature-card__icon {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  background: linear-gradient(135deg, #FFBE08 0%, #FF9118 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  padding: 0;
  flex-shrink: 0;
}

.feature-card__icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  /* filter: brightness(0) invert(1); */
}

.feature-card h3 {
  margin: 0 0 10px;
  color: #011B40;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  font-family: "Golos Text", sans-serif;
}

.feature-card p {
  margin: 0 0 16px;
  color: #222222;
  font-size: 16px;
  line-height: 1.6;
  flex: 1;
}

/* Arrow link */
.feature-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* width: 32px; */
  /* height: 32px; */
  /* border-radius: 50%; */
  /* border: 1.5px solid var(--gold); */
  color: var(--gold);
  font-size: 20px;
  margin-top: auto;
  transition: background var(--transition), color var(--transition);
}

.feature-card__link:hover {
  color: #011B40;
}

/* Legacy article cards (kept for other sections) */
.space-grid article,
.why-grid article,
.help-card,
.accordion details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 28px rgba(6, 43, 82, 0.07);
}

.space-grid img,
.why-grid img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

h3 {
  margin: 12px 0 6px;
  color: var(--navy);
  font-size: 17px;
}

.space-grid p,
.why-grid p,
.help-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* Stats bar */
.stats {
  margin-top: 36px;
  padding: 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 20px;
  align-items: center;
  color: #fff;
  border-radius: 12px;
  background: #062b5a;
  /* Deep blue background */
}

.stats-intro {
  display: flex;
  align-items: center;
  gap: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  padding-right: 15px;
}

.stats-intro__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFBE08 0%, #FF9118 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stats-intro__icon img {
  max-width: 34px;
  height: auto;
}

.stats-intro__text h3 {
  color: #FFC007;
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 4px;
  font-family: "Golos Text", sans-serif;
}

.stats-intro__text p {
  color: #fff;
  font-size: 16px;
  margin: 0;
  line-height: 1.4;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  padding-right: 10px;
}

.stat-item:last-child {
  border-right: 0;
  padding-right: 0;
}

.stat-item__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid #FFBE08;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-item__icon img {
  max-width: 24px;
  height: auto;
}

.stat-item__text strong {
  display: block;
  color: #FFBE08;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

.stat-item__text span {
  display: block;
  font-size: 16px;
  color: #fff;
  margin-top: 2px;
  font-weight: 400;
}

/* ============================================================
   APP BAND
   ============================================================ */
.app-band {
  color: #fff;
  background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
    url("../img/all-in-one-erp-bg.jpg") center/cover no-repeat;
}

.app-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 50px;
}

.organization-part .section-title {
  text-align: left;
}


.app-band .app-band-content {}

.app-band .app-band-dashboard {}

.app-band h2 {
  color: #fff;
}

.app-band p {
  color: rgba(255, 255, 255, 0.8);
}

.app-band ul {
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  list-style: none;
}

.app-band li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
}

.app-band li i {
  color: var(--gold);
  font-size: 22px;
}

/* App / Play store badges */
.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

/* ============================================================
   BUILT FOR EVERY SACRED SPACE
   ============================================================ */
.spaces {
  background: #fff;
}

.space-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.space-grid article {
  min-height: 200px;
  padding: 30px 24px 24px;
  text-align: center;
  border: none;
  border-top: 4px solid #E37A2C;
  border-radius: 12px;
  background: linear-gradient(180deg, #fff4ea 0%, #ffffff 100%);
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: none;
}

.space-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(6, 43, 82, 0.08);
}

.space-grid article h3 {
  color: #E37A2C;
  font-size: 22px;
  font-weight: 600;
  margin: 15px 0 10px;
  font-family: "Golos Text", sans-serif;
}

.space-grid article p {
  color: #333;
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

.space-grid article:nth-child(2) {
  border-top-color: #3567C2;
  background: linear-gradient(180deg, #ebf4fc 0%, #ffffff 100%);
}

.space-grid article:nth-child(2) h3 {
  color: #3567C2;
}

.space-grid article:nth-child(3) {
  border-top-color: #45813F;
  background: linear-gradient(180deg, #f0faef 0%, #ffffff 100%);
}

.space-grid article:nth-child(3) h3 {
  color: #45813F;
}

.space-grid article:nth-child(4) {
  border-top-color: #694998;
  background: linear-gradient(180deg, #f9f0ff 0%, #ffffff 100%);
}

.space-grid article:nth-child(4) h3 {
  color: #694998;
}

.space-grid img,
.feature-grid img {
  margin: 0 auto 4px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  transition: color var(--transition);
}

.card-link:hover {
  color: var(--gold);
}

/* ============================================================
   WHY WORSHIPERP
   ============================================================ */
.why {
  background: url("../img/why-choose-section-bg.jpg") center/cover no-repeat;
  background-color: #fdfaf6;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why-grid article {
  padding: 15px;
  display: flex;
  gap: 18px;
  align-items: center;
  background: #FFFFFF;
  border-left: 3px solid #FFB40C;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.why-grid article:hover {
  transform: translateY(-3px);
  /* box-shadow: -6px 6px 0px #FFBE08, 0 14px 36px rgba(6, 43, 82, 0.08); */
}


.inner-why-grid .why-icon-box {
  width: 60px;
  height: 60px;
}

.inner-why-grid .fa-check {
  color: #fff;
  font-size: 30px;
}



.why-icon-box {
  width: 90px;
  height: 90px;
  border-radius: 15px;
  background: linear-gradient(135.64deg, #023A75 5.25%, #035AAA 95.26%);
  /* matches deep blue */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.inner-why-grid.why-grid article {
  align-items: flex-start;
}

.why-icon-box img {
  width: 50px !important;
  height: 50px !important;
  object-fit: contain;
  margin: 0 !important;
}



.why-grid h3 {
  margin: 0 0 6px 0;
  font-size: 22px;
  font-weight: 500;
  color: #222222;
  font-family: "Golos Text", sans-serif;
}

.why-grid p {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  color: #222222;
  line-height: 1.5;
}

/* ============================================================
   FAQ BAND
   ============================================================ */
.faq-band {
  background: linear-gradient(97.47deg, rgba(0, 0, 0, 0.9) 0.28%, rgba(1, 30, 60, 0.9) 100.57%), url(../img/section-faq-bg.jpg);
  background-size: cover;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 30px 56px;
  align-items: start;
}

/* Left side */
.faq-title-col .section-title {
  margin-bottom: 28px;
  text-align: left;
}

.faq-title-col {
  grid-column: 1;
  grid-row: 1;
}

.faq-help-col {
  grid-column: 1;
  grid-row: 2;
}

.faq-right {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.help-card {
  padding: 20px;
  background: #FDF9EE;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  border: none;
}

.help-card h3 {
  font-size: 26px;
  font-weight: 500;
  color: #062b5a;
  margin: 0 0 10px;
  font-family: "Golos Text", sans-serif;
}

.help-card p {
  font-size: 16px;
  color: #222222;
  line-height: 1.6;
  margin: 0 0 20px;
}

/* Right side — animated accordion */
.faq-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 15px;
  background: #FDF9EE;
  border: none;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.attendance-accordion .faq-item {
  border: 1px solid #ffd970
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(6, 43, 82, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 18px;
  font-weight: 500;
  color: #222222;
  transition: background 0.3s ease, color 0.3s ease;
}

.faq-item--open .faq-question {
  background: linear-gradient(180deg, #FFC007 0%, #FFA113 100%);
  color: #1a1a00;
}

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  color: #333;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.faq-item--open .faq-icon {
  background: rgba(0, 0, 0, 0.15);
  color: #1a1a00;
}

/* Animated answer panel */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item--open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 15px;
  /* background: #fff; */
}

.faq-answer-inner p {
  margin: 0;
  color: #05244E;
  font-weight: 400;

}

/* ============================================================
   TRUST / CLIENTS SECTION
   ============================================================ */
.trust-section {
  background: linear-gradient(96.13deg, #FAF0E8 0.56%, #FEFDFE 50.28%, #88CBFD 100%);
}

.logo-row {
  margin-bottom: 36px;
}

.logo-row .owl-dots {
  text-align: center;
  margin-top: 24px;
}

.logo-row .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 5px 6px;
  background: #FFE8B9 !important;
  display: inline-block;
  transition: background 0.3s ease, transform 0.3s ease;
  border-radius: 50%;
}

.logo-row .owl-dot.active span {
  background: #FF8E19 !important;
  transform: scale(1.3);
}

.logo-card {
  position: relative;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 10px;
  z-index: 1;
}

.logo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 10px;
  background: linear-gradient(150deg, #FFE8B9, #FF8E19);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.owl-carousel .owl-item .logo-card img {
  margin: 0 auto;
  width: unset;
  max-width: 100%;
}

.logo-card span {
  font-size: 14px;
  font-weight: 600;
  color: #062b5a;
  line-height: 1.35;
  text-align: left;
}

.logo-card:hover {
  /* border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(6, 43, 82, 0.08);
  transform: translateY(-2px); */
}

/* CTA banner */
.cta {
  position: relative;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  color: #fff;
  border-radius: 20px;
  background: linear-gradient(108.7deg, #001f4d 0%, #005bb7 100%);
  box-shadow: 0 16px 48px rgba(0, 43, 92, 0.28);
  overflow: hidden;
}

.cta-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1.5;
  z-index: 2;
}

.cta-icon-circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #FFC007;
  /* golden yellow */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-icon-circle img {
  max-width: 40px;
  height: auto;
}

.cta-text {
  text-align: left;
}

.cta-text h3 {
  margin: 0 0 10px 0;
  color: #FFC007;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  font-family: "Golos Text", sans-serif;
}

.cta-text p {
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
}

.cta-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 0.9;
  z-index: 2;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  width: 100%;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* .cta-btn-filled {
  background: linear-gradient(135deg, #FFB000 0%, #FF7800 100%);
  color: #001f4d;
  box-shadow: 0 4px 15px rgba(255, 176, 0, 0.3);
}

.cta-btn-filled:hover {
  background: linear-gradient(135deg, #FFC007 0%, #FF8E19 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 176, 0, 0.4);
}

.cta-btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
}

.cta-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-2px);
} */

.cta-contact {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

.cta-contact span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-contact i {
  color: #FFC007;
  /* golden yellow icons */
}

/* Glassmorphic decorative sphere */
.cta-sphere {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(136, 203, 253) 0%, rgba(136, 203, 253, 0.36) 70%);
  /* filter: blur(10px); */
  z-index: 1;
  pointer-events: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 26, 50, 0.98) 0%, rgba(0, 30, 58, 0.9) 48%, rgba(0, 26, 50, 0.96) 100%),
    url("../img/footer-bg.jpg") center 54% / cover no-repeat;
  overflow: hidden;
}

.footer-main {
  position: relative;
  isolation: isolate;
}

.footer-main::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 11, 24, 0.34);
}

.footer-grid {
  padding: 64px 0 58px;
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(160px, 0.45fr) minmax(620px, 1.45fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}

.footer-about {
  max-width: 560px;
}

.footer-logo {
  width: min(315px, 100%);
  margin-bottom: 24px;
  padding: 10px 14px;
  border-radius: 6px;
  background: #fff;
}

.footer h3 {
  color: #fff;
  font-size: clamp(24px, 2vw, 28px);
  margin: 0 0 20px;
  font-weight: 600;
  line-height: 1.2;
}

.footer h3 span {
  color: var(--gold);
}

.footer-about p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
}

.footer-column ul {
  list-style: disc;
  margin: 0;
  padding-left: 22px;
}

.footer-column li {
  padding-left: 4px;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.98);
}

.footer-column a {
  display: inline;
  color: rgba(255, 255, 255, 0.96);
  font-size: 16px;
  line-height: 1.3;
  transition: color var(--transition);
  font-weight: 400;
}

.footer-column a:hover {
  color: var(--gold);
}

.footer-features {
  min-width: 0;
}

.footer-feature-lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: clamp(28px, 5vw, 78px);
}

.footer-contact-placeholder {
  display: none;
}

.footer-contact-bar {
  background: #ffffff36;
  /* backdrop-filter: blur(4px); */
}

.footer-contact-grid {
  min-height: 130px;
  display: grid;
  grid-template-columns: minmax(360px, 1.35fr) minmax(260px, 0.6fr) minmax(300px, 0.75fr) auto;
  gap: 34px;
  align-items: center;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
}

.footer-contact-item strong {
  color: #fff;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.2;
  overflow-wrap: anywhere;
  font-weight: 500;
}

.footer-contact-icon {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #07172b;
  background: linear-gradient(180deg, #FFB40B 0%, #FE8C19 100%);
  box-shadow: 0 7px 14px rgba(0, 0, 0, 0.25);
}

.footer-contact-icon i {
  font-size: 28px;
}

/* Social icons */
.social-links {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin: 0;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #06192f;
  background: linear-gradient(135deg, #ffb11a, #f28d00);
  font-size: 20px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.28);
  transition: transform var(--transition), box-shadow var(--transition);
  margin: 0;
}

.social-links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.3);
}

/* Footer bottom */
.footer-bottom {
  min-height: auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  text-align: center;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.86);
  background: #011B40;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-bottom-links a:not(:last-child)::after {
  content: "|";
  display: inline-block;
  margin-left: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-bottom a,
.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.9);
  transition: color var(--transition);
}

.footer-bottom>span:first-child a,
.footer-bottom-links a:hover {
  color: var(--gold);
}

/* ============================================================
   RESPONSIVE — 1100px
   ============================================================ */
@media (max-width: 1100px) {
  .feature-layout {
    grid-template-columns: 1fr;
  }

  .spot-card {
    display: none;
  }

  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================================
   RESPONSIVE — 980px
   ============================================================ */
@media (max-width: 980px) {


  .two-col,
  .app-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 32px;
  }

  .footer-feature-lists {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-contact-grid {
    min-height: 0;
    grid-template-columns: 1fr 1fr;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .footer-contact-item {
    font-size: 17px;
  }

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

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .faq-title-col {
    grid-column: auto;
    grid-row: auto;
    order: 1;
  }

  .faq-right {
    grid-column: auto;
    grid-row: auto;
    order: 2;
  }

  .faq-help-col {
    grid-column: auto;
    grid-row: auto;
    order: 3;
  }

  .feature-grid,
  .space-grid {
    grid-template-columns: repeat(2, 1fr);
  }



  .cta {
    flex-direction: column;
    align-items: stretch;
    padding: 36px 28px;
    gap: 28px;
  }

  .cta-left {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

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

  .cta-right {
    align-items: center;
    width: 100%;
  }

  .cta-buttons {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .cta-contact {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-intro {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0 0 20px 0;
    justify-content: center;
  }

  .stat-item {
    border-right: 0;
    padding: 15px 0;
    justify-content: center;
  }

  .stats>div:nth-child(2),
  .stats>div:nth-child(4) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }

  .stats>div:nth-child(2),
  .stats>div:nth-child(3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
}

/* ============================================================
   RESPONSIVE — 680px
   ============================================================ */
@media (max-width: 680px) {
  .top-strip {
    flex-direction: column;
    padding: 8px 16px;
    gap: 8px;
  }

  .top-strip-left {
    flex-wrap: wrap;
    justify-content: center;
  }

  .top-strip-right {
    justify-content: center;
  }

  .navbar {
    min-height: 62px;
  }

  .brand img {
    width: 130px;
  }

  .hero-item {
    min-height: clamp(560px, calc(100vh - 98px), 700px);
  }

  .hero-content {
    padding-top: 40px;
    padding-bottom: 90px;
  }

  .container,
  .navbar {
    width: calc(100% - 30px);
  }

  .hero-section .owl-nav button {
    width: 40px;
    height: 40px;
    font-size: 22px !important;
  }

  .hero-section .owl-nav .owl-prev {
    left: 12px;
  }

  .hero-section .owl-nav .owl-next {
    right: 12px;
  }

  .section,
  .app-band,
  .faq-band {
    padding: 56px 0;
  }

  .feature-grid,
  .space-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .stats-intro {
    flex-direction: column;
    text-align: center;
    padding-bottom: 24px;
  }

  .stat-item {
    justify-content: center;
    border-right: 0 !important;
  }

  .stats>div:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
  }

  .mini-grid {
    position: static;
    margin-top: 10px;
  }

  .mini-grid img {
    border-width: 2px;
  }

  .app-band ul {
    grid-template-columns: 1fr;
  }

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

  .why-grid article {
    flex-direction: column;
  }

  /* .faq-grid is already handled in max-width 980px media query */

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 0 38px;
  }

  .footer-logo {
    width: min(260px, 100%);
  }

  .footer-about p {
    font-size: 16px;
    line-height: 1.65;
  }

  .footer-feature-lists,
  .footer-contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-column a {
    font-size: 16px;
  }

  .footer-contact-grid {
    gap: 22px;
  }

  .footer-contact-item {
    gap: 14px;
  }

  .footer-contact-icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .social-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }

  .intro-badges {
    gap: 8px;
  }
}

/* ============================================================
   STICKY HEADER SCROLLED STATE
   ============================================================ */
.site-header.scrolled {
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.14);
  transition: all ease-in-out 0.4s;
  animation: 1s .1s fadeInDown both;
}

/* ============================================================
   OWL CAROUSEL — fadeOut / fadeIn fix
   ============================================================ */
.owl-carousel .owl-item {
  backface-visibility: hidden;
}

/* Keep slide items stacked so fadeOut/In works */
.hero-carousel .owl-stage-outer {
  overflow: hidden;
}

.hero-carousel .owl-item.active {
  z-index: 2;
}

.hero-carousel .owl-item {
  z-index: 1;
}

/* Owl nav icon sizing */
.hero-section .owl-nav button i {
  font-size: 18px;
  pointer-events: none;
}

/* Owl prev/next absolute positioning */
.hero-section .owl-nav {
  position: static;
  margin: 0;
}

.hero-section .owl-nav button.owl-prev,
.hero-section .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.hero-section .owl-nav button.owl-prev {
  left: 22px;
}

.hero-section .owl-nav button.owl-next {
  right: 22px;
}

/* Owl dots absolute bottom centre */
.hero-section .owl-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  margin: 0;
}

.hero-section .owl-dot {
  margin: 0 !important;
}

/* Hero section must be relative for nav/dot absolute positioning */
.hero-section {
  position: relative;
}

/* Animate.css hero slide-in helpers triggered by Owl */
.hero-content .pill,
.hero-content h1,
.hero-content p,
.hero-content .actions {
  animation-duration: 0.9s;
  animation-fill-mode: both;
}

/* ============================================================
   RESPONSIVE POLISH
   ============================================================ */
@media (max-width: 1200px) {
  .navbar {
    gap: 16px;
  }

  .brand img {
    width: 220px;
  }

  .nav-list>li>a {
    padding: 10px 9px;
    font-size: 16px;
  }

  .header-action {
    gap: 8px;
  }

  .header-action .btn {
    min-width: 0;
    padding: 11px 15px;
    font-size: 16px;
  }

  .footer-grid {
    grid-template-columns: minmax(260px, 0.9fr) minmax(145px, 0.42fr) minmax(480px, 1.35fr);
    gap: 32px;
  }

  .footer-feature-lists {
    gap: 24px;
  }
}

@media (max-width: 991px) {

  .grid-2-col>*,
  .app-grid>*,
  .faq-grid>*,
  .footer-grid>* {
    min-width: 0;
  }

  .top-strip .container {
    gap: 12px 20px;
    flex-wrap: wrap;
  }

  .top-strip-left,
  .top-strip-right {
    gap: 12px 18px;
  }

  .mobile-toggle {
    flex: 0 0 auto;
    margin-left: auto;
  }

  .grid-2-col {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-images {
    max-width: 760px;
    margin: 0 auto;
  }

  .about-content {
    max-width: 860px;
  }

  .tabs {
    max-width: 100%;
    overflow-x: auto;
    justify-content: flex-start !important;
    scrollbar-width: thin;
  }

  .tabs button {
    padding: 11px 18px;
  }

  .app-grid {
    gap: 28px;
  }

  .app-band-dashboard {
    max-width: 760px;
    margin: 0 auto;
  }

  .why-grid article {
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  body {
    overflow-x: hidden;
  }

  .top-strip {
    padding: 7px 0;
    font-size: 13px;
  }

  .top-strip .container {
    width: calc(100% - 24px);
    flex-direction: column;
    gap: 5px;
  }

  .top-strip-left,
  .top-strip-right {
    width: 100%;
    justify-content: center;
    gap: 5px 14px;
  }

  .top-strip-left span,
  .top-strip-right a {
    font-size: 13px;
    overflow-wrap: anywhere;
  }

  .navbar {
    padding: 8px 0;
  }

  .mobile-toggle {
    padding: 5px;
  }

  .nav-menu {
    width: min(86vw, 320px);
    right: min(-86vw, -320px);
  }

  .hero-slide {
    height: auto;
    min-height: 470px;
    max-height: none;
  }

  .hero-slide__content {
    padding: 24px 16px 54px;
  }

  .hero-headline {
    font-size: clamp(28px, 8.5vw, 38px);
  }

  .hero-sub {
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .section,
  .app-band,
  .faq-band {
    padding: 44px 0;
  }

  .main-title,
  .small-title {
    font-size: 28px;
    line-height: 1.3;
  }

  p {
    font-size: 16px;
    line-height: 1.7;
  }

  .badge-pill {
    padding: 7px 14px;
    font-size: 13px;
    line-height: 1.45;
  }

  .welcome-aboutus::before,
  .welcome-aboutus::after {
    display: none;
  }

  .mini-grid {
    gap: 8px;
  }

  .feature-system .tabs {
    width: 100%;
    margin-bottom: 24px;
    border-radius: 10px;
  }

  .tabs button {
    flex: 0 0 auto;
    padding: 10px 13px;
    font-size: 14px;
  }

  .tabs button img {
    width: 21px;
    height: 21px;
  }

  .feature-grid {
    gap: 12px;
  }

  .feature-card {
    padding: 18px 15px;
  }

  .feature-card__icon {
    width: 68px;
    height: 68px;
    margin-bottom: 14px;
  }

  .feature-card__icon img {
    width: 44px;
    height: 44px;
  }

  .stats {
    padding: 20px 16px;
    gap: 0;
  }

  .app-band ul {
    gap: 8px;
  }

  .space-grid {
    gap: 16px;
  }

  .space-grid article {
    min-height: 0;
    padding: 22px 18px;
  }

  .why-grid {
    gap: 14px;
  }

  .why-grid article {
    align-items: center;
    gap: 14px;
    padding: 18px 15px;
    text-align: center;
  }

  .why-icon-box {
    width: 74px;
    height: 74px;
  }

  .why-icon-box img {
    width: 42px !important;
    height: 42px !important;
  }

  .why-grid h3 {
    font-size: 19px;
  }

  .why-grid p {
    font-size: 16px;
  }

  .faq-grid {
    gap: 20px;
  }

  .faq-question {
    padding: 14px;
    font-size: 16px;
    line-height: 1.45;
  }

  .faq-answer-inner {
    padding: 14px;
  }

  .cta {
    padding: 24px 16px;
    gap: 20px;
  }

  .cta-left {
    gap: 12px;
  }

  .cta-icon-circle {
    width: 64px;
    height: 64px;
  }

  .cta-text h3 {
    font-size: 21px;
  }

  .cta-text p,
  .cta-contact {
    font-size: 16px;
  }

  .cta-buttons,
  .cta-contact {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

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

  .cta-contact span {
    justify-content: center;
    overflow-wrap: anywhere;
  }

  .cta-sphere {
    display: none;
  }

  .footer-contact-item {
    align-items: flex-start;
    font-size: 16px;
    overflow-wrap: anywhere;
  }

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

  .footer-bottom {
    padding: 15px;
    font-size: 14px;
  }
}

@media (max-width: 420px) {

  .container,
  .navbar {
    width: calc(100% - 24px);
  }

  .top-strip-left {
    flex-direction: column;
  }

  .top-strip-right a {
    font-size: 12px;
  }

  .brand img {
    width: 116px;
  }

  .hero-slide {
    min-height: 500px;
  }

  .hero-slide__content {
    padding-inline: 12px;
  }

  .hero-headline {
    font-size: 27px;
  }

  .main-title,
  .small-title {
    font-size: 25px;
  }

  .btn {
    min-width: 0;
    font-size: 14px;
  }

  .stats-intro__text h3 {
    font-size: 20px;
  }

  .stat-item {
    justify-content: flex-start;
    padding-left: 8px;
  }

  .footer-feature-lists {
    grid-template-columns: 1fr;
  }

  .footer-contact-icon {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .footer-contact-icon i {
    font-size: 22px;
  }

  .social-links {
    gap: 10px;
  }

  .social-links a {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .footer-bottom-links {
    gap: 8px;
  }

  .footer-bottom-links a:not(:last-child)::after {
    margin-left: 8px;
  }
}

/* ============================================================
   FOOTER RESPONSIVE POLISH
   ============================================================ */
@media (max-width: 980px) {
  .footer-grid {
    padding: 48px 0 42px;
    gap: 28px;
  }

  .footer-about {
    max-width: 760px;
  }

  .footer-logo {
    margin-bottom: 18px;
  }

  .footer h3 {
    margin-bottom: 16px;
  }

  .footer-feature-lists {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 28px;
  }

  .footer-contact-grid {
    gap: 22px 28px;
  }
}

@media (max-width: 680px) {
  .footer-grid {
    padding: 38px 0 32px;
    gap: 24px;
    grid-template-columns: 1fr;
  }

  .footer-logo {
    width: min(230px, 100%);
    margin-bottom: 14px;
    padding: 8px 10px;
  }

  .footer h3 {
    margin-bottom: 13px;
    font-size: 22px;
  }

  .footer-about p,
  .footer-column a {
    font-size: 15px;
  }

  .footer-column li {
    margin-bottom: 8px;
  }

  .footer-feature-lists {
    gap: 0 20px;
  }

  .footer-contact-grid {
    padding-top: 22px;
    padding-bottom: 22px;
    gap: 16px;
  }

  .footer-contact-item {
    align-items: center;
    gap: 12px;
    font-size: 15px;
    line-height: 1.5;
  }

  .footer-contact-item strong {
    font-size: 16px;
  }

  .footer-contact-icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border-radius: 8px;
  }

  .footer-contact-icon i {
    font-size: 21px;
  }

  .social-links {
    justify-content: flex-start;
    padding-top: 2px;
  }

  .footer-bottom {
    gap: 5px;
    padding: 14px 12px;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .footer-feature-lists {
    grid-template-columns: 1fr;
  }

  .footer-feature-lists ul+ul {
    margin-top: 0;
  }

  .footer-contact-item {
    overflow-wrap: anywhere;
  }

  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ============================================================
   HERO RESPONSIVE HEIGHT
   ============================================================ */
.hero-section,
.hero-carousel,
.hero-carousel .owl-stage-outer,
.hero-carousel .owl-stage,
.hero-carousel .owl-item {
  min-height: clamp(560px, calc(100svh - 70px), 800px);
}

.hero-section.inner-hero,
.inner-hero .hero-carousel,
.inner-hero .hero-carousel .owl-stage-outer,
.inner-hero .hero-carousel .owl-stage,
.inner-hero .hero-carousel .owl-item {
  min-height: 450px;
  height: 450px;
}

.hero-slide {
  height: clamp(560px, calc(100svh - 70px), 800px);
  min-height: 0;
  max-height: none;
}

@media (max-width: 991px) {

  .hero-section,
  .hero-carousel,
  .hero-carousel .owl-stage-outer,
  .hero-carousel .owl-stage,
  .hero-carousel .owl-item {
    min-height: clamp(500px, calc(100svh - 62px), 700px);
  }

  .hero-slide {
    height: clamp(500px, calc(100svh - 62px), 700px);
  }

  .hero-slide__content {
    max-width: 900px;
  }
}

@media (max-width: 680px) {

  .hero-section,
  .hero-carousel,
  .hero-carousel .owl-stage-outer,
  .hero-carousel .owl-stage,
  .hero-carousel .owl-item {
    min-height: clamp(500px, 74svh, 620px);
  }

  .hero-slide {
    height: clamp(500px, 74svh, 620px);
  }

  .hero-slide__bg {
    background-position: center center;
  }

  .hero-slide__content {
    padding: 22px 14px 52px;
  }
}

@media (max-width: 420px) {

  .hero-section,
  .hero-carousel,
  .hero-carousel .owl-stage-outer,
  .hero-carousel .owl-stage,
  .hero-carousel .owl-item {
    min-height: clamp(480px, 72svh, 580px);
  }

  .hero-slide {
    height: clamp(480px, 72svh, 580px);
  }

  .hero-slide__content {
    padding: 18px 12px 48px;
  }
}

/* ============================================================
   HEADER RESPONSIVE: LAPTOP / SMALL DESKTOP
   ============================================================ */
@media (min-width: 992px) and (max-width: 1400px) {
  .navbar {
    min-height: 66px;
    gap: clamp(10px, 1.35vw, 18px);
    padding: 8px 0;
  }

  .brand {
    flex: 0 0 auto;
  }

  .brand img {
    width: clamp(190px, 17vw, 238px);
  }

  .nav-menu {
    min-width: 0;
    flex: 1 1 auto;
    justify-content: center;
  }

  .nav-list {
    gap: 0;
  }

  .nav-list>li>a {
    padding: 9px clamp(7px, 0.8vw, 11px);
    font-size: clamp(16px, 1.15vw, 16px);
    white-space: nowrap;
  }

  .header-action {
    flex: 0 0 auto;
    gap: 7px;
  }

  .header-action .btn {
    min-width: 0;
    padding: 10px clamp(12px, 1.15vw, 16px);
    font-size: clamp(14px, 1.1vw, 16px);
    white-space: nowrap;
  }
}

@media (min-width: 992px) and (max-width: 1100px) {
  .navbar {
    gap: 8px;
  }

  .brand img {
    width: 178px;
  }

  .nav-list>li>a {
    padding: 8px 10px;
    font-size: 14px;
  }

  .header-action {
    gap: 6px;
  }

  .header-action .btn {
    padding: 9px 10px;
    font-size: 14px;
  }
}

/* ============================================================
   FEATURE TABS RESPONSIVE
   ============================================================ */
.feature-system .tabs {
  max-width: 100%;
}

.tabs button {
  min-height: 52px;
  justify-content: center;
  text-align: center;
}

@media (min-width: 992px) and (max-width: 1200px) {
  .tabs button {
    padding: 11px 18px;
    font-size: 15px;
  }
}

@media (max-width: 991px) {
  .feature-system .container>.tabs {
    display: grid;
    width: min(100%, 680px);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
    padding: 6px;
    overflow: visible;
    border-radius: 10px;
  }

  .tabs button {
    width: 100%;
    min-height: 48px;
    padding: 10px 8px;
    justify-content: center;
    border-radius: 7px;
    font-size: 13px;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
  }

  .tabs button+button::before {
    display: none;
  }
}

@media (max-width: 680px) {
  .feature-system .container>.tabs {
    grid-template-columns: 1fr;
  }

  .tabs button {
    justify-content: flex-start;
    padding: 10px 14px;
    font-size: 14px;
    text-align: left;
  }
}

@media (min-width: 681px) and (max-width: 800px) {
  .feature-system .container>.tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tabs button {
    justify-content: flex-start;
    padding: 10px 14px;
    font-size: 14px;
    text-align: left;
  }
}

@media (max-width: 420px) {
  .feature-system .container>.tabs {
    padding: 4px;
  }

  .tabs button {
    min-height: 44px;
    justify-content: flex-start;
    padding: 9px 11px;
    text-align: left;
    font-size: 13px;
  }

  .tabs button img {
    width: 20px;
    height: 20px;
  }
}

/* ============================================================
   STATS RESPONSIVE ALIGNMENT
   ============================================================ */
@media (max-width: 980px) {
  .stats {
    gap: 0;
    padding: 24px;
  }

  .stats-intro {
    justify-content: flex-start;
    padding: 0 0 20px;
  }

  .stat-item {
    min-width: 0;
    min-height: 108px;
    justify-content: flex-start;
    padding: 20px clamp(12px, 4vw, 34px);
  }

  .stat-item__text {
    min-width: 0;
  }
}

@media (max-width: 680px) {
  .stats {
    padding: 18px 16px;
  }

  .stats-intro {
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
    padding-bottom: 18px;
    text-align: left;
  }

  .stats-intro__icon {
    width: 56px;
    height: 56px;
  }

  .stats-intro__text h3 {
    font-size: 19px;
  }

  .stats-intro__text p {
    font-size: 14px;
  }

  .stat-item {
    min-height: 0;
    justify-content: flex-start;
    padding: 16px 4px;
  }

  .stat-item__text strong {
    font-size: 22px;
  }

  .stat-item__text span {
    font-size: 15px;
  }
}

/* ============================================================
   WHY CHOOSE: SMALL TABLET
   ============================================================ */

@media (min-width: 768px) and (max-width: 991px) {
  .why-grid {

    gap: 16px;
  }

  .why-grid article {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    text-align: center;
  }

  .why-icon-box {
    width: 74px;
    height: 74px;
  }

  .why-icon-box img {
    width: 44px !important;
    height: 44px !important;
  }

  .why-grid h3 {
    margin-bottom: 6px;
    font-size: 20px;
  }

  .why-grid p {
    font-size: 16px;
    line-height: 1.5;
  }
}

@media (min-width: 681px) and (max-width: 767px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-grid article {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    text-align: center;
  }

  .why-icon-box {
    width: 74px;
    height: 74px;
  }

  .why-icon-box img {
    width: 44px !important;
    height: 44px !important;
  }

  .why-grid h3 {
    margin-bottom: 6px;
    font-size: 20px;
  }

  .why-grid p {
    font-size: 16px;
    line-height: 1.5;
  }
}

/* ============================================================
   COMMON INNER PAGE
   ============================================================ */
.mobile-close-btn {
  border: 0;
  background: transparent;
}

.inner-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.inner-breadcrumb a {
  color: #ffc04d;
}

.inner-breadcrumb i {
  font-size: 9px;
}

.attendance-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-weight: 700;
  transition: gap var(--transition), color var(--transition);
}

.attendance-text-link:hover {
  gap: 14px;
  color: var(--gold);
}

/* Intro */
.attendance-intro {
  padding-top: 55px;
}

.attendance-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 30px 80px;
  align-items: start;
}

.attendance-intro__copy {
  padding-top: 20px;
}

.attendance-intro__copy p:last-child {
  margin-bottom: 0;
}

.attendance-quick-points {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.attendance-quick-points article {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 22px;
  border: 1px solid #dfeaf3;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(6, 43, 82, 0.07);
}

.attendance-quick-points article>span {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #126eb2, #063e77);
  font-size: 20px;
}

.attendance-quick-points article:nth-child(2)>span {
  background: linear-gradient(135deg, #ffb322, #e97e00);
}

.attendance-quick-points article:nth-child(3)>span {
  background: linear-gradient(135deg, #27b275, #087344);
}

.attendance-quick-points strong,
.attendance-quick-points small {
  display: block;
}

.attendance-quick-points strong {
  color: #14395e;
  font-size: 17px;
}

.attendance-quick-points small {
  color: #78899a;
}

/* Feature cards */
.attendance-features {
  position: relative;
  background: #f5f9fc;
}

.attendance-features::before {
  content: "";
  position: absolute;
  top: 80px;
  right: 0;
  width: 310px;
  height: 310px;
  border-radius: 50% 0 0 50%;
  background: radial-gradient(circle, rgba(255, 174, 25, 0.12), transparent 70%);
  pointer-events: none;
}

.attendance-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.attendance-feature-card {
  position: relative;
  min-height: 305px;
  padding: 28px 24px 25px;
  overflow: hidden;
  border: 1px solid #dfe8f0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(8, 43, 76, 0.06);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.attendance-feature-card:hover {
  border-color: #a7cce8;
  box-shadow: 0 22px 42px rgba(8, 43, 76, 0.12);
  transform: translateY(-7px);
}

.feature-number {
  position: absolute;
  top: 19px;
  right: 20px;
  color: #e4ecf2;
  font-family: "Merriweather", Georgia, serif;
  font-size: 35px;
  font-weight: 800;
}

.feature-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 17px;
  color: #0e67aa;
  background: #eaf6ff;
  font-size: 25px;
  transition: color var(--transition), background var(--transition);
}

.feature-icon i {
  font-size: 40px;
}

.attendance-feature-card:nth-child(3n + 2) .feature-icon {
  color: #d97e00;
  background: #fff4dd;
}

.attendance-feature-card:nth-child(3n + 3) .feature-icon {
  color: #178b5a;
  background: #e7f8f0;
}

.attendance-feature-card:hover .feature-icon {
  color: #fff;
  background: linear-gradient(135deg, #0e6eb1, #053867);
}

.attendance-feature-card h3 {

  margin: 0 0 12px;
  color: #11385f;
  font-size: 20px;
  line-height: 1.35;
}

.attendance-feature-card p {
  margin: 0;
}

/* Benefits */
.attendance-benefits {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 95% 10%, rgba(35, 144, 211, 0.26), transparent 32%),
    linear-gradient(125deg, #021f3f, #063b6c);
}

.attendance-benefits::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -210px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow:
    0 0 0 60px rgba(255, 255, 255, 0.025),
    0 0 0 120px rgba(255, 255, 255, 0.018);
}

.attendance-benefits__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 90px;
  align-items: center;
}

.attendance-benefits__content h2 {
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(34px, 3.3vw, 50px);
}

.attendance-benefits__content h2 span {
  color: #ffb321;
}

.attendance-benefits__content p {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.75);
}

.attendance-benefit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.attendance-benefit-list article {
  display: flex;
  gap: 13px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.065);
  flex-direction: column;
}

.attendance-benefit-list article>i {
  width: 62px;
  height: 66px;
  flex: 0 0 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #072d52;
  background: #ffb520;
  font-size: 34px;
}

.attendance-benefit-list strong {
  display: block;
  margin-bottom: 3px;
  color: #fff;
}

.attendance-benefit-list span {
  color: rgba(255, 255, 255, 0.74);
}

/* Workflow */
.workflow-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0 auto;
}

/* .workflow-grid::before {
  content: "";
  position: absolute;
  top: 48px;
  right: 17%;
  left: 17%;
  z-index: 0;
  border-top: 2px dashed #c8dbe9;
} */

.workflow-grid article {
  position: relative;
  z-index: 1;
  padding: 0 30px;
  text-align: center;
}

.workflow-icon {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border: 8px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #126fb3, #063d74);
  box-shadow: 0 12px 28px rgba(8, 65, 112, 0.2);
  font-size: 30px;
}

.workflow-grid article:nth-child(2) .workflow-icon {
  background: linear-gradient(145deg, #ffb72b, #ed8500);
}

.workflow-grid article:nth-child(3) .workflow-icon {
  background: linear-gradient(145deg, #29b779, #0c7b4b);
}

.workflow-step {
  color: #0d6bac;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.workflow-grid h3 {
  margin: 8px 0 10px;
  color: #12395e;
  font-size: 20px;
}

.workflow-grid p {
  margin: 0;
}

/* CTA */
.attendance-cta {
  padding: 34px 0;
  background: linear-gradient(100deg, #ffb91e, #f38b09);
}

.attendance-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
}

.attendance-cta__inner span {
  color: #174875;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.attendance-cta h2 {
  margin: 5px 0 0;
  color: #062b52;
  font-size: clamp(25px, 2.6vw, 38px);
}

.attendance-cta .btn-gold {
  color: #fff;
  border-color: #062b52;
  background: #062b52;
}

.attendance-cta__actions {
  display: grid;
  flex: 0 0 auto;
  gap: 8px;
  text-align: center;
}

.attendance-cta__actions small {
  color: #174875;
  font-size: 11px;
  font-weight: 600;
}

/* FAQ */
/* .attendance-faq {
  background: #f7fafc;
}

.attendance-faq__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: 90px;
  align-items: start;
}

 .attendance-faq .section-title {
  position: sticky;
  top: 130px;
}

.attendance-faq .section-title>p {
  width: 100%;
}

.attendance-faq .attendance-text-link {
  margin-top: 12px;
  color: #0d65a7;
}

.attendance-accordion {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.attendance-faq-item {
  overflow: hidden;
  border: 1px solid #dce7ef;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(7, 43, 75, 0.045);
}

.attendance-faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 21px 23px;
  border: 0;
  color: #153b60;
  background: transparent;
  font-family: "Golos Text", sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.attendance-faq-item button i {
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #0c65a7;
  background: #eaf5fd;
  font-size: 12px;
}

.attendance-faq-item.active {
  border-color: #a9cfe9;
}

.attendance-faq-item.active button {
  color: #0b5e9d;
}

.attendance-faq-item.active button i {
  color: #fff;
  background: #0b65a6;
}

.attendance-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.attendance-faq-item.active .attendance-faq-answer {
  max-height: 240px;
}

.attendance-faq-answer p {
  margin: 0;
  padding: 0 23px 22px;
  font-size: 15px;
}

@media (max-width: 1350px) {
  .attendance-feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .attendance-feature-card {
    min-height: 275px;
  }
}

@media (max-width: 1100px) {

  .attendance-benefits__grid,
  .attendance-faq__grid {
    gap: 55px;
  }

  .attendance-faq__grid {
    grid-template-columns: minmax(290px, 0.7fr) minmax(0, 1.3fr);
  }
} */

@media (max-width: 991px) {
  .mobile-close-btn {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 36px;
    height: 36px;
    display: grid !important;
    place-items: center;
    color: var(--navy);
    font-size: 22px;
  }

  .mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 900;
    display: block !important;
    visibility: hidden;
    opacity: 0;
    background: rgba(2, 24, 48, 0.56);
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .mobile-overlay.active {
    visibility: visible;
    opacity: 1;
  }

  .mobile-only-btn {
    display: block !important;
    padding-top: 12px;
    border-bottom: 0;
  }

  .mobile-only-btn .btn {
    justify-content: center;
    color: #fff;
  }

  .attendance-intro__grid,
  .attendance-benefits__grid,
  .attendance-faq__grid {
    grid-template-columns: 1fr;
  }

  .attendance-intro__copy {
    padding-top: 0;
  }

  .attendance-faq .section-title {
    position: static;
  }

  .attendance-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .attendance-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 767px) {

  .attendance-quick-points,
  .attendance-benefit-list,
  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .workflow-grid {
    gap: 38px;
  }

  .workflow-grid::before {
    display: none;
  }

  .attendance-benefits__grid,
  .attendance-faq__grid {
    gap: 42px;
  }

}

@media (max-width: 600px) {
  .inner-page-hero .container {
    width: min(1600px, calc(100% - 30px));
  }

  .inner-breadcrumb {
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 23px;
  }

  .attendance-feature-grid {
    grid-template-columns: 1fr;
  }

  .attendance-feature-card {
    min-height: auto;
  }

  .attendance-benefit-list article {
    padding: 17px;
  }

  .workflow-grid article {
    padding: 0 10px;
  }

  .attendance-cta__actions,
  .attendance-cta__actions .btn {
    width: 100%;
  }

  .attendance-faq-item button {
    padding: 18px;
    font-size: 15px;
  }

  .attendance-faq-answer p {
    padding: 0 18px 19px;
  }
}

/* Simple inner-page banner */
.inner-page-hero {
  position: relative;
  min-height: auto;
  padding: clamp(42px, 5vw, 72px) 0;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  background:
    radial-gradient(circle at 8% 20%, rgba(255, 181, 32, 0.12), transparent 28%),
    linear-gradient(115deg, #031f3d 0%, #063c6d 100%);
}

.inner-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
}

.inner-page-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 3fr);
  gap: clamp(45px, 6vw, 90px);
  align-items: center;
}

.inner-page-hero__content {
  width: 100%;
}

.inner-page-hero .inner-breadcrumb {
  margin-bottom: 24px;
}

.inner-page-hero h1 {
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(40px, 4vw, 62px);
  font-weight: 700;
  line-height: 1.13;
}

.inner-page-hero h1 span {
  color: #ffb418;
}

.inner-page-hero__content>p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1.75;
}

.inner-page-hero__image {
  position: relative;
  height: clamp(350px, 34vw, 500px);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 65px rgba(0, 13, 31, 0.32);
}

.inner-page-hero__image::before {
  content: "";
  position: absolute;
  top: -18px;
  right: -18px;
  width: 105px;
  height: 105px;
  z-index: -1;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffbd2e, #f08a00);
}

.inner-page-hero__image::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 78px;
  height: 78px;
  z-index: -1;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}

.inner-page-hero__image img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
}

@media (max-width: 991px) {
  .inner-page-hero__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .inner-page-hero__image {
    width: 100%;
    height: clamp(320px, 60vw, 480px);
  }
}

@media (max-width: 600px) {
  .inner-page-hero h1 {
    font-size: clamp(35px, 10vw, 46px);
  }

  .inner-page-hero__content>p {
    font-size: 16px;
  }

  .inner-page-hero__image {
    height: 270px;
    padding: 8px;
    border-radius: 18px;
  }

  .inner-page-hero__image img {
    border-radius: 11px;
  }
}

/* ============================================================
   INNER PAGE HERO CAROUSEL OVERRIDES
   ============================================================ */
.inner-hero {
  min-height: 450px !important;
  height: 450px;
}

.inner-hero .hero-slide {
  height: 450px !important;
  min-height: 450px !important;
  max-height: 450px !important;
  align-items: center !important;
  /* Centered content looks cleaner for shorter banners */
  padding-bottom: 0 !important;
}

.inner-hero .hero-slide__content {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

/* Hide navigation, progress bar and indicators as there is only 1 slide on inner page */
.inner-hero .owl-dots,
.inner-hero .owl-nav,
.inner-hero .slide-progress {
  display: none !important;
}

@media (max-width: 768px) {

  .inner-hero,
  .inner-hero .hero-slide {
    height: auto !important;
    min-height: 400px !important;
    max-height: none !important;
  }
}

@media (max-width: 600px) {

  .inner-hero,
  .inner-hero .hero-slide {
    height: auto !important;
    min-height: 350px !important;
    max-height: none !important;
  }

  .inner-hero .hero-slide__content {
    padding: 20px 14px 40px !important;
  }
}








.svc-why-grid {
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.svc-why-feature-panel {
  width: 100%;
}

.svc-why-features {
  gap: 18px;
  margin-top: 0;
}

.svc-why-feature {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 18px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #E8EDF0;
  transition: all 0.3s ease;
}


.service-page .svc-process-icon,
.service-page .svc-sub-icon,
.service-page .svc-why-feat-icon {
  background: linear-gradient(135deg, var(--secondary), #4c7288);
}

.svc-why-feat-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  font-size: 32px;
}

.svc-why-feat-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  font-size: 32px;
}

.svc-why-feat-text h4 {
  font-size: 22px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 8px;
}

.svc-why-feat-text p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1rem;
}

.hero-carousel-inner .hero-slide__content {
  opacity: 1;
}



/* Contact us Page Styles */

.contact-info-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 20px;
  margin-bottom: 40px;
}

/* .signup-form .contact-info-box {
  grid-template-columns: repeat(3, 1fr);
} */

@media (max-width: 991px) {
  .contact-info-box {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.contact-info-box-content {
  background: var(--white);
  padding: 35px 40px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact-info-box-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(6, 43, 82, 0.18);
}

.contact-info-box-content .contact_info {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 22px;
  font-size: 16px;
  color: var(--ink);
}

.contact-info-box-content .contact_info:last-child {
  margin-bottom: 0;
}

.contact-info-box-content i {
  color: var(--gold);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 3px;
}

.contact_info a {
  color: var(--ink);
  font-weight: 600;
  transition: color var(--transition);
}

.contact_info a:hover {
  color: var(--gold);
}

.contact-info-box-content .contact_info .phone-titel {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-right: 5px;
}

/* Contact Us Grid & Form Layout */
.contact-us-form.free-sign-up {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 50px;
  margin-top: 25px;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .contact-us-form.free-sign-up {
    padding: 30px 20px;
  }
}

.contact-us-form .row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.contact-us-form .form-group {
  margin-bottom: 25px;
  padding-left: 15px;
  padding-right: 15px;
}

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

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

@media (max-width: 991px) {
  .contact-us-form .col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Form Controls */
.contact-us-form label.col-form-label {
  display: block;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 8px;
  font-family: "Golos Text", sans-serif;
}

.contact-us-form label .required {
  color: #e15b5b;
  margin-left: 4px;
  font-weight: 700;
}

.contact-us-form .form-control-div {
  position: relative;
}

.contact-us-form .form-control {
  width: 100%;
  height: 52px;
  background-color: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 16px;
  color: var(--ink);
  font-family: "Golos Text", sans-serif;
  transition: all var(--transition);
}

.contact-us-form textarea.form-control {
  height: auto;
  min-height: 140px;
  resize: vertical;
}

.contact-us-form .form-control:focus {
  outline: none;
  background-color: var(--white);
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(6, 43, 82, 0.1);
}

.contact-us-form select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23062b52' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 18px;
  padding-right: 40px;
}

/* Captcha Code Alignment */
.captcha-code-full {
  display: flex;
  gap: 15px;
  align-items: center;
}

.captcha-code-img {
  flex: 0 0 auto;
  height: 52px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 15px;
}

.captcha-code-img img {
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.captcha-code-input {
  flex: 1;
}

/* Submit and Reset Buttons */
.contact-us-form .contact-form-btn {
  margin: 15px 8px 0;
  min-width: 150px;
}

.contact-us-form button.btn-primary[type="submit"] {
  color: var(--white);
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-color: var(--navy-dark);
}

.contact-us-form button.btn-primary[type="submit"]:hover {
  background: linear-gradient(90deg, var(--navy-dark) 0%, #011124 100%);
  box-shadow: 0 10px 24px rgba(6, 43, 82, 0.25);
  transform: translateY(-2px);
}

.contact-us-form button.btn-primary[type="reset"] {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--line);
}

.contact-us-form button.btn-primary[type="reset"]:hover {
  background: var(--soft);
  border-color: var(--navy);
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(6, 43, 82, 0.05);
  transform: translateY(-2px);
}

/* Map Section */
.map {
  width: 100%;
  height: 480px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  margin-bottom: 60px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.map:hover {
  box-shadow: 0 25px 55px rgba(6, 43, 82, 0.18);
  transform: translateY(-3px);
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}