/* ==========================================
   BERE-MONT GROUP - DESIGN SYSTEM & STYLES
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --cleva-navy: #000D3D;
  --cleva-dark-navy: #000D3D;
  --cleva-navy-surface: #000D3D;
  --cleva-black: #000D3D;
  --cleva-dark: #000D3D;
  --cleva-text: #FFFFFF;
  --cleva-gold: #FFBD59;
  --cleva-gold-hover: #E5A84B;
  --cleva-peach: #FEE9C8;
  --cleva-sky: #D3E8FD;
  --cleva-lavender: #D3D4F1;
  --cleva-cream: #FFF7EB;
  --cleva-grey-card: #000D3D;
  --cleva-faq-bg: #000D3D;
  --border-light: rgba(255, 255, 255, 0.12);

  --primary-navy: #000D3D;
  --primary-deep: #000D3D;
  --royal-blue: #000D3D;
  --accent-blue: #2563EB;
  --accent-light: #60A5FA;
  --gold-primary: #FFBD59;
  --gold-hover: #E5A84B;
  --dark-text: #FFFFFF;
  --body-text: #CBD5E1;
  --muted-text: #94A3B8;
  --light-bg: #000D3D;
  --card-bg: #000D3D;
  --border-color: rgba(255, 255, 255, 0.15);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 12px 36px rgba(0, 0, 0, 0.35);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-card: 30px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Plus Jakarta Sans', sans-serif;
  --font-heading: 'Georgia', 'Times New Roman', serif;
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--light-bg);
  color: var(--dark-text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Container */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4.5rem;
}

/* Top Announcement Bar (Removed) */
.top-bar {
  display: none !important;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-info span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar-info i {
  color: var(--cleva-gold);
}

.top-bar-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-bar-links a:hover {
  color: var(--cleva-gold);
}

/* Header & Navigation (#BACBE8) */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #BACBE8;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.header .container {
  max-width: 1650px;
  padding: 0 1.75rem;
}

.header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  background: #BACBE8;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: #d2d3d5;
}

.brand-logo::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -60%;
  width: 220%;
  height: 220%;
  background: conic-gradient(from 0deg,
      transparent 0deg,
      transparent 160deg,
      #C59B27 260deg,
      #C59B27 360deg);
  animation: rotateRedBorderBeam 2.8s linear infinite;
  z-index: -2;
}

.brand-logo::after {
  content: "";
  position: absolute;
  inset: 2.5px;
  background: #d2d3d5;
  border-radius: calc(var(--radius-md) - 2px);
  z-index: -1;
}

.brand-logo img {
  height: 48px;
  width: auto;
  border-radius: var(--radius-sm);
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.brand-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.brand-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: #021937 !important;
  letter-spacing: -0.02em;
  line-height: 1.1;
  white-space: nowrap;
  text-align: center;
}

.brand-title span {
  color: #021937 !important;
}

.brand-subtitle {
  font-size: 0.68rem;
  color: #E63946 !important;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
}

/* Cleva Toggle Switch Pill with Bold Rotating Red Ring (No Glow) */
.cleva-pill-switch {
  display: inline-flex;
  align-items: center;
  background: #000D3D;
  padding: 3px;
  border-radius: var(--radius-full);
  gap: 2px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: none;
}

.cleva-pill-switch::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -60%;
  width: 220%;
  height: 220%;
  background: conic-gradient(from 0deg,
      transparent 0deg,
      transparent 160deg,
      #E63946 260deg,
      #E63946 360deg);
  animation: rotateRedBorderBeam 2.8s linear infinite;
  z-index: -2;
}

.cleva-pill-switch::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: #000D3D;
  border-radius: var(--radius-full);
  z-index: -1;
}

@keyframes rotateRedBorderBeam {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.cleva-pill-btn {
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  z-index: 2;
}

.cleva-pill-btn:hover {
  color: #FFFFFF;
}

.cleva-pill-btn.active {
  background: var(--cleva-gold);
  color: #000000;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(255, 189, 89, 0.35);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-item {
  position: relative;
  white-space: nowrap;
}

.nav-link {
  font-weight: 600;
  font-size: 0.88rem;
  color: #021937;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: #E63946;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav-link i.fa-chevron-down {
  font-size: 0.7rem;
  transition: var(--transition);
}

.nav-item:hover .nav-link i.fa-chevron-down {
  transform: rotate(180deg);
}

/* Dropdown Menu (Floating High-Contrast Card) */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 380px;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 20px 45px rgba(0, 13, 61, 0.18);
  padding: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid #E2E8F0;
  z-index: 1000;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  color: #000D3D;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.dropdown-item:hover {
  background: #F0F4FF;
  color: #000D3D;
}

.dropdown-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #EEF2FF;
  color: #000D3D;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.dropdown-item:hover .dropdown-icon {
  background: #000D3D;
  color: #FFB800;
}

.dropdown-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.dropdown-info strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #000D3D !important;
  line-height: 1.25;
}

.dropdown-info span {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: #475569 !important;
  line-height: 1.2;
}

.dropdown-item:hover .dropdown-info strong {
  color: #000D3D !important;
}

.dropdown-item:hover .dropdown-info span {
  color: #1E293B !important;
}

/* Nav Actions & Cleva Buttons */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-cleva-gold {
  background: var(--cleva-gold);
  color: #E63946 !important;
  border: 2px solid var(--cleva-gold);
  font-weight: 800;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.6rem;
  white-space: nowrap;
}

.btn-cleva-gold:hover {
  background: #E63946;
  color: var(--cleva-gold) !important;
  border-color: #E63946;
}

.btn-cleva-outline {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid var(--cleva-gold);
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.6rem;
  white-space: nowrap;
}

.btn-cleva-outline:hover {
  background: var(--cleva-gold);
  color: #E63946 !important;
}

.btn-primary {
  background: var(--cleva-gold);
  color: #E63946 !important;
  border: 2px solid var(--cleva-gold);
  font-weight: 800;
}

.btn-primary:hover {
  background: #E63946;
  color: var(--cleva-gold) !important;
  border-color: #E63946;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.35);
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--cleva-gold);
  color: #E63946 !important;
  border: 2px solid var(--cleva-gold);
  font-weight: 800;
}

.btn-gold:hover {
  background: #E63946;
  color: var(--cleva-gold) !important;
  border-color: #E63946;
}

.btn-outline {
  background: transparent;
  border-color: var(--cleva-dark);
  color: var(--cleva-dark);
}

.btn-outline:hover {
  background: var(--cleva-dark);
  color: #FFFFFF;
}

.btn-sm {
  padding: 0.45rem 0.85rem;
  font-size: 0.8rem;
  white-space: nowrap;
}

.btn-lg {
  padding: 0.85rem 2rem;
  font-size: 1rem;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #021937;
  cursor: pointer;
}

/* Cleva Hero Section (#021937) */
.cleva-hero {
  background: #021937;
  padding: 2.25rem 0 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subpage Banner Title Header (#021937) */
.page-header {
  background: #021937 !important;
  padding: 3.5rem 0 3rem;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-header-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
  margin: 0.75rem 0 0.5rem;
}

.page-header-subtitle {
  font-size: 1.1rem;
  color: #E2E8F0;
  max-width: 720px;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: #CBD5E1;
}

.breadcrumb a {
  color: #FFBD59;
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb a:hover {
  color: #E63946;
}

/* Subpage section immediately following .page-header -> Light Ash (#F1F5F9) */
.page-section-ash,
.page-header+section,
.section-ash {
  background: #F1F5F9 !important;
  color: #021937 !important;
}

.page-section-ash>.container h1,
.page-section-ash>.container h2,
.page-section-ash>.container h3,
.page-section-ash .section-title,
.page-header+section>.container h1,
.page-header+section>.container h2,
.page-header+section>.container h3,
.page-header+section .section-title,
.section-ash>.container h1,
.section-ash>.container h2,
.section-ash>.container h3,
.section-ash .section-title {
  color: #000D3D !important;
}

.page-section-ash>.container>p,
.page-section-ash .section-description,
.page-header+section>.container>p,
.page-header+section .section-description,
.section-ash>.container>p,
.section-ash .section-description {
  color: #0F172A !important;
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 450;
}

.section-description {
  color: #CBD5E1 !important;
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 400;
}

.cleva-hero-title {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  margin-top: 0.25rem;
  margin-bottom: 0.85rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  white-space: normal;
}

.cleva-hero-title span {
  color: var(--cleva-gold);
  font-weight: 800;
  display: inline-block;
  border-bottom: 4px solid #E63946 !important;
  padding-bottom: 4px;
  line-height: 1.1;
}

.cleva-hero-subtitle {
  font-size: 1.25rem;
  color: #E2E8F0;
  font-weight: 500;
  max-width: 740px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Hero 3-Slide Subtitle Text Slider */
.hero-text-slider {
  max-width: 780px;
  margin: 0 auto 1.5rem;
  position: relative;
}

.hero-text-slides {
  position: relative;
  min-height: 60px;
}

.hero-text-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.hero-text-slide.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-text-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  background: var(--cleva-gold);
  width: 28px;
  border-radius: 10px;
}

.cleva-hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Cleva Horizontal Infinite Scrolling Card Deck (GetCleva Style) */
.cleva-hero-cards-wrapper {
  margin-top: 3rem;
  overflow: hidden;
  position: relative;
  width: calc(100% + 400px);
  margin-left: -200px;
  margin-right: -200px;
  max-width: 100vw;
  padding: 1.25rem 0;
  cursor: grab;
}

.cleva-hero-cards-wrapper::before,
.cleva-hero-cards-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 160px;
  z-index: 10;
  pointer-events: none;
}

.cleva-hero-cards-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #021937 0%, rgba(2, 25, 55, 0) 100%);
}

.cleva-hero-cards-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #021937 0%, rgba(2, 25, 55, 0) 100%);
}

.cleva-hero-cards-track {
  display: flex;
  gap: 1.75rem;
  width: max-content;
  animation: heroTickerScroll 30s linear infinite;
}

.cleva-hero-cards-track:hover {
  animation-play-state: paused;
}

@keyframes heroTickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.cleva-hero-card-item {
  width: 360px;
  height: 460px;
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  flex-shrink: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
}

.cleva-hero-card-item:hover {
  transform: translateY(-8px) scale(1.03);
  z-index: 5;
  box-shadow: 0 20px 48px rgba(230, 57, 70, 0.35);
  border-color: var(--accent-red);
}

.cleva-hero-card-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.03);
  transition: transform 0.45s ease;
}

.cleva-hero-card-item:hover img {
  transform: scale(1.1);
}

.cleva-hero-card-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.75rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(6, 21, 45, 0.95) 0%, rgba(6, 21, 45, 0.7) 65%, rgba(6, 21, 45, 0) 100%);
  color: #FFFFFF;
  text-align: left;
}

.cleva-hero-card-caption h4 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--cleva-gold);
  margin-bottom: 0.35rem;
}

.cleva-hero-card-caption p {
  font-size: 0.88rem;
  color: #E2E8F0;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.cleva-hero-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 800;
  color: #E63946 !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.4rem;
  transition: var(--transition);
}

.cleva-hero-card-link:hover {
  color: var(--cleva-gold) !important;
}

.cleva-hero-card-logo-thumb {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 54px;
  height: 54px;
  background: transparent;
  padding: 0;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border: none;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.6));
}

.cleva-hero-card-logo-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  border-radius: 0 !important;
  transform: none !important;
  transition: none !important;
}

.cleva-hero-card-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(230, 57, 70, 0.9);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(4px);
  z-index: 2;
}

/* Cleva Feature Cards Grid (Section 2: Light Ash #F1F5F9) */
.cleva-grid-section {
  padding: 4.5rem 0;
  background: #F1F5F9;
  text-align: center;
}

.cleva-grid-section .cleva-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #021937;
  margin-bottom: 2.5rem;
  position: relative;
  display: inline-block;
  text-align: center;
}

.cleva-grid-section .cleva-section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent-red);
  border-radius: 2px;
  margin: 0.6rem auto 0;
}

.cleva-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
}

.cleva-card {
  border-radius: var(--radius-card);
  padding: 3rem;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid var(--accent-red);
  text-align: left;
}

.cleva-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.cleva-card-peach {
  background: var(--cleva-peach);
}

.cleva-card-sky {
  background: var(--cleva-sky);
}

.cleva-card-lavender {
  background: var(--cleva-lavender);
}

.cleva-card-cream {
  background: var(--cleva-cream);
}

.cleva-card-title {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 600;
  color: #1A1818;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  min-height: 3.6rem;
  display: flex;
  align-items: flex-start;
}

.cleva-card-desc {
  font-size: 1.05rem;
  color: #333333;
  line-height: 1.6;
}

.cleva-card-img-box {
  margin-top: 2rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 220px;
}

.cleva-card-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Scaled 2x2 Grid for Mobile & Tablet ("Move Human Potential Faster") */
.cleva-cards-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
}

@media (max-width: 992px) {
  .cleva-grid-section .cleva-section-title {
    font-size: 2.1rem;
    margin-bottom: 1.5rem;
  }

  .cleva-cards-grid {
    gap: 1.25rem;
  }

  .cleva-card {
    padding: 1.5rem;
    min-height: auto;
    border-radius: 18px;
    border-top-width: 3px;
  }

  .cleva-card-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    line-height: 1.25;
  }

  .cleva-card-desc {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .cleva-card-img-box {
    margin-top: 1rem;
    height: 140px;
    border-radius: 10px;
  }
}

@media (max-width: 768px) {
  .cleva-grid-section .cleva-section-title {
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
  }

  .cleva-cards-grid {
    gap: 0.85rem;
  }

  .cleva-card {
    padding: 1.15rem 0.85rem;
    min-height: auto;
    border-radius: 14px;
  }

  .cleva-card-title {
    font-size: 1rem;
    margin-bottom: 0.4rem;
    line-height: 1.22;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .cleva-card-desc {
    font-size: 0.78rem;
    line-height: 1.38;
  }

  .cleva-card-img-box {
    margin-top: 0.75rem;
    height: 105px;
    border-radius: 8px;
  }
}

@media (max-width: 576px) {
  .cleva-grid-section .container {
    padding: 0 0.65rem !important;
  }

  .cleva-grid-section .cleva-section-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
  }

  .cleva-cards-grid {
    gap: 0.55rem;
  }

  .cleva-card {
    padding: 0.85rem 0.6rem;
    border-radius: 12px;
    border-top-width: 3px;
  }

  .cleva-card-title {
    font-size: 0.88rem;
    margin-bottom: 0.35rem;
    line-height: 1.2;
    font-weight: 700;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .cleva-card-desc {
    font-size: 0.72rem;
    line-height: 1.32;
    color: #2D2A2A;
  }

  .cleva-card-img-box {
    margin-top: 0.6rem;
    height: 85px;
    border-radius: 6px;
  }
}

@media (max-width: 380px) {
  .cleva-grid-section .container {
    padding: 0 0.4rem !important;
  }

  .cleva-grid-section .cleva-section-title {
    font-size: 1.2rem;
    margin-bottom: 0.85rem;
  }

  .cleva-cards-grid {
    gap: 0.4rem;
  }

  .cleva-card {
    padding: 0.7rem 0.45rem;
  }

  .cleva-card-title {
    font-size: 0.8rem;
  }

  .cleva-card-desc {
    font-size: 0.68rem;
    line-height: 1.25;
  }

  .cleva-card-img-box {
    height: 70px;
  }
}

/* How It Works Section (Section 3: #021937) */
.cleva-how-section {
  background: #021937;
  padding: 5rem 0;
  color: #FFFFFF;
}

.cleva-how-section .cleva-section-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.cleva-how-section .cleva-section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent-red);
  border-radius: 2px;
  margin-top: 0.6rem;
}

.cleva-how-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.cleva-how-steps {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin: 2rem 0 2.5rem;
}

.cleva-step-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cleva-step-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent-red);
  color: var(--cleva-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.cleva-step-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: #FFFFFF;
}

.cleva-how-media {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.cleva-how-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Cleva Testimonials (Section 4: Light Ash #F1F5F9) */
.cleva-testimonials-section {
  padding: 5rem 0;
  background: #F1F5F9;
}

.cleva-testimonials-section h2 {
  color: #021937 !important;
}

.cleva-testimonials-section p {
  color: #475569 !important;
}

.cleva-avatar-group {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.cleva-testimonial-carousel {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1rem 0 2rem;
  scroll-behavior: smooth;
  max-width: 100%;
}

.cleva-testimonial-card {
  min-width: 360px;
  max-width: 360px;
  height: 320px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-card);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
}

.cleva-testimonial-quote {
  font-size: 1.05rem;
  font-weight: 500;
  color: #1E293B;
  line-height: 1.6;
}

.cleva-testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.cleva-testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.cleva-testimonial-author strong {
  font-size: 1rem;
  font-weight: 600;
  color: #021937;
}

/* Cleva FAQ Accordion Section (Section 5: Navy Blue #021937) */
.cleva-faq-section {
  padding: 4.5rem 0;
  background: #021937;
}

.cleva-faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.cleva-faq-title {
  font-size: 2.5rem;
  color: #FFFFFF;
}

.cleva-faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
}

.cleva-faq-item {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #000D3D;
  padding: 1.25rem 1.5rem;
  transition: var(--transition);
  cursor: pointer;
}

.cleva-faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 600;
  color: #FFFFFF;
}

.cleva-faq-body {
  margin-top: 0.85rem;
  font-size: 0.95rem;
  color: #CBD5E1;
  line-height: 1.6;
  display: none;
}

.cleva-faq-item.active .cleva-faq-body {
  display: block;
}

/* Deep Navy Footer Banner (#021937) */
.cleva-footer-cta {
  background: #021937;
  color: #FFFFFF;
  padding: 5rem 1rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cleva-footer-cta h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}

.cleva-footer-cta-desc {
  font-size: 1.05rem;
  color: #CCCCCC;
  line-height: 1.6;
}

.cleva-footer-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cleva-footer-bottom {
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 2rem;
  font-size: 0.85rem;
  color: #888888;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.cleva-copyright {
  font-size: 0.85rem;
  color: #888888;
  order: 1;
}

.cleva-footer-links {
  display: flex;
  gap: 1.5rem;
  order: 2;
}

.cleva-footer-links a {
  color: #AAAAAA;
  font-size: 0.85rem;
  transition: var(--transition);
}

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


/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-navy) 60%, #1E293B 100%);
  color: #FFFFFF;
  padding: 5rem 0 6rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(37, 99, 235, 0.05) 50%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.badge-gold {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-primary);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.badge-red {
  background: rgba(230, 57, 70, 0.12);
  color: #E63946;
  border: 1px solid rgba(230, 57, 70, 0.3);
}

.badge-blue {
  background: rgba(37, 99, 235, 0.1);
  color: var(--accent-blue);
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.badge-red-blue {
  background: rgba(212, 175, 55, 0.2);
  color: #E63946;
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-title span {
  background: linear-gradient(135deg, #F59E0B 0%, #D4AF37 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: #CBD5E1;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-media {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid rgba(255, 255, 255, 0.1);
}

.hero-image-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.hero-overlay-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(16px);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-lg);
}

.hero-overlay-card i {
  font-size: 2rem;
  color: var(--gold-primary);
}

.hero-overlay-text strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: #FFFFFF;
}

.hero-overlay-text span {
  font-size: 0.8rem;
  color: #94A3B8;
}

/* Page Header Banner */
.page-header {
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-navy) 100%);
  color: #FFFFFF;
  padding: 4rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}

.page-header-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.page-header-subtitle {
  font-size: 1.1rem;
  color: #CBD5E1;
  max-width: 650px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gold-primary);
  margin-top: 1rem;
}

.breadcrumb a {
  color: #94A3B8;
}

.breadcrumb a:hover {
  color: #FFFFFF;
}

/* Section Common */
.section {
  padding: 5rem 0;
}

.section-light {
  background-color: #F8FAFC !important;
  color: #000000 !important;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section-subtitle {
  color: #E63946 !important;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: #FFFFFF !important;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section-light .section-title,
.page-section-ash .section-title,
.page-header+section .section-title,
.section-ash .section-title {
  color: #000D3D !important;
}

.section-description {
  color: #CBD5E1 !important;
  font-size: 1.05rem;
}

.section-light p:not(.business-card p):not(.card p),
.section-light .section-description,
.page-section-ash p:not(.business-card p):not(.card p),
.page-section-ash .section-description,
.page-header+section p:not(.business-card p):not(.card p),
.page-header+section .section-description,
.section-ash p:not(.business-card p):not(.card p),
.section-ash .section-description {
  color: #1E293B !important;
}

.section-dark p,
.section-dark .section-description,
.section-dark .subpage-hero p,
section[style*="background: #000D3D"] p,
section[style*="background:#000D3D"] p,
section[style*="background: #000D3D"] .subpage-hero p,
section[style*="background:#000D3D"] .subpage-hero p {
  color: #E2E8F0 !important;
}

.section-light .subpage-hero h2,
.section-light .subpage-hero h4 {
  color: #000D3D !important;
}

.section-dark .subpage-hero h2,
.section-dark .subpage-hero h4,
section[style*="background: #000D3D"] .subpage-hero h2,
section[style*="background:#000D3D"] .subpage-hero h2 {
  color: #FFFFFF !important;
}

/* Group Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.business-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.business-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(37, 99, 235, 0.3);
}

.business-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.business-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.business-card:hover .business-card-image img {
  transform: scale(1.06);
}

.business-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: var(--gold-primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
}

.business-card-body {
  padding: 1rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.business-card-body>.badge {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  height: 1.5rem;
  margin-bottom: 0.35rem;
}

.business-card-logo-slot {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.4rem;
}

.business-card-logo {
  max-height: 36px;
  max-width: 150px;
  width: auto;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
  border-radius: 6px;
}

.business-card .business-card-title,
.business-card h3.business-card-title,
.business-card-title,
.page-header+section .business-card .business-card-title,
.page-section-ash .business-card .business-card-title,
.section-ash .business-card .business-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF !important;
  margin-bottom: 0.35rem;
  min-height: 2.5rem;
  display: flex;
  align-items: flex-start;
  line-height: 1.25;
  overflow: hidden;
}

.business-card .business-card-desc,
.business-card p.business-card-desc,
.business-card-desc,
.page-header+section .business-card .business-card-desc,
.page-section-ash .business-card .business-card-desc,
.section-ash .business-card .business-card-desc {
  font-size: 0.925rem;
  color: #F8FAFC !important;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.business-card p,
.business-card-body p,
.page-header+section .business-card p,
.page-header+section .business-card-body p {
  color: #CBD5E1 !important;
}

.business-card p i,
.business-card-body p i,
.page-header+section .business-card p i,
.page-header+section .business-card-body p i {
  color: #FFBD59 !important;
}

.business-card-actions {
  margin-top: auto;
  padding-top: 0.5rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.business-features-list {
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.business-features-list li {
  font-size: 0.85rem;
  color: var(--dark-text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.business-features-list li i {
  color: var(--accent-blue);
  font-size: 0.8rem;
}

/* Stats Section */
.stats-section {
  background: var(--primary-deep);
  color: #FFFFFF;
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: #CBD5E1;
}

/* Entity Subpage Custom Components */
.subpage-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.subpage-hero .entity-feature-box {
  height: auto !important;
  margin-bottom: 0.85rem;
  display: block;
}

.entity-feature-box {
  background: #FFFFFF;
  border-radius: 10px;
  padding: 0.85rem 1.15rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  margin-bottom: 0.85rem;
  transition: var(--transition);
}

.entity-feature-box:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-blue);
}

/* E-Commerce & Store Components */
.store-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.tab-group {
  display: flex;
  background: #E2E8F0;
  padding: 0.25rem;
  border-radius: var(--radius-md);
  gap: 0.25rem;
}

.tab-btn {
  padding: 0.6rem 1.25rem;
  border: none;
  background: transparent;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--muted-text);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn.active {
  background: #FFFFFF;
  color: var(--primary-navy);
  box-shadow: var(--shadow-sm);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.75rem;
}

.product-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--gold-primary);
  color: var(--primary-deep);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  z-index: 2;
}

.product-img {
  height: 220px;
  background: #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.05);
}

.product-info {
  padding: 1.25rem;
}

.product-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--accent-blue);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.product-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin: 0.25rem 0 0.5rem;
}

.product-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold-hover);
  margin-bottom: 1rem;
}

/* Job Portal & Portal Cards */
.job-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  transition: var(--transition);
  margin-bottom: 1.25rem;
}

.job-card:hover {
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-md);
}

.job-main h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.35rem;
}

.job-meta {
  display: flex;
  gap: 1.25rem;
  font-size: 0.85rem;
  color: var(--muted-text);
  flex-wrap: wrap;
}

.job-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* Calendar Component */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.event-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  transition: var(--transition);
}

.event-card:hover {
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-md);
}

.event-date-box {
  background: rgba(37, 99, 235, 0.08);
  color: var(--accent-blue);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  min-width: 70px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-date-box .day {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.event-date-box .month {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.event-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.25rem;
}

.event-info p {
  font-size: 0.85rem;
  color: var(--muted-text);
  margin-bottom: 0.75rem;
}

/* Filter & Search Bar */
.filter-bar {
  background: #FFFFFF;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 2.5rem;
}

.search-input-group {
  flex-grow: 1;
  position: relative;
}

.search-input-group i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.7) !important;
  pointer-events: none;
}

.search-input-group input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.6rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #000D3D !important;
  color: #FFFFFF !important;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
}

.search-input-group input::placeholder {
  color: rgba(255, 255, 255, 0.7) !important;
  opacity: 1;
}

.search-input-group input:focus {
  border-color: var(--cleva-gold);
  box-shadow: 0 0 0 3px rgba(255, 189, 89, 0.25);
  color: #FFFFFF !important;
}

.filter-select {
  padding: 0.75rem 2.6rem 0.75rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: #000D3D !important;
  color: #FFFFFF !important;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: inherit;
  min-width: 200px;
  cursor: pointer;
  outline: none;
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23FFFFFF' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") !important;
  background-repeat: no-repeat !important;
  background-position: right 1rem center !important;
  background-size: 1.25rem !important;
}

.filter-select:focus {
  border-color: var(--cleva-gold);
  box-shadow: 0 0 0 3px rgba(255, 189, 89, 0.25);
  color: #FFFFFF !important;
}

.filter-select option {
  background: #000D3D !important;
  color: #FFFFFF !important;
  font-size: 0.95rem;
  padding: 0.5rem;
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  padding: 2rem;
  position: relative;
  transform: translateY(20px);
  transition: var(--transition);
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--light-bg);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  color: var(--dark-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close:hover {
  background: #E2E8F0;
  color: var(--accent-blue);
}

.modal-header {
  margin-bottom: 1.5rem;
  padding-right: 2.5rem;
}

.modal-header h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--primary-navy);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  color: var(--dark-text);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background: #FFFFFF;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* Footer */
.footer {
  background: #021937;
  color: #94A3B8;
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  margin: 1.25rem 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: fill 0.3s ease;
}

.social-link:hover {
  background: #FFBD59 !important;
  color: #000D3D !important;
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 4px 12px rgba(255, 189, 89, 0.4);
}

.social-link:hover svg {
  fill: #000D3D !important;
}

.footer-heading {
  font-family: var(--font-heading);
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold-primary);
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--gold-primary);
  padding-left: 0.3rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background: var(--primary-navy);
  color: #FFFFFF;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-left: 4px solid var(--gold-primary);
  animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

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



/* ==========================================
   LANDING MESSAGE SLIDER STYLES
   ========================================== */
.hero-slider-section {
  position: relative;
  overflow: hidden;
  background: var(--primary-deep);
  min-height: 580px;
}

.hero-slider-container {
  position: relative;
  width: 100%;
  min-height: 580px;
}

.hero-slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-slider-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(10, 25, 47, 0.97) 0%, rgba(10, 25, 47, 0.90) 35%, rgba(10, 25, 47, 0.40) 65%, rgba(10, 25, 47, 0.15) 100%);
  z-index: 1;
}

.hero-slide-inner {
  position: relative;
  z-index: 3;
  color: #FFFFFF;
  width: 35%;
  min-width: 340px;
  max-width: 480px;
  padding: 4rem 0;
  margin-left: 0;
  margin-right: auto;
}

.hero-slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 160, 23, 0.2);
  color: var(--gold-primary);
  border: 1px solid rgba(212, 160, 23, 0.4);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-slide-title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 0.85rem;
}

.hero-slide-title span {
  color: var(--gold-primary);
}

.hero-slide-subtitle {
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  font-style: italic;
  margin-bottom: 0.85rem;
  border-left: 3px solid var(--gold-primary);
  padding-left: 0.85rem;
  line-height: 1.4;
}

.hero-slide-copy {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.hero-slide-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}

.hero-slide-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-slide-highlight-item i {
  color: var(--gold-primary);
}

.slider-controls {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--gold-primary);
  width: 28px;
  border-radius: 12px;
}

.slider-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.slider-nav-btn:hover {
  background: var(--gold-primary);
  color: var(--primary-deep);
  border-color: var(--gold-primary);
}

/* ==========================================================================
   FULL SCALE RESPONSIVE MEDIA QUERIES (DESKTOP, LAPTOP, TABLET, MOBILE)
   ========================================================================== */

/* 1. Large Laptops & Small Desktops (max-width: 1200px) */
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 3rem;
  }

  .cleva-hero-title {
    font-size: 3rem;
  }

  .cleva-hero-cards-wrapper {
    width: calc(100% + 200px);
    margin-left: -100px;
    margin-right: -100px;
  }

  .grid-3,
  .business-cards-grid,
  .entities-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

/* 2. Tablets & Medium Displays (max-width: 992px) */
@media (max-width: 992px) {
  .container {
    padding: 0 2rem;
  }

  /* Header & Navigation Mobile Drawer */
  .header {
    padding: 0.75rem 0;
  }

  .brand-logo img {
    height: 42px;
  }

  .brand-title {
    font-size: 1.15rem;
  }

  .brand-subtitle {
    display: none;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, #021937 0%, #000D3D 100%);
    color: #FFFFFF;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 14px rgba(2, 25, 55, 0.35);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .mobile-toggle:hover,
  .mobile-toggle:active {
    background: #000D3D;
    border-color: var(--cleva-gold);
    color: var(--cleva-gold);
    box-shadow: 0 6px 18px rgba(255, 184, 0, 0.25);
    transform: scale(1.04);
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #000D3D;
    flex-direction: column;
    align-items: flex-start;
    padding: 5.5rem 2rem 2rem;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    z-index: 9999;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }

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

  .nav-item {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .nav-link {
    color: #FFFFFF !important;
    font-size: 1.05rem;
    padding: 0.75rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border-radius: 12px !important;
    padding: 0.5rem !important;
    margin-top: 0.5rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    display: none;
  }

  .nav-item.active .dropdown-menu {
    display: block;
  }

  .dropdown-item {
    display: flex !important;
    align-items: center !important;
    gap: 0.65rem !important;
    padding: 0.55rem 0.6rem !important;
    border-radius: 8px !important;
    color: #FFFFFF !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .dropdown-icon {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.9rem !important;
    border-radius: 6px !important;
    flex-shrink: 0 !important;
    background: rgba(255, 255, 255, 0.1) !important;
    color: var(--cleva-gold) !important;
  }

  .dropdown-info {
    flex: 1 !important;
    min-width: 0 !important;
  }

  .dropdown-info strong {
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    color: #FFFFFF !important;
    line-height: 1.25 !important;
    white-space: normal !important;
    word-break: break-word !important;
  }

  .dropdown-info span {
    font-size: 0.72rem !important;
    font-weight: 400 !important;
    color: #94A3B8 !important;
    line-height: 1.2 !important;
    white-space: normal !important;
    word-break: break-word !important;
  }

  .nav-actions {
    margin-top: 1rem;
  }

  /* Hero & Sliders */
  .cleva-hero {
    padding: 2rem 0;
  }

  .cleva-hero-title {
    font-size: 2.3rem;
    line-height: 1.25;
  }

  .cleva-hero-subtitle {
    font-size: 1.05rem;
  }

  .hero-text-slider {
    max-width: 100%;
  }

  .hero-text-slides {
    min-height: 90px;
  }

  .cleva-hero-cards-wrapper {
    width: calc(100% + 4rem);
    margin-left: -2rem;
    margin-right: -2rem;
    margin-top: 2rem;
  }

  .cleva-hero-card-item {
    width: 280px;
    height: 400px;
  }

  .hero-slide-inner {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 3rem 0;
  }

  .hero-slider-overlay {
    background: linear-gradient(to right, rgba(10, 25, 47, 0.94) 0%, rgba(10, 25, 47, 0.85) 100%);
  }

  /* Subpages & Grids */
  .hero-grid,
  .subpage-hero,
  .contact-grid,
  .cleva-how-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .cleva-how-section,
  .cleva-testimonials-section,
  .cleva-faq-section {
    padding: 3.5rem 0;
  }

  .cleva-how-section .cleva-section-title,
  .cleva-testimonials-section h2,
  .cleva-faq-section .cleva-section-title {
    font-size: 2.1rem;
    margin-bottom: 1.25rem;
  }

  .cleva-footer-cta {
    padding: 3.5rem 1rem;
  }

  .cleva-footer-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }

  .page-header-title {
    font-size: 2.2rem;
  }

  .page-header-subtitle {
    font-size: 1rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .business-cards-grid,
  .entities-grid,
  .events-grid,
  .news-grid,
  .resources-grid,
  .careers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* 3. Phablets & Mobile Landscape (max-width: 768px) */
@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }

  .header .nav-actions .btn-sm {
    display: none;
  }

  .cleva-hero-title {
    font-size: 1.95rem;
  }

  .cleva-hero-subtitle {
    font-size: 0.98rem;
  }

  .cleva-hero-cards-wrapper {
    width: calc(100% + 2.5rem);
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .cleva-hero-card-item {
    width: 260px;
    height: 380px;
  }

  .page-header {
    padding: 2.5rem 0 2rem;
  }

  .page-header-title {
    font-size: 1.85rem;
  }

  .section {
    padding: 3rem 0;
  }

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

  /* Scaled Lower Sections (How It Works, Testimonials, FAQs, CTA) */
  .cleva-how-section,
  .cleva-testimonials-section,
  .cleva-faq-section {
    padding: 2.5rem 0;
  }

  .cleva-how-section .cleva-section-title,
  .cleva-testimonials-section h2,
  .cleva-testimonials-title,
  .cleva-faq-section .cleva-section-title,
  .cleva-faq-title {
    font-size: 1.45rem !important;
    margin-bottom: 0.85rem;
  }

  .cleva-how-section p,
  .cleva-testimonials-section p,
  .cleva-faq-section p {
    font-size: 0.92rem;
    line-height: 1.48;
  }

  .cleva-how-steps {
    margin: 1.25rem 0 1.75rem;
    gap: 1rem;
  }

  .cleva-step-badge {
    width: 28px;
    height: 28px;
    font-size: 0.82rem;
  }

  .cleva-step-text {
    font-size: 0.92rem;
  }

  .cleva-testimonial-carousel {
    justify-content: flex-start;
    gap: 0;
    padding: 0.5rem 0 1.25rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .cleva-testimonial-card {
    min-width: 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    height: auto;
    padding: 1.5rem 1.25rem;
    border-radius: 18px;
    box-sizing: border-box;
  }

  .cleva-testimonial-quote {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .cleva-testimonial-author img {
    width: 38px;
    height: 38px;
  }

  .cleva-testimonial-author strong {
    font-size: 0.9rem;
  }

  .cleva-faq-grid {
    margin-top: 1.25rem;
    gap: 0.65rem;
  }

  .cleva-faq-item {
    padding: 0.85rem 1rem;
    border-radius: 10px;
  }

  .cleva-faq-header {
    font-size: 0.88rem !important;
    line-height: 1.35;
    gap: 0.5rem;
  }

  .cleva-faq-body {
    font-size: 0.8rem !important;
    line-height: 1.48;
    margin-top: 0.5rem;
    color: #CBD5E1 !important;
  }

  .cleva-footer-cta {
    padding: 2.75rem 1rem;
  }

  .cleva-footer-cta h2 {
    font-size: 1.65rem;
    margin-bottom: 0.85rem;
  }

  .cleva-footer-cta p,
  .cleva-footer-cta-desc {
    font-size: 0.88rem !important;
    margin: 0 auto 1.25rem !important;
    line-height: 1.45 !important;
  }

  .cleva-footer-cta-buttons {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.65rem !important;
    width: 100% !important;
  }

  .cleva-footer-cta-buttons .btn {
    width: auto !important;
    padding: 0.65rem 0.85rem !important;
    font-size: 0.82rem !important;
    white-space: nowrap !important;
  }

  .cleva-footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }

  .cleva-footer-links {
    order: 1 !important;
    gap: 1rem !important;
    flex-wrap: wrap;
    justify-content: center;
  }

  .cleva-footer-links a {
    font-size: 0.78rem !important;
  }

  .cleva-copyright {
    order: 2 !important;
    font-size: 0.76rem !important;
    color: #999999;
  }

  .partners-slider-section {
    padding: 1.75rem 0 2rem;
  }

  .partners-badge {
    font-size: 0.68rem !important;
    padding: 0.35rem 0.75rem !important;
    letter-spacing: 0.06em;
    max-width: 95%;
    display: inline-block;
    white-space: normal;
    line-height: 1.3;
  }

  .partner-logo-item {
    height: 48px;
    padding: 0.4rem 0.85rem;
    border-radius: 8px;
  }

  .partner-logo-item img {
    height: 28px;
    max-width: 110px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .business-cards-grid,
  .entities-grid,
  .events-grid,
  .news-grid,
  .resources-grid,
  .careers-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .job-actions {
    width: 100%;
  }

  .job-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-buttons,
  .btn-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn,
  .btn-group .btn {
    width: 100%;
    justify-content: center;
  }

  .modal-card {
    width: 92%;
    padding: 1.5rem 1.25rem;
    max-height: 88vh;
    overflow-y: auto;
    border-radius: 16px;
  }

  .modal-header h3 {
    font-size: 1.3rem;
  }

  .form-row {
    grid-template-columns: 1fr !important;
    gap: 0;
  }

  .slider-controls {
    bottom: 1rem;
    right: 1rem;
  }
}

/* 4. Mobile Portrait (max-width: 576px) */
@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }

  .brand-logo {
    gap: 0.5rem;
  }

  .brand-title {
    font-size: 0.98rem;
  }

  .cleva-hero-title {
    font-size: 1.65rem;
    line-height: 1.3;
  }

  .cleva-how-section .cleva-section-title,
  .cleva-testimonials-section h2,
  .cleva-testimonials-title,
  .cleva-faq-section .cleva-section-title {
    font-size: 1.25rem !important;
    margin-bottom: 0.65rem;
  }

  .cleva-footer-cta p,
  .cleva-footer-cta-desc {
    font-size: 0.82rem !important;
    margin: 0 auto 1rem !important;
    line-height: 1.4 !important;
  }

  .cleva-footer-cta-buttons {
    gap: 0.45rem !important;
  }

  .cleva-footer-cta-buttons .btn {
    padding: 0.55rem 0.65rem !important;
    font-size: 0.76rem !important;
    white-space: nowrap !important;
  }

  .cleva-footer-bottom {
    margin-top: 1.75rem;
    padding-top: 1rem;
    gap: 0.5rem;
  }

  .cleva-copyright {
    font-size: 0.72rem !important;
    line-height: 1.35;
  }

  .cleva-footer-links {
    gap: 0.75rem !important;
  }

  .cleva-footer-links a {
    font-size: 0.74rem !important;
  }

  .cleva-testimonial-card {
    min-width: 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    padding: 1.25rem 1rem;
    border-radius: 14px;
  }

  .cleva-footer-cta h2 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
  }

  .cleva-hero-cards-wrapper {
    width: calc(100% + 2rem);
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .cleva-hero-cards-wrapper::before,
  .cleva-hero-cards-wrapper::after {
    width: 50px;
  }

  .cleva-hero-card-item {
    width: 240px;
    height: 360px;
  }

  .cleva-hero-card-caption {
    padding: 1rem;
  }

  .cleva-hero-card-caption h4 {
    font-size: 1.05rem;
  }

  .page-header-title {
    font-size: 1.6rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .partners-track {
    gap: 1.5rem;
  }

  .partner-logo-item {
    height: 52px;
    padding: 0.5rem 1rem;
  }

  .partner-logo-item img {
    height: 32px;
  }
}

/* ==========================================================================
   FORMS & CONTACT CARD CONTROLS (HIGH CONTRAST & ALWAYS VISIBLE)
   ========================================================================== */
.contact-card,
.modal-card {
  background: #FFFFFF !important;
  color: #000D3D !important;
}

.form-group {
  margin-bottom: 1.25rem !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  width: 100% !important;
}

.form-label {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  color: #000D3D !important;
  margin-bottom: 0.4rem !important;
  letter-spacing: 0.01em !important;
  text-align: left !important;
}

.form-control,
input[type="text"].form-control,
input[type="email"].form-control,
input[type="tel"].form-control,
input[type="number"].form-control,
select.form-control,
textarea.form-control {
  width: 100% !important;
  padding: 0.85rem 1.15rem !important;
  font-size: 0.95rem !important;
  font-family: inherit !important;
  color: #000D3D !important;
  background: #F8FAFC !important;
  border: 1.5px solid #CBD5E1 !important;
  border-radius: 8px !important;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02) !important;
  transition: all 0.2s ease-in-out !important;
  outline: none !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.form-control::placeholder {
  color: #64748B !important;
  opacity: 1 !important;
}

.form-control:focus {
  background: #FFFFFF !important;
  border-color: #000D3D !important;
  box-shadow: 0 0 0 3.5px rgba(0, 13, 61, 0.12) !important;
  color: #000D3D !important;
}

select.form-control {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23000D3D' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") !important;
  background-repeat: no-repeat !important;
  background-position: right 1rem center !important;
  background-size: 1.25rem !important;
  padding-right: 2.75rem !important;
  cursor: pointer;
}

select.form-control option {
  background: #FFFFFF !important;
  color: #000D3D !important;
  padding: 0.5rem;
}

.entity-feature-box {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 10px !important;
  padding: 0.85rem 1.15rem !important;
  margin-bottom: 0.85rem !important;
  height: auto !important;
  box-shadow: 0 2px 8px rgba(0, 13, 61, 0.04) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.entity-feature-box:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(0, 13, 61, 0.08) !important;
  border-color: #CBD5E1 !important;
}

.entity-feature-box h4 {
  font-family: var(--font-heading);
  font-size: 1rem !important;
  font-weight: 700;
  margin-bottom: 0.25rem !important;
}

.entity-feature-box p {
  font-size: 0.85rem !important;
  color: #1E293B !important;
  line-height: 1.45 !important;
  font-weight: 450 !important;
  margin-bottom: 0 !important;
}

/* ==========================================================================
   PARTNERS LOGO INFINITE SCROLLING SLIDER (ABOVE FOOTER)
   ========================================================================== */
.partners-slider-section {
  background: linear-gradient(135deg, #E0F2FE 0%, #D3E8FD 100%);
  padding: 2.5rem 0 3rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #BAE6FD;
  border-bottom: 1px solid #BAE6FD;
}

.partners-slider-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.partners-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #000D3D;
  background: rgba(0, 13, 61, 0.08);
  padding: 0.4rem 1.25rem;
  border-radius: 50px;
  border: 1px solid rgba(0, 13, 61, 0.2);
}

.partners-track-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: scrollPartners 28s linear infinite;
}

.partners-track:hover {
  animation-play-state: paused;
}

.partner-logo-item {
  flex-shrink: 0;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  border: 1px solid #BAE6FD;
  box-shadow: 0 4px 15px rgba(0, 13, 61, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-logo-item:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 25px rgba(0, 13, 61, 0.12);
}

.partner-logo-item img {
  height: 42px;
  max-width: 150px;
  width: auto;
  object-fit: contain;
}

@keyframes scrollPartners {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   EXECUTIVE LEADERSHIP & FOUNDER PROFILE STYLES
   ========================================================================== */
.founder-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 2.5rem;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 12px 35px rgba(0, 13, 61, 0.08);
  border: 1px solid #E2E8F0;
  align-items: center;
}

.founder-img-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 13, 61, 0.15);
}

.founder-img-wrapper img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: top center !important;
}

.founder-info h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: #000D3D !important;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.founder-role {
  font-size: 1rem;
  font-weight: 700;
  color: #E63946 !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
  display: block;
}

.founder-bio {
  font-size: 1.02rem;
  color: #1E293B !important;
  line-height: 1.7;
  font-weight: 450;
  margin-bottom: 1.25rem;
}

.founder-quote {
  font-style: italic;
  color: #000D3D;
  background: #F8FAFC;
  border-left: 4px solid var(--cleva-gold);
  padding: 1rem 1.25rem;
  border-radius: 0 10px 10px 0;
  font-weight: 500;
  font-size: 0.98rem;
}

.executive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.executive-card {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 13, 61, 0.06);
  border: 1px solid #E2E8F0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.executive-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 13, 61, 0.12);
}

.executive-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: top center !important;
}

.executive-info {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.executive-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #000D3D !important;
  margin-bottom: 0.25rem;
}

.executive-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #E63946 !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.85rem;
}

.executive-bio {
  font-size: 0.9rem;
  color: #334155 !important;
  line-height: 1.55;
}

@media (max-width: 992px) {
  .founder-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.75rem;
  }

  .founder-img-wrapper img {
    height: 360px;
  }

  .executive-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 576px) {
  .founder-card {
    padding: 1.25rem;
  }

  .founder-img-wrapper img {
    height: 300px;
  }

  .executive-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* Floating Circular WhatsApp Icon Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #FFFFFF !important;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.5);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: waPulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.7);
  color: #FFFFFF !important;
}

@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 576px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 28px;
  }
}