
/*======== GET INVOLVED PAGE CONTINUE===== */

/* === Get Involved Section === */
#get-involved {
  padding: 60px 20px;
  background-image: linear-gradient(to right, #e9c1f2, #e8f5e9);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

#get-involved .container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

/* Left Column - Image */
#get-involved .image-side {
  flex: 1 1 50%;
  min-width: 0;
}

#get-involved .image-side img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Right Column - Form */
#get-involved .form-side {
  flex: 1 1 50%;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

#get-involved .form-side h2 {
  font-family: 'Caveat Brush', cursive;
  font-size: 2.5rem;
  color: #00b664;
  margin-bottom: 10px;
}

#get-involved .form-side p {
  margin-bottom: 20px;
  color: #555;
  font-size: 0.86rem;
   font-family: 'Inter', sans-serif;
   margin-top: -10px;
}

/* Form Fields */
.involved-form .form-group {
  margin-bottom: 15px;
}

.involved-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
  color: #a60ba6;
  font-family: 'Caveat Brush', cursive;
  font-size: 1.3rem;
}

.involved-form input,
.involved-form select,
.involved-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.involved-form input:focus,
.involved-form select:focus,
.involved-form textarea:focus {
  border-color: #9407a3;
  box-shadow: 0 0 0 3px rgba(23,69,112,0.15);
  outline: none;
}

/* Submit Button */
.cta-btn {
  background-color: #174570;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background-color: #0e2f4d;
}

/* Responsive */
@media (max-width: 768px) {
  #get-involved .container {
    flex-direction: column;
  }
}

/* form success message */
.form-message {
  margin-top: 15px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}



/*========================PROGRAMS AND ACTIVITIES PAGE START===================  */
/* Programs Section */
.programs-section-cards {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f9f0ff, #e8d6ff);
  position: relative;
  overflow: hidden;
}

.programs-section-cards::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(92, 36, 150, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(255, 170, 0, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: contactFaqFloatParticles 40s linear infinite;
}

.programs-section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #5c2496;
  margin-bottom: 50px;
  font-family: 'Poiret One', cursive;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.programs-section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #ffaa00, #00b460);
  border-radius: 3px;
}

.programs-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Program Card */
.program-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  z-index: 1;
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(92, 36, 150, 0.15);
}

.program-image {
  height: 200px;
  overflow: hidden;
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.program-card:hover .program-image img {
  transform: scale(1.05);
}

.program-card-content {
  padding: 25px;
}

.program-card-title {
  font-size: 1.5rem;
  font-family: 'Poiret One', sans-serif;
  color: #1f0432;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  line-height: 1.2;
  position: relative;
  display: inline-block;
  margin-left: 20px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.program-card-description {
  color: #444356;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
  margin-left: 20px;
}

.program-card-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.program-card-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #706d7c;
  font-size: 0.9rem;
  line-height: 1.5;
  font-family: 'Inter', sans-serif;
  margin-left: 20px;
}

.program-card-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00b460;
  font-weight: bold;
}

.program-card-button {
  display: inline-block;
  background-color: #5c2496;
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  margin-top: 10px;
}

.program-card-button:hover {
  background-color: transparent;
  color: #5c2496;
  border-color: #5c2496;
  transform: translateY(-3px);
}

/* Card Accent */
.program-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background: linear-gradient(to bottom, #ffaa00, #00b460);
  transition: height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.program-card:hover::after {
  height: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .programs-cards-container {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  
  .programs-section-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .programs-section-cards {
    padding: 60px 15px;
  }
  
  .program-card-content {
    padding: 20px;
  }
}



/* ===ABOUT US PAGE=== VISION AND MISSION SECTION */
.mission-vision-section {
padding: 3rem 1rem;
background: linear-gradient(135deg, #f7f3fa, #fae0f7);
position: relative;
overflow: hidden;
}

.mission-vision-section::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
background-size: 20px 20px;
animation: float 20s infinite linear;
pointer-events: none;
}

@keyframes float {
0% { transform: translate(0, 0) rotate(0deg); }
100% { transform: translate(-20px, -20px) rotate(360deg); }
}

.inner-container {
max-width: 1200px;
margin: 0 auto;
position: relative;
z-index: 1;
}

.columns {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2rem;
align-items: center;
}

.column-left {
perspective: 1000px;
}

.column-left img {
width: 100%;
border-radius: 12px;
box-shadow:
0 4px 20px rgba(0, 0, 0, 0.1),
0 8px 30px rgba(7, 136, 93, 0.1);
transform: rotateY(-5deg) rotateX(5deg);
transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
filter: brightness(1.05) contrast(1.1);
}

.column-left img:hover {
transform: rotateY(0deg) rotateX(0deg) scale(1.02);
box-shadow:
0 8px 40px rgba(0, 0, 0, 0.15),
0 15px 50px rgba(7, 136, 93, 0.15);
}

.column-right {
position: relative;
}

.column-right::before {
content: '';
position: absolute;
top: -10px;
left: -20px;
width: 4px;
height: 60px;
background: linear-gradient(to bottom, #07885d, transparent);
border-radius: 2px;
opacity: 0.7;
}

.column-right h2 {
font-size: 1.8rem;
color: #07885d;
margin-top: 0;
font-family: 'Poiret One', sans-serif;
position: relative;
display: inline-block;
margin-bottom: 20px;
}

.column-right h2::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: linear-gradient(90deg, #07885d, transparent);
transition: width 0.6s ease;
}

.column-right:hover h2::after {
width: 100%;
}

.column-right p {
font-size: 0.85rem;
line-height: 1.6;
color: #555;
margin-bottom: 1rem;
font-family: 'Inter', sans-serif;
transform: translateY(20px);
opacity: 0;
animation: fadeUp 0.8s ease forwards;
}

.column-right p:nth-child(2) { animation-delay: 0.2s; }
.column-right p:nth-child(3) { animation-delay: 0.4s; }
.column-right p:nth-child(4) { animation-delay: 0.6s; }

@keyframes fadeUp {
to {
transform: translateY(0);
opacity: 1;
}
}

@media (max-width: 768px) {
.columns {
grid-template-columns: 1fr;
}
.column-left {
order: -1;
}
.column-left img {
transform: none;
}
.column-left img:hover {
transform: scale(1.02);
}
.column-right::before {
left: 50%;
transform: translateX(-50%);
top: -15px;
height: 40px;
}
}



/* ==CHALLENGE COURSE=== PROJECTS PAGE */
.challenge-course {
  background: #fff;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.challenge-course::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(147, 0, 227, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(147, 0, 227, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.challenge-course h2 {
  color: #9300e3;
  font-family: 'Poiret One', sans-serif;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.challenge-course h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #9300e3, #ba68c8, #9300e3);
  border-radius: 2px;
}

.challenge-course h3 {
  color: #9300e3;
  font-family: 'Poiret One', sans-serif;
  font-size: 2rem;
  margin: 2.5rem 0 1rem 0;
  padding-left: 1rem;
  border-left: 4px solid #9300e3;
  transition: all 0.3s ease;
}

.challenge-course h3:hover {
  padding-left: 1.5rem;
  background: linear-gradient(90deg, rgba(147, 0, 227, 0.1), transparent);
}

.challenge-course h4 {
  color: #9300e3;
  font-family: 'Poiret One', sans-serif;
  font-size: 1.4rem;
  margin: 1.5rem 0 0.8rem 0;
  position: relative;
  display: inline-block;
}

.challenge-course h4::before {
  content: '▸';
  position: absolute;
  left: -20px;
  color: #9300e3;
  opacity: 0;
  transition: all 0.3s ease;
}

.challenge-course h4:hover::before {
  opacity: 1;
  left: -15px;
}

.challenge-course p {
  line-height: 1.7;
  margin-bottom: 1.2rem;
  color: #666475;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  letter-spacing: -0.42px;
  font-weight: 300;
}

/* Image Grid - Enhanced */
.course-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin: 30px 0;
  position: relative;
}

.course-images::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, #9300e3, #ba68c8, #9300e3);
  border-radius: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.course-images:hover::before {
  opacity: 0.1;
}

.course-images img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.95) saturate(0.9);
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(147, 0, 227, 0.05);
}

.course-images img:hover {
  transform: translateY(-8px) scale(1.05);
  filter: brightness(1.05) saturate(1.1);
  box-shadow: 
    0 15px 30px rgba(147, 0, 227, 0.2),
    0 0 0 2px rgba(147, 0, 227, 0.1);
  z-index: 2;
}

/* Two-column layout - Enhanced */
.course-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin: 40px 0;
}

.course-column {
  background: linear-gradient(135deg, #faf8ff, #f5f0ff);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 
    0 8px 30px rgba(147, 0, 227, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(147, 0, 227, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.course-column::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(147, 0, 227, 0.05), transparent);
  transition: left 0.6s ease;
}

.course-column:hover::before {
  left: 100%;
}

.course-column:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 15px 40px rgba(147, 0, 227, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Custom list styling - Enhanced */
.custom-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.custom-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  padding: 12px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.custom-list li:hover {
  background: rgba(255, 255, 255, 0.9);
  border-left: 3px solid #9300e3;
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(147, 0, 227, 0.1);
}

.custom-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: #9300e3;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.custom-list li:hover::before {
  opacity: 1;
}

.custom-list i {
  color: #9300e3;
  margin-right: 12px;
  font-size: 1rem;
  margin-top: 2px;
  transition: transform 0.3s ease;
}

.custom-list strong {
  font-weight: 100;
}


.custom-list li:hover i {
  transform: scale(1.2) rotate(5deg);
}

.custom-list strong {
  color: #7b1fa2;
  font-weight: 600;
}

/* Why It Matters - Enhanced */
.why-it-matters {
  margin-top: 40px;
  padding: 30px;
  background: linear-gradient(135deg, #f8f4ff, #f0e6ff);
  border-left: 4px solid #9300e3;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(147, 0, 227, 0.1);
}

.why-it-matters::before {
  content: '✨';
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 3rem;
  opacity: 0.1;
  animation: float 3s ease-in-out infinite;
}

.why-it-matters::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(147, 0, 227, 0.03) 100%);
  pointer-events: none;
}

.why-it-matters h3 {
  border-left: none;
  padding-left: 0;
  margin-top: 0;
  color: #7b1fa2;
}

.why-it-matters p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #666;
  position: relative;
  z-index: 1;
  font-style: italic;
  font-weight: 300;
}

/* Floating animation */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

/* Scroll animations */
.challenge-course h2,
.challenge-course h3,
.course-images,
.course-column,
.why-it-matters {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.challenge-course h2.visible,
.challenge-course h3.visible,
.course-images.visible,
.course-column.visible,
.why-it-matters.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .course-images {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .course-columns {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .challenge-course {
    padding: 40px 15px;
  }
  
  .challenge-course h2 {
    font-size: 2.2rem;
  }
  
  .challenge-course h3 {
    font-size: 1.6rem;
  }
  
  .course-column {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .course-images {
    grid-template-columns: 1fr;
  }
  
  .challenge-course h2 {
    font-size: 1.8rem;
  }
  
  .challenge-course h3 {
    font-size: 1.4rem;
  }
}