/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* Minimalist Base */
:root {
  --primary: #59b280;
  --dark: #1A1A1A;
  --light: #F5F5F5;
  --transition: all 0.3s ease;

  --primary-color: #59b280;
  --secondary-color: #4a8f6e;
  --accent-color: #4a8f6e;
  --text-color: #2d3436;
  --light-bg: #f8f9fa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  color: var(--dark);
  background: white;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Micro-Interactions */
a,
button {
  transition: var(--transition);
}

a:hover {
  opacity: 0.8;
}

/* Header - Responsive Navigation */
header {
  padding: 1.5rem 0;
  min-height: 44px;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: var(--primary);
  text-decoration: none;
  z-index: 1001;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
}

/* Hamburger Button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-line {
  width: 30px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

/* Navigation Menu */
nav {
  position: relative;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  display: block;
  transition: var(--transition);
}

.nav-menu a.active {
  color: var(--primary);
}

.nav-menu a:hover,
.nav-menu a:focus {
  color: var(--primary);
  outline: none;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown:hover .dropdown-menu,
.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  padding: 0.75rem 1.5rem;
  color: var(--dark);
  font-size: 0.9rem;
  white-space: nowrap;
  transition: var(--transition);
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
  background: var(--light);
  color: var(--primary);
}

/* Mobile Navigation Overlay */
.nav-menu.mobile-open {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  z-index: 999;
  padding: 2rem;
  box-sizing: border-box;
}

.nav-menu.mobile-open .dropdown-menu {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  background: transparent;
  box-shadow: none;
  border: none;
  width: 100%;
  max-width: 300px;
  text-align: center;
}

.nav-menu.mobile-open .dropdown-menu a {
  padding: 1rem;
  border-radius: 8px;
  margin: 0.25rem 0;
}

.nav-menu.mobile-open .dropdown-menu a:hover {
  background: var(--light);
}

/* Hamburger Animation */
.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero - Bold Typography */
.hero {
  position: relative;
  padding: 6rem 0 4rem;
  text-align: center;
  background-image: url("pictures/about1img.JPG");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); /* dark overlay for readability */
  z-index: -1;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.05em;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: #fff;
}

/* Programs - Card Grid */
.programs-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 3rem 0;
}

.program-card {
  flex: 1 1 320px;
  max-width: 420px;
  background: white;
  border-radius: 12px;
  padding: 2rem 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.program-card h2,
.program-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--dark);
  font-weight: 600;
}

.program-card p {
  margin-bottom: 1.5rem;
  color: #555;
}

.program-card ul {
  padding-left: 1.2rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  position: relative;
  align-self: center;
  width: 100%;
  max-width: 180px;
  box-shadow: 0 6px 12px rgba(89, 178, 128, 0.5);
}

.hero .btn {
  background: var(--primary);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  height: 90px;
  align-content: center;
}

.btn:hover {
  background: #4a8f6e;
  box-shadow: 0 8px 20px rgba(74, 143, 110, 0.7);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

/* Testimonials - Clean Slider */
.testimonials {
  padding: 4rem 0;
  background: var(--light);
}

.testimonial-card {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-text {
  font-size: 1.3rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary);
}

/* Footer - Subtle */
footer {
  padding: 3rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-links h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
  color: #777;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: #555;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-contact-link {
  color: #59b280;
  text-decoration: none;
  transition: color 0.2s, text-decoration 0.2s;
}

.footer-contact-link:hover {
  color: #2d3748;
  text-decoration: underline;
}

.copyright {
  text-align: center;
  color: #999;
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 1rem;
  }
}

.highlight-number {
  font-size: 2rem;
  color: var(--primary);
  font-weight: 700;
  text-shadow: 0 0 8px rgba(89, 178, 128, 0.7);
  transition: transform 0.3s ease;
  display: inline-block;
}

.highlight-number:hover {
  transform: scale(1.2);
}

/* Contact Us Page Styles with .contactus prefix */
.contactus {
  font-family: 'Poppins', sans-serif;
  background-color: var(--light-bg);
  color: var(--dark);
  --transition: all 0.3s ease;
}

.contactus-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.contactus-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: var(--transition);
  padding: 3rem 2rem;
}

.contactus-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

.contactus-form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.contactus-form-input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db; /* Tailwind gray-300 */
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: var(--transition);
  background-color: var(--light-bg);
  color: var(--dark);
}

.contactus-form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(89, 178, 128, 0.3);
  background-color: white;
}

.contactus-form-label {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  color: #6b7280; /* Tailwind gray-500 */
  transition: var(--transition);
  pointer-events: none;
  background-color: white;
  padding: 0 0.25rem;
}

.contactus-form-input:focus + .contactus-form-label,
.contactus-form-input:not(:placeholder-shown) + .contactus-form-label {
  transform: translateY(-1.5rem) scale(0.85);
  color: var(--primary);
  background-color: white;
  left: 0.5rem;
}

.contactus-submit-btn {
  background-color: var(--primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  font-size: 1rem;
}

.contactus-submit-btn:hover {
  background-color: #4a8f6e;
  transform: translateY(-2px);
}

.contactus-submit-btn:active {
  transform: translateY(0);
}

.contactus-contact-grid {
  display: block;
}

@media (min-width: 768px) {
  .contactus-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.contactus-contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  transition: var(--transition);
  color: var(--dark);
}

.contactus-contact-info-item:hover {
  color: var(--primary);
}

.contactus-contact-icon {
  margin-right: 1rem;
  color: var(--primary);
  font-size: 1.25rem;
}

.contactus-email-link {
  color: var(--primary);
  text-decoration: none;
  position: relative;
}

.contactus-email-link:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary);
  transition: var(--transition);
}

.contactus-email-link:hover:after {
  width: 100%;
}

.contactus-map-container {
  height: 300px;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-top: 2rem;
  position: relative;
  background-color: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280; /* Tailwind gray-500 */
}

.contactus-map-placeholder {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.contactus-map-icon {
  font-size: 1.5rem;
  color: var(--primary);
}

/* Tablet: maintain two columns but adjust padding and font size */
@media (max-width: 900px) {
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .program-card {
    padding: 1.5rem 2rem;
  }
  .program-card h2 {
    font-size: 1.2rem;
  }
  .program-card p {
    font-size: 0.9rem;
  }
}

/* Mobile: switch to one column, full width buttons and inputs */
@media (max-width: 600px) {
  .programs-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .program-card {
    padding: 1rem 1.5rem;
  }
  .program-card h2 {
    font-size: 1.1rem;
  }
  .program-card p {
    font-size: 0.9rem;
  }
  .join-cohort-card .idea-input input {
    max-width: 100%;
  }
  .join-cohort-card .buttons {
    flex-direction: column;
    gap: 15px;
  }
  .join-cohort-card .btn-apply,
  .join-cohort-card .btn-contact {
    width: 100%;
    padding: 12px 0;
  }
}

/* Join a Cohort Card Styles */
.join-cohort-card .idea-input {
  margin: 30px 0;
}

.join-cohort-card .idea-input input {
  border: none;
  border-bottom: 2px solid var(--primary);
  font-size: 1.2rem;
  padding: 5px 0;
  text-align: center;
  width: 100%;
  max-width: 400px;
  outline: none;
  background: transparent;
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
}

.join-cohort-card .idea-input input::placeholder {
  color: #999;
  font-style: italic;
}

.join-cohort-card .buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.join-cohort-card .btn-apply {
  background-color: var(--primary);
  color: white;
  padding: 12px 30px;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
  box-shadow: 0 6px 12px rgba(89, 178, 128, 0.5);
  border: none;
}

.join-cohort-card .btn-contact {
  background-color: var(--light-bg);
  color: var(--dark);
  padding: 12px 30px;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
  border: none;
  box-shadow: none;
}

.join-cohort-card .btn-apply:hover {
  background-color: #4a8f6e;
}

.join-cohort-card .btn-contact:hover {
  background-color: #e0e0e0;
}

  nav ul {
    gap: 1.5rem;
  }

  .profile-card {
    width: 240px;
    height: 280px;
  }

  .profile-front,
  .profile-back {
    padding: 25px;
  }

  .profile-img {
    width: 100px;
    height: 100px;
  }

  .profile-back .profile-img {
    width: 70px;
    height: 70px;
  }

  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .partner-card {
    padding: 20px;
  }

  .faq-container {
    margin: 15px;
  }

  .faq-question {
    padding: 15px;
  }


/* Responsive adjustments */
@media (max-width: 480px) {
  .partners-container {
    gap: 30px;
  }
  
  .partner-name {
    font-size: 1.3rem;
  }
}

/* FAQ Section */
.faq-container {
  max-width: 700px;
  margin: 30px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  overflow: hidden;
  background: white;
}

.faq-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 20px;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
}

.faq-description {
  padding: 15px 25px;
  color: #555;
  line-height: 1.6;
  text-align: center;
  border-bottom: 1px solid #eee;
  background-color: white;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-color);
  transition: all 0.2s ease;
  background-color: var(--light-bg);
}

.faq-question:hover {
  background-color: #f1f1f1;
  color: var(--primary-color);
}

.faq-question::after {
  content: '+';
  font-size: 24px;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item:hover .faq-question::after {
  color: var(--accent-color);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  color: #555;
  line-height: 1.6;
  background-color: white;
}

/* Open on hover */
.faq-item:hover .faq-answer:not(.stay-open) {
  padding: 0 20px 20px;
  max-height: 300px;
}

/* Stay open when clicked */
.faq-answer.stay-open {
  padding: 0 20px 20px;
  max-height: 300px;
}

/* Rotate plus to minus when open */
.faq-item .stay-open+.faq-question::after {
  transform: rotate(45deg);
  color: var(--accent-color);
}

/* Pulse animation on hover */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }

  100% {
    transform: scale(1);
  }
}

.faq-item:hover {
  animation: pulse 0.5s ease;
}

/* Profile Grid */
.profiles-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 3rem 0;
}

/* Profile Card */
.profile-card {
  width: 280px;
  height: 360px;
  position: relative;
  perspective: 1000px;
  cursor: pointer;
}

.profile-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.profile-card:hover .profile-inner {
  transform: rotateY(180deg);
}

.profile-front,
.profile-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.profile-front {
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.profile-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.profile-name {
  font-size: 1.3rem;
  font-weight: 500;
  color: #333;
  text-align: center;
}

/* Profile Back */
.profile-back {
  background: white;
  transform: rotateY(180deg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-back .profile-img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}

.profile-bio {
  font-size: 0.9rem;
  color: #555;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: #666;
  font-size: 1.1rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
  color: #333;
  transform: translateY(-3px);
}

/* Partners section styling */
.partners-section {
  padding: 60px 0;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #2c3e50;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 3px;
  background: #59b280;
  bottom: -10px;
  left: 25%;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #7f8c8d;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.partners-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

/* Partners Section Updates */
.partner-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.partner-logo {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
}

.partner-logo-container {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.partner-name {
  font-weight: bold;
  margin-bottom: 15px;
  color: #2c3e50;
  font-size: 1.5rem;
}

.partner-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.partner-description {
  font-size: 1rem;
  color: #7f8c8d;
  margin-bottom: 20px;
  line-height: 1.5;
  flex-grow: 1;
}

.partner-link {
  display: inline-block;
  padding: 10px 20px;
  background: #59b280;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.partner-link-container {
  margin-top: auto;
}

.partner-link:hover {
  background: #4a8f6e;
}

.btn-container {
  display: inline-flex;
  align-items: center;
  column-gap: 10px;
}

.impact h2 {
  text-align: center;
}

.about-alumga {
  padding: 0 1.5rem;
}

.about-alumga p {
  text-align: justify;
  padding: 3rem 0;
}

.about-alumga h2 {
  text-align: center;
  padding-top: 3rem;
}

.entrepreneurs-section {
  padding: 60px 0;
  text-align: center;
}

.new-body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

.new-h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
  color: var(--dark);
  text-align: center;
}

.new-h2 {
  font-size: 1.1rem;
  color: var(--text-color);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.new-h3 {
  color: var(--secondary-color);
  font-weight: 500;
  margin-top: 2rem;
  display: flex;
  align-items: center;
}

.new-h3:before {
  content: "→";
  margin-right: 10px;
  color: var(--accent-color);
}

.new-phases-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 30px;
}

.new-phase {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: var(--transition);
}

.new-phase:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.new-phase-header {
  background: var(--primary-color);
  color: white;
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.new-phase-header h3 {
  color: white;
  margin: 0;
}

.new-phase-header h3:before {
  color: var(--accent-color);
}

.new-phase-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.new-phase.active .new-phase-content {
  padding: 20px;
  max-height: 1000px;
}

.new-phase-toggle {
  font-size: 1.5rem;
  transition: var(--transition);
}

.new-phase.active .new-phase-toggle {
  transform: rotate(45deg);
}

.new-phase-section {
  margin-bottom: 20px;
}

.new-phase-section h4 {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.new-phase-section h4:before {
  content: "•";
  color: var(--accent-color);
  margin-right: 8px;
  font-size: 1.2rem;
}

.new-ul {
  padding-left: 20px;
}

.new-li {
  margin-bottom: 8px;
  position: relative;
}

.new-li:before {
  content: "—";
  position: absolute;
  left: -20px;
  color: var(--medium-gray);
}

.new-timeline {
  position: relative;
  padding-left: 30px;
  margin: 20px 0;
}

.new-timeline:before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--secondary-color);
}

.new-timeline-item {
  position: relative;
  margin-bottom: 15px;
}

.new-timeline-item:before {
  content: "";
  position: absolute;
  left: -30px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-color);
  border: 2px solid white;
  box-shadow: 0 0 0 2px var(--accent-color);
}

.new-timeline-date {
  font-weight: 500;
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .new-h1 {
      font-size: 2rem;
  }
  
  .new-phases-container {
      gap: 20px;
  }
}

.talk-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Talks Section */
.talk-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.talk-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.talk-section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
  color: var(--dark);
}

.talk-section-header p {
  font-size: 1.1rem;
  color: var(--text-color);
  max-width: 600px;
  margin: 0 auto;
}

/* Talk Card */
.talk-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  margin-bottom: 30px;
}

.talk-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.talk-image {
  height: 300px;
  overflow: hidden;
  position: relative;
}

.talk-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.talk-card:hover .talk-image img {
  transform: scale(1.05);
}

.talk-date {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.talk-content {
  padding: 30px;
}

.talk-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: var(--dark);
}

.talk-meta {
  display: flex;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--text-color);
}

.talk-meta span {
  margin-right: 20px;
  display: flex;
  align-items: center;
}

.talk-meta i {
  margin-right: 5px;
}

.talk-content p {
  margin-bottom: 25px;
  color: var(--text-color);
}

.talk-link {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 3px;
  transition: var(--transition);
}

.talk-link:hover {
  color: var(--accent-color);
}

/* Empty State */
.talk-coming-soon {
  text-align: center;
  padding: 60px 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.talk-coming-soon h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--dark);
}

.talk-coming-soon p {
  color: var(--text-color);
  max-width: 500px;
  margin: 0 auto 30px;
}

/* Startups We Support Section Styles */
.startup1-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.startup1-section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.25rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}

.startup1-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.startup1-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.startup1-card {
    background: var(--light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    width: 100%;
    max-width: 500px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.startup1-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.startup1-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.startup1-card-content {
    padding: 1.5rem;
}

.startup1-name {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.startup1-description {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.startup1-stage {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--light-bg);
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.startup1-learn-more {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.startup1-learn-more:hover {
    background-color: var(--secondary-color);
}

.startup1-social-links {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.startup1-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--text-color);
    text-decoration: none;
}

.startup1-social-link:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Mentorship1 Styles (moved from mentorship.html) */
.mentorship1-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.mentorship1-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.mentorship1-section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.mentorship1-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #2ecc71;
}

.mentorship1-section-subtitle {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.mentorship1-mentorship-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.mentorship1-mentorship-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.mentorship1-mentorship-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.mentorship1-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.mentorship1-card-content {
    padding: 1.5rem;
}

.mentorship1-card-date {
    display: inline-block;
    margin-bottom: 0.75rem;
    color: #2ecc71;
    font-weight: 500;
}

.mentorship1-card-summary {
    margin-bottom: 1.5rem;
    color: #555;
}

.mentorship1-social-share {
    display: flex;
    gap: 0.75rem;
}

.mentorship1-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--light-gray);
    color: var(--text-color);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.mentorship1-share-btn:hover {
    transform: scale(1.1);
}

.mentorship1-share-btn.twitter:hover {
    background: #27ae60;
    color: white;
}

.mentorship1-share-btn.facebook:hover {
    background: #27ae60;
    color: white;
}

.mentorship1-share-btn.linkedin:hover {
    background: #27ae60;
    color: white;
}

@media (max-width: 768px) {
    .mentorship1-mentorship-grid {
        grid-template-columns: 1fr;
    }

    .mentorship1-section-title,
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }
}

/* ENTREPRENEURTALK1 STYLES (appended, all class selectors prefixed) */
.entrepreneurtalk1-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}
.entrepreneurtalk1-page-header {
    text-align: center;
    margin-bottom: 4rem;
}
.entrepreneurtalk1-page-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    letter-spacing: -0.05em;
}
.entrepreneurtalk1-page-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}
.entrepreneurtalk1-talks-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}
.entrepreneurtalk1-talk-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.entrepreneurtalk1-talk-card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.entrepreneurtalk1-speaker-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f4ff, #e2e8f0);
    aspect-ratio: 1/1;
}
.entrepreneurtalk1-speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}
.entrepreneurtalk1-talk-card:hover .entrepreneurtalk1-speaker-image img {
    transform: scale(1.03);
}
.entrepreneurtalk1-talk-details {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.entrepreneurtalk1-talk-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.entrepreneurtalk1-status-past {
    background-color: #f0f5ff;
    color: #718096;
}
.entrepreneurtalk1-status-upcoming {
    background-color: #f0fff4;
    color: #38a169;
}
.entrepreneurtalk1-talk-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
}
.entrepreneurtalk1-talk-speaker {
    font-size: 1.125rem;
    font-weight: 500;
    color: #4a5568;
}
.entrepreneurtalk1-talk-description {
    color: #4a5568;
    line-height: 1.7;
}
.entrepreneurtalk1-talk-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.entrepreneurtalk1-talk-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.entrepreneurtalk1-meta-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #4a5568;
}
.entrepreneurtalk1-meta-value {
    font-weight: 500;
    color: #2d3748;
}
.entrepreneurtalk1-social-share {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.entrepreneurtalk1-share-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    cursor: pointer;
    color: #4a5568;
}
.entrepreneurtalk1-share-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.entrepreneurtalk1-share-button.facebook:hover {
    background-color: #3b5998;
    color: white;
}
.entrepreneurtalk1-share-button.twitter:hover {
    background-color: #1da1f2;
    color: white;
}
.entrepreneurtalk1-share-button.linkedin:hover {
    background-color: #0077b5;
    color: white;
}
.entrepreneurtalk1-register-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #38a169;
    color: white;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}
.entrepreneurtalk1-register-button:hover {
    background-color: #2f855a;
}
@media (max-width: 768px) {
    .entrepreneurtalk1-talk-card {
        grid-template-columns: 1fr;
    }
    .entrepreneurtalk1-talk-meta {
        grid-template-columns: 1fr;
    }
    .entrepreneurtalk1-speaker-image {
        aspect-ratio: 16/9;
    }
}

/* ALUMGAPLUS STYLES (prefixed with .alumgaplus) */
.alumgaplus-tagline {
  font-size: 1.1rem;
  color: #fff;
  margin: 1rem 0;
  font-weight: 300;
}

.alumgaplus-intro {
  font-size: 1rem;
  color: #fff;
  margin: 1.5rem 0;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.alumgaplus-phases {
  padding: 4rem 0;
  text-align: center;
}

.alumgaplus-logo {
  max-width: 300px;
  height: auto;
  margin-bottom: 3rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alumgaplus-form-card {
  padding: 2rem;
}

.alumgaplus-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.alumgaplus-form-group {
  position: relative;
}

.alumgaplus-form-input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: var(--transition);
  background-color: var(--light-bg);
  color: var(--dark);
}

.alumgaplus-form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(89, 178, 128, 0.3);
  background-color: white;
}

.alumgaplus-form-label {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  color: #6b7280;
  transition: var(--transition);
  pointer-events: none;
  background-color: white;
  padding: 0 0.25rem;
}

.alumgaplus-form-input:focus + .alumgaplus-form-label,
.alumgaplus-form-input:not(:placeholder-shown) + .alumgaplus-form-label {
  transform: translateY(-1.5rem) scale(0.85);
  color: var(--primary);
  background-color: white;
  left: 0.5rem;
}

.alumgaplus-textarea {
  min-height: 100px;
  resize: vertical;
}

.alumgaplus-submit-btn {
  background-color: var(--primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  font-size: 1rem;
}

.alumgaplus-submit-btn:hover {
  background-color: #4a8f6e;
  transform: translateY(-2px);
}

.alumgaplus-description {
  padding: 4rem 0;
  text-align: center;
}

.alumgaplus-description h2 {
  margin-bottom: 2rem;
  color: var(--dark);
}

.alumgaplus-description p {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
  color: #555;
}

.alumgaplus-faq {
  padding: 4rem 0;
  background: var(--light-bg);
}

.alumgaplus-cta {
  padding: 4rem 0;
  text-align: center;
  background: var(--primary);
  color: white;
}

.alumgaplus-cta h2 {
  margin-bottom: 1rem;
  color: white;
}

.alumgaplus-cta p {
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.alumgaplus-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.alumgaplus-btn-primary {
  background: white;
  color: var(--primary);
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.alumgaplus-btn-primary:hover {
  background: #f0f0f0;
}

.alumgaplus-btn-secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.alumgaplus-btn-secondary:hover {
  background: white;
  color: var(--primary);
}

.alumgaplus-contact-info {
  margin-top: 2rem;
}

.alumgaplus-contact-info h3 {
  margin-bottom: 1rem;
  color: white;
}

.alumgaplus-contact-info p {
  margin: 0.5rem 0;
}

.alumgaplus-contact-info a {
  color: white;
  text-decoration: none;
}

.alumgaplus-contact-info a:hover {
  text-decoration: underline;
}

/* Responsive for alumgaplus */
@media (max-width: 768px) {
  .alumgaplus-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .alumgaplus-intro {
    font-size: 0.9rem;
  }
  
  .alumgaplus-tagline {
    font-size: 1rem;
  }
}
