:root {
  /* Primary colors */
  --primary: #004C43;
  --primary-dark: #004C43;
  --primary-light: #00A067;

}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--primary);
  font-family: 'Rubik', sans-serif;
}


/* Header Styles */
header {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  padding: 0.1rem 2rem;
}

nav {
  display: flex;
  gap: 100px;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 50px;
}

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  /* Layout */
  display: inline-block; 
  padding: 0.75rem 1.5rem;
  margin: 0 0.25rem; 
  font-size: 1.125rem; 
  text-decoration: none;
  color: var(--primary);
  text-align: center;
  background-color: color-mix(in srgb, var(--primary-light) 10%, transparent);
  border-radius: 0.5rem; 
  transition: all 0.3s ease;
  outline: 2px solid transparent; 
  outline-offset: 2px;
}

.nav-links a:hover {
  background-color: color-mix(in srgb, var(--primary-light) 20%, transparent);
  transform: translateY(-1px); 
}


.nav-links a:focus-visible {
  outline-color: var(--primary-light);
}

.nav-links a.active{
  background-color: var(--primary-light);   
}


.logo .logo-image{
    width: 200px;
    margin-left: 119px;
}

/* Mobile styles */
.burger {
  display: none;
  cursor: pointer;
  z-index: 100;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: var(--primary);
  margin: 5px;
  transition: all 0.3s ease;
}

.spacer{
  height: 10vh;
}



@media screen and (max-width: 768px) {
  .logo .logo-image{
    width: 80px;
}
header{
  width: 100%; 
  padding:0;
}

nav {
  display: flex;
  justify-content: space-between;
}
  .nav-links {
    position: fixed;
    right: 0;
    top: 0;
    height: auto;
    width: 50%;
    max-width: 250px;
    background-color: var(--white);
    flex-direction: column;
    align-items: start;
    justify-content: start;
    transform: translateX(100%);
    box-shadow: -5px 0 10px rgba(0,0,0,0.1);
    z-index: 99;
    overflow: scroll;
    padding-top: 30px;
    padding-bottom: 10px;
    background-color: white;
  }

  .nav-links li {
    margin-left: 10px;
  }

  

  .nav-links a {
    font-size: 1.2rem;
    padding: 0.8rem 1rem;
    min-width: 150px;
    text-align: center;
  }



  .burger {
    display: block;
  }

  /* Active class for mobile menu */
  .nav-active {
    transform: translateX(0);
  }

  /* Burger animation */
  .toggle {
    margin-left: 60px;
  }
  .toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  
  .toggle .line2 {
    opacity: 0;
  }
  
  .toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
  }


}


/* Hero Section */
.hero {
  position: relative;
  height: 90vh;
  min-height: 600px;
  max-height: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
  text-align: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
  width: 90%;
  max-width: 1200px;
  padding: 2rem;
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  font-weight: var(--font-bold);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Search Input */
.search-container {
  max-width: 700px;
  margin: 0 auto;
}

.search-input {
  display: flex;
  background: white;
  border-radius: 50px;
  padding: 5px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.search-field {
  flex: 1;
  border: none;
  background: transparent;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  outline: none;
  color: var(--primary);
  text-align: center;
  font-size: 1.5rem;
}

.search-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.search-button:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero {
    height: 80vh;
    min-height: 500px;
  }
  
  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  
  .search-input {
    flex-direction: column;
    background: transparent;
    box-shadow: none;
    gap: 15px;
  }
  
  .search-field {
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    background: white;
  }
  
  .search-button {
    width: 100%;
    height: 50px;
    border-radius: 50px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .search-field {
    font-size: 1rem;
  }
}


/* Testimonial Stats Section */
.testimonial-stats {
  padding: 5rem 1rem;
  background-color: var(--light-gray);
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item {
  background: white;
  padding: 2.5rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--primary-rgb), 0.1);
  border-radius: 50%;
  color: var(--primary);
}

.stat-icon svg {
  width: 40px;
  height: 40px;
}

.stat-title {
  font-size: 1.25rem;
  color: var(--black);
  margin-bottom: 1rem;
  font-weight: var(--font-medium);
}

.stat-count {
  font-size: 2.5rem;
  font-weight: var(--font-bold);
  color: var(--primary);
  margin-top: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .testimonial-stats {
    padding: 3rem 1rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-count {
    font-size: 2rem;
  }
}


/* Offer Section */
.offer-section {
  padding: 5rem 1rem;
  background-color: white;
  text-align: center;
}

.offer-content {
  max-width: 800px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 2rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary);
}

.offer-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--dark-gray);
  margin-bottom: 2rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .offer-section {
    padding: 3rem 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .offer-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .offer-text {
    font-size: 1rem;
  }
}




/* Programs Section */
.programs-section {
  padding: 6rem 2rem;
 background-color: color-mix(in srgb, var(--primary-light) 10%, transparent);
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.75rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #3498db;
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #7f8c8d;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 2.5rem;
}

.program-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  display: flex;
  flex-direction: column;
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.card-image-container {
  height: 280px;
  position: relative;
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(2, 112, 76, 0.1) 0%, rgba(0,0,0,0.7) 100%);
}

.program-card:hover .card-image {
  transform: scale(1.05);
}

.card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.program-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: #3498db;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 1rem;
  align-self: flex-start;
}

.program-title {
  font-size: 1.75rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 700;
}

.program-description {
  color: #7f8c8d;
  line-height: 1.7;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.program-button {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.program-button:hover {
  background: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.program-link {
  color: #3498db;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.program-link:hover {
  color: #2980b9;
  transform: translateX(5px);
}

/* Card Specific Styles */
.ijmb-card .program-badge,
.ijmb-card .program-button {
  background: #3498db;
}

.ijmb-card .program-button:hover {
  background: #2980b9;
}

.jupeb-card .program-badge,
.jupeb-card .program-button {
  background: #2ecc71;
}

.jupeb-card .program-button:hover {
  background: #27ae60;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .programs-grid {
    grid-template-columns: 1fr;
    max-width: 650px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .programs-section {
    padding: 4rem 1.5rem;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .card-image-container {
    height: 240px;
  }
}

@media (max-width: 480px) {
  .programs-section {
    padding: 3rem 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .programs-grid {
    gap: 2rem;
  }
  
  .card-content {
    padding: 1.5rem;
  }
  
  .program-title {
    font-size: 1.5rem;
  }
  
  .card-actions {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}


/* Team Section */
.team-section {
  padding: 6rem 2rem;
  background-color: white;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.75rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #3498db;
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #7f8c8d;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.team-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.member-photo {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .member-photo img {
  transform: scale(1.05);
}

.social-links {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card:hover .social-links {
  opacity: 1;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.2);
  color: white;
  border-radius: 50%;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.member-info {
  padding: 2rem 1.5rem;
}

.member-name {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.member-position {
  color: var(--primary-dark);
  font-weight: 500;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.member-bio {
  color: var(--primary-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Font Awesome Icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

/* Responsive Design */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .team-section {
    padding: 4rem 1.5rem;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .member-photo {
    height: 240px;
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .member-info {
    padding: 1.5rem 1rem;
  }
}


/* Testimonials Section */
.testimonials-section {
  padding: 6rem 2rem;
  background-color: #f8fafc;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.75rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #3498db;
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #7f8c8d;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 0;
}

.quote-icon svg {
  width: 80px;
  height: 80px;
}

.testimonial-content {
  position: relative;
  z-index: 1;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 2rem;
  font-style: italic;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 4rem;
  color: #3498db;
  opacity: 0.2;
  position: absolute;
  top: -20px;
  left: -15px;
  font-family: serif;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
  border: 3px solid rgba(52, 152, 219, 0.2);
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-size: 1.1rem;
  color: #2c3e50;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.author-details {
  font-size: 0.9rem;
  color: #718096;
}

.testimonials-cta {
  text-align: center;
  margin-top: 3rem;
}

.testimonials-cta p {
  font-size: 1.25rem;
  color: #4a5568;
  margin-bottom: 1.5rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.cta-button:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .testimonials-container {
    grid-template-columns: 1fr;
    max-width: 700px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 4rem 1.5rem;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .testimonial-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .testimonial-text {
    font-size: 1rem;
  }
  
  .cta-button {
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
  }
}


/* Footer Styles */
.site-footer {
  background-color: #004C43;
  color: #ecf0f1;
  padding: 3rem 0 0;
  font-size: 1rem;
  line-height: 1.6;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-column {
  margin-bottom: 1.5rem;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.footer-address {
  font-style: normal;
  opacity: 0.9;
}

.footer-heading {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.2rem;
  position: relative;
  display: inline-block;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}

.phone-number {
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ecf0f1;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--primary-light);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
}

.footer-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
}

.copyright {
  opacity: 0.8;
  font-size: 0.9rem;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-column {
    text-align: center;
  }
  
  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .social-icons {
    justify-content: center;
  }
}


/* About Page Hero */
.about-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  color: white;
}

.hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  width: 100%;
  padding: 3rem 2rem;
  text-align: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.breadcrumb {
  font-size: 1.1rem;
}

.breadcrumb a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #3498db;
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.8);
}

/* About Content Section */
.about-content {
  padding: 5rem 2rem;
  background-color: white;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #3498db;
}

.content-wrapper {
  background-color: #f8f9fa;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a5568;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .about-hero {
    height: 50vh;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .about-content {
    padding: 3rem 1.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .content-wrapper {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .about-hero {
    height: 40vh;
    min-height: 300px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .about-text {
    font-size: 1rem;
    text-align: left;
  }
  
  .content-wrapper {
    padding: 1.5rem;
  }
}



/* public/css/style.css */

/* (Keep your existing styles for body, .container, .about-page, .about-hero, .about-content, etc.) */

/* --- History Section Styling --- */
.history-section {
    background-color: #f9f9f9; /* Light background for contrast */
    padding: 80px 0; /* Ample padding */
    text-align: center; /* Center the title */
}

.history-section h2 {
    font-size: 2.8em;
    color: #2c3e50; /* Dark blue heading */
    margin-bottom: 60px; /* Space below the heading */
    position: relative;
}

.history-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    width: 80px;
    height: 4px;
    background-color: #004C43; /* Primary brand color line */
    border-radius: 2px;
}

/* Timeline Container */
.timeline {
    position: relative;
    max-width: 900px; /* Max width for the timeline content */
    margin: 0 auto;
    padding-left: 20px; /* Space for the line */
    padding-right: 20px;
}

/* Vertical Line */
.timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #ddd; /* Light grey line */
    top: 0;
    bottom: 0;
    left: 50%; /* Center the line */
    transform: translateX(-50%);
    z-index: 1;
}

/* Individual Timeline Item */
.timeline-item {
    margin-bottom: 60px; /* Space between items */
    position: relative;
    padding: 0 40px; /* Spacing for dot and content */
    display: flex;
    align-items: flex-start; /* Align content to the top */
}

/* Dot on the Timeline */
.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #004C43; /* Primary brand color */
    border-radius: 50%;
    border: 3px solid #fff; /* White border to stand out */
    z-index: 2;
    top: 0; /* Align with the top of the content */
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.2); /* Subtle glow */
}

/* Timeline Content */
.timeline-content {
    background-color: #fff;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* More pronounced shadow */
    position: relative;
    width: calc(50% - 60px); /* Adjust width considering padding and dot */
    text-align: left; /* Text alignment within content box */
    font-size: 1.05em;
    line-height: 1.7;
}

.timeline-content h3 {
    color: #004C43; /* Heading color */
    font-size: 1.6em;
    margin-top: 0;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #555;
}

/* Arrows for content boxes - to point to the line */
.timeline-content::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    top: 20px;
}

/* Alternate left/right alignment for timeline items */
.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 50%; /* Pushes content to the left */
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 50%; /* Pushes content to the right */
}

.timeline-item:nth-child(odd) .timeline-content::before {
    border-left: 15px solid #fff; /* Arrow pointing right */
    right: -15px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    border-right: 15px solid #fff; /* Arrow pointing left */
    left: -15px;
}


/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .history-section {
        padding: 50px 0;
    }

    .history-section h2 {
        font-size: 2.2em;
        margin-bottom: 40px;
    }

    .timeline::before {
        left: 20px; /* Move line to the left edge */
        transform: translateX(0);
    }

    .timeline-item {
        flex-direction: column; /* Stack items vertically */
        align-items: flex-start;
        padding: 0 0 0 50px; /* Space for the dot and line */
        margin-bottom: 40px;
    }

    .timeline-dot {
        left: 20px; /* Align dot with the line */
        transform: translateX(0);
    }

    .timeline-content {
        width: 100%; /* Full width for content */
        margin-left: 0 !important; /* Override alternating margins */
        margin-right: 0 !important; /* Override alternating margins */
        text-align: left;
    }

    .timeline-content::before {
        border-bottom: 15px solid #fff; /* Change arrow direction for mobile */
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        top: -15px;
        left: 25px; /* Position below the dot */
    }

    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        border-bottom: 15px solid #fff; /* Ensure all arrows point down */
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        left: 25px; /* Consistent position */
        right: auto;
    }
}

/* --- Our Mission & Vision Section Styling --- */
.mission-vision-section {
    background-color: #f0f4f8; /* Light blue-grey background */
    padding: 100px 0;
    text-align: center;
}

.mv-grid {
    display: flex;
    justify-content: center;
    gap: 40px; /* Space between cards */
    flex-wrap: wrap; /* Allow cards to wrap on smaller screens */
    max-width: 1000px; /* Limit grid width */
    margin: 0 auto;
}

.mv-card {
    background-color: #ffffff;
    border-radius: 12px; /* More rounded corners */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Softer, larger shadow */
    padding: 40px;
    flex: 1; /* Allow cards to grow */
    min-width: 300px; /* Minimum width before wrapping */
    max-width: 45%; /* Max width for two columns */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
}

.mv-card:hover {
    transform: translateY(-10px); /* Lift card on hover */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15); /* Enhance shadow on hover */
}

.mv-icon {
    font-size: 3.5em; /* Large icons */
    color: #004C43; /* Primary color for icons */
    margin-bottom: 25px;
    position: relative;
    animation: bounceIn 1s ease-out; /* Animation on load */
}

/* Specific icon color for visual distinction */
.vision-card .mv-icon {
    color: #28a745; /* Green for vision */
}

.mission-card .mv-icon {
    color: #dc3545; /* Red for mission */
}


.mv-card h3 {
    font-size: 2.2em;
    color: #34495e; /* Darker heading */
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.mv-card h3::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: #004C43;
    border-radius: 2px;
}

.vision-card h3::after {
    background-color: #28a745;
}

.mission-card h3::after {
    background-color: #dc3545;
}


.mv-card p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.7;
}

/* Animations */
@keyframes bounceIn {
    0%, 20%, 40%, 60%, 80%, 100% {
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
    20% {
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        transform: scale3d(0.9, 0.9, 0.9);
    }
    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        transform: scale3d(0.97, 0.97, 0.97);
    }
    100% {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .mv-grid {
        flex-direction: column; /* Stack cards vertically */
        gap: 30px;
    }

    .mv-card {
        max-width: 90%; /* Allow cards to take more width */
        margin: 0 auto; /* Center individual cards */
    }

    .mv-card h3 {
        font-size: 1.8em;
    }

    .mv-icon {
        font-size: 3em;
    }
}

@media (max-width: 480px) {
    .mission-vision-section {
        padding: 60px 0;
    }

    .mv-card {
        padding: 30px;
    }

    .mv-card p {
        font-size: 1em;
    }
}


/* --- Contact Us Section Styling --- */
.contact-us-section {
    background-color: #f9fbfd; /* Very light blue-grey background */
    padding: 80px 0;
    text-align: center;
}

.contact-us-section h2 {
    font-size: 3em;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    animation: fadeInDown 1s ease-out; /* Title animation */
}

.contact-us-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100px;
    height: 4px;
    background-color: #004C43;
    border-radius: 2px;
}

.section-description {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.2s forwards; /* Delayed animation */
    opacity: 0; /* Start hidden for animation */
}

.contact-grid {
    display: flex;
    justify-content: center;
    gap: 40px; /* Space between columns */
    flex-wrap: wrap; /* Allows columns to stack on small screens */
    margin-bottom: 60px; /* Space before map */
}

/* Contact Info Column */
.contact-info-column {
    flex: 1;
    min-width: 300px; /* Minimum width before wrapping */
    max-width: 450px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px; /* Space between info items */
    transition: transform 0.3s ease;
}

.contact-info-column:hover {
    transform: translateY(-5px); /* Subtle lift on hover */
}

.info-item {
    display: flex;
    align-items: center;
    text-align: left;
}

.info-item i {
    font-size: 2.5em;
    color: #004C43; /* Primary color for icons */
    margin-right: 20px;
    width: 50px; /* Fixed width for icon to align text */
    text-align: center;
    animation: slideInLeft 1s ease-out; /* Icon animation */
}

.info-item .info-details h4 {
    font-size: 1.4em;
    color: #34495e;
    margin-bottom: 5px;
}

.info-item .info-details p {
    font-size: 1.05em;
    color: #555;
    margin: 0;
}

.info-item .info-details p a {
    color: #004C43;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item .info-details p a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Contact Form Column */
.contact-form-column {
    flex: 1;
    min-width: 300px;
    max-width: 550px; /* Slightly wider for the form */
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.contact-form-column:hover {
    transform: translateY(-5px); /* Subtle lift on hover */
}

.contact-form-column h4 {
    font-size: 1.8em;
    color: #34495e;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.contact-form-column h4::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: #004C43;
    border-radius: 2px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    color: #333;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #004C43;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
}

.contact-form textarea {
    resize: vertical; /* Allow vertical resizing */
}

.contact-form .submit-btn {
    background-color: #004C43;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
    font-weight: bold;
}

.contact-form .submit-btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px); /* Slight lift on button hover */
}

/* Map Section */
.map-container {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden; /* Ensures map corners are rounded */
    padding: 20px; /* Padding around the map iframe */
    margin-top: 40px; /* Space from contact grid */
}

.map-container h3 {
    font-size: 2em;
    color: #34495e;
    margin-bottom: 20px;
    text-align: center;
}

.map-container iframe {
    border-radius: 8px; /* Rounded corners for the map itself */
}


/* Animations for sections/elements */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Specific animations for columns with delay */
.animate-fade-in {
    opacity: 1; /* Start hidden */
    animation: fadeInUp 1s ease-out forwards;
}

.delay-200 { animation-delay: 0.2s; }
.delay-400 { animation-delay: 0.4s; }


/* Responsive Adjustments */
@media (max-width: 992px) {
    .contact-grid {
        flex-direction: column; /* Stack columns vertically */
        align-items: center; /* Center stacked columns */
        gap: 30px;
    }

    .contact-info-column,
    .contact-form-column {
        max-width: 90%; /* Take more width on smaller screens */
    }
}

@media (max-width: 768px) {
    .contact-us-section {
        padding: 60px 0;
    }
    .contact-us-section h2 {
        font-size: 2.5em;
    }
    .section-description {
        font-size: 1.1em;
        margin-bottom: 40px;
    }
    .contact-info-column,
    .contact-form-column {
        padding: 25px;
    }
    .contact-form input,
    .contact-form textarea,
    .contact-form .submit-btn {
        padding: 12px;
    }
    .map-container {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .contact-info-column,
    .contact-form-column {
        max-width: 100%; /* Full width on very small screens */
    }
    .info-item {
        flex-direction: column; /* Stack icon and text vertically */
        text-align: center;
    }
    .info-item i {
        margin-right: 0;
        margin-bottom: 10px;
        width: auto;
    }
}

/* Gallery Hero Section */
.gallery-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
  max-width: 800px;
  padding: 2rem;
  text-align: center;
  animation: fadeInUp 1s ease;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  opacity: 0.9;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-indicator span {
  display: block;
  width: 30px;
  height: 50px;
  border: 2px solid white;
  border-radius: 15px;
  position: relative;
  animation: scrollPulse 2s infinite;
}

.scroll-indicator span::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 10px;
  background: white;
  border-radius: 2px;
  animation: scrollDown 2s infinite;
}

@keyframes scrollPulse {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}

@keyframes scrollDown {
  0% { top: 8px; opacity: 0; }
  30% { opacity: 1; }
  100% { top: 20px; opacity: 0; }
}

/* Gallery Section */
.gallery-section {
  padding: 5rem 1rem;
  background: #f8f9fa;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.zoom-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: 2px solid white;
}

/* Lightgallery Overrides */
.lg-backdrop {
  background-color: rgba(0, 0, 0, 0.9);
}

.lg-outer .lg-thumb-item.active, 
.lg-outer .lg-thumb-item:hover {
  border-color: #3498db;
}

.lg-actions .lg-next, 
.lg-actions .lg-prev {
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
}

.lg-toolbar {
  background-color: rgba(0, 0, 0, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .gallery-hero {
    min-height: 500px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .gallery-section {
    padding: 3rem 1rem;
  }
}

@media (max-width: 480px) {
  .gallery-hero {
    min-height: 400px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .scroll-indicator {
    bottom: 20px;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* --- IJMB Page Specific Styling --- */
.ijmb-page {
    /* Adjust padding-top if you have a fixed header */
    padding-top: 0;
}

/* --- IJMB Hero Section --- */
.ijmb-hero {
    position: relative;
    width: 100%;
    height: 550px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    padding: 0 20px;
}

.ijmb-hero .hero-background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    filter: brightness(0.6); /* Darken image for text readability */
}

.ijmb-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 88, 45, 0.4); /* Green overlay */
    z-index: 1;
}

.ijmb-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.ijmb-logo-container {
    margin-bottom: 20px;
    opacity: 0; 
}

.ijmb-logo {
    max-width: 150px; /* Adjust logo size */
    height: auto;
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.5)); /* Subtle shadow for logo */
}

.ijmb-hero h1 {
    font-size: 4.5em;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    animation: fadeInDown 1.2s ease-out; /* Main title animation */
}

.ijmb-hero p {
    font-size: 1.6em;
    margin-bottom: 40px;
    opacity: 0.9;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.2s ease-out 0.3s forwards; /* Delayed animation */
    opacity: 0; /* Start hidden for animation */
}

.ijmb-hero .register-btn {
    display: inline-block;
    background-color: #ffc107; /* Bright yellow/orange for attention */
    color: #333;
    padding: 15px 40px;
    border-radius: 50px; /* Pill shape */
    text-decoration: none;
    font-size: 1.3em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: bounceIn 1s ease-out 0.5s forwards; /* Animated entrance */
    opacity: 0; /* Start hidden for animation */
}

.ijmb-hero .register-btn:hover {
    background-color: #EDC764;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* --- Section Heading Styling (reusable) --- */
.section-heading {
    font-size: 2.8em;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.section-heading::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 80px;
    height: 4px;
    background-color: #004C43;
    border-radius: 2px;
}

.section-description {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* --- IJMB Info Section --- */
.ijmb-info-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.ijmb-info-section .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.ijmb-info-section .info-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0; /* For animation */
}

.ijmb-info-section .info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.ijmb-info-section .info-card i {
    font-size: 3.5em;
    color: #004C43;
    margin-bottom: 15px;
}

.ijmb-info-section .info-card h3 {
    font-size: 1.8em;
    color: #34495e;
    margin-bottom: 10px;
}

.ijmb-info-section .info-card p {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
}

/* --- Requirements Section --- */
.requirements-section {
    background-color: #e9ecef; /* Slightly darker background */
    padding: 80px 0;
}

.requirements-section .requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.requirements-section .requirement-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    opacity: 0; /* For animation */
}

.requirements-section .requirement-item:hover {
    background-color: #f0f0f0;
    transform: translateY(-5px);
}

.requirements-section .requirement-item i {
    font-size: 2.8em;
    color: #28a745; /* Green for requirements */
    margin-bottom: 15px;
}

.requirements-section .requirement-item p {
    font-size: 1.1em;
    color: #333;
    font-weight: 500;
}

/* --- Programme Details Section (A/L & O/L) --- */
.programme-details-section {
    padding: 80px 0;
}

.al-programme {
    background-color: #ffffff;
}

.ol-programme {
    background-color: #f8f9fa;
}

.programme-details-section .programme-content {
    display: flex;
    gap: 40px;
    align-items: flex-start; /* Align content to the top */
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.programme-details-section .programme-content.reverse-layout {
    flex-direction: row-reverse; /* Reverse order for O/L */
}

.programme-details-section .programme-text {
    flex: 2; /* Takes more space */
    font-size: 1.1em;
    color: #444;
    line-height: 1.8;
    text-align: justify;
    opacity: 0; /* For animation */
}

.programme-details-section .subjects-list {
    flex: 1; /* Takes less space */
    background-color: #eaf6ff; /* Light blue background for list */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    opacity: 0; /* For animation */
}

.programme-details-section .subjects-list h3 {
    font-size: 1.6em;
    color: #004C43;
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 2px solid #004C43;
    padding-bottom: 10px;
    display: inline-block; /* Makes border-bottom only for text width */
}

.programme-details-section .subjects-list ul {
    list-style: none; /* Remove default bullets */
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Multi-column list */
    gap: 10px 15px; /* Row and column gap */
}

.programme-details-section .subjects-list li {
    font-size: 1em;
    color: #333;
    padding-left: 25px; /* Space for custom bullet */
    position: relative;
    margin-bottom: 5px;
    font-weight: 500;
}

.programme-details-section .subjects-list li::before {
    content: '\f00c'; /* Font Awesome checkmark icon */
    font-family: 'FontAwesome'; /* Use Font Awesome font */
    color: #28a745; /* Green checkmark */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9em;
}

/* --- Call to Action Section --- */
.ijmb-cta-section {
    background: linear-gradient(to right, #004C43, #025a3d); /* Gradient background */
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.ijmb-cta-section h2 {
    font-size: 3.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.ijmb-cta-section p {
    font-size: 1.4em;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-register-btn {
    display: inline-block;
    background-color: #EDC764; /* Bright yellow/orange */
    color: #333;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.4em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.cta-register-btn:hover {
    background-color: #EDC764;
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

/* --- Animations (re-using and adding specific ones) --- */
/* Existing animations: fadeInDown, fadeInUp, bounceIn */

/* For delayed element animations */
.animate-fade-in {
    opacity: 1;
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Delay classes for staggered animations */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
/* Add more as needed for further elements */


/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .ijmb-hero {
        height: 450px;
    }
    .ijmb-hero h1 {
        font-size: 3.5em;
    }
    .ijmb-hero p {
        font-size: 1.4em;
    }
    .ijmb-hero .register-btn {
        font-size: 1.2em;
        padding: 12px 30px;
    }

    .ijmb-info-section .info-grid,
    .requirements-section .requirements-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }

    .programme-details-section .programme-content {
        flex-direction: column; /* Stack content for smaller screens */
        align-items: center;
        gap: 30px;
    }

    .programme-details-section .programme-text,
    .programme-details-section .subjects-list {
        flex: none; /* Remove flex sizing */
        width: 100%; /* Take full width */
        max-width: 700px; /* Limit overall width */
    }

    .programme-details-section .programme-content.reverse-layout {
        flex-direction: column; /* Keep stacked, no reverse */
    }

    .cta-section h2 {
        font-size: 3em;
    }
    .cta-section p {
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    .ijmb-hero {
        height: 400px;
    }
    .ijmb-hero h1 {
        font-size: 2.8em;
    }
    .ijmb-hero p {
        font-size: 1.2em;
    }
    .section-heading {
        font-size: 2.2em;
    }
    .section-description {
        font-size: 1em;
        margin-bottom: 40px;
    }
    .ijmb-info-section,
    .requirements-section,
    .programme-details-section,
    .cta-section {
        padding: 60px 0;
    }
    .ijmb-info-section .info-card,
    .requirements-section .requirement-item {
        padding: 25px;
    }
    .cta-register-btn {
        font-size: 1.2em;
        padding: 15px 40px;
    }
    .programme-details-section .subjects-list ul {
        grid-template-columns: 1fr; /* Single column list on small screens */
    }
}

@media (max-width: 480px) {
    .ijmb-hero {
        height: 350px;
    }
    .ijmb-hero h1 {
        font-size: 2.2em;
    }
    .ijmb-hero p {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .ijmb-hero .register-btn {
        font-size: 1em;
        padding: 10px 25px;
    }
    .section-heading {
        font-size: 1.8em;
    }
    .ijmb-info-section .info-grid,
    .requirements-section .requirements-grid {
        grid-template-columns: 1fr; /* Single column on very small screens */
    }
    .programme-details-section .programme-text,
    .programme-details-section .subjects-list {
        padding: 20px;
    }
    .cta-section h2 {
        font-size: 2.5em;
    }
    .cta-section p {
        font-size: 1.1em;
    }
    .cta-register-btn {
        font-size: 1.1em;
        padding: 12px 30px;
    }
}



/* JUPEB Page Styles */
.jupeb-page {
    overflow-x: hidden;
}

/* Hero Section */
.jupeb-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 0 20px;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(1, 82, 28, 0.85) 0%, rgba(16, 175, 87, 0.9) 100%);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.jupeb-logo-container {
    margin-bottom: 30px;
}

.jupeb-logo {
    height: 80px;
    width: auto;
}

.jupeb-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.jupeb-hero p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.register-btn {
    display: inline-block;
    background: #e05a2b;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    border: none;
    cursor: pointer;
}

.register-btn:hover {
    background: #e05a2b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.secondary-btn {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.secondary-btn:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 15px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {
    0% { top: 8px; opacity: 1; }
    100% { top: 24px; opacity: 0; }
}

/* Stats Bar */
.stats-bar {
    background: #004C43;
    color: white;
    padding: 40px 0;
    position: relative;
    z-index: 1;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/picas.png');
    opacity: 0.1;
    z-index: -1;
}

.stats-bar .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 0 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #e05a2b;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Info Section */
.jupeb-info-section {
    padding: 100px 0;
    background: #f9fafc;
}

.section-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #004C43;
    position: relative;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #e05a2b;
}

.section-description {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.info-card {
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(4, 102, 37, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #055c29 0%, #14d179 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #004C43;
}

.info-card p {
    color: #666;
    line-height: 1.7;
}

/* Requirements Section */
.requirements-section {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subheading {
    font-size: 1.2rem;
    color: #777;
    max-width: 700px;
    margin: 0 auto;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.requirement-item {
    background: #f9fafc;
    border-radius: 10px;
    padding: 30px;
    border-left: 4px solid #FF6B35;
    transition: all 0.3s ease;
}

.requirement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.requirement-icon {
    width: 60px;
    height: 60px;
    background: #004C43;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.requirement-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #004C43;
}

.requirement-item p {
    color: #666;
    line-height: 1.7;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9fafc 0%, #eef2f7 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #FF6B35;
    z-index: 1;
}

.process-item {
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.process-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #004C43;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 25px;
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border: 2px solid #FF6B35;
    border-radius: 50%;
}

.process-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #004C43;
}

.process-item p {
    color: #666;
    line-height: 1.7;
}

/* Subjects Section */
.subjects-section {
    padding: 100px 0;
    background: white;
}

.subject-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.subject-category {
    background: #f9fafc;
    border-radius: 10px;
    padding: 30px;
    border-top: 4px solid #004C43;
    transition: all 0.3s ease;
}

.subject-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.subject-category h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: #004C43;
    display: flex;
    align-items: center;
}

.subject-category h3 i {
    margin-right: 15px;
    color: #FF6B35;
}

.subject-category ul {
    list-style: none;
}

.subject-category li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: #555;
    font-size: 1.1rem;
}

.subject-category li:last-child {
    border-bottom: none;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #004C43 0%, #0ec517 100%);
    color: white;
}

.testimonials-section .section-heading {
    color: white;
}

.testimonials-section .section-subheading {
    color: rgba(255,255,255,0.8);
}

.testimonials-slider {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 30px 0;
    scroll-snap-type: x mandatory;
    margin-top: 60px;
}

.testimonial-item {
    min-width: 350px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 30px;
    scroll-snap-align: start;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid #FF6B35;
}

.testimonial-author h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.testimonial-author p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* CTA Section */
.jupeb-cta-section {
    padding: 100px 0;
    background: white;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.cta-content {
    padding-right: 50px;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #004C43;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.cta-primary-btn {
    display: inline-block;
    background: #FF6B35;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.cta-primary-btn:hover {
    background: #e05a2b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.cta-secondary-btn {
    display: inline-block;
    background: transparent;
    color: #004C43;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #004C43;
}

.cta-secondary-btn:hover {
    background: rgba(0, 78, 152, 0.1);
    transform: translateY(-3px);
}

.cta-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.cta-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.cta-image:hover img {
    transform: scale(1.05);
}

/* Animations */
.animate-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s ease forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-bounce-in {
    opacity: 0;
    transform: scale(0.8);
    animation: bounceIn 0.8s ease forwards;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 107, 53, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .jupeb-hero h1 {
        font-size: 2.8rem;
    }
    
    .cta-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .jupeb-hero h1 {
        font-size: 2.2rem;
    }
    
    .jupeb-hero p {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .process-steps::before {
        display: none;
    }
}

@media (max-width: 576px) {
    .jupeb-hero {
        min-height: 600px;
    }
    
    .jupeb-hero h1 {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}


/* Base Styles & Utilities (Color Variables Removed) */
:root {
    --transition-speed: 0.3s;
    --border-radius: 8px;
    --font-family: 'Inter', sans-serif; /* Modern, clean font */
}

.register-body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: #343a40; /* --text-color */
    background-color: #f8f9fa; /* --background-light */
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scroll from animations */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading {
    font-size: 2.8rem;
    color: #0056b3; /* --primary-color */
    margin-bottom: 15px;
    position: relative;
    display: inline-block; /* For underline effect */
}

.section-heading::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 60px;
    height: 4px;
    background-color: #28a745; /* --accent-color */
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    color: #666; /* --text-light */
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes sparkle {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0);
        opacity: 0;
    }
}

.animate-fade-in-up {
    opacity: 1;
    transform: translateY(20px);
    transition: opacity var(--transition-speed) ease-out, transform var(--transition-speed) ease-out;
}

.animate-fade-in {
    opacity: 1;
    transition: opacity var(--transition-speed) ease-out;
}

.animate-fade-in.animated,
.animate-fade-in-up.animated {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

.pulse-animation {
    animation: none; /* Controlled by JS hover */
}

.pulse-animation.pulse {
    animation: pulse 1s infinite;
}

/* Hero Section */
.register-hero {
    background: linear-gradient(45deg, #007bff, #0056b3); /* --gradient-blue */
    color: #fff; /* --white */
    padding: 80px 0 0; /* Adjusted for wave */
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    text-align: center;
    max-width: 700px;
}

.hero-text h1 {
    font-size: 3.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-text p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-cta {
    margin-top: 20px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #28a745; /* --accent-color */
    color: #fff; /* --white */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color var(--transition-speed) ease;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #218838; /* Darker green */
    transform: translateY(-2px);
}

.cta-button svg {
    width: 24px;
    height: 24px;
    transition: transform var(--transition-speed) ease;
}

.cta-button:hover svg {
    transform: translateX(5px);
}


/* Payment Section */
.payment-section {
    padding: 80px 0;
    background-color: #f8f9fa; /* --background-light */
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
}

.payment-card {
    background-color: #fff; /* --white */
    border-radius: var(--border-radius);
    padding: 35px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); /* --shadow-light */
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    border: 1px solid #dee2e6; /* --border-color */
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); /* --shadow-medium */
}

.payment-card .card-icon {
    margin-bottom: 25px;
    background-color: #007bff; /* --primary-light */
    padding: 15px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.payment-card .card-icon svg {
    width: 48px;
    height: 48px;
    color: #fff; /* --white */
}

.payment-card h3 {
    font-size: 1.8rem;
    color: #0056b3; /* --primary-color */
    margin-bottom: 15px;
}

.payment-card p {
    font-size: 1rem;
    color: #666; /* --text-light */
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1; /* Ensures cards are same height if text differs */
}

.payment-card .expand-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #007bff; /* --primary-light */
    color: #fff; /* --white */
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: background-color var(--transition-speed) ease;
}

.payment-card .expand-btn:hover {
    background-color: #0056b3; /* --primary-color */
}

.payment-card .expand-btn svg {
    width: 18px;
    height: 18px;
}

.payment-card.coming-soon {
    opacity: 0.7;
    filter: grayscale(0.5);
    cursor: not-allowed;
    background-color: #e9ecef; /* --background-dark */
}

.payment-card.coming-soon:hover {
    transform: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); /* --shadow-light */
}

.payment-card.coming-soon .badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #28a745; /* --accent-color */
    color: #fff; /* --white */
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    overflow: hidden;
}

.payment-card.coming-soon .badge .sparkle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.7) 0%, transparent 70%);
    animation: sparkle 1.5s infinite;
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0;
}

/* Bank Details Content */
.bank-details-content {
    background-color: #fff; /* --white */
    border-radius: var(--border-radius);
    padding: 0px 40px; /* Initial padding set to 0 for transition */
    margin-top: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); /* --shadow-light */
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out; /* Smooth transition */
}

.bank-details-content .subsection-heading {
    font-size: 2.2rem;
    color: #0056b3; /* --primary-color */
    margin-bottom: 20px;
    text-align: center;
}

.bank-details-content .section-description {
    margin-bottom: 30px;
}

.bank-accounts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.bank-info-card {
    background-color: #e9ecef; /* --background-dark */
    border-radius: var(--border-radius);
    padding: 30px;
    border: 1px solid #dee2e6; /* --border-color */
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);
}

.bank-info-card .bank-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.bank-info-card .bank-header svg {
    width: 32px;
    height: 32px;
    color: #0056b3; /* --primary-color */
}

.bank-info-card .bank-header h4 {
    font-size: 1.6rem;
    color: #0056b3; /* --primary-color */
    margin: 0;
    text-transform: uppercase;
}

.bank-info-card .bank-details p {
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: #343a40; /* --text-color */
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.bank-info-card .bank-details p strong {
    color: #0056b3; /* --primary-color */
    margin-right: 8px;
    min-width: 120px; /* Align labels */
}

.bank-info-card .bank-details .account-number-row {
    justify-content: space-between;
    align-items: center;
}

.bank-info-card .bank-details .account-number {
    font-weight: 600;
    color: #28a745; /* --accent-color */
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    margin-right: 10px;
}

.copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background-color: #6c757d; /* --secondary-color */
    color: #fff; /* --white */
    padding: 8px 15px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color var(--transition-speed) ease;
}

.copy-btn:hover {
    background-color: #5a6268;
}

.copy-btn svg {
    width: 16px;
    height: 16px;
    color: #fff; /* --white */
}

/* Copy Toast Notification */
.copy-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background-color: rgba(0, 0, 0, 0.85);
    color: #fff; /* --white */
    padding: 12px 25px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.copy-toast svg {
    width: 20px;
    height: 20px;
    color: #28a745; /* --accent-color */
}

/* Verification Prompt */
.verification-prompt {
    background-color: rgba(0, 123, 255, 0.08);
    border-left: 5px solid #007bff; /* --primary-light */
    padding: 30px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-top: 50px;
}

.verification-prompt .prompt-content {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    flex-grow: 1;
}

.verification-prompt svg {
    min-width: 40px;
    min-height: 40px;
    width: 40px;
    height: 40px;
    color: #0056b3; /* --primary-color */
    margin-top: 5px;
}

.verification-prompt .prompt-text {
    flex-grow: 1;
}

.verification-prompt p {
    font-size: 1.1rem;
    color: #343a40; /* --text-color */
    margin-bottom: 20px;
}

.verification-prompt strong {
    color: #0056b3; /* --primary-color */
}

.verification-prompt .action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.verification-prompt .action-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.verification-prompt .whatsapp-button {
    background-color: #25d366;
    color: #fff; /* --white */
}

.verification-prompt .whatsapp-button:hover {
    background-color: #1DA851;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.verification-prompt .email-button {
    background-color: #dc3545;
    color: #fff; /* --white */
}

.verification-prompt .email-button:hover {
    background-color: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.verification-prompt .action-button svg {
    width: 18px;
    height: 18px;
    color: #fff; /* --white */
}

.verification-prompt .note {
    font-size: 0.9rem;
    color: #6c757d; /* --secondary-color */
    margin-top: 25px;
    text-align: center;
}

/* Registration Process Section */
.registration-process-section {
    padding: 80px 0;
    background-color: #e9ecef; /* --background-dark */
}

.process-steps-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.process-step-item {
    background-color: #fff; /* --white */
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); /* --shadow-light */
    border: 1px solid #dee2e6; /* --border-color */
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.process-step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); /* --shadow-medium */
}

.process-step-item .step-number {
    width: 55px;
    height: 55px;
    background-color: #007bff; /* --primary-light */
    color: #fff; /* --white */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.process-step-item .step-icon {
    margin-bottom: 20px;
}

.process-step-item .step-icon svg {
    width: 40px;
    height: 40px;
    color: #28a745; /* --accent-color */
}

.process-step-item .step-content h3 {
    font-size: 1.6rem;
    color: #0056b3; /* --primary-color */
    margin-bottom: 12px;
}

.process-step-item .step-content p {
    font-size: 1rem;
    color: #666; /* --text-light */
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #f8f9fa; /* --background-light */
}

.faq-accordion {
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background-color: #fff; /* --white */
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08); /* --shadow-light */
    border: 1px solid #dee2e6; /* --border-color */
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    background-color: #fff; /* --white */
    transition: background-color var(--transition-speed) ease;
}

.faq-question:hover {
    background-color: #e9ecef; /* --background-dark */
}

.faq-question h4 {
    margin: 0;
    font-size: 1.2rem;
    color: #0056b3; /* --primary-color */
    font-weight: 600;
}

.faq-question svg {
    width: 24px;
    height: 24px;
    color: #6c757d; /* --secondary-color */
    transition: transform var(--transition-speed) ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    background-color: #f8f9fa; /* --background-light */
    max-height: 80px;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item.active .faq-answer {
    padding: 20px 30px 30px;
}

.faq-answer p {
    margin: 0;
    font-size: 1rem;
    color: #343a40; /* --text-color */
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text p {
        font-size: 1.2rem;
    }

    .payment-methods-grid,
    .bank-accounts,
    .process-steps-list {
        grid-template-columns: 1fr;
    }

    .payment-card,
    .bank-info-card,
    .process-step-item {
        margin: 0 auto;
        max-width: 450px;
    }

    .bank-details-content {
        padding: 0px 20px;
    }

    .verification-prompt {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .verification-prompt .prompt-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .verification-prompt svg {
        margin-bottom: 15px;
    }

    .verification-prompt .action-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .register-hero {
        padding-top: 60px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-heading {
        font-size: 2.2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .payment-section,
    .registration-process-section,
    .faq-section {
        padding: 60px 0;
    }

    .bank-details-content .subsection-heading {
        font-size: 1.8rem;
    }

    .bank-info-card .bank-details p {
        flex-direction: column;
        align-items: flex-start;
    }

    .bank-info-card .bank-details p strong {
        margin-bottom: 5px;
        min-width: unset;
    }

    .account-number-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .register-hero {
        padding-top: 40px;
    }
    .hero-text h1 {
        font-size: 2rem;
    }
    .hero-text p {
        font-size: 0.95rem;
    }
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .hero-wave {
        height: 100px;
    }
    .payment-card,
    .bank-info-card,
    .process-step-item {
        padding: 25px;
    }
    .section-heading {
        font-size: 1.8rem;
    }
    .section-description {
        font-size: 0.9rem;
    }
    .payment-card h3 {
        font-size: 1.5rem;
    }
    .bank-info-card .bank-header h4 {
        font-size: 1.4rem;
    }
    .faq-question h4 {
        font-size: 1.1rem;
    }
    .faq-question, .faq-answer {
        padding: 20px 25px;
    }
    .faq-item.active .faq-answer {
        padding: 15px 25px 25px;
    }
    .copy-toast {
        width: calc(100% - 40px);
        left: 20px;
        transform: translateX(0%) translateY(20px);
    }
}