/* Global Typography - Montserrat Font, Non-Bold, Small Sizes */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500&display=swap');

:root{
  --gold:#d4a000;
  --bg:#f5f5f5;
  --paper:#ffffff;
  --muted:#666666;
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
  font-family: 'Montserrat' !important;
  font-weight: 400 !important;
}

html, body {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400 !important;
}

strong, b {
  font-weight: 400 !important;
}

nav, nav a, .navbar, .nav-link, .menu-item, .main-nav a, .mobile-nav-link {
  font-size: 12px !important;
  font-weight: 400 !important;
  font-family: 'Montserrat' !important;
}

p {
  font-size: 13px;
  font-weight: 400 !important;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  overflow-x: hidden;
}

body.bg-light{
  background:var(--bg);
  color:#000;
  font-family:'Montserrat';
font-weight: 400;
  padding-top:0;
}

/* Header Styles - Using nav.php and index-styles.css for navbar consistency */

.mega-inner {
  width: 100%;
  margin: 0;
  padding: 28px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.projects-grid {
  grid-template-columns: repeat(4, 1fr);
}

.dropdown-section {
  text-align: left;
}

.dropdown-section h4 {
  margin: 0 0 12px 0;
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
  border-bottom: 1px solid rgba(212,160,0,0.3);
  padding-bottom: 8px;
}

.dropdown-section a {
  display: block;
  color: #000000;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 6px 0;
  transition: all 0.2s ease;
  opacity: 0.8;
}

.dropdown-section a:hover,
.dropdown-section a:focus,
.dropdown-section a:active {
  color: #000000;
  opacity: 1;
  padding-left: 8px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav-content {
  padding: 80px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus,
.mobile-nav-link:active {
  color: #000000;
  padding-left: 20px;
}

/* Hero Section */
.stem-hero {
  position: relative;
  width: 100%;
  min-height: 90vh;
  overflow: hidden;
  margin-top: 0;
  display: flex;
  align-items: center;
}

.hero-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 60px;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  display: block;
  color: #ffffff;
  z-index: 3;
  width: 100%;
}

.hero-left {
  text-align: left;
}

.hero-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.tme-logo-small {
  max-width: 150px;
  height: auto;
  filter: brightness(0) invert(1);
}

.qubix-logo-small {
  max-width: 120px;
  height: auto;
  opacity: 0.9;
}

.ambassador-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(227, 160, 0, 0.2);
  border: 1px solid #E3A000;
  color: #E3A000;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-bottom: 20px;
  font-weight: 400;
}

.ambassador-badge svg {
  flex-shrink: 0;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 400;
  margin-bottom: 20px;
  color: #FFFFFF;
  line-height: 1.2;
}

.hero-underline {
  width: 120px;
  height: 4px;
  background: #E3A000;
  margin: 0 0 25px 0;
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: #F2F2F2;
  line-height: 1.6;
}

.hero-subtitle strong {
  color: #E3A000;
  font-weight: 500;
}

.hero-description-text {
  font-size: 1rem;
  color: #CFCFCF;
  margin-bottom: 25px;
  line-height: 1.6;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #F2F2F2;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.hero-tag:hover {
  background: rgba(227, 160, 0, 0.2);
  border-color: #E3A000;
  color: #E3A000;
}

.hero-tag svg {
  flex-shrink: 0;
}

.hero-description {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: left;
}

.hero-description p {
  margin-bottom: 20px;
}

.hero-description strong {
  color: var(--gold);
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

@media (max-width: 400px) {
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
}

.hero-right {
  text-align: left;
}

.benefits-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 35px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: fit-content;
}

.benefits-title {
  font-size: 1.4rem;
  font-weight: 400;
  color: #E3A000;
  margin-bottom: 20px;
  line-height: 1.3;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #FFFFFF;
  font-size: 1rem;
  line-height: 1.6;
}

.benefits-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #E3A000;
}

.benefits-list li strong {
  color: #E3A000;
  font-weight: 500;
}

.benefits-tagline {
  font-size: 1rem;
  color: #CFCFCF;
  font-style: italic;
  margin: 0;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.free-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #ffffff;
}

/* Buttons */
.btn {
  padding: 15px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 400;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: #E3A000;
  color: #000000;
  font-weight: 500;
}

.btn-primary:hover {
  background: #d49500;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227, 160, 0, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid #E3A000;
  color: #E3A000;
  font-weight: 500;
}

.btn-outline:hover {
  background: #E3A000;
  color: #000000;
  transform: translateY(-2px);
}

/* Programs Section */
.programs-section {
  padding: 100px 0;
  background: var(--bg);
  width: 100%;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 500;
  color: #000000;
  margin-bottom: 15px;
  line-height: 1.2;
}

.section-underline {
  width: 80px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 20px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.highlight-text {
  color: #000000;
  font-weight: 500;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

@media (max-width: 1024px) {
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

.program-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.program-card:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
  transform: translateY(-6px);
}

.program-image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(227, 160, 0, 0.1) 0%, rgba(227, 160, 0, 0.05) 100%);
}

.program-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.program-card:hover .program-image {
  transform: scale(1.08);
}

.program-image-wrapper .program-level-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.program-content-wrapper {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.program-header {
  margin-bottom: 8px;
}

.program-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.program-level-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.program-level-kids {
  background: #FFD74C;
  color: #000000;
}

.program-level-teens {
  background: #4A90E2;
  color: #ffffff;
}

.program-level-career {
  background: #44C36A;
  color: #ffffff;
}

.program-outcome {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
  font-weight: 400;
}

.program-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.program-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: #000000;
  line-height: 1.5;
}

.program-highlights li svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.program-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.program-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

.program-meta-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

.program-pricing {
  font-size: 0.95rem;
  color: #000000;
  margin-top: 4px;
  font-weight: 500;
}

.program-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  padding-top: 8px;
}

.btn-register {
  background: var(--gold);
  color: #000000;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
  cursor: pointer;
  display: block;
}

.btn-register:hover {
  background: #d49400;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227, 160, 0, 0.3);
}

.btn-secondary-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  text-align: center;
  transition: color 0.3s ease;
  font-weight: 500;
}

.btn-secondary-link:hover {
  color: var(--gold);
}

/* Social Proof Bar */
.social-proof-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: rgba(227, 160, 0, 0.05);
  border-radius: 16px;
  padding: 30px 40px;
  margin: 60px 0 40px;
  gap: 40px;
  flex-wrap: wrap;
}

.social-proof-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: 200px;
}

.social-proof-text {
  font-size: 1rem;
  color: #000000;
  line-height: 1.4;
  text-align: center;
}

.social-proof-text strong {
  color: #000000;
  font-weight: 600;
}

/* Programs CTA Section */
.programs-cta-section {
  text-align: center;
  margin-top: 50px;
}

.btn-curriculum {
  background: transparent;
  color: var(--gold);
  padding: 16px 32px;
  border: 2px solid var(--gold);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-curriculum:hover {
  background: var(--gold);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227, 160, 0, 0.3);
}

/* Why STEM Section */
.why-stem-section {
  padding: 80px 40px;
  background: #ffffff;
}

.why-stem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.why-item {
  padding: 30px;
  background: var(--bg);
  border-radius: 12px;
  border-left: 4px solid var(--gold);
}

.why-item h3 {
  font-size: 1.3rem;
  font-weight: 400;
  color: #000000;
  margin-bottom: 15px;
}

.why-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 1024px) {
  .mega-inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 800px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .logo {
    height: 40px;
  }
  
  .site-header {
    padding: 6px 16px;
    height: 50px;
  }
  
  .stem-hero {
    min-height: auto;
    padding: 60px 0;
  }
  
  .hero-content {
    padding: 40px 20px;
  }
  
  .hero-left {
    text-align: left;
  }

  .hero-underline {
    margin: 0 0 25px 0;
  }

  .hero-cta {
    justify-content: flex-start;
  }

  .hero-logos {
    flex-direction: row;
    align-items: center;
  }
  
  .tme-logo-small {
    max-width: 120px;
  }

  .qubix-logo-small {
    max-width: 100px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-description-text {
    font-size: 0.95rem;
  }

  .benefits-card {
    padding: 30px 20px;
  }

  .benefits-title {
    font-size: 1.2rem;
    margin-bottom: 18px;
  }

  .benefits-list {
    gap: 14px;
    margin-bottom: 18px;
  }

  .benefits-list li {
    font-size: 0.9rem;
  }
  
  .programs-section {
    padding: 70px 0;
  }
  
  .container {
    padding: 0 20px;
  }
  
  .section-header {
    margin-bottom: 50px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .programs-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .program-card {
    padding: 0;
  }
  
  .program-image-wrapper {
    height: 200px;
  }
  
  .program-content-wrapper {
    padding: 28px;
  }
  
  .social-proof-bar {
    flex-direction: column;
    gap: 20px;
    padding: 25px 30px;
  }
  
  .social-proof-item {
    min-width: auto;
    justify-content: flex-start;
  }
  
  .why-stem-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .stem-hero {
    padding: 40px 0;
  }
  
  .hero-content {
    padding: 30px 15px;
    gap: 25px;
  }
  
  .hero-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
  
  .hero-underline {
    margin-bottom: 20px;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }
  
  .hero-description-text {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  
  .hero-tags {
    margin-bottom: 25px;
  }
  
  .benefits-card {
    padding: 25px 15px;
  }
  
  .hero-logos {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .tme-logo-small {
    max-width: 100px;
  }

  .qubix-logo-small {
    max-width: 80px;
  }

  .ambassador-badge {
    font-size: 0.75rem;
    padding: 6px 12px;
    margin-bottom: 20px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-description-text {
    font-size: 0.95rem;
  }

  .hero-tags {
    gap: 8px;
    margin-bottom: 25px;
  }

  .hero-tag {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 14px 25px;
    font-size: 1rem;
  }

  .benefits-card {
    padding: 25px 15px;
  }

  .benefits-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .benefits-list {
    gap: 15px;
    margin-bottom: 20px;
  }

  .benefits-list li {
    font-size: 0.9rem;
  }

  .benefits-tagline {
    font-size: 0.9rem;
    padding-top: 15px;
  }
  
  .programs-section {
    padding: 50px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: 1.7rem;
  }
  
  .section-subtitle {
    font-size: 0.95rem;
  }
  
  .programs-grid {
    gap: 25px;
  }
  
  .program-card {
    padding: 0;
    border-radius: 14px;
  }
  
  .program-image-wrapper {
    height: 180px;
  }
  
  .program-image-wrapper .program-level-badge {
    top: 12px;
    right: 12px;
    font-size: 0.7rem;
    padding: 4px 10px;
  }
  
  .program-content-wrapper {
    padding: 24px;
  }
  
  .program-header {
    gap: 12px;
  }
  
  .program-icon-wrapper {
    width: 48px;
    height: 48px;
  }
  
  .program-icon-wrapper svg {
    width: 24px;
    height: 24px;
  }
  
  .program-card h3 {
    font-size: 1.3rem;
  }
  
  .program-level-badge {
    font-size: 0.7rem;
    padding: 3px 10px;
  }
  
  .program-outcome {
    font-size: 0.95rem;
  }
  
  .program-highlights li {
    font-size: 0.9rem;
  }
  
  .program-highlights li svg {
    width: 16px;
    height: 16px;
  }
  
  .program-meta-item {
    font-size: 0.85rem;
  }
  
  .program-meta-item svg {
    width: 14px;
    height: 14px;
  }
  
  .program-pricing {
    font-size: 0.9rem;
  }
  
  .social-proof-bar {
    padding: 20px;
    gap: 15px;
  }
  
  .social-proof-text {
    font-size: 0.9rem;
  }
  
  .btn-register {
    width: 100%;
    padding: 14px 20px;
    font-size: 0.95rem;
  }
  
  .btn-curriculum {
    width: 100%;
    padding: 14px 20px;
    font-size: 1rem;
  }
  
  .container {
    padding: 0 15px;
  }
}

