/* ===== TAJA CONNECT — MODERN DESIGN SYSTEM ===== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  /* Brand Colors */
  --navy:       #0C1A3A;
  --blue:       #1D4ED8;
  --blue-light: #3B82F6;
  --blue-glow:  rgba(29, 78, 216, 0.15);
  --orange:     #F97316;
  --orange-dark:#EA6000;
  --orange-glow:rgba(249, 115, 22, 0.20);

  /* Neutrals */
  --dark:       #0F172A;
  --body:       #334155;
  --muted:      #64748B;
  --border:     #E2E8F0;
  --bg:         #F8FAFF;
  --bg-card:    #FFFFFF;

  /* Gradients */
  --grad-hero:   linear-gradient(135deg, #080f1e 0%, #0C1A3A 45%, #1a2f6a 100%);
  --grad-brand:  linear-gradient(135deg, #1D4ED8 0%, #3B82F6 100%);
  --grad-orange: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
  --grad-card:   linear-gradient(145deg, #1D4ED8 0%, #1e40af 100%);

  /* Effects */
  --shadow-sm:   0 2px 10px rgba(12, 26, 58, 0.07);
  --shadow:      0 6px 28px rgba(12, 26, 58, 0.12);
  --shadow-lg:   0 16px 48px rgba(12, 26, 58, 0.18);
  --shadow-blue: 0 8px 32px rgba(29, 78, 216, 0.25);
  --shadow-orange:0 8px 32px rgba(249, 115, 22, 0.30);

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --t:         all 0.3s var(--ease);
  --t-fast:    all 0.18s var(--ease);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--body);
  background: #fff;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--dark);
  line-height: 1.2;
  font-weight: 700;
}
a { color: var(--blue); text-decoration: none; transition: var(--t-fast); }
a:hover { color: var(--orange); }
img { max-width: 100%; height: auto; display: block; }

/* ===== LAYOUT UTILITIES ===== */
.section-py   { padding: 96px 0; }
.section-py-sm{ padding: 64px 0; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(29,78,216,0.08);
  color: var(--blue);
  border: 1px solid rgba(29,78,216,0.18);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.chip-orange {
  background: rgba(249,115,22,0.08);
  color: var(--orange-dark);
  border-color: rgba(249,115,22,0.2);
}
.chip-white {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.section-title .t-blue {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-title .t-orange {
  background: var(--grad-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-desc {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0.8rem auto 0;
  line-height: 1.8;
}
.section-desc.left { margin-left: 0; }

.rule {
  width: 48px;
  height: 4px;
  border-radius: 4px;
  background: var(--grad-orange);
  margin: 0.8rem auto 1.4rem;
}
.rule.left { margin-left: 0; }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.topbar a { color: rgba(255,255,255,0.75); }
.topbar a:hover { color: #FBBF24; }
.topbar i { margin-right: 5px; color: var(--orange); }

/* ===== NAVBAR ===== */
.navbar {
  background: rgba(255,255,255,0.97) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 var(--border);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1050;
  transition: var(--t);
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(12,26,58,0.10) !important;
}
.brand-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.brand-sub {
  font-size: 0.65rem;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.navbar-nav .nav-link {
  color: var(--dark) !important;
  font-weight: 600;
  font-size: 0.87rem;
  padding: 1.3rem 1rem !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 3px;
  background: var(--grad-orange);
  border-radius: 3px 3px 0 0;
  transition: var(--t);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--blue) !important; }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: 80%; }

.btn-nav-cta {
  background: var(--grad-orange);
  color: #fff !important;
  border-radius: 50px !important;
  padding: 0.55rem 1.4rem !important;
  font-weight: 700 !important;
  font-size: 0.87rem !important;
  margin-left: 0.5rem;
  box-shadow: var(--shadow-orange);
  letter-spacing: 0.3px;
  transition: var(--t) !important;
}
.btn-nav-cta::after { display: none !important; }
.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(249,115,22,0.40) !important;
}

.dropdown-menu {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
  margin-top: 6px;
}
.dropdown-item {
  font-size: 0.87rem;
  font-weight: 500;
  padding: 0.6rem 1.3rem;
  color: var(--body);
  transition: var(--t-fast);
}
.dropdown-item:hover {
  background: var(--bg);
  color: var(--blue);
  padding-left: 1.8rem;
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--grad-brand);
  color: #fff;
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--t);
  box-shadow: var(--shadow-blue);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(29,78,216,0.38);
}
.btn-orange {
  background: var(--grad-orange);
  color: #fff;
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--t);
  box-shadow: var(--shadow-orange);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-orange:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(249,115,22,0.42);
}
.btn-ghost-white {
  background: rgba(255,255,255,0.10);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--t);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.20);
  border-color: rgba(255,255,255,0.65);
  color: #fff;
  transform: translateY(-3px);
}
.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--t);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-outline-blue:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-blue);
}

/* ===== HERO ===== */
.hero {
  background: var(--grad-hero);
  min-height: 93vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 90px 0 80px;
}
/* Decorative orbs */
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(59,130,246,0.18) 0%, transparent 68%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -160px; left: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(249,115,22,0.10) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(59,130,246,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(59,130,246,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,0.12);
  color: #FBBF24;
  border: 1px solid rgba(249,115,22,0.30);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.hero h1 {
  font-size: 3.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}
.hero h1 .hero-brand {
  display: block;
  background: var(--grad-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-tagline {
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.4rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.hero p {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.72);
  max-width: 490px;
  line-height: 1.85;
  margin-bottom: 2.4rem;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.80);
  font-size: 0.88rem;
  font-weight: 500;
}
.hero-trust-item i { color: #FBBF24; }

/* Hero right panel */
.hero-panel {
  position: relative;
}
.hero-card-main {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius-lg);
  padding: 2.8rem 2.4rem;
  position: relative;
}
.hero-card-main .hc-icon {
  width: 72px; height: 72px;
  background: var(--grad-orange);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1.4rem;
  box-shadow: var(--shadow-orange);
}
.hero-card-main h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.hero-card-main p {
  color: rgba(255,255,255,0.68);
  font-size: 0.92rem;
  margin-bottom: 1.8rem;
  max-width: 100%;
}
.hero-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 1.6rem;
}
.hm-item { text-align: center; }
.hm-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  background: var(--grad-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}
.hm-label {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  line-height: 1.3;
}

/* Floating pills */
.float-pill {
  position: absolute;
  background: #fff;
  border-radius: 50px;
  padding: 0.7rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
}
.float-pill .fp-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.float-pill .fp-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--dark);
}
.float-pill .fp-sub {
  font-size: 0.72rem;
  color: var(--muted);
}
.pill-top {
  top: -22px; right: -16px;
  animation: floatUpDown 3.5s ease-in-out infinite;
}
.pill-bottom {
  bottom: -22px; left: -16px;
  animation: floatUpDown 3.5s ease-in-out infinite 1.75s;
}
@keyframes floatUpDown {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@media (max-width: 575px) { .float-pill { display: none; } }

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--navy);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.stats-strip::after {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 320px; height: 320px;
  background: rgba(59,130,246,0.08);
  border-radius: 50%;
  pointer-events: none;
}
.stat-box {
  text-align: center;
  padding: 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-box:last-child { border-right: none; }
.stat-box .sb-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  background: var(--grad-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-box .sb-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}
.stat-box .sb-icon {
  font-size: 1.8rem;
  color: rgba(255,255,255,0.12);
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .stat-box { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-box:last-child { border-bottom: none; }
}

/* ===== SERVICE CARDS ===== */
.card-service {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--t);
  text-align: left;
}
.card-service .cs-number {
  position: absolute;
  top: 1.2rem; right: 1.4rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(29,78,216,0.05);
  line-height: 1;
  pointer-events: none;
}
.card-service .cs-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.3rem;
  background: rgba(29,78,216,0.08);
  color: var(--blue);
  transition: var(--t);
}
.card-service h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  color: var(--dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.card-service p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.3rem;
}
.card-service .cs-link {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--t);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.card-service:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(29,78,216,0.18);
}
.card-service:hover .cs-icon {
  background: var(--grad-brand);
  color: #fff;
  transform: scale(1.08) rotate(-4deg);
}
.card-service:hover .cs-link { color: var(--orange); gap: 12px; }

/* ===== ABOUT SECTION ===== */
.about-visual {
  position: relative;
}
.about-img-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--grad-card);
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: rgba(255,255,255,0.4);
  position: relative;
}
.about-img-box::before {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 220px; height: 220px;
  background: rgba(249,115,22,0.15);
  border-radius: 50%;
}
.about-img-box img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.about-badge-box {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--grad-orange);
  border-radius: var(--radius);
  padding: 1.4rem 1.8rem;
  text-align: center;
  box-shadow: var(--shadow-orange);
  color: #fff;
}
.about-badge-box .abb-num { font-size: 2.4rem; font-weight: 800; line-height: 1; font-family: 'Plus Jakarta Sans', sans-serif; }
.about-badge-box .abb-label { font-size: 0.78rem; font-weight: 600; opacity: 0.9; margin-top: 2px; }

/* ===== WHY US ===== */
.why-row {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-bottom: 1.6rem;
}
.why-icon-box {
  width: 50px; height: 50px; min-width: 50px;
  background: var(--grad-brand);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: var(--shadow-blue);
}
.why-row h6 { font-weight: 700; margin-bottom: 3px; color: var(--dark); font-family: 'Plus Jakarta Sans', sans-serif; }
.why-row p  { font-size: 0.88rem; color: var(--muted); margin: 0; line-height: 1.7; }

/* Values list */
.value-pill {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  margin-bottom: 0.8rem;
  box-shadow: var(--shadow-sm);
  transition: var(--t);
}
.value-pill:hover { box-shadow: var(--shadow); transform: translateX(6px); border-color: rgba(29,78,216,0.2); }
.value-pill .vp-icon {
  width: 46px; height: 46px; min-width: 46px;
  border-radius: var(--radius-sm);
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
}
.value-pill strong { font-size: 0.95rem; color: var(--dark); display: block; font-family: 'Plus Jakarta Sans', sans-serif; }
.value-pill span   { font-size: 0.82rem; color: var(--muted); }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--bg); }
.card-testimonial {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.6rem 2.2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.card-testimonial .ct-quote {
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--blue);
  opacity: 0.07;
  position: absolute;
  top: -5px; left: 1rem;
  line-height: 1;
  pointer-events: none;
}
.card-testimonial .ct-stars { color: #F59E0B; margin-bottom: 1rem; letter-spacing: 3px; }
.card-testimonial .ct-msg {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--body);
  line-height: 1.85;
  margin-bottom: 1.8rem;
  position: relative;
  z-index: 1;
}
.ct-author-avatar {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.ct-name  { font-weight: 700; color: var(--dark); margin: 0; font-family: 'Plus Jakarta Sans', sans-serif; }
.ct-role  { font-size: 0.82rem; color: var(--muted); }

.carousel-control-prev,
.carousel-control-next {
  width: 48px; height: 48px;
  background: #fff;
  border-radius: 50%;
  top: 50%; transform: translateY(-50%);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  opacity: 1;
}
.carousel-control-prev { left: -24px; }
.carousel-control-next { right: -24px; }
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--blue);
  border-radius: 50%;
  width: 20px; height: 20px;
  background-size: 55%;
}
@media (max-width: 767px) {
  .carousel-control-prev { left: 0; }
  .carousel-control-next { right: 0; }
}

/* ===== TEAM ===== */
.card-team {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--t);
}
.card-team:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card-team img { width: 100%; height: 270px; object-fit: cover; }
.team-ph {
  width: 100%; height: 270px;
  background: var(--grad-card);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  color: rgba(255,255,255,0.35);
  position: relative;
  overflow: hidden;
}
.team-ph::before {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 130px; height: 130px;
  background: rgba(249,115,22,0.15);
  border-radius: 50%;
}
.card-team .ct-body { padding: 1.5rem 1.6rem; }
.card-team .ct-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 2px; font-family: 'Plus Jakarta Sans', sans-serif; }
.card-team .ct-role {
  font-size: 0.78rem; font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 0.8rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.card-team .ct-bio  { font-size: 0.87rem; color: var(--muted); margin-bottom: 1rem; line-height: 1.7; }
.team-socials a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 0.82rem;
  margin-right: 4px;
  transition: var(--t);
  border: 1px solid var(--border);
}
.team-socials a:hover { background: var(--grad-brand); color: #fff; border-color: transparent; transform: translateY(-2px); }

/* ===== BLOG ===== */
.card-blog {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  height: 100%;
  transition: var(--t);
}
.card-blog:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card-blog img { width: 100%; height: 210px; object-fit: cover; }
.blog-ph {
  width: 100%; height: 210px;
  background: var(--grad-card);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.8rem;
  color: rgba(255,255,255,0.3);
}
.card-blog .cb-body { padding: 1.6rem; }
.blog-meta { display: flex; gap: 10px; align-items: center; margin-bottom: 0.7rem; flex-wrap: wrap; }
.blog-date { font-size: 0.78rem; color: var(--muted); }
.blog-date i { color: var(--orange); margin-right: 4px; }
.blog-tag {
  font-size: 0.7rem; font-weight: 700;
  color: var(--blue);
  background: rgba(29,78,216,0.07);
  padding: 2px 10px;
  border-radius: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.card-blog h5 { font-size: 1rem; font-weight: 700; color: var(--dark); line-height: 1.45; margin-bottom: 0.65rem; font-family: 'Plus Jakarta Sans', sans-serif; }
.card-blog p  { font-size: 0.87rem; color: var(--muted); line-height: 1.75; margin-bottom: 1rem; }
.link-arrow {
  font-size: 0.84rem; font-weight: 700;
  color: var(--blue);
  display: inline-flex; align-items: center; gap: 6px;
  transition: var(--t);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.link-arrow:hover { color: var(--orange); gap: 12px; }

/* ===== CTA BAND ===== */
.cta-section {
  background: var(--grad-hero);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 420px; height: 420px;
  background: rgba(59,130,246,0.10);
  border-radius: 50%;
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  background: rgba(249,115,22,0.08);
  border-radius: 50%;
  pointer-events: none;
}
.cta-section h2 { color: #fff; font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; font-family: 'Plus Jakarta Sans', sans-serif; }
.cta-section p  { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 2.2rem; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--grad-hero);
  color: #fff;
  padding: 90px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  background: rgba(59,130,246,0.12);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero h1 { color: #fff; font-size: 2.8rem; font-weight: 800; margin-bottom: 0.8rem; font-family: 'Plus Jakarta Sans', sans-serif; }
.page-hero .breadcrumb { justify-content: center; background: none; padding: 0; margin: 0; }
.page-hero .breadcrumb-item { color: rgba(255,255,255,0.60); font-size: 0.88rem; }
.page-hero .breadcrumb-item.active { color: #FBBF24; }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.30); }

/* ===== CONTACT ===== */
.contact-info-card {
  background: var(--grad-card);
  border-radius: var(--radius-lg);
  padding: 2.8rem;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.contact-info-card::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 200px; height: 200px;
  background: rgba(249,115,22,0.12);
  border-radius: 50%;
}
.contact-info-card h4 { color: #fff; font-size: 1.6rem; margin-bottom: 0.5rem; font-family: 'Plus Jakarta Sans', sans-serif; }
.contact-info-card > p { color: rgba(255,255,255,0.72); margin-bottom: 2rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.4rem; }
.contact-detail .c-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: #FBBF24;
  font-size: 1rem;
}
.contact-detail .c-text strong { display: block; color: #fff; font-size: 0.9rem; margin-bottom: 2px; }
.contact-detail .c-text span   { font-size: 0.85rem; color: rgba(255,255,255,0.68); }
.contact-socials a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.10);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  margin-right: 8px;
  transition: var(--t);
}
.contact-socials a:hover { background: var(--orange); transform: translateY(-2px); }
.contact-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.8rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  height: 100%;
}

/* ===== GALLERY ===== */
.gallery-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
}
.gallery-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.gallery-wrap:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,26,58,0.75) 0%, rgba(12,26,58,0.2) 100%);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--t);
}
.gallery-wrap:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: #fff; font-size: 2rem; }

/* ===== FORMS ===== */
.form-control, .form-select {
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  padding: 0.75rem 1.1rem;
  font-size: 0.93rem;
  transition: var(--t);
  background: var(--bg);
  color: var(--dark);
  font-family: 'Inter', sans-serif;
}
.form-control:focus, .form-select:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(29,78,216,0.10);
  outline: none;
}
.form-label { font-weight: 600; font-size: 0.88rem; margin-bottom: 0.4rem; color: var(--dark); font-family: 'Plus Jakarta Sans', sans-serif; }

/* ===== MESSAGES ===== */
.alert { border-radius: var(--radius); border: none; font-size: 0.92rem; }
.alert-success { background: #d1fae5; color: #065f46; }
.alert-danger   { background: #fee2e2; color: #991b1b; }

/* ===== FOOTER ===== */
footer {
  background: #040d1e;
  color: rgba(255,255,255,0.65);
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-orange);
}
.footer-top { padding: 80px 0 50px; }
.footer-brand-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.5rem; font-weight: 800; color: #fff; }
.footer-brand-sub { font-size: 0.65rem; color: var(--orange); font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; font-family: 'Plus Jakarta Sans', sans-serif; }
.footer-about { font-size: 0.88rem; color: rgba(255,255,255,0.58); margin: 1rem 0 1.4rem; line-height: 1.85; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.70);
  margin-right: 7px;
  transition: var(--t);
}
.footer-socials a:hover { background: var(--orange); color: #fff; border-color: var(--orange); transform: translateY(-3px); }
.footer-heading {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 1.3rem;
  padding-bottom: 0.55rem;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.65rem; }
.footer-links li a {
  color: rgba(255,255,255,0.58);
  font-size: 0.88rem;
  display: flex; align-items: center; gap: 7px;
  transition: var(--t);
}
.footer-links li a::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--orange);
  font-size: 0.76rem;
  flex-shrink: 0;
}
.footer-links li a:hover { color: #FBBF24; padding-left: 5px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 0.9rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.58);
}
.footer-contact-item i { color: var(--orange); margin-top: 3px; min-width: 14px; }
.footer-bottom {
  background: rgba(0,0,0,0.35);
  padding: 15px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom a { color: rgba(255,255,255,0.60); }
.footer-bottom a:hover { color: var(--orange); }

/* ===== BLUE BADGE (certification) ===== */
.cert-badge {
  background: linear-gradient(135deg, #0077b6, #023e8a);
  color: #fff;
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(255,255,255,0.10);
  margin-top: 1rem;
}
.cert-badge i { font-size: 1.8rem; color: #FBBF24; }
.cert-badge .cb-title { font-weight: 700; font-size: 0.88rem; font-family: 'Plus Jakarta Sans', sans-serif; }
.cert-badge .cb-sub   { font-size: 0.74rem; opacity: 0.8; }

/* ===== BACK TO TOP ===== */
#back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: var(--grad-brand);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-blue);
  transition: var(--t);
  opacity: 0; visibility: hidden;
  z-index: 999;
}
#back-to-top.visible { opacity: 1; visibility: visible; }
#back-to-top:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ===== MISSION / VISION CARDS ===== */
.mvg-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  height: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--t);
}
.mvg-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad-brand); }
.mvg-card.featured { background: var(--grad-card); }
.mvg-card.featured::before { background: var(--grad-orange); }
.mvg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.mvg-icon {
  width: 70px; height: 70px;
  background: var(--grad-brand);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.3rem;
  color: #fff;
  font-size: 1.75rem;
  box-shadow: var(--shadow-blue);
}
.mvg-card.featured .mvg-icon { background: var(--grad-orange); }
.mvg-card h4 { font-size: 1.25rem; margin-bottom: 0.8rem; font-family: 'Plus Jakarta Sans', sans-serif; }
.mvg-card.featured h4 { color: #fff; }
.mvg-card p { font-size: 0.92rem; line-height: 1.8; }
.mvg-card.featured p { color: rgba(255,255,255,0.78); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) { .hero h1 { font-size: 3rem; } }
@media (max-width: 991px) {
  .hero { min-height: auto; padding: 80px 0; }
  .hero h1 { font-size: 2.5rem; }
  .section-title { font-size: 2rem; }
  .navbar-nav .nav-link { padding: 0.7rem 1rem !important; }
  .navbar-nav .nav-link::after { display: none; }
  .about-badge-box { position: static; margin-top: 1.5rem; display: inline-block; }
}
@media (max-width: 767px) {
  .hero h1 { font-size: 2.1rem; letter-spacing: -0.5px; }
  .hero-tagline { font-size: 1.05rem; }
  .section-py { padding: 64px 0; }
  .section-title { font-size: 1.75rem; }
  .cta-section h2 { font-size: 1.9rem; }
  .page-hero h1 { font-size: 2.1rem; }
  .contact-info-card, .contact-form-card { padding: 2rem 1.5rem; }
}
@media (max-width: 575px) {
  .hero { padding: 60px 0; }
  .stats-strip { padding: 40px 0; }
  .stat-box .sb-num { font-size: 2.2rem; }
}
