* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Calibri', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* All headings use Times New Roman */
h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.hero h1,
.page-hero h1,
.founder-hero h1,
.reality-title,
.contact-hero h2,
.vision-hero h1,
.harsh-reality-section h2,
.solution-section h2,
.why-us-section h2,
.founder-section h2,
.contact-simple h2,
.changemaker-section h2,
.changemaker-section h3,
.founder-philosophy h3,
.founder-vision-statement h3,
.founder-cta h3,
.signature-quote-section h2,
.founder-journey h3,
.founder-vision-section h2,
.philosophy-section-enhanced h2,
.founder-cta-section h2,
.impact-numbers-section h2,
.urgent-call h3,
.mission-vision-card h3,
.core-values-enhanced h3,
.impact-stats h3 {
  font-family: 'Times New Roman', serif !important;
}

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

/* Header */
.header {
  background: #1a1a1a;
  color: white;
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s;
}

.logo:hover {
  opacity: 0.8;
}

.logo-image {
  height: 80px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  display: block;
  filter: brightness(1.1);
}

.logo-icon {
  background: #D4AF37;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.logo-text {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.nav a:hover {
  color: #D4AF37;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: #1a1a1a;
  padding: 1rem 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.mobile-nav.active {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 1rem 2rem;
  color: white;
  text-decoration: none;
  border-bottom: 1px solid #333;
  transition: background-color 0.3s;
  font-size: 1.1rem;
  font-weight: 500;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  background-color: #333;
  color: #D4AF37;
}

/* Hero Section */
.hero {
  background: #1a1a1a;
  color: white;
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(45deg, rgba(26, 26, 26, 0.85), rgba(26, 26, 26, 0.7)),
    url('attached_assets/ai-robot-face.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  animation: heroBackgroundShift 20s ease-in-out infinite alternate;
  z-index: -2;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.6)),
    url('attached_assets/ai-hand-network.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  animation: heroBackgroundShift2 25s ease-in-out infinite alternate-reverse;
  opacity: 0;
  z-index: -1;
}

@keyframes heroBackgroundShift {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.3;
    transform: scale(1.05);
  }

  100% {
    opacity: 1;
    transform: scale(1.02);
  }
}

@keyframes heroBackgroundShift2 {
  0% {
    opacity: 0;
    transform: scale(1.02);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.08);
  }

  100% {
    opacity: 0;
    transform: scale(1.05);
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: 'Times New Roman', serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #D4AF37;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
  max-width: 600px;
  margin: 3rem auto 0;
}

.hero-buttons-top {
  display: flex;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  flex-wrap: wrap;
}

.hero-buttons-bottom {
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero-buttons .btn {
  padding: 18px 32px;
  height: 60px;
  font-size: 1.1rem;
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
  white-space: nowrap;
  min-width: 220px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-buttons-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-button-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.button-number {
  font-size: 1.2rem;
  font-weight: 600;
  color: #D4AF37;
  min-width: 30px;
}

.btn {
  padding: 16px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 54px;
  font-size: 1rem;
  text-align: center;
  white-space: nowrap;
  box-sizing: border-box;
}

.btn-primary {
  background: linear-gradient(135deg, #D4AF37, #F4E6A1);
  color: #1a1a1a;
  border: 2px solid #D4AF37;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #F4E6A1, #D4AF37);
  border-color: #B8941F;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #D4AF37;
  border: 2px solid #D4AF37;
  position: relative;
  overflow: hidden;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, #D4AF37, #F4E6A1);
  transition: width 0.4s ease;
  z-index: -1;
}

.btn-secondary:hover::before {
  width: 100%;
}

.btn-secondary:hover {
  color: #1a1a1a;
  border-color: #D4AF37;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.hero-illustration {
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  border: 3px solid #D4AF37;
}

/* Problems Section */
.problems-section {
  background: #f8f6f3;
  padding: 80px 0;
}

.harsh-reality {
  max-width: 1000px;
  margin: 0 auto;
}

.reality-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 2rem;
}

.intro-text {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #333;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 500;
}

.reality-points {
  margin: 4rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.reality-point {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reality-point:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.point-icon {
  font-size: 2.5rem;
  min-width: 60px;
  text-align: center;
  padding: 0.5rem;
  background: linear-gradient(135deg, #D4AF37, #F4E6A1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.point-content p {
  color: #444;
  line-height: 1.7;
  font-size: 1.1rem;
  margin: 0;
}

.urgent-call {
  text-align: center;
  padding: 3rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  color: white;
  border-radius: 20px;
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}

.urgent-call::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.urgent-call h3 {
  color: #D4AF37;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.urgent-call p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #ccc;
  position: relative;
  z-index: 2;
  margin: 0;
}

/* Enhanced Why Us Section */
.why-us-section {
  padding: 80px 0 40px 0;
  background: white;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.why-card {
  background: #f8f6f3;
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid #D4AF37;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.why-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.why-card h3 {
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.why-card p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

.mission-vision-enhanced {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 4rem 0;
}

.mission-vision-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  color: white;
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mission-vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.mission-vision-card h3 {
  color: #D4AF37;
  font-size: 1.5rem;
  margin: 0;
  font-weight: 600;
}

.mission-vision-card p {
  color: #ccc;
  line-height: 1.6;
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
  margin: 0;
}

.core-values-enhanced {
  margin: 4rem 0;
  text-align: center;
}

.core-values-enhanced h3 {
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 2.5rem;
  font-weight: 600;
}

.values-grid-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.values-grid-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.value-item-enhanced {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  border: 2px solid transparent;
}

.value-item-enhanced:hover {
  transform: translateY(-5px);
  border-color: #D4AF37;
}

.value-number {
  font-size: 2rem;
  font-weight: bold;
  color: #D4AF37;
  margin-bottom: 1rem;
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #D4AF37, #F4E6A1);
  color: #1a1a1a;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  font-weight: 600;
}

.value-item-enhanced h4 {
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.value-item-enhanced p {
  color: #666;
  font-size: 1.10rem;
  line-height: 1.5;
  margin: 0;
}

.impact-stats {
  background: #f8f6f3;
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  margin-top: 4rem;
}

.impact-stats h3 {
  color: #1a1a1a;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #D4AF37;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #666;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Enhanced Founder Section */
.founder-section {
  padding: 10px 0 20px 0;
  background: #f8f6f3;
}

/* Simple Founder Styles */
.founder-simple-content {
  margin: 3rem 0;
}

.founder-profile-simple {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.founder-image-simple {
  text-align: center;
}

.founder-img-simple {
  width: 300px;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border: 3px solid #D4AF37;
  margin-bottom: 2rem;
}

.founder-info-simple h3 {
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.founder-info-simple .founder-title {
  color: #D4AF37;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.founder-info-simple .linkedin-link {
  color: #0077B5;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 20px;
  border: 2px solid #0077B5;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-block;
}

.founder-info-simple .linkedin-link:hover {
  background: #0077B5;
  color: white;
}

.founder-story-simple {
  color: #333;
  line-height: 1.7;
}

.founder-story-simple p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.founder-story-simple strong {
  color: #D4AF37;
  font-weight: 600;
}

.founder-hero-content {
  margin: 3rem 0;
}

.founder-profile-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 4rem;
  gap: 3rem;
}

.founder-hero-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.founder-image-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.founder-story-content {
  padding-left: 2rem;
}

.founder-journey-text {
  color: #333;
  line-height: 1.7;
}

.founder-journey-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-align: justify;
  line-height: 1.8;
}

.founder-journey-text p:last-child {
  margin-bottom: 0;
}

.founder-journey-text strong {
  color: #D4AF37;
  font-weight: 600;
}

.founder-image-container-centered {
  position: relative;
  text-align: center;
  padding: 30px;
  width: 450px;
  margin: 0 auto;
}

.founder-img-centered {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  border: 6px solid #D4AF37;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 3;
}

.founder-img-centered:hover {
  transform: scale(1.05);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
}

.image-highlight-glow {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(45deg, #D4AF37, #F4E6A1, #D4AF37, #B8941F);
  background-size: 400% 400%;
  border-radius: 40px;
  z-index: -1;
  opacity: 0.8;
  animation: glowRotate 4s ease-in-out infinite;
  filter: blur(25px);
}

@keyframes glowRotate {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.image-decorative-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: -2;
}

.decorative-circle {
  position: absolute;
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.circle-1 {
  width: 100px;
  height: 100px;
  top: 30px;
  right: -30px;
  animation-delay: 0s;
}

.circle-2 {
  width: 80px;
  height: 80px;
  bottom: 50px;
  left: -25px;
  animation-delay: 2s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(180deg);
  }
}

.founder-badge {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #D4AF37, #B8941F);
  color: #1a1a1a;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.founder-intro-centered {
  text-align: center;
  max-width: 500px;
}

.founder-intro-centered h3 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.founder-title {
  color: #D4AF37;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.linkedin-container {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.founder-quick-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.quick-stat {
  background: #f8f6f3;
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  color: #333;
  font-size: 0.9rem;
  font-weight: 500;
  border-left: 3px solid #D4AF37;
  transition: transform 0.3s ease;
}

.quick-stat:hover {
  transform: translateY(-3px);
}

.quick-stat strong {
  display: block;
  color: #D4AF37;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.linkedin-link-enhanced {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #0077B5;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 119, 181, 0.3);
}

.linkedin-link-enhanced:hover {
  background: #005885;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 119, 181, 0.4);
}

.linkedin-link-enhanced::before {
  content: "in";
  background: white;
  color: #0077B5;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

.founder-journey {
  margin: 4rem 0;
}

.founder-journey h3 {
  font-size: 2rem;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 600;
}

.journey-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.timeline-point {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #D4AF37;
  transition: transform 0.3s ease;
}

.timeline-point:hover {
  transform: translateX(10px);
}

.timeline-icon {
  flex-shrink: 0;
  width: 60px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #D4AF37, #B8941F);
  color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.timeline-content h4 {
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.timeline-content p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.founder-philosophy {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  color: white;
  padding: 4rem;
  border-radius: 20px;
  margin: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.founder-philosophy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.philosophy-quote {
  position: relative;
  z-index: 2;
  margin-bottom: 3rem;
}

.philosophy-quote blockquote {
  font-size: 1.6rem;
  font-style: italic;
  color: #D4AF37;
  line-height: 1.5;
  margin-bottom: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.philosophy-quote cite {
  color: #ccc;
  font-size: 1rem;
  font-style: normal;
}

.philosophy-principles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.principle-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  text-align: center;
}

.principle-icon {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.principle-symbol {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #D4AF37, #F4E6A1);
  color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.principle-card h4 {
  color: #D4AF37;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.principle-card p {
  color: #ccc;
  line-height: 1.5;
  margin: 0;
}

.founder-vision-statement {
  text-align: center;
  margin: 4rem 0;
}

.founder-vision-statement h3 {
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 2.5rem;
  font-weight: 600;
}

.vision-content {
  max-width: 800px;
  margin: 0 auto;
}

.vision-content-simple {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.vision-main {
  font-size: 1.8rem;
  color: #D4AF37;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.vision-main-simple {
  font-size: 1.5rem;
  color: #D4AF37;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.vision-sub {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.vision-sub-simple {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.revolution-marker {
  background: linear-gradient(135deg, #D4AF37, #B8941F);
  color: #1a1a1a;
  padding: 1.5rem;
  border-radius: 15px;
  font-size: 1.2rem;
}

.founder-cta {
  background: #1a1a1a;
  color: white;
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  margin-top: 4rem;
}

.founder-cta h3 {
  color: #D4AF37;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.founder-cta p {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Vision Section Styles */
.vision-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vision-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(44, 44, 44, 0.85)),
    url('attached_assets/ai-hand-network.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  animation: visionHeroGlow 18s ease-in-out infinite alternate;
  z-index: -1;
}

@keyframes visionHeroGlow {
  0% {
    opacity: 0.3;
    transform: scale(1);
    filter: brightness(0.8) hue-rotate(0deg);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.04);
    filter: brightness(1.1) hue-rotate(10deg);
  }

  100% {
    opacity: 0.4;
    transform: scale(1.02);
    filter: brightness(0.9) hue-rotate(-5deg);
  }
}

/* AI Floating Particles */
.hero::after,
.page-hero::after,
.vision-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(2px 2px at 20px 30px, rgba(212, 175, 55, 0.4), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(100, 200, 255, 0.3), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(212, 175, 55, 0.5), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(100, 200, 255, 0.4), transparent),
    radial-gradient(2px 2px at 160px 30px, rgba(212, 175, 55, 0.3), transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: particlesFloat 25s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes particlesFloat {
  0% {
    transform: translateY(0px) translateX(0px);
    opacity: 0.8;
  }

  33% {
    transform: translateY(-30px) translateX(10px);
    opacity: 0.4;
  }

  66% {
    transform: translateY(-60px) translateX(-10px);
    opacity: 0.6;
  }

  100% {
    transform: translateY(-100px) translateX(20px);
    opacity: 0.2;
  }
}

.vision-hero h1 {
  color: white;
  margin-bottom: 1rem;
}

.hero-quote {
  font-size: 1.4rem;
  font-style: italic;
  color: #D4AF37;
  margin-bottom: 2rem;
}

.vision-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}

.vision-stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  color: #D4AF37;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Vision Statement */
.vision-statement-section {
  padding: 80px 0;
  background: white;
}

.vision-statement h2 {
  font-size: 2.5rem;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 3rem;
}

.vision-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.vision-main {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 2rem;
}

.vision-principles {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.principle-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.principle-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.principle-item h4 {
  color: #D4AF37;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.principle-item p {
  color: #666;
  line-height: 1.5;
}

.vision-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Problems Overview Section */
.problems-overview-section {
  padding: 80px 0;
  background: #f8f6f3;
}

.problems-grid-simple {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.problem-card-simple {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #e74c3c;
}

.problem-card-simple:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.problem-card-simple .problem-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.problem-card-simple h3 {
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.problem-card-simple p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

.problems-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Solution Overview Section */
.solution-overview-section {
  padding: 80px 0;
  background: white;
}

.solution-grid-simple {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.solution-card-simple {
  background: #f8f6f3;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #D4AF37;
}

.solution-card-simple:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.solution-card-simple .solution-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.solution-card-simple h3 {
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.solution-card-simple p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

.solution-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Programs Section */
.programs-section {
  padding: 80px 0;
  background: #f8f6f3;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 1rem;
  padding-top: 10px;
  color: #D4AF37;
}

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  color: #666;
  margin-bottom: 4rem;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.program-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.program-card.featured {
  border: 2px solid #D4AF37;
  transform: scale(1.02);
}

.program-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.program-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.program-card h3 {
  color: #1a1a1a;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.program-tagline {
  color: #D4AF37;
  font-style: italic;
  font-weight: 500;
}

.program-content h4 {
  color: #1a1a1a;
  margin: 1rem 0 0.5rem 0;
  font-size: 1rem;
}

.program-problem h4 {
  color: #e74c3c;
}

.program-solution h4 {
  color: #27ae60;
}

.program-outcome h4 {
  color: #D4AF37;
}

.program-content ul {
  list-style: none;
  padding: 0;
}

.program-content li {
  padding: 0.3rem 0;
  color: #666;
  position: relative;
  padding-left: 1.5rem;
}

.program-content li:before {
  content: "•";
  color: #D4AF37;
  position: absolute;
  left: 0;
}

/* Implementation Timeline */
.implementation-section {
  padding: 80px 0;
  background: white;
}

.implementation-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.timeline-step {
  position: relative;
  background: #f8f6f3;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
}

.step-number {
  background: #D4AF37;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem auto;
}

.step-content h4 {
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: #D4AF37;
  font-weight: 500;
  margin-bottom: 1rem;
}

.step-content ul {
  text-align: left;
  list-style: none;
  padding: 0;
}

.step-content li {
  padding: 0.2rem 0;
  color: #666;
  position: relative;
  padding-left: 1.5rem;
}

.step-content li:before {
  content: "✓";
  color: #27ae60;
  position: absolute;
  left: 0;
}

/* Metrics Section */
.metrics-section {
  padding: 80px 0;
  background: #1a1a1a;
  color: white;
}

.metrics-section .section-title {
  color: white;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.metric-card {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.metric-number {
  font-size: 3rem;
  font-weight: bold;
  color: #D4AF37;
  display: block;
  margin-bottom: 1rem;
}

.metric-card h4 {
  color: white;
  margin-bottom: 0.5rem;
}

.metric-card p {
  color: #ccc;
  font-size: 0.9rem;
}

/* CTA Enhancements */
.cta-assurance {
  margin-top: 2rem;
  text-align: center;
}

.cta-assurance p {
  color: #666;
  font-size: 0.9rem;
}

/* Changemaker Section */
.changemaker-section {
  background: #1a1a1a;
  color: white;
  padding: 80px 0;
}

.changemaker-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.changemaker-section h2 {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: #D4AF37;
}

.changemaker-section h3 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #D4AF37;
}

.changemaker-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.changemaker-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* Contact Buttons */
.contact-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.btn-call {
  background: #25D366;
  color: white;
  text-decoration: none;
}

.btn-call:hover {
  background: #22C55E;
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  text-decoration: none;
}

.btn-whatsapp:hover {
  background: #22C55E;
}

/* Overview Section */
.overview-section {
  padding: 80px 0;
  background: #f8f6f3;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.overview-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.overview-card h3 {
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.btn-outline {
  background: rgba(212, 175, 55, 0.1);
  color: #D4AF37;
  border: 2px solid #D4AF37;
  padding: 18px 32px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 260px;
  height: 60px;
  font-size: 1.1rem;
  text-align: center;
  white-space: nowrap;
  box-sizing: border-box;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, #D4AF37, #F4E6A1);
  transition: width 0.4s ease;
  z-index: -1;
}

.btn-outline:hover::before {
  width: 100%;
}

.btn-outline:hover {
  color: #1a1a1a;
  border-color: #D4AF37;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
  backdrop-filter: blur(15px);
}

/* CTA Section */
.cta-section {
  background: #1a1a1a;
  color: white;
  padding: 60px 0;
  text-align: center;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
}

/* Page Hero */
.page-hero {
  background: #1a1a1a;
  color: white;
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(45deg, rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.7)),
    url('attached_assets/ai-hand-network.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  animation: pageHeroFloat 15s ease-in-out infinite;
  z-index: -1;
}

@keyframes pageHeroFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.4;
  }

  50% {
    transform: translateY(-10px) scale(1.03);
    opacity: 0.6;
  }
}

.page-hero h1 {
  font-size: 3rem;
  color: #D4AF37;
  margin-bottom: 1rem;
}

/* Harsh Reality Section */
.harsh-reality-section {
  background: linear-gradient(135deg, #f8f6f3 0%, #fff 50%, #f8f6f3 100%);
  padding: 60px 0 80px 0;
  position: relative;
  overflow: hidden;
}

.harsh-reality-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(231, 76, 60, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(231, 76, 60, 0.06) 0%, transparent 40%);
  pointer-events: none;
}

.harsh-reality-content {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.intro-text {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 4rem;
  font-weight: 500;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.intro-text::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  border-radius: 2px;
}

.reality-points {
  margin: 4rem 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.reality-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border-top: 5px solid #e74c3c;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.reality-point::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(231, 76, 60, 0.05), transparent);
  transition: left 0.6s ease;
}

.reality-point:hover::before {
  left: 100%;
}

.reality-point:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  border-top-color: #c0392b;
}

.point-icon {
  font-size: 4rem;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(231, 76, 60, 0.3);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.reality-point:hover .point-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(231, 76, 60, 0.4);
}

.point-content {
  flex: 1;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.point-content h4 {
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.3;
}

.point-content p {
  color: #555;
  line-height: 1.7;
  font-size: 1.1rem;
  margin: 0;
}

.urgent-call {
  text-align: center;
  padding: 3rem;
  background: #1a1a1a;
  color: white;
  border-radius: 12px;
  margin-top: 3rem;
}

.urgent-call h3 {
  color: #D4AF37;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.urgent-call p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.hero-quote {
  font-size: 1.3rem;
  font-style: italic;
  color: #D4AF37;
  margin-top: 1rem;
}

/* Content Section */
.content-section {
  padding: 80px 0;
}

/* Problem Details */
.problem-details {
  margin: 3rem 0;
}

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background: #f8f6f3;
  border-radius: 12px;
}

.problem-stat {
  font-size: 3rem;
  font-weight: bold;
  color: #D4AF37;
  min-width: 80px;
}

.problem-item h3 {
  margin-bottom: 1rem;
  color: #1a1a1a;
}

/* Impact Section */
.impact-section {
  margin: 4rem 0;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.impact-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #D4AF37;
}

.impact-card h4 {
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

/* Solution Preview */
.solution-preview {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem;
  background: #1a1a1a;
  color: white;
  border-radius: 12px;
}

.solution-preview h2 {
  color: #D4AF37;
  margin-bottom: 1rem;
}

/* Program Details */
.program-details {
  margin: 3rem 0;
}

.program-card {
  background: #f8f6f3;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.program-card .program-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.program-card h3 {
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.program-subtitle {
  color: #D4AF37;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.program-content h4 {
  color: #1a1a1a;
  margin: 1rem 0 0.5rem;
}

.program-content ul {
  margin-bottom: 1rem;
}

.program-content li {
  margin-bottom: 0.5rem;
}

/* Implementation Steps */
.implementation-section {
  margin: 4rem 0;
}

.implementation-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.step {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.step-number {
  background: #D4AF37;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.benefit-card {
  background: #f8f6f3;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  color: #1a1a1a;
  margin-bottom: 1rem;
}

/* Testimonials */
.testimonials-section {
  margin: 4rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-author {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.testimonial-author strong {
  display: block;
  color: #1a1a1a;
}

.testimonial-author span {
  color: #666;
  font-size: 0.9rem;
}

/* Training Section */
.training-section {
  background: #f8f6f3;
  padding: 3rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.training-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.module-list {
  margin-top: 1rem;
}

.module {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.module h4 {
  color: #D4AF37;
  margin-bottom: 0.5rem;
}

.training-format ul {
  list-style: none;
  margin-top: 1rem;
}

.training-format li {
  padding: 0.5rem 0;
}

/* School Benefits */
.school-benefits {
  margin: 4rem 0;
}

.school-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.school-benefit {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #D4AF37;
}

.school-benefit h4 {
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

/* Enhanced Founder Styles */
.founder-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%);
  color: white;
  padding: 120px 0 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.founder-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(135deg, rgba(26, 26, 26, 0.85), rgba(44, 44, 44, 0.8), rgba(26, 26, 26, 0.85)),
    url('attached_assets/ai-robot-face.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  animation: founderHeroAnimation 30s ease-in-out infinite;
  z-index: -2;
}

@keyframes founderHeroAnimation {

  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.3;
  }

  25% {
    transform: scale(1.05) rotate(0.5deg);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.03) rotate(-0.5deg);
    opacity: 0.4;
  }

  75% {
    transform: scale(1.07) rotate(0.3deg);
    opacity: 0.6;
  }
}

.founder-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.founder-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.founder-badge {
  display: inline-block;
  background: linear-gradient(135deg, #D4AF37, #B8941F);
  color: #1a1a1a;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.founder-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #D4AF37, #F4E6A1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.founder-subtitle {
  font-size: 1.3rem;
  color: #ccc;
  margin-bottom: 2rem;
  font-weight: 300;
}

.founder-stats-mini {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.mini-stat {
  text-align: center;
}

.mini-number {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  color: #D4AF37;
  margin-bottom: 0.25rem;
}

.mini-label {
  font-size: 0.8rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.linkedin-btn {
  display: inline-block;
  background: #0077B5;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 119, 181, 0.3);
}

.linkedin-btn:hover {
  background: #005885;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 119, 181, 0.4);
}

.founder-hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container {
  position: relative;
  width: 350px;
  height: 450px;
}

.image-glow {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(135deg, #D4AF37, #B8941F, #D4AF37);
  border-radius: 25px;
  opacity: 0.3;
  filter: blur(20px);
  animation: glow-pulse 3s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
  0% {
    opacity: 0.3;
    transform: scale(1);
  }

  100% {
    opacity: 0.5;
    transform: scale(1.05);
  }
}

.founder-main-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 3px solid #D4AF37;
}

.image-overlay {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 3;
}

.experience-badge {
  background: rgba(212, 175, 55, 0.95);
  color: #1a1a1a;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.experience-number {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.experience-text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Journey Section */
.founder-journey-section {
  padding: 80px 0;
  background: #f8f6f3;
}

.journey-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}

.journey-text h2 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.journey-intro {
  font-size: 1.2rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.journey-highlights {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.highlight {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #D4AF37;
  transition: transform 0.3s ease;
}

.highlight:hover {
  transform: translateX(10px);
}

.highlight-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.highlight h4 {
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.highlight p {
  color: #666;
  line-height: 1.6;
}

.journey-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.milestone-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #ccc;
  transition: all 0.3s ease;
  position: relative;
}

.milestone-card.featured {
  border-left-color: #D4AF37;
  background: linear-gradient(135deg, #fff, #fffdf7);
  transform: scale(1.02);
}

.milestone-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.milestone-year {
  background: #D4AF37;
  color: #1a1a1a;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.milestone-content h4 {
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.milestone-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Signature Quote */
.signature-quote-section {
  background: #1a1a1a;
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.signature-quote-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.quote-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.quote-mark {
  font-size: 8rem;
  color: #D4AF37;
  opacity: 0.3;
  font-family: serif;
  line-height: 0.8;
  margin-bottom: 1rem;
}

.signature-quote {
  font-size: 1.8rem;
  font-style: italic;
  color: #D4AF37;
  line-height: 1.6;
  margin: 0 0 2rem 0;
  font-weight: 400;
}

.quote-author {
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  padding-top: 2rem;
  margin-top: 2rem;
}

.author-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.author-title {
  color: #ccc;
  font-size: 1rem;
}

/* Impact Numbers Enhanced */
.impact-numbers-section {
  padding: 80px 0;
  background: white;
}

.impact-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.impact-card-enhanced {
  background: #f8f6f3;
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.impact-card-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: left 0.5s ease;
}

.impact-card-enhanced:hover::before {
  left: 100%;
}

.impact-card-enhanced:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.impact-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.impact-number-large {
  font-size: 3rem;
  font-weight: bold;
  color: #D4AF37;
  display: block;
  margin-bottom: 1rem;
}

.impact-card-enhanced h4 {
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.impact-card-enhanced p {
  color: #666;
  line-height: 1.6;
}

/* Vision Section Enhanced */
.founder-vision-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  color: white;
  padding: 80px 0;
}

.vision-content-enhanced {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.vision-content-enhanced h2 {
  font-size: 2.5rem;
  color: #D4AF37;
  margin-bottom: 2rem;
  font-weight: 600;
}

.vision-statement-large {
  font-size: 2rem;
  color: #D4AF37;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 2rem;
  font-style: italic;
}

.vision-description {
  font-size: 1.2rem;
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.vision-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.pillar {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.pillar h4 {
  color: #D4AF37;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.pillar p {
  color: #ccc;
  line-height: 1.5;
}

.revolution-badge {
  background: linear-gradient(135deg, #D4AF37, #B8941F);
  color: #1a1a1a;
  padding: 2.5rem;
  border-radius: 20px;
  margin-top: 3rem;
}

.revolution-badge h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.revolution-badge p {
  font-size: 1.1rem;
  color: #1a1a1a;
  margin: 0;
}

/* Philosophy Enhanced */
.philosophy-section-enhanced {
  padding: 80px 0;
  background: #f8f6f3;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.philosophy-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #D4AF37;
}

.philosophy-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.philosophy-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.philosophy-card h3 {
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.philosophy-card p {
  color: #666;
  line-height: 1.6;
}

/* CTA Section */
.founder-cta-section {
  background: #1a1a1a;
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  color: #D4AF37;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.cta-content p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Legacy founder styles for compatibility */
.founder-story {
  max-width: 800px;
  margin: 0 auto;
}

.linkedin-link {
  color: #0077B5;
  text-decoration: none;
  font-weight: 500;
  margin: 0.5rem 0;
  display: inline-block;
  transition: color 0.3s;
}

.linkedin-link:hover {
  color: #005885;
}

.founder-title {
  color: #D4AF37;
  font-weight: 500;
  margin: 0.5rem 0;
}

.founder-mission {
  font-style: italic;
  color: #666;
}

/* Timeline */
.timeline {
  margin: 2rem 0;
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
}

.timeline-year {
  background: #D4AF37;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 500;
  white-space: nowrap;
  height: fit-content;
}

.timeline-content h4 {
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

/* Vision Points */
.vision-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.vision-point {
  background: #f8f6f3;
  padding: 2rem;
  border-radius: 12px;
}

.vision-point h4 {
  color: #1a1a1a;
  margin-bottom: 1rem;
}

/* Philosophy */
.founder-philosophy {
  background: #1a1a1a;
  color: white;
  padding: 3rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.founder-philosophy blockquote {
  font-size: 1.2rem;
  font-style: italic;
  color: #D4AF37;
  margin-bottom: 2rem;
  text-align: center;
}

.philosophy-principles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.principle {
  text-align: center;
}

.principle h4 {
  color: #D4AF37;
  margin-bottom: 0.5rem;
}

/* Achievements */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.achievement {
  text-align: center;
  background: #f8f6f3;
  padding: 2rem;
  border-radius: 12px;
}

.achievement-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #D4AF37;
  display: block;
}

/* Contact Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin: 3rem 0;
}

.contact-methods {
  margin-bottom: 2rem;
}

.contact-method {
  background: #f8f6f3;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  text-align: center;
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Compact Contact Section */
.contact-section-compact {
  padding: 40px 0;
  background: #f8f6f3;
}

.contact-compact {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.contact-compact h2 {
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 2rem;
  font-weight: 600;
}

.contact-methods-compact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-button-compact {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: white;
  border-radius: 12px;
  text-decoration: none;
  color: #1a1a1a;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border-left: 4px solid transparent;
}

.contact-button-compact:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.email-btn {
  border-left-color: #e74c3c;
}

.email-btn:hover {
  border-left-color: #c0392b;
  background: #fff5f5;
}

.phone-btn {
  border-left-color: #27ae60;
}

.phone-btn:hover {
  border-left-color: #219a52;
  background: #f8fff8;
}

.contact-icon-compact {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-button-compact span {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}

.contact-subtitle {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
  font-style: italic;
}

/* Simplified Contact Styles */
.contact-simple {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-simple h2 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact-simple p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
}

.contact-info-simple {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin: 3rem 0;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2.5rem;
  background: #f8f6f3;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 200px;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-item .contact-icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.contact-details h3 {
  color: #1a1a1a;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-link {
  color: #D4AF37;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #B8941F;
  text-decoration: underline;
}

.contact-note {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #1a1a1a;
  color: white;
  border-radius: 12px;
}

.contact-note p {
  color: #D4AF37;
  font-size: 1rem;
  margin: 0;
  font-weight: 500;
}

.contact-method h3 {
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

/* Form Styles */
.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #eee;
  border-radius: 6px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #D4AF37;
}

/* Commitment Grid */
.commitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.commitment-item {
  background: #f8f6f3;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}

.commitment-item h4 {
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.faq-item {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #D4AF37;
}

.faq-item h4 {
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

/* Active Navigation */
.nav a.active {
  color: #D4AF37;
}

/* Statistics Section */
.stats-section {
  padding: 4rem 0;
  background: #1a1a1a;
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #D4AF37;
  display: block;
  margin-bottom: 1rem;
}

.stat-card h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.stat-card p {
  color: #ccc;
  font-size: 0.95rem;
}

/* Approach Section */
.approach-section {
  padding: 5rem 0;
  background: white;
}

.approach-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.approach-highlights {
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f8f6f3;
  border-radius: 12px;
}

.highlight-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.highlight-item h4 {
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.highlight-item p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.approach-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

/* Solution Section */
.solution-section {
  padding: 4rem 0 5rem 0;
  background: #1a1a1a;
  color: white;
}

.solution-section .section-title {
  color: #D4AF37;
  margin-bottom: 1rem;
  padding-top: 1rem;
}

.solution-section .section-title:nth-of-type(2) {
  margin-top: -0.9rem;
  margin-bottom: 3rem;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.solution-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.solution-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.solution-card h3 {
  color: #D4AF37;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  line-height: 1.3;
}

.solution-card p {
  color: #ccc;
  line-height: 1.6;
  font-size: 1rem;
}

/* Success Section */
.success-section {
  padding: 5rem 0;
  background: #f8f6f3;
}

.success-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.success-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.success-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #D4AF37;
  display: block;
  margin-bottom: 1rem;
}

.success-card h3 {
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.success-card p {
  color: #666;
  font-size: 0.95rem;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
  font-style: italic;
  color: #333;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.testimonial-author {
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.testimonial-author strong {
  display: block;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
}

.testimonial-author span {
  color: #666;
  font-size: 0.9rem;
}

/* Why Choose Section */
.why-choose-section {
  padding: 5rem 0;
  background: white;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.why-choose-card {
  background: #f8f6f3;
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease;
}

.why-choose-card:hover {
  transform: translateY(-5px);
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.why-choose-card h3 {
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.why-choose-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Quick Overview Section */
.overview-section {
  padding: 4rem 0;
  background: #f8f6f3;
}

/* Responsive Design */
/* Desktop specific button layout */
@media (min-width: 769px) {
  .hero-buttons-top .btn {
    min-width: 240px;
  }

  .hero-buttons-bottom .btn {
    min-width: 280px;
  }

  .hero-buttons .btn:nth-child(1) {
    animation: slideInLeft 0.8s ease-out 0.3s both;
  }

  .hero-buttons .btn:nth-child(2) {
    animation: slideInRight 0.8s ease-out 0.5s both;
  }

  .hero-buttons-bottom .btn {
    animation: slideInUp 0.8s ease-out 0.7s both;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  /* Modern Contact Mobile */
  .contact-section-modern {
    padding: 60px 0;
  }

  .contact-hero {
    margin-bottom: 3rem;
  }

  .contact-badge {
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
  }

  .contact-hero h2 {
    font-size: 2.2rem;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    padding: 0 1rem;
  }

  .contact-subtitle {
    font-size: 1.1rem;
    padding: 0 1rem;
  }

  .contact-simple-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .contact-btn-simple {
    min-width: 250px;
    max-width: 300px;
    width: 100%;
    padding: 1rem 1.5rem;
  }

  .btn-icon {
    font-size: 1.3rem;
  }

  .btn-text {
    font-size: 1rem;
  }

  .contact-response-note p {
    font-size: 0.95rem;
    padding: 0.8rem 1.5rem;
  }

  .contact-value-props {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .value-prop {
    flex-direction: column;
    text-align: center;
    padding: 1.8rem;
    gap: 1rem;
  }

  .value-icon {
    font-size: 2.5rem;
    padding: 0.8rem;
  }

  .contact-cta {
    padding: 3rem 2rem;
    border-radius: 20px;
  }

  .cta-content h3 {
    font-size: 1.8rem;
  }

  .cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }



  /* Enhanced Contact Mobile */
  .contact-section-enhanced {
    padding: 60px 0;
  }

  .contact-header h2 {
    font-size: 2rem;
  }

  .contact-intro {
    font-size: 1.1rem;
  }

  .contact-grid-enhanced {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-method-enhanced {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    gap: 1rem;
  }

  .method-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .contact-promise {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    gap: 1rem;
  }

  .contact-form-enhanced {
    padding: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-additional-info {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .info-card {
    padding: 1.5rem;
  }

  /* Header Mobile */
  .header .container {
    flex-wrap: wrap;
  }

  .logo-image {
    height: 70px;
    max-width: 250px;
  }

  .nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .mobile-nav a {
    padding: 0.75rem 1rem;
    font-size: 1.1rem;
  }

  /* Hero Section Mobile */
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.02em;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    max-width: 320px;
    margin: 2rem auto 0;
  }

  .hero-buttons-top {
    flex-direction: column;
    width: 100%;
    gap: 1.5rem;
  }

  .hero-buttons .btn {
    width: 100%;
    min-width: auto;
    max-width: 300px;
    padding: 16px 24px;
    height: 56px;
    font-size: 1rem;
    border-radius: 10px;
  }

  .hero-illustration {
    height: 250px;
    order: -1;
  }

  /* Page Hero Mobile */
  .page-hero {
    padding: 100px 0 60px;
  }

  .page-hero h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .vision-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  /* Grid Layouts Mobile */
  .overview-grid,
  .programs-grid,
  .stats-grid,
  .success-grid,
  .why-choose-grid,
  .testimonials,
  .benefits-grid,
  .impact-grid,
  .metrics-grid,
  .implementation-timeline,
  .achievements-grid,
  .commitment-grid,
  .faq-grid,
  .school-benefits-grid,
  .training-content,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Content Sections Mobile */
  .approach-content,
  .vision-content,
  .problem-content,
  .changemaker-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .approach-img,
  .vision-img,
  .hero-image {
    height: 200px;
    order: -1;
  }

  /* Cards Mobile */
  .highlight-item {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
  }

  .highlight-icon {
    font-size: 1.8rem;
  }

  .problem-item {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .problem-stat {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .program-card {
    padding: 1.5rem;
  }

  .program-card.featured {
    transform: none;
  }

  /* Statistics Mobile */
  .stat-number,
  .success-number,
  .metric-number,
  .achievement-number {
    font-size: 2.2rem;
  }

  /* Cards Padding Mobile */
  .why-choose-card,
  .success-card,
  .testimonial-card,
  .benefit-card,
  .impact-card,
  .metric-card,
  .contact-method,
  .commitment-item,
  .school-benefit {
    padding: 1.5rem;
  }

  /* Timeline Mobile */
  .timeline-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .timeline-year {
    align-self: center;
    margin-bottom: 0.5rem;
  }

  /* Vision Points Mobile */
  .vision-points {
    grid-template-columns: 1fr;
  }

  .philosophy-principles {
    grid-template-columns: 1fr;
  }

  /* Enhanced Why Us Mobile */
  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .mission-vision-enhanced {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .mission-vision-card {
    padding: 2rem;
  }

  .card-icon {
    font-size: 2.5rem;
  }

  .impact-stats {
    padding: 2rem;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Enhanced Founder Mobile */
  .founder-profile-centered {
    gap: 2rem;
  }

  .founder-hero-content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .founder-story-content {
    padding-left: 0;
  }

  .founder-journey-text p {
    text-align: center;
    font-size: 1rem;
  }

  .founder-image-container-centered {
    max-width: 300px;
    width: 300px;
    margin: 0 auto;
    padding: 20px;
  }

  .founder-img-centered {
    height: 380px;
  }

  .founder-intro h3 {
    font-size: 2rem;
  }

  .founder-quick-stats {
    align-items: center;
  }

  .timeline-point {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .timeline-point:hover {
    transform: translateY(-5px);
  }

  .timeline-icon {
    width: auto;
    margin-bottom: 1rem;
  }

  .philosophy-quote blockquote {
    font-size: 1.3rem;
  }

  .philosophy-principles {
    grid-template-columns: 1fr;
  }

  .vision-main {
    font-size: 1.4rem;
  }

  .founder-philosophy {
    padding: 2.5rem;
  }

  .founder-hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .founder-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .founder-hero h1 {
    font-size: 2.5rem;
  }

  .founder-subtitle {
    font-size: 1.1rem;
  }

  .founder-stats-mini {
    justify-content: center;
    gap: 1.5rem;
  }

  .image-container {
    width: 280px;
    height: 350px;
    margin: 0 auto;
  }

  .journey-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .journey-text h2 {
    font-size: 2rem;
  }

  .journey-intro {
    font-size: 1.1rem;
  }

  .highlight {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .highlight:hover {
    transform: translateY(-5px);
  }

  .signature-quote {
    font-size: 1.4rem;
  }

  .quote-mark {
    font-size: 5rem;
  }

  .vision-statement-large {
    font-size: 1.5rem;
  }

  .vision-description {
    font-size: 1.1rem;
  }

  .vision-pillars {
    grid-template-columns: 1fr;
  }

  .philosophy-grid,
  .impact-grid-enhanced {
    grid-template-columns: 1fr;
  }

  /* Legacy founder styles */
  .founder-intro {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .founder-placeholder {
    width: 120px;
    height: 120px;
    font-size: 3rem;
    margin: 0 auto;
  }

  /* Form Mobile */
  .contact-form {
    padding: 1.5rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px;
    font-size: 16px;
    /* Prevents zoom on iOS */
  }

  /* Compact Contact Mobile */
  .contact-compact h2 {
    font-size: 1.8rem;
  }

  .contact-methods-compact {
    gap: 0.8rem;
  }

  .contact-button-compact {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .contact-button-compact span {
    font-size: 0.9rem;
  }

  .contact-icon-compact {
    font-size: 1.3rem;
  }

  /* Simplified Contact Mobile */
  .contact-info-simple {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  .contact-item {
    min-width: auto;
    width: 100%;
    max-width: 280px;
    padding: 2rem;
  }

  .contact-simple h2 {
    font-size: 2rem;
  }

  .contact-simple p {
    font-size: 1.1rem;
  }

  /* Buttons Mobile */
  .hero-buttons,
  .cta-buttons,
  .contact-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }

  .btn {
    width: 240px;
    padding: 16px 32px;
    height: 54px;
    font-size: 1rem;
    text-align: center;
  }

  /* Section Padding Mobile */
  .content-section,
  .stats-section,
  .approach-section,
  .success-section,
  .why-choose-section,
  .overview-section,
  .programs-section,
  .implementation-section,
  .metrics-section,
  .vision-statement-section,
  .changemaker-section,
  .cta-section {
    padding: 3rem 0;
  }

  /* Typography Mobile */
  .section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
  }

  /* Module List Mobile */
  .module {
    padding: 1.25rem;
  }

  /* Principle Items Mobile */
  .principle-item {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .principle-icon {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }

  /* Modern Contact Small Mobile */
  .contact-section-modern {
    padding: 50px 0;
  }

  .contact-hero {
    margin-bottom: 2.5rem;
  }

  .contact-badge {
    padding: 0.5rem 1.2rem;
    font-size: 0.75rem;
    margin-bottom: 1.2rem;
  }

  .contact-hero h2 {
    font-size: 1.8rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    padding: 0 1rem;
  }

  .contact-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .contact-simple-buttons {
    gap: 0.8rem;
    margin-bottom: 1.5rem;
  }

  .contact-btn-simple {
    min-width: 240px;
    max-width: 280px;
    padding: 0.9rem 1.2rem;
  }

  .btn-icon {
    font-size: 1.2rem;
  }

  .btn-text {
    font-size: 0.95rem;
  }

  .contact-response-note p {
    font-size: 0.9rem;
    padding: 0.7rem 1.2rem;
  }

  .contact-value-props {
    gap: 1.2rem;
    margin-bottom: 2.5rem;
  }

  .value-prop {
    padding: 1.5rem;
  }

  .value-icon {
    font-size: 2.2rem;
    padding: 0.6rem;
  }

  .value-content h4 {
    font-size: 1.1rem;
  }

  .value-content p {
    font-size: 0.9rem;
  }

  .contact-cta {
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
  }

  .cta-content h3 {
    font-size: 1.6rem;
    line-height: 1.2;
  }

  .cta-content p {
    font-size: 1rem;
    margin-bottom: 1.8rem;
  }

  .cta-buttons {
    gap: 1rem;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }



  /* Enhanced Contact Small Mobile */
  .contact-section-enhanced {
    padding: 50px 0;
  }

  .contact-header h2 {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .contact-intro {
    font-size: 1rem;
  }

  .contact-methods-enhanced h3,
  .contact-form-section h3 {
    font-size: 1.3rem;
  }

  .contact-method-enhanced {
    padding: 1.25rem;
  }

  .method-content h4 {
    font-size: 1rem;
  }

  .method-content p {
    font-size: 0.9rem;
  }

  .contact-form-enhanced {
    padding: 1.5rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 1rem;
  }

  .info-card {
    padding: 1.25rem;
  }

  .info-icon {
    font-size: 2rem;
  }

  .info-card h4 {
    font-size: 1rem;
  }

  .info-card p {
    font-size: 0.9rem;
  }

  /* Hero Small Mobile */
  .hero {
    padding: 90px 0 50px;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.1;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.02em;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-buttons .btn {
    padding: 16px 32px;
    font-size: 1rem;
    width: 240px;
    height: 54px;
  }

  .hero-buttons {
    gap: 1rem;
    max-width: 280px;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    padding: 16px 24px;
    font-size: 0.95rem;
    height: 54px;
    border-radius: 8px;
    text-align: center;
    white-space: nowrap;
  }

  /* Page Hero Small Mobile */
  .page-hero {
    padding: 90px 0 50px;
  }

  .page-hero h1 {
    font-size: 1.8rem;
    line-height: 1.1;
  }

  .page-hero p {
    font-size: 1rem;
  }

  /* Typography Small Mobile */
  .section-title {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .problem-section h2,
  .changemaker-section h2 {
    font-size: 1.8rem;
  }

  /* Cards Small Mobile */
  .stat-card,
  .success-card,
  .why-choose-card,
  .benefit-card,
  .program-card,
  .testimonial-card,
  .contact-method,
  .commitment-item,
  .school-benefit {
    padding: 1.25rem;
  }

  .highlight-item,
  .problem-item {
    padding: 1rem;
  }

  /* Statistics Small Mobile */
  .stat-number,
  .success-number,
  .metric-number {
    font-size: 2rem;
  }

  /* Logo Small Mobile */
  .logo-image {
    height: 60px;
    max-width: 200px;
  }

  .logo-icon {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }

  .logo-text {
    font-size: 14px;
  }

  /* Vision Stats Small Mobile */
  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  /* Module Small Mobile */
  .module {
    padding: 1rem;
  }

  /* Enhanced Why Us Small Mobile */
  .why-card {
    padding: 2rem;
  }

  .mission-vision-card {
    padding: 1.5rem;
  }

  .card-icon {
    font-size: 2.5rem;
  }

  .impact-stats {
    padding: 2rem;
  }

  .stats-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Reality Points Tablet */
  .reality-points {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  /* Reality Points Mobile */
  .reality-points {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .reality-point {
    min-height: auto;
    padding: 2rem;
  }

  .point-icon {
    width: 80px;
    height: 80px;
    font-size: 3rem;
    margin-bottom: 1rem;
  }

  /* Values Grid Mobile */
  .values-grid-top,
  .values-grid-bottom {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .values-grid-bottom {
    max-width: none;
  }

  /* Enhanced Founder Small Mobile */
  .founder-img-centered {
    height: 320px;
  }

  .founder-image-container-centered {
    width: 280px;
    max-width: 280px;
    padding: 15px;
  }

  /* Simple Founder Mobile */
  .founder-profile-simple {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .founder-img-simple {
    width: 250px;
    height: 320px;
    margin: 0 auto 1.5rem auto;
  }

  .founder-story-simple p {
    text-align: center;
    font-size: 1rem;
  }

  .founder-intro h3 {
    font-size: 1.8rem;
  }

  .timeline-point {
    padding: 1.25rem;
  }

  .philosophy-quote blockquote {
    font-size: 1.1rem;
  }

  .vision-main {
    font-size: 1.2rem;
  }

  .founder-philosophy {
    padding: 2rem;
  }

  .founder-hero h1 {
    font-size: 2rem;
  }

  .founder-stats-mini {
    flex-direction: column;
    gap: 1rem;
  }

  .image-container {
    width: 250px;
    height: 300px;
  }

  .journey-text h2 {
    font-size: 1.8rem;
  }

  .highlight {
    padding: 1.25rem;
  }

  .signature-quote {
    font-size: 1.2rem;
  }

  .quote-mark {
    font-size: 4rem;
  }

  .vision-statement-large {
    font-size: 1.3rem;
  }

  .vision-description {
    font-size: 1.1rem;
  }

  .vision-pillars {
    grid-template-columns: 1fr;
  }

  .philosophy-grid,
  .impact-grid-enhanced {
    grid-template-columns: 1fr;
  }

  /* Legacy founder styles */
  .founder-intro {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .founder-placeholder {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }

  /* Form Small Mobile */
  .form-group {
    margin-bottom: 1.25rem;
  }

  /* Button Small Mobile */
  .btn {
    width: 240px;
    padding: 16px 32px;
    height: 54px;
    font-size: 1rem;
  }

  /* Compact Contact Small Mobile */
  .contact-section-compact {
    padding: 30px 0;
  }

  .contact-compact h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }

  .contact-methods-compact {
    gap: 0.8rem;
  }

  .contact-button-compact {
    padding: 0.8rem;
  }

  .contact-button-compact span {
    font-size: 0.85rem;
  }

  .contact-subtitle {
    font-size: 0.8rem;
  }

  /* Section Padding Small Mobile */
  .content-section,
  .stats-section,
  .approach-section,
  .success-section,
  .why-choose-section,
  .overview-section,
  .programs-section,
  .implementation-section,
  .metrics-section,
  .vision-statement-section,
  .changemaker-section,
  .cta-section {
    padding: 2.5rem 0;
  }

  /* Typography Small Mobile */
  .section-title {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  /* Module List Mobile */
  .module {
    padding: 1rem;
  }

  /* Principle Items Mobile */
  .principle-item {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .principle-icon {
    font-size: 1.8rem;
  }
}

/* Modern Contact Section */
.contact-section-modern {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f6f3 0%, #fff 30%, #f8f6f3 70%, #fff 100%);
  position: relative;
  overflow: hidden;
}

.contact-section-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.contact-hero {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.contact-badge {
  display: inline-block;
  background: linear-gradient(135deg, #D4AF37, #F4E6A1);
  color: #1a1a1a;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  margin-top: -2rem;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
  animation: badgePulse 2s ease-in-out infinite;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-badge:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, #F4E6A1, #D4AF37);
}

@keyframes badgePulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.contact-hero h2 {
  font-size: 3.2rem;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
  background: linear-gradient(135deg, #1a1a1a 0%, #444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-subtitle {
  font-size: 1.4rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}

.contact-main-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-simple-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.contact-btn-simple {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background: white;
  border-radius: 12px;
  text-decoration: none;
  color: #1a1a1a;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  min-width: 220px;
  justify-content: center;
}

.contact-btn-simple:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.email-btn-simple {
  border-left: 4px solid #e74c3c;
}

.email-btn-simple:hover {
  border-color: #e74c3c;
  background: #fff5f5;
}

.phone-btn-simple {
  border-left: 4px solid #27ae60;
}

.phone-btn-simple:hover {
  border-color: #27ae60;
  background: #f8fff8;
}

.btn-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.btn-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
}

.contact-response-note {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-response-note p {
  color: #666;
  font-size: 1rem;
  margin: 0;
  font-style: italic;
  background: #f8f6f3;
  padding: 1rem 2rem;
  border-radius: 8px;
  display: inline-block;
  border-left: 3px solid #D4AF37;
}

.contact-value-props {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.value-prop {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid #D4AF37;
}

.value-prop:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.value-icon {
  font-size: 3rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, #f8f6f3, #fff);
  padding: 1rem;
  border-radius: 12px;
  border: 2px solid #D4AF37;
}

.value-content h4 {
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.value-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.contact-cta {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  color: white;
  padding: 4rem;
  border-radius: 25px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h3 {
  font-size: 2.2rem;
  color: #D4AF37;
  margin-bottom: 1rem;
  font-weight: 600;
}

.cta-content p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Form Validation Styles */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e74c3c;
  background: #fff5f5;
}

.form-group input.error:focus,
.form-group select.error:focus,
.form-group textarea.error:focus {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Hide scrollbar but allow scrolling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #D4AF37;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #B8941F;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 60px 0 20px;
  border-top: 3px solid #D4AF37;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: start;
}

.footer-logo {
  text-align: center;
}

.footer-logo-img {
  height: 80px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
  filter: brightness(1.1);
}

.footer-social h4,
.footer-contact h4 {
  color: #D4AF37;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.social-link:hover {
  background: rgba(212, 175, 55, 0.2);
  transform: translateX(5px);
  border-left-color: #D4AF37;
}

.social-link.instagram:hover {
  border-left-color: #E4405F;
}

.social-link.linkedin:hover {
  border-left-color: #0077B5;
}

.social-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-link span:last-child {
  font-weight: 500;
}

.footer-contact p {
  margin-bottom: 0.8rem;
  color: #ccc;
  font-size: 1rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
}

.footer-bottom p {
  color: #999;
  font-size: 0.9rem;
  margin: 0;
}

/* Footer Mobile */
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: center;
  }

  .footer-logo-img {
    height: 60px;
  }

  .social-links {
    align-items: center;
    max-width: 300px;
    margin: 0 auto;
  }

  .social-link {
    justify-content: center;
    max-width: 200px;
    width: 100%;
  }

  .footer-contact {
    margin-top: 1rem;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 0 15px;
  }

  .footer-content {
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .footer-logo-img {
    height: 50px;
  }

  .footer-social h4,
  .footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .social-link {
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
  }

  .social-icon {
    font-size: 1.3rem;
  }

  .footer-contact p {
    font-size: 0.9rem;
  }

  .footer-bottom p {
    font-size: 0.8rem;
  }
}