@import '../css/grid.css';
@import '../css/font-awesome.css';
@import url(//fonts.googleapis.com/css?family=Open+Sans:400);
@import url(//fonts.googleapis.com/css?family=Open+Sans:700);
@import url(//fonts.googleapis.com/css?family=Open+Sans:300);
@import url(//fonts.googleapis.com/css?family=Open+Sans:300italic);
@import url(//fonts.googleapis.com/css?family=Economica);
@import url(//fonts.googleapis.com/css?family=Marvel:400);
@import url(//fonts.googleapis.com/css?family=Marvel:700);



/* Global Responsive Reset */
* {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

:root {
  --dark-blue: #0f172a; /* Deep, modern navy */
  --accent-blue: #2563eb; /* Bright blue for hover/active */
  --text-white: #ffffff;
  --glass-white: rgba(255, 255, 255, 0.95);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--dark-blue);
  padding: 15px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  width: 100%;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
}

/* Logo Styling */
.brand-logo {
  text-decoration: none;
  color: var(--text-white);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 0.9;
  display: flex;
  flex-direction: column;
}

.logo-subtext {
  font-size: 0.75rem;
  font-weight: 400;
  color: #94a3b8; /* Soft blue-grey */
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
}

/* Navigation Styling */
.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 35px;
  margin: 0;
  padding: 0;
}

.nav-item a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s ease;
}

/* Modern Underline Hover Effect */
.nav-item a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--accent-blue);
  transition: width 0.3s ease;
}

.nav-item a:hover::after,
.nav-item.active a::after {
  width: 100%;
}

.nav-item a:hover,
.nav-item.active a {
  color: var(--text-white);
}

/* Contact Button Style */
.contact-btn a {
  background-color: var(--text-white);
  color: var(--dark-blue) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  transition: transform 0.2s ease, background-color 0.3s ease !important;
}

.contact-btn a:hover {
  transform: translateY(-2px);
  background-color: #f1f5f9;
}

.contact-btn a::after {
  display: none; /* Remove underline for the button */
}

/* Responsive Header with Hamburger */
.main-navigation {
  position: relative;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  background: var(--text-white);
  height: 2px;
  width: 25px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: '';
  position: absolute;
}

.nav-toggle-label span::before { bottom: 8px; }
.nav-toggle-label span::after { top: 8px; }

@media (max-width: 768px) {
  .header-container {
    flex-direction: row; /* Keep logo and hamburger on same line */
    justify-content: space-between;
    padding: 0 20px;
  }

  .nav-toggle-label {
    display: block;
    z-index: 1001;
  }

  .nav-list {
    position: fixed;
    top: 0;
    right: -100%; /* Hidden by default */
    width: 280px;
    height: 100vh;
    background: var(--dark-blue);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    padding: 40px;
    transition: right 0.4s cubic-bezier(0.77,0.2,0.05,1.0);
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
    z-index: 1000;
  }

  .nav-toggle:checked ~ .nav-list {
    right: 0;
  }

  .nav-toggle:checked ~ .nav-toggle-label span {
    background: transparent;
  }

  .nav-toggle:checked ~ .nav-toggle-label span::before {
    transform: rotate(45deg);
    bottom: 0;
  }

  .nav-toggle:checked ~ .nav-toggle-label span::after {
    transform: rotate(-45deg);
    top: 0;
  }

  .contact-btn a {
    width: 100%;
    text-align: center;
  }
}

/* Prevent image frame overflow */
.about-image-wrapper, .legacy-image-box {
  overflow: visible; /* We need the accent to show, but we must contain it */
}

@media (max-width: 1250px) {
  .image-accent, .image-accent-frame {
    display: none; /* Hide decorative elements that cause overflow on tighter screens */
  }
}

/* Responsive tweak */
@media (max-width: 992px) {
  .nav-list {
    gap: 20px;
  }
}



:root {
  --primary-white: #ffffff;
  --accent-blue: #2563eb;
  --dark-overlay: rgba(15, 23, 42, 0.6); /* Matching your dark blue */
}

.hero-slideshow {
  position: relative;
  height: 80vh; /* Responsive height */
  min-height: 400px;
  overflow: hidden;
  background-color: #0f172a;
}

.slides-container {
  height: 100%;
  width: 100%;
  position: relative;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Prevents image stretching */
  filter: brightness(0.7); /* Improves text readability */
}

/* Glassmorphism Content Box */
.slide-overlay {
  position: absolute;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  width: 100%;
}

.slide-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--primary-white);
  max-width: 600px;
  margin: 0 auto;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards ease-out;
}

.content-tag {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  color: #94a3b8;
  margin-bottom: 15px;
  display: block;
}

.content-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.1;
}

.btn-primary {
  display: inline-block;
  padding: 12px 32px;
  background-color: var(--accent-blue);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  margin-top: 20px;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

/* Responsive Slider Content */
@media (max-width: 768px) {
  .hero-slideshow {
    height: 60vh;
    min-height: 350px;
  }
  .content-title {
    font-size: 2.5rem;
  }
  .slide-content {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .content-title {
    font-size: 1.8rem;
  }
  .content-tag {
    font-size: 0.7rem;
  }
}

/* Dots Navigation */
.slide-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.dot.active {
  background: var(--primary-white);
  width: 30px; /* Modern elongated active dot */
  border-radius: 10px;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}





:root {
  --navy: #0f172a;
  --accent-blue: #2563eb;
  --light-gray: #f8fafc;
  --text-main: #334155;
}

.schedule-section {
  padding: 80px 20px;
  background-color: var(--light-gray);
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: 800;
}

.section-subtitle {
  color: #64748b;
  font-size: 1.1rem;
}

/* Grid Layout */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 30px;
}

/* Card Styling */
.schedule-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid #e2e8f0;
}

.schedule-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

/* Highlight the middle card */
.schedule-card.featured {
  border-top: 5px solid var(--accent-blue);
}

.day-label {
  display: inline-block;
  background: var(--navy);
  color: white;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.event-title {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 15px;
}

.event-description {
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1; /* Keeps buttons aligned */
}

.event-time {
  font-weight: 700;
  color: var(--accent-blue);
  font-size: 1.1rem;
  margin-bottom: 25px;
  padding-top: 15px;
  border-top: 1px dashed #e2e8f0;
}

.card-link {
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s ease;
}

.card-link:hover {
  color: var(--accent-blue);
}

.card-link:hover .arrow {
  margin-left: 5px;
}

/* Mobile Tweak */
@media (max-width: 768px) {
  .section-title { font-size: 2rem; }
  .schedule-card { padding: 30px; }
  .schedule-section { padding: 60px 20px; }
}



:root {
  --footer-navy: #0f172a;
  --footer-white: #ffffff;
  --footer-text: #94a3b8;
}

.mini-footer {
  background-color: var(--footer-navy);
  color: var(--footer-white);
  padding: 25px 0; /* Significantly smaller padding */
  font-size: 0.9rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* Brand Section */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  color: var(--footer-white);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.footer-divider {
  color: #334155;
}

.footer-tagline {
  margin: 0;
  color: var(--footer-text);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Actions Section */
.footer-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.footer-nav {
  display: flex;
  gap: 20px;
}

.footer-nav a {
  color: var(--footer-white);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}

.footer-nav a:hover {
  opacity: 0.7;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.social-link {
  color: var(--footer-text);
  transition: color 0.2s;
}

.social-link:hover {
  color: var(--footer-white);
}

/* Compact Copyright & Top Button */
.footer-copyright {
  color: var(--footer-text);
  font-size: 0.8rem;
}

.mini-top-btn {
  color: var(--footer-white);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 0.8rem;
  transition: background 0.2s;
}

.mini-top-btn:hover {
  background: var(--footer-white);
  color: var(--footer-navy);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .footer-actions {
    flex-direction: column;
    gap: 15px;
  }
}



:root {
  --navy-deep: #0f172a;
  --accent-blue: #2563eb;
  --text-gray: #475569;
  --bg-white: #ffffff;
}

.purpose-section {
  padding: 100px 20px;
  background-color: var(--bg-white);
}

.purpose-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
}

.purpose-card {
  flex: 1;
  display: flex;
  gap: 20px;
  padding: 40px;
  border-radius: 20px;
  background: var(--bg-white);
  transition: transform 0.3s ease;
}

/* Mission specific style (Light/Clean) */
.purpose-card.mission {
  border: 1px solid #e2e8f0;
}

/* Vision specific style (Dark/Bold) */
.purpose-card.vision {
  background-color: var(--navy-deep);
  color: var(--bg-white);
}

.purpose-card.vision .purpose-title {
  color: var(--bg-white);
}

.purpose-card.vision .purpose-text {
  color: #cbd5e1;
}

/* Icon Styles */
.purpose-icon {
  font-size: 2rem;
  color: var(--accent-blue);
  flex-shrink: 0;
}

.purpose-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.purpose-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-gray);
}

/* Mobile Responsiveness */
@media (max-width: 850px) {
  .purpose-container {
    flex-direction: column;
  }
  
  .purpose-card {
    padding: 30px;
  }
  .purpose-section {
    padding: 60px 20px;
  }
}



:root {
  --navy: #0f172a;
  --bright-blue: #2563eb;
  --white: #ffffff;
  --slate: #64748b;
}

/* Action Cards Styles */
.action-section {
  padding: 60px 20px;
  background-color: #f8fafc;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.action-card {
  background: var(--white);
  padding: 40px 30px;
  text-align: center;
  text-decoration: none;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.action-card.featured {
  background: var(--navy);
  border-color: var(--navy);
}

.action-card.featured .action-title { color: var(--white); }
.action-card.featured .action-btn { background: var(--bright-blue); color: white; }

.action-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.1);
}

.action-icon-box img {
  height: 60px;
  margin-bottom: 20px;
}

.action-title {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
}

.action-btn {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--bright-blue);
  letter-spacing: 1px;
}

/* Core Values Styles */
.values-section {
  padding: 100px 20px;
  background: var(--white);
}

.values-header {
  text-align: center;
  margin-bottom: 60px;
}

.values-main-title {
  font-size: 2.5rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.title-underline {
  width: 60px;
  height: 4px;
  background: var(--bright-blue);
  margin: 15px auto 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-item {
  padding-left: 20px;
  border-left: 3px solid #e2e8f0;
  transition: border-color 0.3s;
}

.value-item:hover {
  border-left-color: var(--bright-blue);
}

.value-name {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: 700;
}

.value-desc {
  color: var(--slate);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr; }
  .values-main-title { font-size: 2rem; }
  .values-section { padding: 60px 20px; }
}




:root {
  --navy: #0f172a;
  --accent-blue: #2563eb;
  --white: #ffffff;
  --slate: #475569;
}

.about-hero {
  padding: 100px 20px;
  background-color: var(--white);
  overflow: hidden;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px; /* Space between image and text */
}

/* Image Styling with Modern Accent */
.about-image-wrapper {
  position: relative;
  flex: 1;
}

.legacy-photo {
  width: 100%;
  height: auto;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  display: block;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
}

.image-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background-color: var(--accent-blue);
  border-radius: 20px;
  z-index: 1;
  opacity: 0.2;
}

/* Content Styling */
.about-content {
  flex: 1.2;
}

.about-label {
  color: var(--accent-blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 10px;
}

.about-title {
  font-size: 3rem;
  color: var(--navy);
  margin-bottom: 25px;
  font-weight: 800;
  line-height: 1.1;
}

.brand-highlight {
  font-size: 1.25rem;
  color: var(--accent-blue);
  margin-bottom: 15px;
  font-weight: 600;
}

.about-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--slate);
  margin-bottom: 20px;
}

.about-signature {
  margin-top: 30px;
  font-style: italic;
  color: var(--navy);
  font-weight: 500;
  border-left: 3px solid var(--accent-blue);
  padding-left: 15px;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  
  .about-signature {
    border-left: none;
    padding-left: 0;
  }

  .about-title {
    font-size: 2.2rem;
  }
  .about-hero {
    padding: 60px 20px;
  }
}




:root {
  --navy-blue: #0f172a;
  --accent-blue: #2563eb;
  --text-slate: #475569;
  --white: #ffffff;
}

.pillars-section {
  padding: 100px 0;
  background-color: #fcfcfc;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 30px;
  align-items: stretch;
}

.pillar-card {
  background: var(--white);
  padding: 50px 35px;
  border-radius: 24px;
  border: 1px solid #edf2f7;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
}

/* Featured Card (Dark Blue) */
.pillar-card.featured {
  background: var(--navy-blue);
  color: var(--white);
  transform: scale(1.03);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
  border: none;
}

.pillar-card.featured .pillar-title {
  color: var(--white);
}

.pillar-card.featured .pillar-text {
  color: #cbd5e1;
}

/* Hover Effect */
.pillar-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.pillar-icon {
  font-size: 2.5rem;
  color: var(--accent-blue);
  margin-bottom: 25px;
}

.pillar-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy-blue);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.pillar-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-slate);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .pillar-card.featured {
    transform: none;
  }
  .pillar-grid {
    grid-template-columns: 1fr;
  }
  .pillars-section {
    padding: 60px 0;
  }
  .pillar-card {
    padding: 30px;
  }
}






:root {
  --navy: #0f172a;
  --blue: #2563eb;
  --white: #ffffff;
  --slate: #64748b;
  --bg-light: #f1f5f9;
}

/* Common Layout */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; width: 100%; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2.2rem; color: var(--navy); margin-bottom: 15px; }
.subtitle { color: var(--slate); font-size: 1.1rem; max-width: 700px; margin: 0 auto; }

/* Section 1: Horizontal Identity Items */
.identity-focus { padding: 80px 0; background: var(--white); }
.identity-flex { display: flex; flex-direction: column; gap: 30px; max-width: 800px; margin: 0 auto; }
.id-item { display: flex; align-items: center; gap: 25px; padding: 25px; border-radius: 15px; transition: background 0.3s; }
.id-item:hover { background: var(--bg-light); }
.id-icon { font-size: 2rem; color: var(--blue); width: 60px; text-align: center; flex-shrink: 0; }
.id-text h4 { font-size: 1.3rem; color: var(--navy); margin-bottom: 5px; }

@media (max-width: 600px) {
  .id-item { flex-direction: column; text-align: center; }
  .id-icon { width: auto; }
}

/* Section 2: Dark Grid for Audience */
.audience-section { padding: 80px 0; background: var(--navy); }
.title-white { color: var(--white) !important; }
.subtitle-white { color: #94a3b8 !important; }
.audience-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)); gap: 20px; }
.profile-card { background: rgba(255,255,255,0.05); padding: 30px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.1); color: var(--white); }
.profile-tag { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: var(--blue); font-weight: 700; margin-bottom: 15px; }
.profile-card h4 { margin-bottom: 10px; }
.profile-card p { font-size: 0.9rem; color: #94a3b8; line-height: 1.5; }

/* Section 3: The Path */
.transformation-path { padding: 80px 0; background: var(--white); }
.path-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 40px; }
.path-step { position: relative; padding-top: 40px; text-align: center; }
.step-number { font-size: 4rem; font-weight: 900; color: #f1f5f9; position: absolute; top: 0; left: 50%; transform: translateX(-50%); z-index: -1; }
.path-step h4 { color: var(--navy); margin-bottom: 15px; font-size: 1.4rem; }




:root {
  --navy: #0f172a;
  --blue: #2563eb;
  --white: #ffffff;
}

.beliefs-involvement { padding: 80px 0; background: #fcfcfc; }
.content-flex-wrapper { display: flex; gap: 60px; margin-bottom: 80px; }

/* Belief Cards Column */
.beliefs-column { flex: 2; width: 100%; }
.beliefs-masonry { 
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr)); 
  gap: 20px; 
}

.belief-card { 
  position: relative; 
  border-radius: 15px; 
  overflow: hidden; 
  height: 250px; 
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.card-img-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.belief-card:hover .card-img-box img { transform: scale(1.1); }

.card-overlay { 
  position: absolute; 
  inset: 0; 
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent); 
  display: flex; 
  flex-direction: column; 
  justify-content: flex-end; 
  padding: 20px; 
  color: white; 
}

.card-overlay h4 { font-size: 1.1rem; margin-bottom: 5px; }
.card-overlay p { font-size: 0.85rem; opacity: 0.8; line-height: 1.4; }

/* Involvement Sidebar */
.involvement-column { flex: 1; width: 100%; }
.step-link { 
  display: flex; 
  gap: 20px; 
  text-decoration: none; 
  padding: 20px; 
  background: white; 
  border-radius: 12px; 
  margin-bottom: 15px;
  border: 1px solid #f1f5f9;
  transition: all 0.3s;
}
.step-link:hover { border-color: var(--blue); transform: translateX(5px); }
.step-tag { font-weight: 800; color: var(--blue); font-size: 1.2rem; flex-shrink: 0; }
.step-link h5 { color: var(--navy); font-size: 1rem; margin-bottom: 4px; }
.step-link p { font-size: 0.85rem; color: #64748b; }

/* Expectation Banner */
.expectation-banner { 
  background: var(--navy); 
  border-radius: 25px; 
  padding: 50px; 
  color: white; 
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  gap: 40px;
}

.expectation-list { list-style: none; padding: 0; margin-top: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.expectation-list li { padding-left: 25px; position: relative; font-size: 0.95rem; opacity: 0.9; }
.expectation-list li::before { content: "→"; position: absolute; left: 0; color: var(--blue); }

.join-cta { 
  background: var(--white); 
  color: var(--navy); 
  padding: 20px 40px; 
  border-radius: 50px; 
  text-decoration: none; 
  font-weight: 800; 
  white-space: nowrap;
  transition: transform 0.3s;
}
.join-cta:hover { transform: scale(1.05); }

/* Mobile */
@media (max-width: 992px) {
  .content-flex-wrapper { flex-direction: column; }
  .expectation-banner { flex-direction: column; text-align: center; }
  .expectation-list { grid-template-columns: 1fr; }
  .join-cta { width: 100%; text-align: center; }
  .expectation-banner { padding: 30px; }
}






:root {
  --navy: #0f172a;
  --accent-blue: #2563eb;
  --slate: #475569;
  --white: #ffffff;
}

.legacy-section {
  padding: 100px 0;
  background-color: var(--white);
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
}

.legacy-flex {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Image with Floating Frame Effect */
.legacy-image-box {
  flex: 1;
  position: relative;
  width: 100%;
}

.legacy-img {
  width: 100%;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

.image-accent-frame {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  border-top: 5px solid var(--accent-blue);
  border-left: 5px solid var(--accent-blue);
  border-radius: 20px 0 0 0;
  z-index: 1;
}

/* Typography & Content */
.legacy-content {
  flex: 1.2;
}

.legacy-label {
  display: inline-block;
  color: var(--accent-blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.legacy-title {
  font-size: 2.8rem;
  color: var(--navy);
  margin-bottom: 25px;
  font-weight: 800;
}

.legacy-text-body p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--slate);
  margin-bottom: 20px;
}

.highlight-p {
  color: var(--navy);
  font-size: 1.25rem !important;
  font-weight: 500;
}

.legacy-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  transition: gap 0.3s ease, color 0.3s ease;
}

.legacy-link:hover {
  color: var(--accent-blue);
  gap: 15px;
}

/* Responsive Logic */
@media (max-width: 992px) {
  .legacy-flex {
    flex-direction: column;
    text-align: center;
  }
  .image-accent-frame {
    display: none; /* Simplify for mobile */
  }
  .legacy-title { font-size: 2rem; }
  .legacy-section { padding: 60px 0; }
}



:root {
  --navy: #0f172a;
  --blue: #2563eb;
  --white: #ffffff;
  --text-muted: #64748b;
}

.programs-section {
  padding: 80px 20px;
  background-color: #f8fafc;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.2rem;
  color: var(--navy);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.title-bar {
  width: 60px;
  height: 4px;
  background: var(--blue);
  margin: 15px auto 0;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card Styling */
.program-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #edf2f7;
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.program-image {
  position: relative;
  height: 240px;
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--blue);
  color: white;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.program-content {
  padding: 30px;
}

.program-name a {
  text-decoration: none;
  color: var(--navy);
  font-size: 1.5rem;
  font-weight: 700;
  transition: color 0.2s;
}

.program-name a:hover {
  color: var(--blue);
}

.program-desc {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 15px 0;
}

/* Feature List Styling */
.program-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.program-features li {
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.program-features i {
  color: var(--blue);
  font-size: 0.8rem;
}

.learn-more {
  display: inline-block;
  color: var(--blue);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}

.learn-more:hover {
  border-color: var(--blue);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .program-grid {
    grid-template-columns: 1fr;
  }
  .programs-section { padding: 60px 20px; }
}





:root {
  --navy: #0f172a;
  --accent-blue: #2563eb;
  --slate: #64748b;
  --light-gray: #f1f5f9;
}

.upcoming-programs {
  padding: 100px 20px;
  background-color: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.status-badge {
  color: var(--accent-blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  background: #eff6ff;
  padding: 8px 16px;
  border-radius: 50px;
}

.section-title {
  font-size: 2.8rem;
  color: var(--navy);
  margin-top: 20px;
  font-weight: 800;
}

/* Roadmap Grid */
.programs-roadmap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.roadmap-item {
  display: flex;
  gap: 25px;
  padding: 20px;
  transition: transform 0.3s ease;
}

.roadmap-item:hover {
  transform: translateX(10px);
}

.roadmap-num {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent-blue);
  position: relative;
  flex-shrink: 0;
  /* Thin vertical line for the roadmap feel */
}

.roadmap-num::after {
  content: '';
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 40px;
  background: var(--light-gray);
}

.roadmap-content h4 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: 700;
}

.roadmap-content p {
  color: var(--slate);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Mobile Tweak */
@media (max-width: 768px) {
  .section-title { font-size: 2rem; }
  .roadmap-num::after { display: none; }
  .upcoming-programs { padding: 60px 20px; }
  .section-header { margin-bottom: 40px; }
}




:root {
  --navy: #0f172a;
  --blue: #2563eb;
  --white: #ffffff;
  --slate: #64748b;
  --fb-color: #1877f2;
  --yt-color: #ff0000;
  --ig-color: #e4405f;
  --tk-color: #000000;
}

.contact-page { padding: 80px 0; background: #fcfcfc; }
.contact-flex { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }

/* Map & Info */
.map-container { 
  border-radius: 20px; 
  overflow: hidden; 
  height: 300px; 
  margin: 25px 0; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.map-container iframe { width: 100%; height: 100%; border: 0; }

.address-block p { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; color: var(--slate); font-size: 1.1rem; }
.address-block i { color: var(--blue); flex-shrink: 0; }

/* Social Buttons */
.social-connect { margin-top: 40px; }
.social-icons { display: flex; gap: 12px; margin-top: 15px; flex-wrap: wrap; }
.social-btn { 
  width: 45px; height: 45px; border-radius: 12px; display: flex; 
  align-items: center; justify-content: center; color: white; 
  text-decoration: none; transition: transform 0.3s; 
}
.social-btn:hover { transform: translateY(-5px); }
.fb { background: var(--fb-color); }
.yt { background: var(--yt-color); }
.ig { background: var(--ig-color); }
.tk { background: var(--tk-color); }

/* Form Card */
.contact-form-card { background: var(--navy); padding: 50px; border-radius: 30px; color: white; }
.contact-form-card h3 { font-size: 2rem; margin-bottom: 10px; }
.contact-form-card p { opacity: 0.7; margin-bottom: 30px; }

.input-group { margin-bottom: 20px; }
.input-group input, .input-group textarea { 
  width: 100%; padding: 15px 20px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); 
  background: rgba(255,255,255,0.05); color: white; outline: none; transition: border-color 0.3s;
}
.input-group input:focus, .input-group textarea:focus { border-color: var(--blue); }

.form-actions { display: flex; gap: 15px; margin-top: 30px; flex-wrap: wrap; }
.btn-send { background: var(--blue); color: white; border: none; padding: 15px 30px; border-radius: 12px; font-weight: 700; cursor: pointer; flex: 2; min-width: 150px; }
.btn-clear { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.2); padding: 15px 20px; border-radius: 12px; cursor: pointer; flex: 1; min-width: 100px; }

/* Responsive */
@media (max-width: 992px) {
  .contact-flex { grid-template-columns: 1fr; }
  .contact-form-card { padding: 30px; }
  .contact-page { padding: 60px 0; }
}
