/* ================== RESET & BASE ================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: "Segoe UI", sans-serif;
  background: #f5f7fb;
}

a {
  text-decoration: none;
  color: white;
}

/* ================== NAVBAR ================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo1 {
  font-size: 20px;
  font-weight: bold;
}

.logo1 small {
  display: block;
  font-size: 12px;
  color: gray;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links .active {
  color: #ff7a00;
}

/* Navbar Button */
.navbar .btn {
  background: #ff7a00;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  width: auto;
  margin-bottom: 0;
}

/* ================== HERO SECTION ================== */
.program-hero {
  background: linear-gradient(135deg, #e9d5ff, #fde68a, #fbcfe8);
  padding: 80px 20px;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: auto;
}

.icon1 {
  margin-right: -10px;
  font-size: 40px;
}

.program-hero h1 {
  font-size: 48px;
  margin: 10px 0;
  color: #1f2937;
}

.program-hero h2 {
  font-size: 22px;
  font-weight: 500;
  color: #4b5563;
  margin-bottom: 15px;
}

.program-hero p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
}

/* ================== PROGRAMS SECTION ================== */
.programs {
  text-align: center;
  padding: 50px 20px;
}

.programs h1 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #1f2937;
}

.subtitle {
  color: #6b7280;
  margin-bottom: 40px;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns */
  gap: 25px;
  max-width: 1000px;
  margin: auto;
}


.card {
   width: 100%;
  max-width: 480px;
  margin: auto;
  overflow: hidden;
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: 0.3s;
}

.card-header {
  display: flex;
  gap: 15px;
  align-items: center;
}

/* Card icon */
.card .icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  flex-shrink: 0;
  margin-bottom: 0;
}

.age {
  color: #f97316;
  font-weight: 500;
}

.desc {
  margin: 15px 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
}

/* Card button */
.card button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(90deg, #ff7a00, #ff4d00);
  color: white;
  cursor: pointer;
  font-size: 15px;
  margin-bottom: 15px;
}

/* Hidden extra content by default */
.extra-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

/* Show when active */
.extra-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.extra-content h3 {
  margin-top: 15px;
  font-size: 16px;
  color: #1f2937;
}

.extra-content ul {
  padding-left: 15px;
  color: #374151;
}

.extra-content ul li {
  margin: 6px 0;
  font-size: 14px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.tags span {
  background: #eef2f7;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  color: #374151;
}

/* ================== COLOR VARIANTS ================== */
.pink {
  background: linear-gradient(135deg, #ff7eb3, #ff758c);
}

.blue {
  background: linear-gradient(135deg, #60a5fa, #22d3ee);
}

.yellow {
  background: linear-gradient(135deg, #facc15, #f59e0b);
}

.green {
  background: linear-gradient(135deg, #34d399, #10b981);
}

.purple {
  background: linear-gradient(135deg, #a78bfa, #6366f1);
}

/* ================== FEATURES SECTION ================== */
.features {
  text-align: center;
  padding: 60px 20px;
  background: #f5f7fb;
}

.features h1 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #1f2937;
}

.feature-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.feature-card {
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  text-align: left;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

/* Feature icon */
.feature-card .icon {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  margin-bottom: 15px;
}

.feature-card h3 {
  margin: 10px 0;
  font-size: 18px;
  color: #1f2937;
}

.feature-card p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
}

/* ================== CTA SECTION ================== */
.cta-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #fff7ed, #fce7f3);
}

.cta-card {
  max-width: 900px;
  margin: auto;
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  position: relative;
}

.cta-left {
  flex: 1;
  min-width: 250px;
}

.cta-left .emoji {
  font-size: 36px;
  margin-bottom: 10px;
}

.cta-left h2 {
  font-size: 26px;
  color: #1f2937;
  margin-bottom: 10px;
}

.cta-left p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-item .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.icon.orange {
  background: linear-gradient(135deg, #fb923c, #f97316);
}

.highlight {
  color: #f97316;
  font-weight: 600;
}

.green-text {
  color: #10b981;
  font-weight: 500;
}

.cta-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 200px;
}

.cta-right .btn {
  width: 100%;
  padding: 14px 20px;
  border-radius: 30px;
  font-size: 15px;
  cursor: pointer;
  border: none;
  margin-bottom: 0;
  text-align: center;
}

.btn.primary {
  background: linear-gradient(90deg, #ff7a00, #ff4d00);
  color: white;
}

.btn.outline {
  background: transparent;
  border: 2px solid #ff7a00;
  color: #ff7a00;
}

.btn.gradient {
  background: linear-gradient(90deg, #a78bfa, #6366f1);
  color: white;
}

.cta-footer {
  width: 100%;
  background: #fff7ed;
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 14px;
  color: #92400e;
  border: 1px solid #fed7aa;
}

/* ================== FOOTER ================== */
.footer {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #cbd5e1;
  padding: 50px 20px 20px;
  font-family: "Segoe UI", sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  max-width: 1100px;
  margin: auto;
  gap: 45px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col h3,
.footer-col h4 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-col p {
  margin: 8px 0;
  font-size: 14px;
  line-height: 1.6;
}

.logo {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}

.logo span {
  margin-left: 8px;
}

.icon3 {
  font-size: 22px;
  display: flex;
  gap: 14px;
  margin-top: 12px;
}

.icon3 a {
  color: #cbd5e1;
  transition: color 0.3s;
}

.icon3 a:hover {
  color: #ff7a00;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 8px 0;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.footer-col ul li:hover {
  color: #fff;
}

.footer-col ul li a {
  color: #cbd5e1;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #ff7a00;
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  border-top: 1px solid #334155;
  padding-top: 15px;
  color: #94a3b8;
}

/* Footer map iframe */
.footer-map {
  flex-shrink: 0;
}

.footer-map iframe {
  border-radius: 12px;
  display: block;
  max-width: 100%;
}

/* ================== HAMBURGER MENU (Mobile) ================== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
  width: auto;
  margin-bottom: 0;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 3px;
  transition: 0.3s;
}



/* ================== MOBILE ================== */
@media (max-width: 768px) {
#menu {
    display: flex !important;   /* FORCE SHOW */
    flex-direction: row;     /* vertical menu */
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-top: 10px;
  }

  #menu a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    font-size: 16px;
  }
  .navbar {
    padding: 15px 20px;
    flex-wrap: wrap;
    width: 100%;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: row;
    width: 100%;
    background: #fff;
    margin-top: 10px;
    padding: 10px 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 10px 20px;
  }

  .navbar .btn {
    width: 100%;
    margin-top: 10px;
  }

  .program-hero {
    padding: 50px 20px;
    width: 100%;
  }

  .program-hero h1 {
    font-size: 28px;
  }

  .program-hero h2 {
    font-size: 16px;
  }
  .programs {
 
   width: 100%;
}
  .card-container {
     grid-template-columns: 1fr; 
}
.features {
  width: 100%;
}
  .feature-container {
    grid-template-columns: 1fr 1fr;
}
.cta-section {
  width: 100%;
}
  .cta-card {
    flex-direction: row;
    padding: 20px;
}
.footer {
    padding: 30px 15px;
    text-align: center;
    width: 100%;
}
  .footer-container {
    
    display: grid;
    grid: auto/auto auto auto;
  }
  .footer-col {
    width: 100%;
  }
  .logo {
    justify-content: center;
    font-size: 18px;
  }
  .footer p {
    font-size: 14px;
    line-height: 1.6;
  }
  .icon3 {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 18px;
  }
a 
{
  color:white;
}
  /* Quick Links */
  .footer-col ul {
    padding: 0;
  }

  .footer-col ul li {
    list-style: none;
  }

  /* MAP FIX (IMPORTANT) */
  iframe {
    width: 100% !important;
    height: 200px;
    margin-right: 0 !important;
  }

  /* REMOVE INLINE STYLE ISSUE */
  .footer-container > div[style] {
    margin-right: 0 !important;
    width: 100%;
  }

  /* Bottom */
  .footer-bottom {
    font-size: 13px;
    text-align: center;
    margin-top: 20px;
  }

}