@charset "UTF-8";

/* ============================================
   STS Template — Main Stylesheet
   Bootstrap 5.3.8 Extension
   Mobile First / Responsive
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Cairo:wght@400;600;700;800&display=swap');

/* ============================================
   CSS VARIABLES — DESIGN SYSTEM
   ============================================ */
:root {
  /* Primary Palette */
  --sts-dg: #1A5C38;
  --sts-mg: #2E8B57;
  --sts-lg: #D6EFE0;
  --sts-gold: #C8973A;
  --sts-lgold: #FDF3E0;
  --sts-dark: #1C1C1C;
  --sts-mid: #4A4A4A;
  --sts-light: #F8F9FA;
  --sts-white: #FFFFFF;

  /* Bootstrap Overrides */
  --bs-primary: #1A5C38;
  --bs-secondary: #C8973A;
  --bs-success: #2E8B57;
  --bs-info: #3B82F6;
  --bs-warning: #C8973A;
  --bs-danger: #DC2626;
  --bs-light: #F8F9FA;
  --bs-dark: #1C1C1C;

  --bs-font-sans-serif: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-color: var(--sts-dark);
  --bs-body-bg: var(--sts-white);

  /* Spacing */
  --section-pad-y: 5rem;
  --section-pad-y-sm: 3rem;

  /* Transitions */
  --transition-base: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   BASE / RESET
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--bs-body-font-family);
  color: var(--bs-body-color);
  background: var(--bs-body-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; transition: var(--transition-base); }
a:hover { color: var(--sts-gold); }
img { max-width: 100%; height: auto; }
::selection { background: var(--sts-gold); color: var(--sts-white); }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; color: var(--sts-dark); }
.text-gold { color: var(--sts-gold) !important; }
.text-dg { color: var(--sts-dg) !important; }
.text-mid { color: var(--sts-mid) !important; }
.fw-800 { font-weight: 800 !important; }
.display-5 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; line-height: 1.1; }
.display-6 { font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.2; }
.section-label {
  font-size: 0.75rem;
  letter-spacing: 3px;
  font-weight: 700;
  color: var(--sts-gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: inline-block;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.625rem);
  font-weight: 800;
  color: var(--sts-dg);
  margin-bottom: 1rem;
  line-height: 1.15;
}
.section-body {
  font-size: 1rem;
  color: var(--sts-mid);
  line-height: 1.75;
  max-width: 680px;
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--sts-dg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader .shield-icon {
  font-size: 3.5rem;
  color: var(--sts-gold);
  animation: pulseShield 1.5s ease-in-out infinite;
}
.preloader .preloader-text {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  margin-top: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.preloader .progress-bar {
  width: 160px;
  height: 2px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  margin-top: 1.25rem;
  overflow: hidden;
}
.preloader .progress-bar-inner {
  height: 100%;
  width: 0%;
  background: var(--sts-gold);
  border-radius: 2px;
  animation: loadProgress 1.8s ease forwards;
}
@keyframes pulseShield {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.8; }
}
@keyframes loadProgress {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* ============================================
   TOPBAR
   ============================================ */
.topbar {
  background: #0D2E1C;
  padding: 0.4rem 0;
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar a, .topbar span { color: rgba(255,255,255,0.55); }
.topbar a:hover { color: var(--sts-gold); }
.topbar .divider { color: rgba(255,255,255,0.15); margin: 0 0.5rem; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar-main {
  background: rgba(26,92,56,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 3px solid var(--sts-gold);
  padding: 0;
  min-height: 70px;
  transition: var(--transition-base);
}
.navbar-main .navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0;
}
.navbar-main .brand-shield {
  font-size: 1.75rem;
  line-height: 1;
}
.navbar-main .brand-text .brand-name {
  color: var(--sts-white);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  display: block;
}
.navbar-main .brand-text .brand-sub {
  color: var(--sts-gold);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
}
.navbar-main .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 0.6rem 0.9rem !important;
  position: relative;
}
.navbar-main .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0.3rem;
  left: 0.9rem;
  right: 0.9rem;
  height: 2px;
  background: var(--sts-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.navbar-main .nav-link:hover::after,
.navbar-main .nav-link.active::after { transform: scaleX(1); }
.navbar-main .nav-link:hover,
.navbar-main .nav-link.active { color: var(--sts-gold) !important; }
.navbar-main .dropdown-menu {
  border: none;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  border-radius: 8px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
}
.navbar-main .dropdown-item {
  font-size: 0.82rem;
  padding: 0.5rem 1.25rem;
  color: var(--sts-dark);
  font-weight: 500;
}
.navbar-main .dropdown-item:hover {
  background: var(--sts-lg);
  color: var(--sts-dg);
}
.navbar-main .btn-cta {
  background: var(--sts-gold);
  color: var(--sts-white);
  padding: 0.55rem 1.25rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  border: none;
  transition: var(--transition-base);
}
.navbar-main .btn-cta:hover { opacity: 0.9; transform: translateY(-1px); color: var(--sts-white); }
.navbar-main .navbar-toggler {
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.4rem 0.6rem;
  color: var(--sts-white);
}
.navbar-main .navbar-toggler:focus { box-shadow: none; }
.navbar-main .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Sticky / Scroll state */
.navbar-main.scrolled {
  background: rgba(26,92,56,0.98);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  min-height: 60px;
}

/* ============================================
   HERO
   ============================================ */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #0D3320 0%, #1A5C38 45%, #1E6B42 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 60px;
}
.hero-section .pattern-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  background: rgba(200,151,58,0.2);
  border: 1px solid var(--sts-gold);
  color: var(--sts-gold);
  padding: 0.35rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero-shield { font-size: 3.5rem; margin-bottom: 0.75rem; display: block; }
.hero-section h1 {
  font-size: clamp(2.25rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--sts-white);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.hero-section h1 span { color: var(--sts-gold); }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.75); margin-bottom: 0.5rem; }
.hero-arabic {
  font-size: 1.25rem;
  color: var(--sts-gold);
  margin-bottom: 1.75rem;
  font-weight: 500;
}
.hero-mission {
  background: rgba(255,255,255,0.08);
  border-left: 4px solid var(--sts-gold);
  padding: 1.1rem 1.4rem;
  border-radius: 0 8px 8px 0;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  line-height: 1.65;
  font-style: italic;
}
.btn-sts-primary {
  background: var(--sts-gold);
  color: var(--sts-white);
  padding: 0.85rem 1.75rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  transition: var(--transition-base);
  letter-spacing: 0.5px;
  border: none;
  display: inline-block;
}
.btn-sts-primary:hover { background: #B8852E; transform: translateY(-2px); color: var(--sts-white); }
.btn-sts-secondary {
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--sts-white);
  padding: 0.85rem 1.75rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: var(--transition-base);
  display: inline-block;
}
.btn-sts-secondary:hover { background: rgba(255,255,255,0.18); color: var(--sts-white); }
.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 340px;
}
.stat-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 1.4rem 1rem;
  text-align: center;
  transition: var(--transition-base);
}
.stat-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px); }
.stat-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--sts-gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.7); line-height: 1.4; }

/* Swiper hero */
.swiper-hero .swiper-slide {
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.swiper-hero .swiper-pagination-bullet {
  background: rgba(255,255,255,0.4);
  opacity: 1;
  width: 10px;
  height: 10px;
}
.swiper-hero .swiper-pagination-bullet-active { background: var(--sts-gold); }

/* ============================================
   SECTIONS — GENERAL
   ============================================ */
.section-padding { padding: var(--section-pad-y) 0; }
@media (max-width: 767.98px) {
  .section-padding { padding: var(--section-pad-y-sm) 0; }
}

/* ============================================
   WHY WE EXIST
   ============================================ */
.why-section { background: var(--sts-light); }
.gap-card {
  background: var(--sts-white);
  border-left: 4px solid var(--sts-dg);
  padding: 1.1rem 1.25rem;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--transition-base);
}
.gap-card:hover { transform: translateX(6px); box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.gap-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--sts-dg); margin-bottom: 0.4rem; }
.gap-card p { font-size: 0.82rem; color: var(--sts-mid); line-height: 1.55; margin-bottom: 0; }
.gap-card.gold-accent { border-color: var(--sts-gold); }
.big-stat {
  background: var(--sts-dg);
  border-radius: 12px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  color: var(--sts-white);
  transition: var(--transition-base);
}
.big-stat:hover { transform: translateY(-4px); }
.big-stat .num { font-size: 2rem; font-weight: 800; color: var(--sts-gold); display: block; margin-bottom: 0.5rem; }
.big-stat .lbl { font-size: 0.82rem; opacity: 0.85; line-height: 1.4; }
.big-stat.gold-bg { background: var(--sts-gold); }
.big-stat.gold-bg .num { color: var(--sts-dg); }

/* ============================================
   SIX MODES
   ============================================ */
.mode-card {
  background: var(--sts-dg);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-base);
  height: 100%;
}
.mode-card:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(26,92,56,0.25); }
.mode-header {
  background: rgba(0,0,0,0.25);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.mode-icon { font-size: 1.5rem; }
.mode-title { font-size: 0.9rem; font-weight: 700; color: var(--sts-gold); margin: 0; }
.mode-body { padding: 1.1rem 1.25rem; }
.mode-body p { font-size: 0.82rem; color: rgba(255,255,255,0.8); line-height: 1.6; margin-bottom: 0; }

/* ============================================
   STSP CERTIFICATION
   ============================================ */
.stsp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}
.stsp-level {
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition-base);
}
.stsp-level:nth-child(1) { background: #5B8A6B; }
.stsp-level:nth-child(2) { background: var(--sts-mg); }
.stsp-level:nth-child(3) { background: var(--sts-dg); }
.stsp-level:nth-child(4) { background: #0D2E1C; }
.stsp-level:hover { filter: brightness(1.1); }
.stsp-code { font-size: 1.5rem; font-weight: 800; color: var(--sts-white); margin-bottom: 0.25rem; }
.stsp-name { font-size: 0.82rem; color: rgba(255,255,255,0.7); margin-bottom: 1rem; font-style: italic; }
.stsp-divider { width: 40px; height: 2px; background: var(--sts-gold); margin: 0 auto 1rem; }
.stsp-for { font-size: 0.75rem; color: rgba(255,255,255,0.85); line-height: 1.55; }

/* ============================================
   7 STEPS / BLUEPRINT
   ============================================ */
.steps-section { background: var(--sts-lg); }
.step-card {
  background: var(--sts-white);
  border-radius: 12px;
  padding: 1.75rem;
  position: relative;
  box-shadow: 0 2px 16px rgba(26,92,56,0.08);
  transition: var(--transition-base);
  height: 100%;
}
.step-card:hover { transform: translateY(-5px); box-shadow: 0 8px 28px rgba(26,92,56,0.14); }
.step-num {
  position: absolute;
  top: -14px;
  left: 1.25rem;
  background: var(--sts-dg);
  color: var(--sts-white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.875rem;
}
.step-title { font-size: 1rem; font-weight: 700; color: var(--sts-dg); margin: 0.6rem 0 0.6rem; }
.step-body { font-size: 0.82rem; color: var(--sts-mid); line-height: 1.6; margin-bottom: 0; }
.step-badge {
  display: inline-block;
  background: var(--sts-lgold);
  color: var(--sts-gold);
  padding: 0.2rem 0.6rem;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 0.75rem;
}

/* ============================================
   TIMELINE (New Module)
   ============================================ */
.timeline-section { position: relative; }
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--sts-lg);
  transform: translateX(-50%);
}
.timeline-item { position: relative; margin-bottom: 2.5rem; }
.timeline-dot {
  position: absolute;
  left: 50%;
  top: 0;
  width: 16px;
  height: 16px;
  background: var(--sts-gold);
  border: 3px solid var(--sts-white);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 3px var(--sts-lg);
  z-index: 2;
}
.timeline-content {
  background: var(--sts-white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  width: calc(50% - 2rem);
}
.timeline-item.left .timeline-content { margin-right: auto; }
.timeline-item.right .timeline-content { margin-left: auto; }
@media (max-width: 767.98px) {
  .timeline-line { left: 1rem; }
  .timeline-dot { left: 1rem; }
  .timeline-content { width: calc(100% - 3rem); margin-left: auto !important; margin-right: 0 !important; }
}

/* ============================================
   PARTNERS
   ============================================ */
.partners-section { background: var(--sts-light); }
.partner-card {
  background: var(--sts-white);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--transition-base);
  height: 100%;
}
.partner-card:hover { transform: translateY(-4px); box-shadow: 0 6px 24px rgba(0,0,0,0.1); }
.partner-name { font-size: 0.95rem; font-weight: 700; color: var(--sts-dg); margin-bottom: 0.25rem; }
.partner-type { font-size: 0.7rem; color: var(--sts-gold); letter-spacing: 1.5px; font-weight: 600; margin-bottom: 0.6rem; display: block; }
.partner-desc { font-size: 0.82rem; color: var(--sts-mid); line-height: 1.55; margin-bottom: 0; }

/* ============================================
   BOARD CTA
   ============================================ */
.board-cta {
  background: linear-gradient(135deg, #0D3320 0%, #1A5C38 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.board-cta .cta-bg-icon {
  position: absolute;
  font-size: 12rem;
  opacity: 0.04;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.board-cta h2 {
  font-size: clamp(1.75rem, 4vw, 2.875rem);
  font-weight: 800;
  color: var(--sts-white);
  margin-bottom: 1.1rem;
}
.board-cta p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.cta-steps {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 700px;
  margin: 0 auto 2.75rem;
}
.cta-step { flex: 1; text-align: center; position: relative; }
.cta-step:not(:last-child)::after {
  content: '\2192';
  position: absolute;
  right: -10px;
  top: 18px;
  color: var(--sts-gold);
  font-size: 1.1rem;
}
.cta-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sts-gold);
  color: var(--sts-white);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.6rem;
}
.cta-step p { font-size: 0.75rem; color: rgba(255,255,255,0.75); line-height: 1.4; margin: 0; }
@media (max-width: 575.98px) {
  .cta-steps { flex-direction: column; gap: 1.25rem; }
  .cta-step:not(:last-child)::after { display: none; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer-main {
  background: #0D2E1C;
  padding: 3.5rem 0 1.5rem;
}
.footer-brand .shield { font-size: 2.25rem; margin-bottom: 0.6rem; display: block; }
.footer-brand h3 { color: var(--sts-white); font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.82rem; line-height: 1.6; max-width: 280px; margin-bottom: 1rem; }
.footer-contact { font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.8; }
.footer-contact a { color: var(--sts-gold); text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }
.footer-col h4 { color: var(--sts-white); font-size: 0.82rem; font-weight: 700; margin-bottom: 1rem; letter-spacing: 1px; text-transform: uppercase; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: rgba(255,255,255,0.55); font-size: 0.82rem; text-decoration: none; transition: var(--transition-base); }
.footer-col ul li a:hover { color: var(--sts-gold); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-bottom: 0; }
.footer-bottom .gold { color: var(--sts-gold); }

/* ============================================
   NEW MODULES — THEMEFOREST BUSINESS FEATURES
   ============================================ */

/* --- Client Logos Marquee --- */
.logo-marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: 2rem 0;
}
.logo-track {
  display: inline-flex;
  animation: marqueeScroll 25s linear infinite;
}
.logo-track:hover { animation-play-state: paused; }
.logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 0 2rem;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: var(--transition-base);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--sts-dark);
}
.logo-item:hover { opacity: 1; filter: grayscale(0%); }
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Animated Counters --- */
.counter-box {
  text-align: center;
  padding: 1.5rem;
}
.counter-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--sts-dg);
  line-height: 1;
}
.counter-label {
  font-size: 0.8rem;
  color: var(--sts-mid);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Testimonials --- */
.testimonial-card {
  background: var(--sts-white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  height: 100%;
}
.testimonial-stars { color: var(--sts-gold); font-size: 0.9rem; margin-bottom: 1rem; }
.testimonial-text { font-size: 0.9rem; color: var(--sts-mid); line-height: 1.7; font-style: italic; margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sts-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--sts-dg);
  font-size: 0.9rem;
}
.testimonial-name { font-size: 0.85rem; font-weight: 700; color: var(--sts-dark); margin: 0; }
.testimonial-role { font-size: 0.75rem; color: var(--sts-mid); margin: 0; }

/* --- Team Cards --- */
.team-card {
  background: var(--sts-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--transition-base);
  height: 100%;
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.team-img-wrap {
  height: 220px;
  background: linear-gradient(135deg, var(--sts-dg), var(--sts-mg));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.team-img-wrap .team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 3px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.team-social {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.5rem;
  opacity: 0;
  transition: var(--transition-base);
}
.team-card:hover .team-social { opacity: 1; }
.team-social a {
  color: var(--sts-white);
  font-size: 0.85rem;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.team-social a:hover { background: var(--sts-gold); color: var(--sts-white); }
.team-info { padding: 1.25rem; text-align: center; }
.team-name { font-size: 1rem; font-weight: 700; color: var(--sts-dark); margin-bottom: 0.25rem; }
.team-role { font-size: 0.8rem; color: var(--sts-gold); font-weight: 600; margin-bottom: 0.5rem; }
.team-bio { font-size: 0.8rem; color: var(--sts-mid); line-height: 1.5; margin-bottom: 0; }

/* --- Pricing Tables --- */
.pricing-card {
  background: var(--sts-white);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--transition-base);
  height: 100%;
  border: 2px solid transparent;
  text-align: center;
}
.pricing-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.pricing-card.featured { border-color: var(--sts-gold); position: relative; }
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sts-gold);
  color: var(--sts-white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pricing-name { font-size: 0.85rem; font-weight: 700; color: var(--sts-dg); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; }
.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--sts-dark);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.pricing-price span { font-size: 1rem; font-weight: 500; color: var(--sts-mid); }
.pricing-period { font-size: 0.8rem; color: var(--sts-mid); margin-bottom: 1.25rem; }
.pricing-features { list-style: none; padding: 0; margin: 0 0 1.5rem; text-align: left; }
.pricing-features li {
  font-size: 0.85rem;
  color: var(--sts-mid);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--sts-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pricing-features li i { color: var(--sts-dg); font-size: 0.9rem; }

/* --- FAQ Accordion --- */
.accordion-sts .accordion-item {
  border: none;
  border-bottom: 1px solid var(--sts-light);
  background: transparent;
}
.accordion-sts .accordion-button {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--sts-dark);
  padding: 1.25rem 0;
  background: transparent;
  box-shadow: none;
}
.accordion-sts .accordion-button:not(.collapsed) {
  color: var(--sts-dg);
  background: transparent;
}
.accordion-sts .accordion-button::after {
  width: 1rem;
  height: 1rem;
  background-size: 1rem;
  filter: invert(28%) sepia(18%) saturate(1968%) hue-rotate(101deg) brightness(93%) contrast(88%);
}
.accordion-sts .accordion-body {
  padding: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--sts-mid);
  line-height: 1.7;
}

/* --- Blog Cards --- */
.blog-card {
  background: var(--sts-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--transition-base);
  height: 100%;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.blog-img {
  height: 200px;
  background: linear-gradient(135deg, var(--sts-dg), var(--sts-mg));
  position: relative;
}
.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--sts-gold);
  color: var(--sts-white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-content { padding: 1.25rem; }
.blog-meta { font-size: 0.75rem; color: var(--sts-mid); margin-bottom: 0.5rem; }
.blog-meta i { color: var(--sts-gold); margin-right: 0.25rem; }
.blog-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--sts-dark);
  margin-bottom: 0.5rem;
  line-height: 1.35;
  transition: var(--transition-base);
}
.blog-card:hover .blog-title { color: var(--sts-dg); }
.blog-excerpt { font-size: 0.82rem; color: var(--sts-mid); line-height: 1.6; margin-bottom: 0.75rem; }
.blog-readmore {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--sts-dg);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.blog-readmore:hover { color: var(--sts-gold); gap: 0.5rem; }

/* --- Portfolio / Gallery --- */
.portfolio-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}
.portfolio-img { width: 100%; height: 260px; object-fit: cover; transition: var(--transition-slow); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,92,56,0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-base);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-item:hover .portfolio-img { transform: scale(1.08); }
.portfolio-overlay h5 { color: var(--sts-white); font-weight: 700; margin-bottom: 0.25rem; }
.portfolio-overlay p { color: var(--sts-gold); font-size: 0.8rem; margin-bottom: 0; }
.portfolio-overlay i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sts-gold);
  color: var(--sts-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

/* --- Video Section --- */
.video-section {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0D3320, #1A5C38);
  border-radius: 12px;
  overflow: hidden;
}
.video-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--sts-gold);
  color: var(--sts-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border: none;
  transition: var(--transition-base);
  position: relative;
  z-index: 2;
}
.video-play-btn::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(200,151,58,0.4);
  animation: playPulse 2s ease-in-out infinite;
}
.video-play-btn:hover { transform: scale(1.1); background: #B8852E; }
@keyframes playPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.5; }
}

/* --- Newsletter --- */
.newsletter-box {
  background: var(--sts-dg);
  border-radius: 12px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.newsletter-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}
.newsletter-box h3 { color: var(--sts-white); font-weight: 700; margin-bottom: 0.5rem; }
.newsletter-box p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 0; }
.newsletter-form .form-control {
  border: none;
  padding: 0.85rem 1.25rem;
  font-size: 0.9rem;
  border-radius: 6px 0 0 6px;
}
.newsletter-form .btn {
  background: var(--sts-gold);
  color: var(--sts-white);
  font-weight: 700;
  padding: 0.85rem 1.5rem;
  border: none;
  border-radius: 0 6px 6px 0;
}
.newsletter-form .btn:hover { background: #B8852E; }

/* --- Contact Form --- */
.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid #E5E7EB;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: var(--transition-base);
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--sts-dg);
  box-shadow: 0 0 0 3px rgba(26,92,56,0.1);
}
.contact-form label { font-size: 0.85rem; font-weight: 600; color: var(--sts-dark); margin-bottom: 0.4rem; }
.contact-info-card {
  background: var(--sts-white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--transition-base);
  height: 100%;
}
.contact-info-card:hover { transform: translateY(-4px); }
.contact-info-card .icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--sts-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sts-dg);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.contact-info-card h5 { font-size: 0.95rem; font-weight: 700; color: var(--sts-dark); margin-bottom: 0.4rem; }
.contact-info-card p { font-size: 0.85rem; color: var(--sts-mid); margin-bottom: 0; }

/* --- Breadcrumb --- */
.breadcrumb-section {
  background: linear-gradient(135deg, #0D3320, #1A5C38);
  padding: 5rem 0 3rem;
  position: relative;
}
.breadcrumb-section h1 { color: var(--sts-white); font-weight: 800; margin-bottom: 0.5rem; }
.breadcrumb-section .breadcrumb { background: none; padding: 0; margin: 0; }
.breadcrumb-section .breadcrumb-item { font-size: 0.85rem; }
.breadcrumb-section .breadcrumb-item a { color: rgba(255,255,255,0.7); }
.breadcrumb-section .breadcrumb-item a:hover { color: var(--sts-gold); }
.breadcrumb-section .breadcrumb-item.active { color: var(--sts-gold); }
.breadcrumb-section .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sts-dg);
  color: var(--sts-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-base);
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--sts-gold); color: var(--sts-white); }

/* --- Cookie Consent --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--sts-dark);
  padding: 1rem 0;
  z-index: 9998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { color: rgba(255,255,255,0.8); font-size: 0.85rem; margin: 0; }
.cookie-banner .btn-cookie {
  background: var(--sts-gold);
  color: var(--sts-white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border: none;
  border-radius: 4px;
}
.cookie-banner .btn-cookie:hover { background: #B8852E; }

/* --- 404 Page --- */
.error-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.error-404 .error-code {
  font-size: clamp(6rem, 15vw, 10rem);
  font-weight: 800;
  color: var(--sts-dg);
  line-height: 1;
  opacity: 0.15;
}
.error-404 h2 { font-weight: 800; margin-bottom: 1rem; }

/* --- Inner Page Sections --- */
.page-content h2, .page-content h3 { color: var(--sts-dg); margin-bottom: 1rem; margin-top: 2rem; }
.page-content p { color: var(--sts-mid); line-height: 1.8; margin-bottom: 1rem; }
.page-content ul { color: var(--sts-mid); line-height: 1.8; margin-bottom: 1rem; }
.page-content ul li { margin-bottom: 0.5rem; }
.service-detail-icon {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  background: var(--sts-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--sts-dg);
  margin-bottom: 1rem;
}

/* --- Pagination --- */
.pagination-sts .page-link {
  color: var(--sts-dg);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 0.85rem;
  border-color: #E5E7EB;
}
.pagination-sts .page-link:hover { background: var(--sts-lg); border-color: var(--sts-dg); color: var(--sts-dg); }
.pagination-sts .page-item.active .page-link {
  background: var(--sts-dg);
  border-color: var(--sts-dg);
  color: var(--sts-white);
}

/* --- Sidebar Widgets --- */
.widget {
  background: var(--sts-white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  margin-bottom: 1.5rem;
}
.widget-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--sts-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--sts-lg);
}
.widget-list { list-style: none; padding: 0; margin: 0; }
.widget-list li { border-bottom: 1px solid var(--sts-light); }
.widget-list li:last-child { border: none; }
.widget-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  font-size: 0.85rem;
  color: var(--sts-mid);
  font-weight: 500;
}
.widget-list li a:hover { color: var(--sts-dg); padding-left: 4px; }
.widget-list li a span { color: var(--sts-gold); font-weight: 700; font-size: 0.75rem; }

/* --- Tags --- */
.tag-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag-list a {
  background: var(--sts-light);
  color: var(--sts-mid);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tag-list a:hover { background: var(--sts-dg); color: var(--sts-white); }

/* ============================================
   AOS ANIMATION OVERRIDES
   ============================================ */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ============================================
   SWIPER CUSTOMIZATION
   ============================================ */
.swiper-button-next, .swiper-button-prev {
  color: var(--sts-dg);
  width: 40px;
  height: 40px;
  background: var(--sts-white);
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.swiper-button-next:after, .swiper-button-prev:after { font-size: 1rem; font-weight: 700; }
.swiper-pagination-bullet-active { background: var(--sts-dg); }

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 991.98px) {
  .navbar-main .navbar-collapse {
    background: rgba(13,46,28,0.98);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 0.75rem;
    max-height: 80vh;
    overflow-y: auto;
  }
  .navbar-main .dropdown-menu {
    background: rgba(255,255,255,0.05);
    box-shadow: none;
    border-radius: 4px;
  }
  .navbar-main .dropdown-item { color: rgba(255,255,255,0.8); }
  .navbar-main .dropdown-item:hover { background: rgba(255,255,255,0.08); color: var(--sts-gold); }
  .hero-section { padding-top: 80px; }
  .stsp-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767.98px) {
  .hero-stats-grid { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .stsp-grid { grid-template-columns: 1fr; }
  .timeline-line { left: 1rem; }
  .timeline-dot { left: 1rem; }
  .timeline-content { width: calc(100% - 3rem); margin-left: auto !important; }
  .newsletter-form .form-control { border-radius: 6px; }
  .newsletter-form .btn { border-radius: 6px; margin-top: 0.5rem; width: 100%; }
}

@media (max-width: 575.98px) {
  .navbar-main .brand-name { font-size: 0.8rem; }
  .navbar-main .brand-sub { font-size: 0.6rem; }
  .hero-shield { font-size: 2.5rem; }
  .board-cta { padding: 3rem 0; }
  .footer-main { padding: 2.5rem 0 1rem; }
}
