/* ============================================================
   CEEIA 88<sup>th</sup> — Common Design System
   Shared: reset, variables, typography, header, footer,
   buttons, utilities, responsive grid, animations
   ============================================================ */

/* ----- CSS Reset ----- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  background-color: #ffffff;
  color: #0f2340;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.index_body{background-color: #ffffff;}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul,
ol {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ----- Custom Scrollbar ----- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #d2d6dd;
}
::-webkit-scrollbar-thumb {
  background: #acb6c6;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #203146;
}

/* ----- Design Tokens (CSS Variables) ----- */
:root {
  /* Primary palette */
  --c-navy: #0f2340;
  --c-navy-light: #243447;
  --c-red: #b91c3c;
  --c-red-hover: #a01028;
  --c-red-light: rgba(196, 18, 48, 0.08);
  --c-gold: #c4963c;
  --c-gold-light: rgba(196, 150, 60, 0.1);
  --c-blue: #194a8a;
  --c-blue-light: rgba(25, 74, 138, 0.1);
  --c-blue-text: #bbd6fa;
  --c-green: #22a65a;
  --c-green-light: rgba(34, 166, 90, 0.1);

  /* Neutrals */
  --c-text: #0f2340;
  --c-text-mid: #64748b;
  --c-text-light: #8c96a3;
  --c-bg: #f5f6f8;
  --c-bg-gray: #f5f6f8;
  --c-border: #e2e5ea;
  --c-white: #ffffff;
  --c-white-a10: rgba(255, 255, 255, 0.1);
  --c-white-a20: rgba(255, 255, 255, 0.2);
  --c-white-a60: rgba(255, 255, 255, 0.6);
  --c-white-a70: rgba(255, 255, 255, 0.7);
  --c-white-a80: rgba(255, 255, 255, 0.8);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 12px 40px rgba(27, 40, 56, 0.25);

  /* Radii */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;

  /* Transitions */
  --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.6, 1);
}

/* ----- Layout Container ----- */
.section-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .section-container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .section-container {
    padding: 0 2rem;
  }
}

/* ----- Buttons ----- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.75rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  background: var(--c-red);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 14px rgba(196, 18, 48, 0.3);
  transition: all 0.25s var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--c-red-hover);
  box-shadow: 0 6px 20px rgba(196, 18, 48, 0.4);
  transform: translateY(-2px);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-primary--lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}
.btn-primary--sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.75rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(27, 40, 56, 0.2);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.75rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--c-navy);
  background: transparent;
  border: 2px solid var(--c-navy);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
}
.btn-outline:hover {
  background: var(--c-navy);
  color: #fff;
  transform: translateY(-2px);
}

/* ----- Text Gradient (Gold) ----- */
.text-gradient-gold {
  background: linear-gradient(135deg, #d4a843 0%, #f5e6c3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ----- Section Title ----- */
.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-title__heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 0.5rem;
}
.section-title__subtitle {
  font-size: 1.0625rem;
  color: var(--c-text-mid);
  max-width: 42rem;
  margin: 0 auto;
}
.section-title__divider {
  width: 40px;
  height: 4px;
  margin: 1rem auto 0;
  border-radius: 9999px;
  background: var(--c-red);
}
.section-title--light .section-title__heading {
  color: #fff;
}
.section-title--light .section-title__subtitle {
  color: rgba(255, 255, 255, 0.7);
}
.section-title--light .section-title__divider {
  background: var(--c-gold);
}

@media (min-width: 768px) {
  .section-title {
    margin-bottom: 3.5rem;
  }
  .section-title__heading {
    font-size: 2.125rem;
  }
}

/* ----- Icon wrapper ----- */
.icon, .iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon svg {
  display: block;
}

/* ================================================================
   TOP BAR
   ================================================================ */
.topbar {
  background: var(--c-navy);
  color: #fff;
  font-size: 0.75rem;
  padding: 0.5rem 0;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.topbar__left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.topbar__title {
  font-weight: 600;
  letter-spacing: 0.025em;
  white-space: nowrap;
}
.topbar__sep {
  color: var(--c-blue-text);
  display: none;
}
.topbar__date {
  color: var(--c-blue-text);
  display: none;
}
@media (min-width: 640px) {
  .topbar__sep,
  .topbar__date {
    display: inline;
  }
}
.topbar__lang {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--c-blue-text);
  transition: color 0.2s;
  cursor: pointer;
  flex-shrink: 0;
  white-space: nowrap;
}
.topbar__lang:hover {
  color: #fff;
}
@media (max-width: 639px) {
  .topbar__lang span {
    display: none;
  }
}

.topbar__logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.topbar__logo-img {
  height: 2.2rem;
  width: auto;
  display: block;
}
@media (max-width: 639px) {
  .topbar__logo-img {
    height: 1.8rem;
    width: auto;
    max-width: none;
  }
}

/* ================================================================
   NAVIGATION
   ================================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--c-border);
  transition: all 0.3s var(--ease-out);
}
.navbar--scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.5rem;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.navbar__logo-img {
  height: 2.5rem;
  width: auto;
  display: block;
}
.navbar__logo-icon {
  width: 36px;
  height: 36px;
  background: var(--c-red);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.8125rem;
}
.navbar__logo-text {
  font-weight: 700;
  font-size: 1rem;
  color: var(--c-navy);
}
.navbar__logo-sub {
  display: none;
  font-size: 0.625rem;
  color: var(--c-text-mid);
  line-height: 1.2;
}
@media (min-width: 640px) {
  .navbar__logo-sub {
    display: block;
  }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.125rem;
}
.nav-links a {
  padding: 0.5rem 1.2rem;
  font-size: 1.125rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  color: var(--c-text-mid);
  transition:
    color 0.2s,
    background 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--c-red);
}
.nav-links a.active {
  background: var(--c-red-light);
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

/* Mobile toggle */
.navbar__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  color: var(--c-text-mid);
  transition: color 0.2s;
}
.navbar__toggle:hover {
  color: var(--c-navy);
}
@media (min-width: 1024px) {
  .navbar__toggle {
    display: none;
  }
}

/* Mobile menu */
.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid var(--c-border);
  padding: 0.75rem 1rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}
.mobile-menu.is-open {
  display: block;
}
.mobile-menu a {
  display: block;
  padding: 0.625rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-text-mid);
  transition: background 0.2s;
}
.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--c-red);
  background: var(--c-red-light);
}

/* ================================================================
   PAGE HEADER BANNER (shared by category & subpages)
   ================================================================ */
.page-header {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--c-navy), var(--c-navy-light));
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  .page-header {
    padding: 3rem 2.5rem;
  }
}
.page-header__deco-top {
  position: absolute;
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  background: rgba(196, 18, 48, 0.05);
  border-radius: 50%;
  transform: translate(33%, -50%);
}
.page-header__deco-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 12rem;
  height: 12rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  transform: translate(-33%, 50%);
}
.page-header__content {
  position: relative;
}
.page-header__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
@media (min-width: 1024px) {
  .page-header__title {
    font-size: 2.25rem;
  }
}
.page-header__divider {
  width: 40px;
  height: 4px;
  background: var(--c-red);
  border-radius: 9999px;
  margin-bottom: 1rem;
}
.page-header__desc {
  font-size: 1rem;
  color: var(--c-white-a70);
  max-width: 42rem;
  line-height: 1.7;
}
@media (min-width: 1024px) {
  .page-header__desc {
    font-size: 1.125rem;
  }
}

/* ================================================================
   BREADCRUMB
   ================================================================ */
.breadcrumb {
  background: #fff;
  border-bottom: 1px solid var(--c-border);
}
.breadcrumb__inner {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 0.8125rem;
  color: var(--c-text-light);
}
.breadcrumb a {
  color: var(--c-text-light);
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--c-navy);
}
.breadcrumb__sep {
  color: var(--c-text-light);
}
.breadcrumb__current {
  color: var(--c-red);
  font-weight: 500;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--c-navy);
  color: #fff;
  margin-top: auto;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 1rem;
}
@media (min-width: 640px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: repeat(4, 1fr);
    padding: 4rem 0;
  }
}

.footer__col-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}
.footer__col-title .icon, .footer__col-title .iconfont {
  color: rgb(212, 168, 67);
}
.footer__col p,
.footer__col a {
  font-size: 0.6875rem;
  color: var(--c-blue-text);
  line-height: 1.7;
  display: block;
}
.footer__col a {
  transition: color 0.2s;
}
.footer__col a:hover {
  color: #fff;
}
.footer__contact-label {
  color: var(--c-white-a80);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
.footer__contact-row {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 0.125rem;
}

.footer__bottom {
  border-top: 1px solid var(--c-white-a10);
  padding: 1.25rem 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    padding: 1.25rem 0;
  }
}
.footer__copyright {
  font-size: 0.75rem;
  color: var(--c-blue-text);
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer__social a {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--c-white-a10);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.footer__social a:hover {
  background: rgb(212, 168, 67);
}

/* ================================================================
   ANIMATIONS & REVEAL
   ================================================================ */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-pulse {
  animation: pulse 2s var(--ease-in-out) infinite;
}

.reveal-item {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.4s var(--ease-out),
    transform 0.4s var(--ease-out);
}
.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}
/* Staggered delays */
.reveal-item:nth-child(1) {
  transition-delay: 0ms;
}
.reveal-item:nth-child(2) {
  transition-delay: 60ms;
}
.reveal-item:nth-child(3) {
  transition-delay: 120ms;
}
.reveal-item:nth-child(4) {
  transition-delay: 180ms;
}
.reveal-item:nth-child(5) {
  transition-delay: 240ms;
}
.reveal-item:nth-child(6) {
  transition-delay: 300ms;
}
.reveal-item:nth-child(7) {
  transition-delay: 360ms;
}
.reveal-item:nth-child(8) {
  transition-delay: 420ms;
}

/* ================================================================
   UTILITY
   ================================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.service-cards-grid{
	margin-top:2rem;
	margin-bottom:2rem;
}
.text-red {
  color: var(--c-red);
}
.text-navy {
  color: var(--c-navy);
}
.text-mid {
  color: var(--c-text-mid);
}
.text-light {
  color: var(--c-text-light);
}
.icon-facebook:before {
    content: "\e6e5";
}
.icon-linkedin:before {
    content: "\e774";
}
.icon-youtube:before {
    content: "\e880";
}
.icon-twitter:before {
    content: "\e6eb";
}
.icon-menu:before {
    content: "\e791"
}
.reveal-item .icon-book-open:before {
    content: "\e699"
}
.reveal-item .icon-building:before {
    content: "\e6d2"
}
.reveal-item .icon-check:before {
    content: "\e63a"
}
.reveal-item .icon-users:before {
    content: "\e65b"
}
.reveal-item .icon-calendar:before {
    content: "\e633"
}
.reveal-item .icon-mic:before {
    content: "\e674"
}
.reveal-item .icon-monitor:before {
    content: "\e68b"
}
.reveal-item .icon-map-pin:before {
    content: "\e612"
}
.reveal-item .icon-star:before {
    content: "\e628"
}
.reveal-item .icon-award:before {
    content: "\e620"
}
.reveal-item .icon-bus:before {
    content: "\e69f"
}
.reveal-item .icon-eat:before {
    content: "\e6b1"
}
.reveal-item .icon-mail:before {
    content: "\e65e"
}
.reveal-item .icon-handshake:before {
    content: "\e6cd"
}
.navbar__toggle .icon-close:before {
    content: "\e625"
}
.page-content img{display:inline-block;}
/*.english-text{text-align: justify;text-justify: inter-word;}*/
