/* Reset margins and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
     padding-top: 60px; /* Same as .site-header height */
}

/* ========== HEADER & NAVIGATION FIX ========== */
.site-header {
  background-color: #012b5aad;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 20px;
  height: 60px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.container.nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #F9B233;
  font-weight: 600;
}

.brand img.logo {
  width: 45px;
  height: 45px;
  margin-right: 10px;
  object-fit: contain;
}

/* Hamburger Toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #F9B233;
  border-radius: 2px;
}

/* Navigation Menu (Hidden by default on small screens) */
.main-nav {
  display: none;
  position: absolute;
  top: 60px;
  right: 20px;
  background-color: #012b5aad;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 230px;
  animation: fadeIn 0.3s ease;
}

.main-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 15px 20px;
  margin: 0;
}

.main-nav a {
  color: #F9B233;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
}

.main-nav a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

/* Show nav when toggled */
.main-nav.show {
  display: block;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Desktop View */
@media (min-width: 992px) {
  .main-nav {
    display: block;
    position: static;
    background: none;
    box-shadow: none;
    width: auto;
  }

  .main-nav ul {
    flex-direction: row;
    gap: 24px;
    padding: 0;
  }

  /* Keep hamburger visible */
  .nav-toggle {
    display: block;
  }
}


/* Hero Section - Completely remove gap */
.hero-slideshow {
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
    width: 100%;
    height: 90vh; /* Increased from 80vh to 90vh */
    overflow: hidden;
    display: block;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
    background-size: cover;
    background-position: center top; /* Changed from 'center' to 'center top' */
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
}
.slide.active {
    display: block;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #FFFFFF;
    padding: 0 1rem;
}

.slide-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
}

/* Button styling */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary {
    background: #012B5A;
    color: #FFFFFF;
}

.btn-primary:hover {
    background: #002147;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary {
  background: #012B5A; /* Primary Blue */
  color: #FFFFFF;
}

.btn-primary:hover {
  background: #002147; /* Secondary Navy */
}

.btn-secondary {
  background: #FFFFFF;
  border: 2px solid #012B5A;
  color: #012B5A;
}

.btn-secondary:hover {
  background: #012B5A;
  color: #FFFFFF;
}

/* --- Sections --- */
.section {
  padding: 4rem 0;
  text-align: center;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.section p, .section ul {
  max-width: 800px;
  margin: auto;
}

.section img {
  margin-top: 1.5rem;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

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

.card {
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  transition: transform 0.3s;
}

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

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #012B5A;
}

.card p {
  font-size: 0.95rem;
}

/* --- Carousel --- */
.carousel {
  position: relative;
  width: 100%;
  max-height: 400px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.carousel .slides img {
  width: 100%;
  display: none;
}

.carousel .slides img:first-child {
  display: block;
}

.carousel-dots {
  text-align: center;
  margin-top: 10px;
}

.carousel-dots .dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.carousel-dots .dot.active {
  background-color: #012B5A;
}

/* --- Values --- */
.values {
  margin-bottom: 2rem;
}

.values h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.value-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.value-list li {
  margin-bottom: 0.5rem;
}

/* --- Events & News --- */
.events-news {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.events-news h3 {
  color: #012B5A;
}

/* --- Contact Form --- */
form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

input, textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button.btn {
  cursor: pointer;
}

.form-message {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

/* --- Footer --- */
.site-footer {
  background: #002147; /* Secondary Navy */
  color: #FFFFFF;
  text-align: center;
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo-img {
  height: 40px;
  margin-bottom: 10px;
}

.footer-links a {
  color: #FFFFFF;
  text-decoration: none;
  margin: 0 10px;
}

.footer-links a:hover {
  color: #F9B233; /* Accent Yellow */
}

.social a {
  color: #FFFFFF;
  margin: 0 0.5rem;
  text-decoration: none;
}

.social a:hover {
  color: #F9B233;
}

/* --- Accent Highlight --- */
.highlight {
  color: #F9B233; /* Accent Yellow */
  font-weight: bold;
}
#get-involved {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.donation-options {
    margin-top: 30px;
}

.donation-options button {
    margin: 5px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #007BFF;
    color: white;
    cursor: pointer;
}

.donation-options input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 200px;
}


/* =======================
   About Section
======================= */
section#about-us.about-section {
    background-color: #012b5aad; /* matches navbar */
    color: white;
    text-align: center;
    padding: 60px 0 0 !important;
    margin: 0;           /* remove any extra spacing */
    border-radius: 0;    /* remove any rounding */
}

/* Heading */
section#about-us.about-section h2 {
    margin-bottom: 20px;
    font-size: 2.5rem;
}

/* Paragraphs */
section#about-us.about-section p {
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Grid layout inside about section */
section#about-us.about-section .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

/* Learn and video sub-sections */
section#about-us.about-section .about-learn h3,
section#about-us.about-section .about-video h3 {
    margin-bottom: 15px;
    font-weight: bold;
}

section#about-us.about-section .about-learn ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

section#about-us.about-section .about-learn li {
    margin: 8px 0;
    font-size: 1.1rem;
}

section#about-us.about-section .about-learn li strong {
    font-weight: bold;
    color: #F9B233; /* highlight first letters in yellow */
}

/* Make sure section is relative so absolute shapes stay inside */
/* Make sure the section is a positioned container */
.about-section {
  position: relative;
  overflow: hidden; /* optional: hide overflow */
  z-index: 1;
}

/* Decorative art wrapper */
.decorative-art {
  position: absolute;
  top: 0;
  right: 0; /* align shapes to right */
  z-index: 0;
}

/* Shapes */
.shape-yellow,
.shape-beige {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
}

/* Yellow circle */
.shape-yellow {
  width: 140px;
  height: 140px;
  background-color: #F9B233;
  top: 40px;
  right: 80px;
}

/* Beige circle */
.shape-beige {
  width: 200px;
  height: 200px;
  background-color: #012b5aad;
  top: 120px;   /* sits below yellow */
  right: 120px;  /* offset so they touch */
}

/* Decorative Shapes */
.decorative-shape {
  position: absolute;
  z-index: 1;
  opacity: 0.3;
  border-radius: 50%;
}
 
.shape-1 {
  width: 100px;
  height: 100px;
  background-color: #f4c873;
  top: 50px;
  left: 30px;
}
 


/* Responsive adjustments */
@media (max-width: 768px) {
    section#about-us.about-section .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    section#about-us.about-section .about-learn ul {
        text-align: center;
    }
}



.hero-slideshow {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  display: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide.active {
  display: block;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFFFFF;
  padding: 0 1rem;
}

.slide-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.slide-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
}

/* Dots */
.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.carousel-dots .dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.carousel-dots .dot.active {
  background-color: #F9B233; /* Accent Yellow */
}
#key-statistics {
    text-align: center;
    padding: 40px 20px;
    background-color: #f2f2f2;
    
}

#key-statistics h2 {
    margin-bottom: 20px;
}

#key-statistics div {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

#key-statistics h3 {
    margin: 0;
    font-size: 2em; /* Increased font size for better visibility */
}

#key-statistics p {
    margin: 5px 0 0;
}

body {
    font-family: 'Arial', sans-serif; /* or your preferred font */
    margin: 0;
    padding: 0;
}

header {
    background-color: #f9f9f9; /* Adjust based on style guide */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav ul {
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: #007BFF; /* Adjust based on style guide */
    font-weight: bold;
}

nav a:hover {
    color: #0056b3; /* Adjust hover color */
}

section {
    padding: 40px 20px;
    background-color: #ffffff; /* Adjust based on style guide */
    margin: 20px 0;
    border-radius: 8px;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #f9f9f9; /* Adjust based on style guide */
}

.admin-buttons {
  text-align: center;
  margin: 50px 0;
}

.admin-buttons h2 {
  margin-bottom: 20px;
  color: #004080;
}

.admin-buttons button {
  margin: 10px;
  padding: 12px 20px;
  background: #004080;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.admin-buttons button:hover {
  background: #003366;
}




/* --- Key Achievements Section (New Design) --- */
.achievements-section {
    margin: 0 !important; /* Removes white gap */
    padding: 30px 20px 40px;
    background-color: #33333350;
    color: #ffffff;
    text-align: center;
    border-radius: 0;
}


/* Remove top margin from Partners section */
#partners {
  margin-top: 0;
}


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

.achievements-header {
    margin-bottom: 50px;
}

.achievements-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.achievements-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.achievement-card {
    background: white;
    border-radius: 12px;
    padding: 40px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

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

.achievement-card .achievement-icon {
    margin-bottom: 25px;
}


.achievement-card .achievement-svg {
    color: white;
    width: 36px;
    height: 36px;
}

.achievement-card .achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    line-height: 1;
}

.achievement-card .achievement-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Responsive Design for Achievements */
@media (max-width: 768px) {
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .achievement-card {
        padding: 30px 15px;
    }
    
    .achievement-card .achievement-number {
        font-size: 2.5rem;
    }
    
    .achievements-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .achievement-card {
        padding: 35px 20px;
    }
}


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

.achievement-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.achievement-icon {
    width: 64px;
    height: 64px;
    background-color: var(--coral);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    transition: transform 0.3s ease;
}

.achievement-item:hover .achievement-icon {
    transform: scale(1.1);
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.achievement-label {
    color: #666;
    font-weight: 500;
}

/* Metrics Grid */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.metrics-grid .achievement-card {
  padding: 20px 10px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.metrics-grid .achievement-number {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.metrics-grid .achievement-label {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.3;
}

/* Make icons smaller */
.metrics-grid .icon-circle {
  width: 50px;
  height: 50px;
  background: #F9B233;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: 0 auto 10px;
}

.metrics-grid .icon-circle i {
  color: white;
  font-size: 20px;
}

/* Responsive */
@media (max-width: 992px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .metrics-grid {
    grid-template-columns: 1fr;
  }
}

/* Alternate card colors */
.metrics-grid .achievement-card:nth-child(odd) {
  background-color: #ffffff; /* White */
}

.metrics-grid .achievement-card:nth-child(even) {
  background-color: #f1f1f1; /* Light Grey */
}

.learn-section {
   padding: 0 0 60px !important;
  width: 100%;
  margin: 0;
  background-color: #012b5aad;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px; /* Adjust as needed */
}

.learn-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
   max-width: 1200px;      /* keeps content centered */
  margin: 0 auto;
  padding: 0 20px; 
}

.learn-text {
  flex: 0 0 auto;
  min-width: 250px;
}

.learn-video {
  flex: 1;
  max-width: 500px;
}

.learn-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: #F9B233;
}

.learn-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.learn-list li {
  margin: 15px 0;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
}

.learn-list li strong {
  display: inline-block;
  width: 30px;
  font-weight: bold;
  color: #F9B233;
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .learn-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .learn-text {
    min-width: auto;
  }
}
/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .learn-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .learn-text {
    min-width: auto;
  }
}
.learn-video {
  flex: 1;
  min-width: 320px;
  max-width: 560px;
}

.learn-video iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}


/* Responsive: stack on small screens */
@media (max-width: 768px) {
  .learn-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .learn-video iframe {
    height: 250px;
  }
}

.get-involved .container {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.get-involved {
  background-color: #012b5aad;
  border-radius: 100px;
  padding: 40px 40px;
  text-align: center;
  color: #ffffffda;
  position: relative;
  overflow: hidden;
  margin: 60px 20px;
}

.get-involved::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('loho.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;  /* makes the entire logo visible */
  opacity: 0.1;
  z-index: 0;
}

.get-involved .content-wrapper {

  max-width: 700px;        /* controls the paragraph width */
  margin: 0 auto 20px;     /* centers the paragraph & adds bottom spacing */
  line-height: 1.6;        /* improves readability */
  text-align: center;      /* keeps text centered */
  font-size: 18px;         /* slightly larger for emphasis */
 
  /* NEW: Move content up */
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  transform: translateY(-20px); /* adjust -20px to move up more or less */
}

/* Make buttons sit side by side */
.get-involved .button-group {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.get-involved .button-group a {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.get-involved .button-group a:first-child {
  background: #012b5aad; 
  color: white;
}

.get-involved .button-group a:first-child:hover {
  background: #012b5aad;
}

.get-involved .button-group a:last-child {
  background: #F9B233;
  color: white;
}

.get-involved .button-group a:last-child:hover {
  background: #F9B233;
}

.get-involved h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 400;
  color: #F9B233;
}

.get-involved h2 strong {
  font-weight: 700;
}

.get-involved p {
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 1.5;
}


.sponsors-section {
  position: relative;    /* ✅ make section hold absolute shapes */
  padding: 60px 20px;
  background-color: white; 
  text-align: center;
  overflow: hidden;      /* ✅ ensures shapes don’t spill out */
  z-index: 1;
}


.partners-heading {
  font-size: 32px;
  font-weight: 700;
  color: #003366; /* deep navy/black */
  margin-bottom: 40px;
  font-family: 'Inter', sans-serif;
}

.sponsor-track {
  overflow: hidden;
  width: 100%;
}

.sponsor-logos {
  display: flex;
  gap: 60px; /* consistent spacing */
  animation: scrollLogos 30s linear infinite;
  align-items: center;
}

.sponsor-logos img {
  height: 60px; /* consistent logo height */
  width: auto;
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.sponsor-logos img:hover {
  transform: scale(1.1);
  opacity: 1;
}

/* ================================
   Curriculum Section
================================ */
#curriculum {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  background: #fff; /* soft neutral background */
  overflow: hidden;    /* keeps shapes inside */
  z-index: 1;
}
#curriculum .card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* smaller cards */
  gap: 20px; /* tighter gap between cards */
  position: relative;
  z-index: 2;
}

/* Card styling */
#curriculum .card {
  background:  #f9fafc;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  padding-bottom: 15px; /* less padding inside */
  max-width: 260px; /* smaller width */
  margin: 0 auto; /* keep centered */
}

#curriculum .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Card images */
#curriculum .card img {
  width: 100%;
  height: 160px; /* reduced height */
  object-fit: cover;
}

/* Card headings */
#curriculum .card h3 {
  font-size: 1.1rem;
  color: #012B5A;
  margin: 10px 15px 5px; /* less space */
}

/* Card paragraphs */
#curriculum .card p {
  margin: 3px 15px; /* tighter spacing */
  font-size: 0.9rem;
  color: #555;
  line-height: 1.3; /* reduce line spacing */
}

/* Age text inside cards */
#curriculum .card p:nth-of-type(1) {
  color: #f4c873;   /* yellow */
  font-weight: 600; /* make it bold for emphasis */
  margin: 5px 15px; /* slight tighter margin */
  font-size: 0.95rem;
}

/* Ensure section can contain absolute children */
#curriculum {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Decorative art (right side group) */
#curriculum .decorative-art {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0; /* behind cards */
}

#curriculum .shape-yellow,
#curriculum .shape-beige {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}

#curriculum .shape-yellow {
  width: 140px;
  height: 140px;
  background-color: #F9B233;
  top: 40px;
  right: 80px;
}

#curriculum .shape-beige {
  width: 200px;
  height: 200px;
  background-color: #012b5aad;
  top: 120px;
  right: 120px;
}

/* Decorative-shape (independent shape on left side) */
#curriculum .decorative-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
  z-index: 0; /* behind cards */
}

#curriculum .shape-1 {
  width: 100px;
  height: 100px;
  background-color: #F9B233;
  top: 50px;
  left: 30px;
}

#curriculum h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1b2c52;
  margin-bottom: 10px;
}

/* Subtitle */
#curriculum p {
  font-size: 1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}


/* smooth horizontal scrolling */
@keyframes scrollLogos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ================================
   Creative Section
================================ */
#creative-school{
  position: relative;
  text-align: center;
  background: #66666679; /* soft neutral background */
  overflow: hidden;    /* keeps shapes inside */
  z-index: 1;
   padding: 60px 0;
  width: 100%;
   min-height: 70vh;
}



#creative-school .cards-wrapper {
  display: flex;
  justify-content: center;   /* centers cards horizontally */
  flex-wrap: wrap;           /* wraps on smaller screens */
  gap: 20px;                 /* even spacing between cards */
  margin: 0 auto;            /* centers the wrapper */
  max-width: 1200px;         /* keeps them from stretching too wide */
  padding: 0;                /* remove side padding */
}


#creative-school .card {
  margin: 0;  /* removes extra space */
}

#creative-school .card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* smaller cards */
  gap: 20px; /* tighter gap between cards */
  position: relative;
  z-index: 2;
}

/* Card styling */
#creative-school .card {
  background:  #012b5aad;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(205, 216, 50, 0.76);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  padding-bottom: 15px; /* less padding inside */
  max-width: 260px; /* smaller width */
  margin: 0 auto; /* keep centered */
}

#creative-school .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Card images */
#creative-school .card img {
  width: 100%;
  height: 160px; /* reduced height */
  object-fit: cover;
}

/* Card headings */
#creative-school .card h3 {
  font-size: 1.1rem;
  color: #F9B233;
  margin: 10px 15px 5px; /* less space */
}

/* Card paragraphs */
#creative-school .card p {
  margin: 3px 15px; /* tighter spacing */
  font-size: 0.9rem;
  color: #555;
  line-height: 1.3; /* reduce line spacing */
}


#creative-school h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1b2c52;
  margin-bottom: 10px;
}

/* Subtitle */
#creative-school p {
  font-size: 1rem;
  color: #1b2c52;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}


/* Decorative-shape (independent shape on left side) */
#creative-school .decorative-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
  z-index: 0; /* behind cards */
}

/* Left shape */
#creative-school .shape-1 {
  width: 100px;
  height: 100px;
  background-color: #F9B233;
  top: 50px;
  left: 30px;
}

/* Right shape */
#creative-school .shape-2 {
  width: 120px;
  height: 120px;
  background-color: #0066cc;
  top: 150px;
  right: 30px;
}

/* ================================
   Admissions Section
================================ */

#admissions {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('NS_Day6-28.jpg') no-repeat center center/cover;
  background-position: center 20%;
  color: #fff;
   margin: 0;            /* remove outside margins */
  padding: 0;   
}

#admissions::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4); /* overlay */
  z-index: 1;
}

#admissions .admissions-overlay {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
}

#admissions h2 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 15px;
}

#admissions p {
  font-size: 1.4rem;
  margin-bottom: 25px;
}

#admissions .btn-enrol {
  display: inline-block;
  text-decoration: none;
  background: #F9B233;
  color: #fff;
  padding: 12px 30px;
  border-radius: 3px;
  font-weight: bold;
  transition: background 0.3s ease;
}

#admissions .btn-enrol:hover {
  background: #0056b3;
}

#events {
  background: #012b5aad;
  padding: 60px 20px;
  text-align: center;
  margin: 0 auto 60px;
}

/* ================================
   Events Section
================================ */

#events h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: bold;
  color: white;
}

.event-card {
  display: flex;
  align-items: center;
  background: #1a2736be;
  border-radius: 12px;
  padding: 20px;
  margin: 20px auto;
  max-width: 700px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.event-date {
  background: #F9B233;
  color: #fff;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  margin-right: 20px;
  width: 70px;       /* fixed width */
  flex-shrink: 0;    /* prevent shrinking */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.event-date .month {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.event-date .day {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
}


.event-info h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  color: white;
}

.event-desc {
  margin: 0 0 6px;
  font-size: 1rem;
  color: white;
}

.event-time {
  font-size: 0.95rem;
  font-weight: bold;
  color: #F9B233;
  margin-bottom: 5px;
}

.event-location {
  font-size: 0.95rem;
  color: white;
  font-weight: 500;
}

/* === FOOTER STYLING === */
.site-footer {
  background-color: #003366;
  background-image: url('loho.png');
  background-repeat: no-repeat;
  background-position: right center; /* moves image to the right side */
  background-size: 250px auto; /* adjust size (try cover, contain, or px value) */
  color: white;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}


.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-column h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 8px;
}

.footer-column a {
  color: white;
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: underline;
}


/* Responsive - stack on small screens */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}

/* Social Media */
.social-media {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}


/* Map section */
.map-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.map-title {
    font-size: 1.25rem;
    font-weight: 600;
    transition: all 0.6s ease;
}

.map-title.fade-out {
    opacity: 0.5;
}

.map-container {
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.map-container.fade-out {
    opacity: 0.5;
    transform: scale(0.98);
}

.map-container iframe {
    border-radius: 12px;
}

.footer-column.about {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.footer-logo {
  font-size: 1.4rem;
  font-weight: bold;
  color: #F9B233;
  margin-bottom: 10px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #fff;
}

.contact-item .icon {
  font-size: 1.3rem; /* Increase icon size */
  min-width: 24px;   /* Keeps them aligned */
  text-align: center;
}

.contact-item a {
  color: #fff;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.address {
  max-width: 250px;
  line-height: 1.4;
}

.social-media {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;  /* Bigger circle */
  height: 44px;
  background: #F9B233;
  border-radius: 50%;
  font-size: 1.2rem; /* Bigger social icons */
  color: white;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1); /* Slight grow effect on hover */
}

.contact-item.location-info {
  align-items: flex-start; /* Align text block to the top */
}

.contact-item.location-info .icon {
  margin-top: 3px; /* Nudge icon down slightly for balance */
}

.address {
  display: block;
  max-width: 250px;
  line-height: 1.5; /* Good readability */
  white-space: normal; /* Allow wrapping */
}

.footer-column.nav-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
  font-family: Arial, sans-serif;
   margin-left: 40px; 
}

.footer-column.nav-links h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #f9a825;
}

.footer-column.nav-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column.nav-links li {
  margin-bottom: 8px;
}

.footer-column.nav-links a {
  color: white; /* Light grey */
  text-decoration: none;
  font-size: 1.0rem;
  display: flex;
  align-items: center;
  transition: color 0.3s ease, transform 0.2s ease;
}

.footer-column.nav-links a::before {
  content: "›"; /* nice arrow instead of ">" */
  margin-right: 8px;
    font-size: 1.3rem;
  color: #f9a825; /* yellow accent */
  font-weight: bold;
}

.footer-column.nav-links a:hover {
  color: #f9a825;
  transform: translateX(4px);
}



/* Contact section */
.contact-section {
  max-width: 700px;
  margin: 0 auto 60px auto;
  padding: 25px;
  background: #66666648;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-family: Arial, sans-serif;
}


.contact-section h2 {
  font-size: 24px;
  margin-bottom: 8px;
  color: #1b2c52;
}

.contact-section p {
  margin-bottom: 25px;
  font-size: 15px;
  color: #1b2c52;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px; /* more vertical spacing between fields */
}

.form-row {
  display: flex;
  gap: 20px; /* spacing between name/email */
}

input, select, textarea {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

textarea {
  resize: none;
  width: 100%;
}

.btn-submit {
  background: #f9a825;
  color: white;
  padding: 10px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
  width: 180px; /* a bit wider */
  text-transform: uppercase;
  margin-top: 10px; /* space above button */
}

.btn-submit:hover {
  background: #1b2c52;
}


/* remove the vertical gap between any two adjacent sections */
section + section {
  margin-top: 0 !important;
}

/* stop default <section> styles from forcing white backgrounds and rounded corners */
section {
  margin: 0;                 /* remove default 20px vertical gap */
  border-radius: 0;         /* remove rounding that can reveal body bg */
  background-color: transparent;
  
}

.achievements-section {
  margin: 0 !important;
  border-radius: 0 !important;
  padding: 30px 20px 40px;   /* internal spacing only */
  background-color: rgba(51,51,51,0.31); /* keep your look */
}

hr { margin: 0; border: none; height: 0; }

/* ======================================
   Global Mobile Responsiveness
====================================== */

/* Tablets (portrait) and below */
@media (max-width: 992px) {
  .container {
    padding: 0 15px;
  }

  .section {
    padding: 3rem 1rem;
  }

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

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

  .events-news {
    grid-template-columns: 1fr;
  }

  .value-list {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Smartphones */
@media (max-width: 600px) {
  /* Hero text smaller */
  .slide-content h1 {
    font-size: 1.6rem;
  }

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

  /* Reduce button size */
  .btn, .get-involved .button-group a {
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  /* Contact form full width */
  form {
    width: 100%;
    padding: 0 15px;
  }

  /* Adjust footer */
  .footer-inner {
    flex-direction: column;
    gap: 10px;
  }

  /* Key statistics stack vertically */
  #key-statistics div {
    flex-direction: column;
    gap: 15px;
  }

  /* Achievements single column */
  .achievements-grid {
    grid-template-columns: 1fr;
  }

  /* Learn section stack */
  .learn-container {
    flex-direction: column;
    gap: 20px;
  }

  /* Partners logos shrink */
  .sponsor-logos img {
    height: 40px;
  }

  /* Curriculum smaller cards */
  #curriculum .card {
    max-width: 100%;
  }

  /* Creative school stack */
  #creative-school .cards-wrapper {
    flex-direction: column;
    align-items: center;
  }
}


/* Hide toggle button on desktop */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  z-index: 1001;
}

/* Mobile styles */
@media (max-width: 768px) {
  .nav-toggle {
    display: block; /* show hamburger */
  }

  .main-nav ul {
    display: none; /* hidden by default */
    flex-direction: column;
    background-color: #012b5a;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 15px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    gap: 15px;
  }

  .main-nav ul.show {
    display: flex; /* show when toggled */
  }

  .main-nav ul li a {
    color: white;
    font-size: 1.1rem;
    text-align: left;
  }
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: rgba(var(--background), 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
}

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

.header-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
}

.header-subtitle {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.theme-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: background-color 0.2s;
}

.theme-toggle:hover {
    background-color: var(--muted);
}



/* Achievements */
.achievements-section {
    padding-top: 100px;
}

.year-section {
    margin-bottom: 4rem;
}

.year-header {
    text-align: center;
    margin-bottom: 2rem;
}

.year-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    color: #012b5aad;
}

.year-subtitle {
    color: var(--muted-foreground);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.achievement-card {
    background-color: #012b5aad;
    border: 1px solid #f9a825;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    /* This ensures all cards stay at consistent width */
    width: 100%;
    max-width: 100%;
}

.achievement-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Remove the grid-column span or keep it - either works now */
.achievement-card.featured {
    grid-column: span 1;
}

.achievement-image {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: var(--muted);
}

.achievement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.achievement-card:hover .achievement-image img {
    transform: scale(1.05);
}

.achievement-year {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.875rem;
    color: #1F2937;
}

.achievement-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1F2937;
}

.achievement-content {
    padding: 1.5rem;
}

.achievement-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    line-height: 1.4;
}

.achievement-card.featured .achievement-title {
    font-size: 1.5rem;
}

/* Footer */
.footer {
    padding: 3rem 0;
    background-color: var(--card);
    border-top: 1px solid var(--card-border);
    text-align: center;
    color: var(--muted-foreground);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .timeline-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .timeline-line {
        left: 50%;
        top: 0;
        bottom: 0;
        width: 2px;
        height: auto;
        transform: translateX(-50%);
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .achievement-card.featured {
        grid-column: span 1;
    }
    
    .year-title {
        font-size: 2rem;
    }
}

/* Awards Section */
#awards {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('IMG_0077.jpg'); 
  background-position: center 20%;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
  margin-bottom: 60px; /* ✅ forces space after awards section */
}


.awards-overlay {
  background-color: rgba(0, 0, 0, 0.5); /* dark overlay for text visibility */
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  border-radius: 10px;
}

.btn-awards {
  background-color: #f9b233; /* bright gold tone */
  color: #fff;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-awards:hover {
  background-color: #e29d00;
}

.rsvp-btn {
  background-color: #f39c12;
  color: #2a3f5f;
  border: none;
  padding: 10px 24px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-right: 10px;
}
.rsvp-btn:hover {
  background-color: #e67e22;
  transform: translateY(-2px);
}
.rsvp-btn.rsvped {
  background-color: #27ae60;
  color: white;
}
.rsvp-btn.rsvped:hover {
  background-color: #229954;
}
.rsvp-status {
  font-size: 13px;
  color: #27ae60;
  font-weight: 600;
  display: none;
}
.rsvp-status.show {
  display: inline;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-content {
  background-color: white;
  padding: 40px;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.3s ease;
}
@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.close-btn {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #aaa;
  cursor: pointer;
  transition: color 0.3s ease;
}
.close-btn:hover {
  color: #000;
}
.modal h2 {
  margin-top: 0;
  margin-bottom: 25px;
  color: #2a3f5f;
  font-size: 24px;
}
/* Form Styles */
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 600;
  font-size: 14px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #f39c12;
}
.submit-btn {
  width: 100%;
  padding: 12px;
  background-color: #f39c12;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.submit-btn:hover {
  background-color: #e67e22;
}
/* Ticket Styles */
.ticket-content {
  max-width: 600px;
}
.ticket {
  border: 3px dashed #f39c12;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}
.ticket-header {
  background-color: #f39c12;
  color: white;
  padding: 20px;
  text-align: center;
}
.ticket-header h2 {
  margin: 0;
  font-size: 22px;
}
.ticket-body {
  padding: 30px;
  color: #333;
}
.ticket-body p {
  margin: 12px 0;
  font-size: 15px;
  line-height: 1.6;
}
.ticket-number-section {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 2px solid #f39c12;
  text-align: center;
}
.ticket-number-section p {
  margin: 0 0 15px 0;
  font-weight: 600;
  color: #2a3f5f;
}
.ticket-number {
  background-color: #2a3f5f;
  color: #f39c12;
  padding: 20px;
  border-radius: 8px;
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 3px;
  font-family: 'Courier New', monospace;
  word-break: break-all;
}
.ticket-note {
  margin-top: 15px;
  text-align: center;
  color: #666;
  font-size: 13px;
  font-style: italic;
}
.close-ticket-btn {
  width: 100%;
  padding: 12px;
  margin-top: 20px;
  background-color: #2a3f5f;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.close-ticket-btn:hover {
  background-color: #1a2a40;
}
/* --- ADD THIS NEW CODE AT THE BOTTOM OF YOUR styles.css FILE --- */

/* Styles for the "Get Involved" section to hold the new form */

.get-involved .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px; /* Space between text, form, and button */
}

/* Container for the form and volunteer button */
.payment-and-volunteer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px; /* Space between form and button */
  width: 100%;
  max-width: 400px;
}

/* Styles for the new PayFast form */
.payfast-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px; /* Space inside the form */
  background: #ffffff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border: 1px solid #eaeaea;
  width: 100%;
}

.payfast-amount-wrapper {
  display: flex;
  flex-direction: column; /* Stack label on top of input */
  align-items: center;
  gap: 8px;
  width: 100%;
}

.payfast-amount-wrapper label {
  font-weight: 600;
  color: #333;
  font-size: 16px;
}

.payfast-amount-input {
  width: 150px;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

/* Style for the PayFast image button */
.payfast-submit-button {
  width: 220px; /* Adjust width as needed */
  height: auto;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.payfast-submit-button:hover {
  transform: scale(1.05);
}

/* Re-style the Volunteer button to match */
.btn-volunteer {
  display: inline-block; /* Make it a block-level link */
  text-decoration: none; 
  color: #fff; 
  background-color: #17a2b8; /* Original teal color */
  padding: 12px 24px; 
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  width: 100%; /* Make it match the form width */
  text-align: center;
}

.btn-volunteer:hover {
  background-color: #138496;
}
/* --- Button Group Styles --- */
.button-group {
    display: flex;
    gap: 20px; /* Space between the two buttons */
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

/* Donate Pop-up Button Style */
.btn-donate-popup {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background-color: #28a745; /* Green color */
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-donate-popup:hover {
  background-color: #218838;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(40, 167, 69, 0.2);
}

/* Volunteer Button Style (Matching the Donate button) */
.btn-volunteer {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background-color: #17a2b8; /* Teal color */
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-volunteer:hover {
  background-color: #138496;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(23, 162, 184, 0.2);
}

