:root {
  --color-primary: #26277d;
  --color-primary-container: #3e4095;
  --color-primary-fixed-dim: #c0c1ff;
  --color-secondary: #705d00;
  --color-secondary-container: #fcd400;
  --color-tertiary-fixed: #ffe088;
  --color-surface: #ffffff;
  --color-surface-low: #f5f4e8;
  --color-surface-container: #efeee3;
  --color-surface-high: #e9e9dd;
  --color-on-surface: #1b1c15;
  --color-on-surface-variant: #464651;
  --color-outline: #777683;
  --color-outline-variant: #c7c5d3;
  --font-heading: "Poppins", "Playfair Display", serif;
  --font-body: "Manrope", Arial, sans-serif;
  --space-section: 100px;
  --space-section-sm: 80px;
  --container-max: 1280px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --shadow-sm: 0 4px 16px rgba(38, 39, 125, 0.06);
  --shadow-md: 0 12px 32px rgba(38, 39, 125, 0.12);
  --shadow-lg: 0 22px 60px rgba(38, 39, 125, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-on-surface);
  background: var(--color-surface);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.625;
  text-rendering: optimizeLegibility;
}

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

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

a:hover {
  color: var(--color-primary);
}

.text-primary {
  color: var(--color-primary) !important;
}

.text-warning {
  color: var(--color-secondary-container) !important;
}

.bg-primary {
  background-color: var(--color-primary) !important;
}

.border-warning {
  border-color: var(--color-secondary-container) !important;
}

.container-kl {
  max-width: var(--container-max);
}

.material-symbols-outlined {
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(199, 197, 211, 0.3);
  backdrop-filter: blur(14px);
}

.navbar {
  min-height: 80px;
}

.brand-logo {
  width: auto;
  height: 48px;
  object-fit: contain;
}

.nav-link-kl {
  position: relative;
  color: var(--color-on-surface-variant);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 20px;
}

.nav-link-kl.active {
  color: var(--color-primary);
}

.nav-link-kl.active::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--color-secondary-container);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(38, 39, 125, 0.72);
}

.btn-kl {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 20px;
  transition: 180ms ease;
}

.btn-primary-kl {
  color: #fff;
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.btn-primary-kl:hover {
  color: #fff;
  background: var(--color-primary-container);
  border-color: var(--color-primary-container);
  transform: translateY(-1px);
}

.btn-outline-kl {
  color: var(--color-on-surface-variant);
  background: #fff;
  border: 1px solid var(--color-outline-variant);
}

.btn-outline-kl:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-gold-kl {
  color: #221b00;
  background: var(--color-secondary-container);
  border: 1px solid var(--color-secondary-container);
}

.section-pad {
  padding-top: var(--space-section);
  padding-bottom: var(--space-section);
}

.section-pad-sm {
  padding-top: var(--space-section-sm);
  padding-bottom: var(--space-section-sm);
}

.eyebrow {
  color: var(--color-secondary);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 20px;
  text-transform: uppercase;
}

.heading-xl,
.heading-lg,
.heading-md {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0;
}

.heading-xl {
  font-size: 56px;
  line-height: 1.14;
}

.heading-lg {
  font-size: 36px;
  line-height: 1.22;
}

.heading-md {
  font-size: 24px;
  line-height: 1.34;
}

.body-lg {
  font-size: 18px;
  line-height: 1.56;
}

.text-muted-kl {
  color: var(--color-on-surface-variant);
}

.kasavu-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--color-secondary-container) 50%, transparent 100%);
}

.mandala-bg {
  background-image: radial-gradient(circle at 10% 20%, rgba(62, 64, 149, 0.035) 0%, transparent 40%);
}

.hero-home {
  position: relative;
  min-height: 750px;
  overflow: hidden;
  background: #fff;
}

.hero-cover,
.hero-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-cover img {
  object-fit: cover;
  object-position: left center;
}

.hero-panel {
  position: relative;
  z-index: 2;
  padding: 48px;
  background: rgba(255, 255, 255, 0.42);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(14px);
}

.pill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 6px 16px;
  color: var(--color-secondary);
  background: rgba(252, 212, 0, 0.16);
  border: 1px solid rgba(252, 212, 0, 0.34);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.pill-dot {
  width: 8px;
  height: 8px;
  background: var(--color-secondary);
  border-radius: 50%;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms ease;
}

.image-ratio-4x5 {
  aspect-ratio: 4 / 5;
}

.image-ratio-16x10 {
  aspect-ratio: 16 / 10;
}

.image-tall {
  min-height: 500px;
}

.image-square {
  aspect-ratio: 1;
}

.image-fixed {
  height: 260px;
  object-fit: cover;
}

.tiny {
  font-size: 10px;
}

.image-frame:hover img,
.image-card:hover img,
.leader-card:hover img {
  transform: scale(1.05);
}

.stat-number {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.feature-badge {
  position: absolute;
  bottom: -72px;
  left: -19px;
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(199, 197, 211, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: var(--color-primary);
  background: var(--color-secondary-container);
  border-radius: 50%;
}

.surface-low {
  background: rgba(245, 244, 232, 0.35);
}

.card-kl {
  background: #fff;
  border: 1px solid rgba(199, 197, 211, 0.3);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.image-card {
  overflow: hidden;
}

.image-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.image-card-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 900ms ease;
}

.image-card-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, 0.2);
  transition: background 200ms ease;
}

.image-card:hover .image-card-media::after {
  background: rgba(0, 0, 0, 0.1);
}

.tag {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  padding: 4px 14px;
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.accent-line {
  width: 48px;
  height: 2px;
  background: var(--color-secondary-container);
  transition: width 400ms ease;
}

.image-card:hover .accent-line {
  width: 96px;
}

.primary-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--color-primary);
}

.primary-band .heading-lg,
.primary-band .heading-md {
  color: #fff;
}

.primary-band p {
  color: rgba(224, 224, 255, 0.86);
}

.service-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  color: var(--color-secondary-container);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
}

.featured-program {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(199, 197, 211, 0.3);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.page-hero {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  color: #fff;
  background: var(--color-primary-container);
}

.page-hero.compact {
  min-height: auto;
  color: var(--color-on-surface);
  background: #fff;
}

.page-hero-clipped {
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 0%, rgba(38, 39, 125, 0.32) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero .heading-xl,
.page-hero .heading-lg {
  color: #fff;
}

.bento-card {
  padding: 40px;
  background: #fff;
  border: 1px solid rgba(199, 197, 211, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.quote-panel {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px 24px;
  color: var(--color-primary);
  background: rgba(38, 39, 125, 0.05);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 18px;
  font-weight: 700;
}

.icon-tile {
  display: flex;
  aspect-ratio: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(199, 197, 211, 0.4);
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.event-feature {
  overflow: hidden;
  border-top: 4px solid var(--color-secondary-container);
}

.leader-card {
  height: 100%;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(252, 212, 0, 0.25);
  border-top: 4px solid var(--color-secondary-container);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 250ms ease, transform 250ms ease;
}

.leader-card.small {
  padding: 16px;
  border-color: rgba(199, 197, 211, 0.32);
  border-top-width: 1px;
}

.leader-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.leader-photo {
  overflow: hidden;
  aspect-ratio: 1;
  margin-bottom: 24px;
  background: var(--color-surface-container);
  border-radius: var(--radius-md);
}

.leader-photo img {
  width: 100%;
  height: 100%;
  filter: grayscale(1);
  object-fit: cover;
  transition: 500ms ease;
}

.leader-card:hover .leader-photo img {
  filter: grayscale(0);
}

.contact-card {
  padding: 32px;
  background: #fff;
  border: 1px solid rgba(199, 197, 211, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.form-control-kl {
  width: 100%;
  padding: 12px 0;
  background: #fff;
  border: 0;
  border-bottom: 2px solid var(--color-outline-variant);
  border-radius: 0;
}

.form-control-kl:focus {
  border-color: var(--color-primary);
  box-shadow: none;
  outline: 0;
}

.map-frame {
  position: relative;
  height: 450px;
  overflow: hidden;
  border: 4px solid #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.map-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  max-width: 380px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.96);
  border-left: 4px solid var(--color-secondary-container);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.site-footer {
  background: #fff;
  border-top: 1px solid rgba(199, 197, 211, 0.3);
}

.footer-inner {
  padding-top: 96px;
  padding-bottom: 23px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--color-primary);
  border: 1px solid var(--color-outline-variant);
  border-radius: 50%;
  transition: 200ms ease;
}

.footer-social:hover {
  color: var(--color-secondary);
  border-color: var(--color-secondary-container);
}

.back-to-top {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 1020;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: #fff;
  background: var(--color-primary);
  border: 0;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: scale(0.84);
  transition: 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: scale(1);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-banner-video {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-banner-video .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.hero-banner-video .play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

#videoModal .modal-content {
    background-color: #000;
    border: none;
}

#videoModal .modal-header {
    border-bottom: none;
}

#videoModal .btn-close {
    background-color: #fff;
}
.bg-youtube{
  background-image: url('../images/watch-youtube.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.video-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px; /* Optional */
}

.video-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.border2{
  border: 4px solid var(--color-secondary-container);
  border-radius: var(--radius-xl);
}