/* ========== VIRIA VISIONS - Global Stylesheet ========== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --navy:       #0d1b5e;
  --navy-dark:  #080f3a;
  --navy-light: #1a3080;
  --gold:       #c9a227;
  --gold-light: #e8be45;
  --gold-dark:  #a07c10;
  --white:      #ffffff;
  --off-white:  #f4f6fb;
  --light-gray: #e8ecf5;
  --mid-gray:   #6b7280;
  --dark-text:  #0f172a;
  --shadow:     0 4px 24px rgba(13,27,94,0.12);
  --shadow-lg:  0 12px 48px rgba(13,27,94,0.18);
  --radius:     10px;
  --transition: all 0.3s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark-text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.25; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--mid-gray); line-height: 1.8; }

/* ---- Layout Utilities ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-navy   { color: var(--navy); }
.text-white  { color: var(--white); }
.bg-navy     { background: var(--navy); }
.bg-off-white{ background: var(--off-white); }
.bg-dark     { background: var(--navy-dark); }

/* ---- Section Headers ---- */
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,162,39,0.1);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 16px;
}
.section-title span { color: var(--gold); }
.section-divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 0 auto 20px;
}
.section-divider.left { margin: 0 0 20px; }
.section-subtitle { max-width: 620px; margin: 0 auto; font-size: 1.05rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  letter-spacing: 0.03em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  box-shadow: 0 4px 18px rgba(201,162,39,0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,162,39,0.45);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--navy-dark); transform: translateY(-2px); }
.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover { background: var(--gold); color: var(--navy-dark); transform: translateY(-2px); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
}
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-2px); }

/* ---- Cards ---- */
.card {
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-body { padding: 32px 28px; }
.card-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.card-icon i { font-size: 1.6rem; color: var(--gold); }

/* ---- Grid Layouts ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }

/* ---- Flex Utilities ---- */
.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between{ display: flex; align-items: center; justify-content: space-between; }
.gap-1  { gap: 8px; }
.gap-2  { gap: 16px; }
.gap-3  { gap: 24px; }
.gap-4  { gap: 32px; }

/* ================================================
   NAVBAR
================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(8, 15, 58, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,162,39,0.2);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(8, 15, 58, 0.99);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-logo img { height: 52px; width: 52px; object-fit: contain; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text .brand-name {
  font-size: 1.3rem; font-weight: 800;
  color: var(--white); letter-spacing: 0.06em; line-height: 1;
}
.nav-logo-text .brand-tagline {
  font-size: 0.62rem; color: var(--gold);
  font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  position: relative;
  padding: 8px 16px;
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem; font-weight: 500;
  border-radius: 6px;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  background: rgba(201,162,39,0.1);
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 4px; left: 50%; right: 50%;
  height: 2px; background: var(--gold);
  border-radius: 2px; transition: var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { left: 16px; right: 16px; }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--navy-dark) !important;
  font-weight: 700 !important;
  padding: 9px 22px !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(201,162,39,0.4); }
.nav-cta::after { display: none !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 6px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ================================================
   HERO
================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #1a3080 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(201,162,39,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(26,48,128,0.6) 0%, transparent 60%);
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,162,39,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-content { position: relative; z-index: 2; padding-top: 78px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.4);
  color: var(--gold-light);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 8px 18px; border-radius: 50px;
  margin-bottom: 28px;
}
.hero-badge i { font-size: 0.75rem; }
.hero h1 {
  color: var(--white);
  font-weight: 900;
  margin-bottom: 10px;
}
.hero h1 .highlight {
  color: var(--gold);
  position: relative;
}
.hero-subtitle {
  font-size: 1.1rem; color: var(--white);
  font-weight: 600; letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 18px;
  opacity: 0.85;
}
.hero p {
  font-size: 1.1rem; color: rgba(255,255,255,0.72);
  max-width: 560px; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats {
  display: flex; gap: 40px; flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat .stat-num {
  font-size: 2rem; font-weight: 800; color: var(--gold); line-height: 1;
}
.hero-stat .stat-label {
  font-size: 0.8rem; color: rgba(255,255,255,0.6);
  font-weight: 500; margin-top: 4px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.hero-visual {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
}
.hero-card-float {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,162,39,0.25);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 40px;
  max-width: 400px;
  width: 100%;
}
.hero-card-float .big-logo {
  width: 130px; height: 130px;
  object-fit: contain;
  margin: 0 auto 24px;
  filter: drop-shadow(0 8px 24px rgba(201,162,39,0.3));
}
.hero-card-float h3 { color: var(--white); font-size: 1.4rem; text-align: center; margin-bottom: 6px; }
.hero-card-float p { color: rgba(255,255,255,0.65); text-align: center; font-size: 0.88rem; margin-bottom: 24px; }
.hero-card-float .regd {
  font-size: 0.72rem; color: var(--gold);
  text-align: center; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 24px;
}
.hero-pillars {
  display: flex; justify-content: center; gap: 8px; flex-wrap: wrap;
}
.hero-pillars span {
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.3);
  color: var(--gold-light);
  font-size: 0.72rem; font-weight: 600;
  padding: 5px 14px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.4); font-size: 0.75rem;
  text-align: center; letter-spacing: 0.1em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: bounce 2s infinite;
}
.hero-scroll i { font-size: 1.1rem; }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ================================================
   TICKER STRIP
================================================ */
.ticker-strip {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner { display: flex; align-items: center; gap: 0; animation: ticker 30s linear infinite; }
.ticker-inner:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0 40px;
  font-size: 0.82rem; font-weight: 700;
  color: var(--navy-dark);
  text-transform: uppercase; letter-spacing: 0.08em;
  flex-shrink: 0;
}
.ticker-item i { font-size: 0.75rem; }
.ticker-sep { color: var(--navy); opacity: 0.4; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ================================================
   OVERVIEW / ABOUT STRIP
================================================ */
.overview-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.overview-split.reverse { direction: rtl; }
.overview-split.reverse > * { direction: ltr; }
.overview-image-wrap {
  position: relative; border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.overview-image-wrap img { width: 100%; height: 420px; object-fit: cover; }
.overview-image-wrap .image-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--navy-dark);
  color: var(--white); padding: 16px 22px;
  border-radius: 12px; border-left: 4px solid var(--gold);
}
.overview-image-wrap .image-badge strong {
  display: block; font-size: 1.5rem; color: var(--gold); line-height: 1;
}
.overview-image-wrap .image-badge span { font-size: 0.75rem; opacity: 0.75; }
.overview-text .section-tag { display: block; }
.overview-text h2 { margin-bottom: 18px; }
.overview-text p { margin-bottom: 20px; }
.check-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.check-list li { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; color: var(--dark-text); }
.check-list li i { color: var(--gold); font-size: 0.85rem; flex-shrink: 0; }

/* ================================================
   BUSINESS SECTORS
================================================ */
.sector-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
.sector-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.sector-card-top {
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.sector-card-top .sector-icon-wrap {
  width: 80px; height: 80px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 2; position: relative;
}
.sector-card-top .sector-icon-wrap i { font-size: 2.2rem; color: var(--white); }
.sector-card-body { padding: 28px 24px; }
.sector-card-body h3 { color: var(--navy); margin-bottom: 10px; }
.sector-card-body p { font-size: 0.9rem; margin-bottom: 18px; }
.sector-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold); font-size: 0.85rem; font-weight: 600;
  transition: var(--transition);
}
.sector-link:hover { gap: 12px; }

/* Sector Colors */
.sc-green  { background: linear-gradient(135deg, #1a6b2a, #2e9b42); }
.sc-blue   { background: linear-gradient(135deg, #0d3b6e, #1565c0); }
.sc-teal   { background: linear-gradient(135deg, #006064, #00838f); }
.sc-orange { background: linear-gradient(135deg, #bf360c, #e64a19); }
.sc-navy   { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); }
.sc-purple { background: linear-gradient(135deg, #4a148c, #7b1fa2); }

/* ================================================
   STATS COUNTER
================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  position: relative; overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,162,39,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative; z-index: 1;
}
.stat-item {
  padding: 48px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-item .num {
  font-size: 3rem; font-weight: 900;
  color: var(--gold); line-height: 1;
  margin-bottom: 10px;
}
.stat-item .label {
  font-size: 0.82rem; color: rgba(255,255,255,0.6);
  text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500;
}
.stat-item i {
  font-size: 1.8rem; color: rgba(201,162,39,0.3);
  margin-bottom: 14px;
}

/* ================================================
   EDUCATION HIGHLIGHT
================================================ */
.edu-highlight {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  position: relative; overflow: hidden;
}
.edu-highlight::after {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,0.12), transparent 70%);
}
.edu-content { position: relative; z-index: 2; }
.edu-content h2 { color: var(--white); margin-bottom: 16px; }
.edu-content p { color: rgba(255,255,255,0.72); margin-bottom: 24px; max-width: 480px; }
.edu-pillars { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.edu-pillar {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,162,39,0.2);
  padding: 16px 20px; border-radius: 10px;
}
.edu-pillar i { font-size: 1.3rem; color: var(--gold); flex-shrink: 0; }
.edu-pillar strong { color: var(--white); font-size: 0.95rem; display: block; }
.edu-pillar span { color: rgba(255,255,255,0.55); font-size: 0.82rem; }
.edu-visual-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,162,39,0.25);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
}
.edu-visual-card .big-icon i { font-size: 4rem; color: var(--gold); margin-bottom: 20px; }
.edu-visual-card h3 { color: var(--white); margin-bottom: 10px; }
.edu-visual-card p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 24px; }
.edu-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.edu-tag {
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.3);
  color: var(--gold-light);
  font-size: 0.72rem; font-weight: 600;
  padding: 5px 14px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: 0.08em;
}

/* ================================================
   WHY CHOOSE US
================================================ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.why-item {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 14px;
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
}
.why-item::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 14px 14px 0 0;
  opacity: 0; transition: var(--transition);
}
.why-item:hover { box-shadow: var(--shadow); border-color: transparent; }
.why-item:hover::before { opacity: 1; }
.why-icon { width: 56px; height: 56px; background: var(--off-white); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.why-icon i { font-size: 1.4rem; color: var(--navy); }
.why-item h4 { color: var(--navy); margin-bottom: 8px; }

/* ================================================
   TESTIMONIALS
================================================ */
.testimonials-section { background: var(--off-white); }
.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute; top: 16px; right: 24px;
  font-size: 5rem; color: var(--gold); opacity: 0.2;
  font-family: Georgia, serif; line-height: 1;
}
.testimonial-card p { color: var(--dark-text); font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem; font-weight: 700;
}
.testimonial-author strong { color: var(--navy); font-size: 0.9rem; display: block; }
.testimonial-author span { color: var(--mid-gray); font-size: 0.78rem; }
.stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 14px; }

/* ================================================
   CTA BANNER
================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  padding: 80px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40' fill='rgba(0,0,0,0.04)'/%3E%3C/svg%3E");
}
.cta-banner h2 { color: var(--navy-dark); margin-bottom: 14px; position: relative; }
.cta-banner p { color: rgba(8,15,58,0.7); max-width: 540px; margin: 0 auto 32px; position: relative; font-size: 1.05rem; }
.cta-banner .cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; }

/* ================================================
   FOOTER
================================================ */
.footer {
  background: var(--navy-dark);
  padding: 80px 0 0;
  color: rgba(255,255,255,0.65);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand .logo-wrap img { height: 50px; width: 50px; object-fit: contain; }
.footer-brand .brand { font-size: 1.3rem; font-weight: 800; color: var(--white); }
.footer-brand .tagline { font-size: 0.65rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; margin-bottom: 24px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 0.9rem;
  transition: var(--transition);
}
.social-links a:hover { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }
.footer-col h5 { color: var(--white); font-size: 0.9rem; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-col ul li a i { font-size: 0.7rem; opacity: 0.5; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.footer-contact-item i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item span { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.footer-contact-item a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-bottom .regd-badge {
  background: rgba(201,162,39,0.12);
  border: 1px solid rgba(201,162,39,0.25);
  color: var(--gold);
  font-size: 0.72rem; font-weight: 600;
  padding: 6px 14px; border-radius: 50px;
  letter-spacing: 0.06em;
}

/* ================================================
   PAGE HERO (inner pages)
================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  padding: 160px 0 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,162,39,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-hero-content { position: relative; z-index: 2; text-align: center; }
.page-hero-content .section-tag { margin-bottom: 14px; }
.page-hero-content h1 { color: var(--white); margin-bottom: 16px; font-size: clamp(2rem, 4vw, 3rem); }
.page-hero-content p { color: rgba(255,255,255,0.68); max-width: 600px; margin: 0 auto 24px; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.82rem; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ================================================
   ABOUT PAGE
================================================ */
.value-item {
  display: flex; gap: 18px; padding: 24px;
  background: var(--white); border-radius: 12px;
  box-shadow: var(--shadow); margin-bottom: 20px;
  transition: var(--transition);
}
.value-item:hover { transform: translateX(6px); box-shadow: var(--shadow-lg); }
.value-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.value-icon i { font-size: 1.3rem; color: var(--gold); }
.value-content h4 { color: var(--navy); margin-bottom: 6px; }
.value-content p { font-size: 0.88rem; }

.team-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-card-avatar {
  height: 160px;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
}
.team-card-avatar i { font-size: 4rem; color: rgba(201,162,39,0.6); }
.team-card-body { padding: 24px 20px; }
.team-card-body h4 { color: var(--navy); margin-bottom: 4px; }
.team-card-body .role { color: var(--gold); font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.team-card-body p { font-size: 0.85rem; }

.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: ''; position: absolute; left: 10px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(180deg, var(--gold), transparent);
}
.timeline-item { position: relative; padding-bottom: 36px; }
.timeline-item::before {
  content: ''; position: absolute; left: -26px; top: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold); border: 2px solid var(--white);
  box-shadow: 0 0 0 4px rgba(201,162,39,0.2);
}
.timeline-item .year {
  font-size: 0.78rem; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px;
}
.timeline-item h4 { color: var(--navy); margin-bottom: 6px; }
.timeline-item p { font-size: 0.88rem; }

/* ================================================
   BUSINESS PAGE
================================================ */
.investment-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 30px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
  transition: var(--transition);
}
.investment-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.investment-card .inv-icon {
  width: 72px; height: 72px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.investment-card .inv-icon i { font-size: 1.8rem; color: var(--white); }
.investment-card h3 { color: var(--navy); margin-bottom: 12px; }
.investment-card p { font-size: 0.9rem; margin-bottom: 20px; }
.inv-meta { display: flex; gap: 16px; flex-wrap: wrap; }
.inv-meta span {
  background: var(--off-white); color: var(--navy);
  font-size: 0.75rem; font-weight: 600;
  padding: 4px 12px; border-radius: 50px;
  display: flex; align-items: center; gap: 6px;
}
.inv-meta span i { color: var(--gold); }

.process-step {
  text-align: center; padding: 32px 24px;
  background: var(--white); border-radius: 14px; box-shadow: var(--shadow);
  transition: var(--transition);
}
.process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.step-num {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  font-size: 1.3rem; font-weight: 800;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.process-step h4 { color: var(--navy); margin-bottom: 8px; }
.process-step p { font-size: 0.88rem; }

/* ================================================
   EDUCATION PAGE
================================================ */
.program-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.program-card-header {
  padding: 28px 24px;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  position: relative;
}
.program-card-header i { font-size: 2rem; color: var(--gold); margin-bottom: 12px; display: block; }
.program-card-header h3 { color: var(--white); font-size: 1.15rem; }
.program-card-body { padding: 24px; }
.program-card-body p { font-size: 0.88rem; margin-bottom: 16px; }
.program-features { display: flex; flex-direction: column; gap: 8px; }
.program-features li { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--dark-text); }
.program-features li i { color: var(--gold); font-size: 0.75rem; }

.social-card {
  display: flex; gap: 20px;
  padding: 28px 24px;
  background: var(--white);
  border-radius: 14px; box-shadow: var(--shadow);
  transition: var(--transition);
  align-items: flex-start;
}
.social-card:hover { transform: translateX(6px); box-shadow: var(--shadow-lg); }
.social-card-icon {
  width: 60px; height: 60px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.social-card-icon i { font-size: 1.5rem; color: var(--gold); }
.social-card h4 { color: var(--navy); margin-bottom: 6px; }
.social-card p { font-size: 0.88rem; }

/* ================================================
   CONTACT PAGE
================================================ */
.contact-info-card {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: 20px;
  padding: 48px 40px;
  height: 100%;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 10px; }
.contact-info-card > p { color: rgba(255,255,255,0.65); margin-bottom: 36px; }
.contact-detail {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 28px;
}
.contact-detail-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.contact-detail-icon i { color: var(--gold); font-size: 1.1rem; }
.contact-detail-text label { display: block; font-size: 0.72rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.contact-detail-text a, .contact-detail-text span { color: rgba(255,255,255,0.82); font-size: 0.92rem; transition: var(--transition); }
.contact-detail-text a:hover { color: var(--gold); }
.contact-social { display: flex; gap: 10px; margin-top: 36px; }
.contact-social a {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); transition: var(--transition);
}
.contact-social a:hover { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }

.contact-form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form-wrap h3 { color: var(--navy); margin-bottom: 8px; }
.contact-form-wrap > p { margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  color: var(--dark-text);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201,162,39,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; padding: 16px; font-size: 1rem; justify-content: center; }

.map-section { background: var(--off-white); }
.map-placeholder {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: 16px;
  height: 300px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px;
}
.map-placeholder i { font-size: 3rem; color: var(--gold); }
.map-placeholder h4 { color: var(--white); }
.map-placeholder p { color: rgba(255,255,255,0.55); font-size: 0.88rem; text-align: center; }

.faq-item {
  background: var(--white); border-radius: 12px;
  border: 1px solid var(--light-gray);
  overflow: hidden; margin-bottom: 12px;
  transition: var(--transition);
}
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  background: none; font-family: 'Poppins', sans-serif;
  font-size: 0.95rem; font-weight: 600;
  color: var(--navy); text-align: left;
  transition: var(--transition);
}
.faq-question i { color: var(--gold); transition: var(--transition); flex-shrink: 0; }
.faq-answer { padding: 0 24px 20px; font-size: 0.9rem; color: var(--mid-gray); display: none; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-item.open { border-color: var(--gold); box-shadow: var(--shadow); }

/* ================================================
   FORM SUCCESS MESSAGE
================================================ */
.form-success {
  display: none;
  background: #f0fdf4; border: 1px solid #86efac;
  color: #15803d; padding: 14px 18px;
  border-radius: var(--radius); font-size: 0.9rem;
  align-items: center; gap: 10px;
  margin-bottom: 20px;
}
.form-success.show { display: flex; }

/* ================================================
   RESPONSIVE
================================================ */
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .overview-split, .overview-split.reverse { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
  .grid-3, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .hero .container { grid-template-columns: 1fr !important; }
  .hero-visual { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .overview-image-wrap img { height: 300px; }
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }

  /* Navbar */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute; top: 78px; left: 0; right: 0;
    background: var(--navy-dark);
    padding: 16px;
    gap: 4px;
    border-bottom: 2px solid var(--gold);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 14px 16px; font-size: 0.92rem; }
  .nav-cta { text-align: center; }
  .hamburger { display: flex; }

  /* Sections */
  .section { padding: 60px 0; }
  .cta-banner { padding: 60px 0; }
  .footer { padding: 60px 0 0; }
  .page-hero { padding: 120px 0 56px; }

  /* Grids */
  .grid-3, .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid { padding-bottom: 40px; }

  /* Hero */
  .hero-stats { gap: 20px; }
  .hero-stat .stat-num { font-size: 1.7rem; }
  .hero-badge { font-size: 0.73rem; padding: 7px 14px; }

  /* Images */
  .overview-image-wrap img { height: 260px; }

  /* Cards */
  .contact-form-wrap, .contact-info-card { padding: 28px 20px; }
  .social-card { flex-direction: column; gap: 14px; }

  /* Interactions — disable hover transforms on touch devices */
  .value-item:hover { transform: none; }
  .social-card:hover { transform: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 12px; }
  .section { padding: 48px 0; }

  /* Navbar */
  .nav-inner { height: 66px; }
  .nav-links { top: 66px; }
  .nav-logo img { height: 42px; width: 42px; }
  .nav-logo-text .brand-name { font-size: 1.1rem; }
  .nav-logo-text .brand-tagline { display: none; }

  /* Hero */
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding-top: 28px;
  }
  .hero-stat .stat-num { font-size: 1.4rem; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; padding: 13px 20px; }
  .hero-badge { font-size: 0.68rem; }
  .hero p { font-size: 0.95rem; }

  /* Page hero */
  .page-hero { padding: 100px 0 48px; }
  .page-hero-content h1 { font-size: clamp(1.6rem, 7vw, 2.2rem); }

  /* Sections */
  .cta-banner { padding: 48px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }

  /* Images */
  .overview-image-wrap img { height: 210px; }

  /* Cards / layout */
  .card-body { padding: 22px 18px; }
  .why-item { padding: 22px 18px; }
  .sector-card-body { padding: 20px 18px; }
  .edu-visual-card { padding: 28px 18px; }
  .contact-form-wrap, .contact-info-card { padding: 24px 16px; }
  .contact-form-wrap h3, .contact-info-card h3 { font-size: 1.2rem; }
  .hero-card-float { padding: 24px 20px; }

  /* Footer */
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer { padding: 48px 0 0; }
}
