/* ✅ CSS RESET & BODY */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
  padding-top: 88px; /* Add combined height of top-bar + header */
}

/* Preloader base */
/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4f037e 0%, #3a0261 50%, #2a0149 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    transition: opacity 0.8s ease-out;
}

/* Broken Circle Loader */
.broken-circle-loader {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
    animation: rotate 2s linear infinite;
}

.broken-line {
    position: absolute;
    width: 100%;
    height: 100%;
}

.broken-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 25px;
    background: #01df7b;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(1, 223, 123, 0.7);
}

.broken-line:nth-child(1) {
    transform: rotate(0deg);
}
.broken-line:nth-child(2) {
    transform: rotate(120deg);
}
.broken-line:nth-child(3) {
    transform: rotate(240deg);
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Loading Text */
.loading-text {
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    color: #e4e4e4;
    margin-top: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: textPulse 2s ease-in-out infinite;
}

@keyframes textPulse {
    0%, 100% {
        opacity: 0.8;
        text-shadow: 0 0 5px rgba(1, 223, 123, 0.3);
    }
    50% {
        opacity: 1;
        text-shadow: 0 0 15px rgba(1, 223, 123, 0.7);
    }
}

/* Content Styles */
.content {
    opacity: 0;
    display: none;
    transition: opacity 0.8s ease-out;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Animation for content appearance */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* 🌐 Top Bar Styles */
.top-bar {
  background: #340054;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
  padding: 8px 20px;
  position: fixed;      /* changed from static/sticky */
  top: 0;
  left: 0;
  right: 0;
  height: 40px;         /* explicit height */
  z-index: 1100;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  flex-wrap: wrap;
  width: 100%;
}

.top-bar-left,
.top-bar-center,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* 🔹 Donate Button */
.donate-btn {
  background-color: #0b8b49;
  color: #fff;
  border: none;
  padding: 6px 34px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
  font-family: 'Inter', sans-serif;
  letter-spacing: 1.5px;
}

.donate-btn:hover {
  background-color: #f3ae00;
  transform: scale(1.1); /* Increases size by 10% */
  transition: transform 0.3s ease;

}

.top-bar-center span {
  font-size: 17px;
  font-family: 'Caveat Brush', cursive;
  letter-spacing: 1px;
  color: #d7d7d7;
  font-weight: 300;
  cursor: default;
  user-select: none;
}

/* 🔹 Icons */
.top-bar i {
  margin-right: 6px;
  color: #ffb300;
}

.top-bar-right a {
  color: #fffaf4;
  text-decoration: none;
  font-size: 16px;
}

.top-bar-right a:hover {
  color: #e56103;
}

/* 🔹 Top Bar Left - Contact Info */
.top-bar-left {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #d4d4d4;
}

.top-bar-left span {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.top-bar-left i {
  color: #ffcc00;
  font-size: 14px;
}

/* 🔸 Responsive (Stack on small screens) */
@media (max-width: 768px) {
  /* Hide everything except email and donate button */
  .top-bar-left span:not(:first-child),
  .top-bar-center span,
  .top-bar-right {
    display: none;
  }

  /* Make sure donate button is visible */
  .donate-btn {
    margin-left: 40px;
    display: inline-block;
    font-weight: 600;
  }

  /* Reset container to flex row for email + donate */
  .top-bar-container {
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
  }

  /* Show only email and donate side by side */
  .top-bar-left {
    gap: 10px;
    flex-grow: 0;
  }

  .top-bar-center {
    display: flex !important;
    gap: 10px;
    margin-left: 10px;
  }

  .donate-btn {
  padding: 6px 13px;

}
}

/*HEADER SECTION AREA*/
.header {
  background-color: #fbe9ff;
  color: #1e0e21; /* corrected to dark color instead of white */
  padding: 6px 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: fixed;     /* changed from sticky */
  top: 40px;           /* height of top-bar */
  left: 0;
  right: 0;
  height: 48px;        /* explicit height */
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  height: 65px;
}

@media (max-width: 768px) {
  .header {
    height: 50px;
  }
}

.header .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  
}

/* Logo */
.logo img {
  height: 60px; /* adjusted for header height */
  max-width: 100%;
  object-fit: contain;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-menu ul li a {
  position: relative;
  color: #0e211a;
  text-decoration: none;
  display: inline-block;
  font-family: 'Poiret One', cursive, sans-serif;
  letter-spacing: 0.6px;
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-menu ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #00842e;
  transition: width 0.3s ease;
}

.nav-menu ul li a:hover {
  color: #00842e;
  transform: translateY(-3px);
}

.nav-menu ul li a:hover::after {
  width: 100%;
}

.nav-menu ul li a.active {
  color: orange;
}

/* Close button inside nav (hidden on desktop) */
.close-btn {
  display: none;
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2.5rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: bold;
  line-height: 1;
  z-index: 1100;
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 3px;
  width: 25px;
  height: 20px;
  justify-content: center;
}

.hamburger span {
  height: 9px;
  background: rgb(39, 4, 54);
  border-radius: 2px;
  display: block;
}

/* Mobile styles */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 88px; /* 40px top-bar + 48px header */
    right: -100%;
    height: calc(100vh - 88px);
    width: 250px;
    background-color: #340054;
    flex-direction: column;
    padding-top: 60px;
    transition: right 0.3s ease;
    box-shadow: -2px 0 5px rgba(0,0,0,0.2);
    z-index: 1050;
    overflow-y: auto;
  }

  /*mobile logo*/
  .logo img {
    height: 50px;
  }

  .nav-menu ul li a {
    color: #dff3ff;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 20px;
    padding-left: 20px;
  }

  .nav-menu ul li a {
    font-size: 1rem;
  }

  /* Show close button on mobile menu */
  .close-btn {
    display: block;
  }

  /* Show hamburger on mobile */
  .hamburger {
    display: flex;
  }
}



/*===HOME PAGE START HERE===*/

/* SLIDER SECTION AREA */
.hero-slider {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.slider-wrapper {
  display: flex;
  height: 100%;
  position: relative;
}

/* Individual Slide */
.slide {
  display: none;
  flex: 1;
  position: relative;
  align-items: center;
  justify-content: flex-start;
  padding: 80px 60px;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  flex-direction: column;
  justify-content: center;
}

.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(21, 1, 30, 0.75); /* Dark overlay */
  z-index: 0;
}

.slide.active {
  display: flex;
}

.slide-content {
  max-width: 600px;
  margin-left: -520PX;
  position: relative;
  z-index: 1;
}

.subheading {
  font-size: 1.5rem;
  color: #ffc107;
  text-transform: uppercase;
   font-family: 'Caveat Brush', cursive;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}

.slide h1 {
  font-size: 3.9rem;
  margin-bottom: 20px;
  font-family: 'Poiret One', sans-serif;
  font-weight: 900;
  line-height: 1.2;
  color: #cbcfed;
}

.slide p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #c3d0d7;
}

.cta-btn {
  background-color: #ffb300;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background-color: #d69100;
}

/*animations*/
/* Initial state: hidden and slightly down */
.subheading,
.slide h1,
.slide p,
.cta-btn {
  opacity: 0;
  transform: translateY(20px);
  animation-fill-mode: forwards;
}

/* Animate subheading */
.subheading {
  animation: fadeSlideUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

/* Animate h1 */
.slide h1 {
  animation: fadeSlideUp 0.8s ease forwards;
  animation-delay: 0.5s;
}

/* Animate paragraph */
.slide p {
  animation: fadeSlideUp 0.8s ease forwards;
  animation-delay: 0.8s;
}

/* Animate button */
.cta-btn {
  animation: 
    fadeSlideUp 0.8s ease forwards,
    glowPulse 1.5s ease-in-out 1.9s infinite alternate;
  animation-delay: 1.1s, 1.9s;
}

/* Glow pulse animation */
@keyframes glowPulse {
  0% {
    box-shadow: 0 0 2px 0 rgba(255, 179, 0, 0.7);
  }
  100% {
    box-shadow: 0 0 10px 6px rgba(255, 179, 0, 1);
  }
}

/* Keyframes */
@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Navigation Arrows */
.slider-nav {
  position: absolute;
  right: 100px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 2;
}

.slider-nav button {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  font-size: 28px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 50px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.slider-nav button:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* Dots */
.dots {
  margin-top: 40px;
  margin-right: 50px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #bbb;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: #ffb300;
}

/*image transition*/



/* Responsive */
@media (max-width: 768px) {
  .slider-wrapper {
    flex-direction: column;
    justify-content: center;
  }

  .slide-content {
    margin-left: auto;
  }

  .slide {
    padding: 60px 20px;
    text-align: left;
  }

  .subheading {
    font-size: 0.9rem;
  }
  
  .slide h1 {
    font-size: 2.4rem;           /* ✅ Reduce size for smaller screens */
    line-height: 1.2;
    word-wrap: break-word;     /* ✅ Break long words */
    overflow-wrap: break-word; /* ✅ Same as above (more modern) */
    max-width: 100%;
  }


  .slide p {
    font-size: 0.98rem;
    line-height: 1.4;
  }

  .slider-nav {
    flex-direction: row;
    justify-content: center;
    bottom: 20px;
    top: auto;
    right: 50%;
    transform: translateX(50%);
  }

  .dots {
    flex-direction: row;
    margin-top: 0;
    gap: 10px;
    margin-left: 20px;
  }
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden; /* Prevent horizontal scroll */
    width: 100%;
  }

  .slide-content {
    margin-left: auto;     /* ✅ Remove negative margin */
    margin-right: auto;
    padding: 0 16px;       /* ✅ Ensure spacing inside screen */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .slide {
    padding: 40px 16px;    /* ✅ Reduce padding to prevent overflow */
    text-align: left;
  }

  .slider-wrapper,
  .hero-slider,
  .slide {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  .hero-slider {
  position: relative;
  width: 100%;
  height: 80vh;}
}


/* ICON SECTION - ENHANCED */
.features-section {
  padding: 80px 40px;
  background: linear-gradient(135deg, #24003a, #1a0d2b, #2e1a45);
  font-family: 'Poppins', sans-serif;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(104, 0, 255, 0.15) 0%, transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(255, 0, 212, 0.15) 0%, transparent 30%);
  animation: pulse 15s infinite alternate;
  z-index: 0;
}

@keyframes pulse {
  0% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
  100% { opacity: 0.7; transform: scale(1); }
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.feature-column {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  flex: 1 1 300px;
  padding: 40px 25px 25px;
  border-radius: 20px;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 0 12px rgba(255, 255, 255, 0.05);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-column:hover {
  transform: translateY(-15px) rotateX(5deg);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.4),
    inset 0 0 20px rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.12);
}

.icon-wrapper {
  width: 100px;
  height: 100px;
  margin: -80px auto 20px;
  background: linear-gradient(135deg, #00b942, #00842e);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  transition: all 0.4s ease;
  box-shadow: 
    0 5px 15px rgba(0, 180, 66, 0.4),
    0 0 0 8px rgba(0, 180, 66, 0.1);
  position: relative;
  z-index: 2;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.icon-wrapper::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: scale(0);
  transition: transform 0.3s ease;
}

.icon-wrapper:hover {
  background: linear-gradient(135deg, #00e04b, #00a838);
  transform: scale(1.1) rotate(10deg);
  box-shadow: 
    0 8px 25px rgba(0, 220, 80, 0.6),
    0 0 0 12px rgba(0, 220, 80, 0.15);
}

.icon-wrapper:hover::before {
  transform: scale(1);
  animation: pulse-icon 1.5s infinite;
}

@keyframes pulse-icon {
  0% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.2); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}

.feature-column h3 {
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-family: 'Poiret One', sans-serif;
  color: #f6a800;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.feature-column:hover h3 {
  color: #ffc107;
  text-shadow: 0 4px 8px rgba(246, 168, 0, 0.4);
}

.feature-column p {
  font-size: 1rem;
  color: #b8bfd1;
  font-family: 'Titillium Web', sans-serif;
  line-height: 1.4;
  font-weight: 200;
  transition: all 0.3s ease;
}

.feature-column:hover p {
  color: #ffffff;
}

/* Glow effect on hover */
.feature-column::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 180, 66, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-column:hover::after {
  opacity: 1;
}

/* Responsive */
@media (max-width: 900px) {
  .features-container {
    flex-direction: column;
    gap: 60px;
    max-width: 500px;
  }
  
  .feature-column {
    padding: 0px 20px 0px;
  }
  
  .icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 30px auto 15px;
    font-size: 36px;
  }
  
  .feature-column h3 {
    font-size: 1.5rem;
  }
  
  .feature-column p {
    font-size: 0.9rem;
  }
}

/*reveal on scroll*/

.features-section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.features-section.in-view {
  opacity: 1;
  transform: translateY(0);
}

.feature-column {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.4);
  transition-delay: calc(var(--delay) * 0.1s);
}

.features-section.in-view .feature-column {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Disable animations & transitions on mobile for better performance */
@media (max-width: 768px) {
  .features-section {
    padding: 40px 20px !important;
    background: #1a0d2b !important;
    font-family: 'Poppins', sans-serif !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .features-section::before {
    display: none !important;
  }

  .features-container {
    flex-direction: column !important;
    gap: 40px !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    position: relative !important;
    z-index: 1 !important;
  }

  .feature-column {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: none !important;
    flex: 1 1 100% !important;
    padding: 0 20px 20px !important;
    border-radius: 20px !important;
    box-shadow: none !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .feature-column:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    transform: none !important;
    box-shadow: none !important;
  }

  .icon-wrapper {
    width: 90px !important;
    height: 90px !important;
    margin: 30px auto 15px !important;
    background: linear-gradient(135deg, #00b942, #00842e) !important;
    color: white !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 36px !important;
    border: 3px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: none !important;
    z-index: 2 !important;
    position: relative !important;
    transform: none !important;
    transition: none !important;
  }

  .icon-wrapper:hover {
    background: linear-gradient(135deg, #00b942, #00842e) !important;
    transform: none !important;
    box-shadow: none !important;
  }

  .icon-wrapper::before,
  .icon-wrapper:hover::before {
    display: none !important;
    content: none !important;
    animation: none !important;
  }

  .feature-column::after {
    display: none !important;
  }

  .feature-column h3 {
    font-size: 1.5rem !important;
    font-family: 'Poiret One', sans-serif !important;
    color: #f6a800 !important;
    text-shadow: none !important;
    transition: none !important;
  }

  .feature-column:hover h3 {
    color: #f6a800 !important;
    text-shadow: none !important;
  }

  .feature-column p {
    font-size: 0.9rem !important;
    color: #b8bfd1 !important;
    font-family: 'Titillium Web', sans-serif !important;
    line-height: 1.4 !important;
    font-weight: 200 !important;
    transition: none !important;
  }

  .feature-column:hover p {
    color: #b8bfd1 !important;
  }

  /* Disable JS-based entrance animation too */
  .features-section.in-view,
  .features-section.in-view .feature-column {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}




/* DELIVERY SECTION */
.two-column-section {
  font-family: 'Poiret One', sans-serif;
  color: #fff;
  padding: 0;
  margin: 0;
}

.two-col-container {
  display: flex;
  flex-wrap: wrap;
  min-height: 500px;
}

/* Left Column with Background Image */
.left-column {
  flex: 1 1 50%;
  background-image: url('../Images/1.jpg');
  background-size: cover;
  background-position: center;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  transform: scale(0.95);
  opacity: 0;
  transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.two-column-section.in-view .left-column {
  transform: scale(1);
  opacity: 1;
}

.left-column::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg, 
    rgba(52, 0, 84, 0.3) 0%, 
    rgba(69, 39, 104, 0.1) 50%,
    rgba(246, 168, 0, 0.2) 100%
  );
  mix-blend-mode: soft-light;
  transition: all 1.2s ease;
}

.left-column::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(
    to top,
    rgba(36, 0, 58, 0.8) 0%,
    transparent 100%
  );
  z-index: 1;
}

.left-column:hover {
  transform: scale(1.02);
}

.left-column:hover::before {
  background: linear-gradient(
    45deg, 
    rgba(52, 0, 84, 0.4) 0%, 
    rgba(69, 39, 104, 0.2) 50%,
    rgba(246, 168, 0, 0.3) 100%
  );
}

/* Animated Scan Line Effect */
@keyframes scan {
  0% { top: -100%; }
  100% { top: 100%; }
}

.left-column:hover::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 255, 174, 0.7) 50%,
    transparent 100%
  );
  animation: scan 3s linear infinite;
  box-shadow: 0 0 10px rgba(0, 255, 174, 0.5);
  z-index: 2;
}

/* Particle Effect */
.left-column .particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.left-column .particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: float 15s infinite linear;
  opacity: 0;
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(20px);
    opacity: 0;
  }
}

/* Right Column with Gradient and Content Container */
.right-column {
  flex: 1 1 50%;
  background: linear-gradient(135deg, #340054, #452768);
  display: flex;
  align-items: center;
  padding: 60px 40px;
}
@media (Max-Width: 768px) {
    .right-column {
    padding: 10px 20px;
    }
}

.right-content {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

/* Subheading */
.subheader {
  font-size: 1.7rem;
  color: #f6a800;
  margin-bottom: 10px;
  font-family: 'Caveat Brush', cursive;
  font-weight: 200;
}

/* Main Heading */
.main-heading {
  font-size: 2.2rem;
  margin-top: -10px;
  margin-bottom: 20px;
  line-height: 1.2;
}

/* Paragraph */
.right-content p {
  font-size: 1rem;
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
  color: #9da9b3;
  font-weight: 400;
  margin-bottom: 30px;
}

@media (Max-Width: 768px) {
    .right-content p {
    font-size: 0.9rem;
    }
    .main-heading {
    font-size: 2.0rem;
    margin-top: -4px;
    }
}


/* Responsive */
@media (max-width: 900px) {
  .two-col-container {
    flex-direction: column;
  }

  .left-column,
  .right-column {
    flex: 1 1 100%;
    min-height: 300px;
  }

}

/* === MMPZ Stats Section === */
/* ===== Stats Section ===== */
.mmpz-stats-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a0033, #2d0a4d);
  color: white;
  text-align: center;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.mmpz-stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(106, 0, 255, 0.2) 0%, transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(255, 0, 212, 0.2) 0%, transparent 30%);
  z-index: 0;
}

.mmpz-stats-container,
.mmpz-stats-row,
.mmpz-stat-box {
  position: relative;
  z-index: 2;
}

.mmpz-stats-container {
  max-width: 1200px;
  margin: 0 auto;
}

.mmpz-stats-title {
  text-align: center;
  font-size: 2.5rem;
  color: #00db84;
  margin-bottom: 60px;
  position: relative;
  font-family: 'Poiret one',sans-serif;
}

.mmpz-stats-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #6e45e2, #89d4cf);
  border-radius: 2px;
}

.mmpz-stats-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.mmpz-stat-box {
  flex: 1;
  min-width: 200px;
  background: white;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.mmpz-stat-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.mmpz-stat-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #6e45e2, #89d4cf);
}

.mmpz-stat-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mmpz-counter {
  font-size: 2.8rem;
  font-weight: 700;
  color: #680291;
  margin-bottom: 5px;
  font-family: 'Poiret one',sans-serif;
}

.mmpz-stat-label {
  color: #f28100;
  font-size: 1.9rem;
  margin: 0;
  font-family: 'Caveat Brush', cursive;
}

/* ===== Counter Animation ===== */
@keyframes counterSpin {
  0% { transform: rotate(0); }
  25% { transform: rotate(5deg); }
  50% { transform: rotate(-5deg); }
  100% { transform: rotate(0); }
}

.mmpz-counter.animated {
  animation: counterSpin 0.5s ease;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
  .mmpz-stats-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .mmpz-stats-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .mmpz-stat-box {
    width: 80%;
    max-width: 300px;
  }
  
  .mmpz-counter {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .mmpz-stats-section {
    padding: 60px 10px;
  }
  
  .mmpz-stat-box {
    width: 90%;
    padding: 25px 15px;
  }
}



/*1ST CALL TO ACTION*/
/* Donation Section Styles */
.donation-section {
  background: linear-gradient(135deg, #1a0033, #2d0a4d);
  color: white;
  text-align: center;
  padding: 80px 20px;
  font-family: 'Arial', sans-serif;
  position: relative;
  overflow: hidden;
}

.donation-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(106, 0, 255, 0.2) 0%, transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(255, 0, 212, 0.2) 0%, transparent 30%);
}

.donation-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.donation-heading {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 1px;
  font-family: 'Poiret one',sans-serif;
  color: #aeb9d3;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.donation-subheading {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 40px;
  font-family: 'Caveat Brush', cursive;
  color: #00be4c;
}

.donation-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.donation-button {
  padding: 8px 40px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.donate {
  background-color: #ff6b00;
  color: white;
  border: 2px solid #ff6b00;
}

.action {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.donate:hover {
  background-color: #ff8c00;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

.action:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .donation-heading {
    font-size: 1.7rem;
  }
  
  .donation-subheading {
    font-size: 1.4rem;
  }
  
  .donation-buttons {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  
  .donation-button {
    width: 80%;
    max-width: 250px;
  }
}

/*Cards Section - Maximum Effects */
.features-static {
  padding: 100px 120px;
  background: linear-gradient(135deg, #f8e8fe 0%, #f0c8ff 50%, #e8b5ff 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}



.features-title-static {
  font-size: 3.5rem;
  font-family: 'Poiret One', sans-serif;
  margin-bottom: 60px;
  color: #1f0432;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: relative;
  display: inline-block;
}

.features-title-static::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #ffa600, #ff00aa, #3c014e);
  border-radius: 4px;
  animation: pulse 3s infinite;
}

@keyframes pulse {
  0% { opacity: 0.8; width: 120px; }
  50% { opacity: 1; width: 140px; }
  100% { opacity: 0.8; width: 120px; }
}

/* Container grid - 4 cards horizontally on desktop */
.features-container-static {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Force 4 columns */
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.feature-card-static {
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.15),
    0 5px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: 
    transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.5s ease,
    filter 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 30px;
  position: relative;
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
  will-change: transform;

  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* When revealed */
.feature-card-static.revealed {
  opacity: 1;
  transform: translateY(0);
}


.feature-card-static::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #ffa600, #ff00aa, #3c014e);
  z-index: 2;
}

.feature-card-static::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,166,0,0.03) 0%, rgba(255,0,170,0.03) 50%, rgba(60,1,78,0.03) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card-static:hover {
  transform: 
    translateY(-15px) 
    perspective(1000px) 
    rotateX(5deg) 
    scale(1.05);
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.25),
    0 20px 40px rgba(60, 1, 78, 0.3);
  filter: brightness(1.03);
  z-index: 10;
}

.feature-card-static:hover::after {
  opacity: 1;
}

/* Image styling with parallax effect */
.feature-image-static {
  overflow: hidden;
  height: 220px;
  position: relative;
}

.feature-image-static img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 
    transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1),
    filter 0.4s ease;
  transform: translateZ(0);
}

.feature-card-static:hover .feature-image-static img {
  transform: scale(1.1) translateY(-5%);
  filter: brightness(1.05) contrast(1.05);
}

/* Card content */
.feature-card-iso {
  text-align: center;
  padding: 0 25px;
}

.feature-card-static h3 {
  font-size: 1.8rem;
  font-family: 'Poiret One', sans-serif;
  margin: 5px 0 1px;
  background: linear-gradient(45deg, #ff00aa, #ffa600);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  line-height: 1.2;
}

.feature-card-static:hover h3 {
  letter-spacing: 0.8px;
  
}

.feature-card-static p {
  padding: 0 25px;
  font-size: 1rem;
  font-weight: 370;
  color: #6a6a6a;
  line-height: 1.3;
  margin-bottom: 5px;
}

/* Ultimate button effects */
.feature-btn-static {
  display: inline-block;
  margin: 25px auto 0;
  background: linear-gradient(45deg, #3c014e, #500367);
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-align: center;
  transition: 
    all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1),
    transform 0.3s ease;
  box-shadow: 
    0 6px 20px rgba(60, 1, 78, 0.4),
    inset 0 1px 2px rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  z-index: 1;
}

.feature-btn-static::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: 0.6s;
  z-index: -1;
}

.feature-btn-static:hover {
  background: linear-gradient(45deg, #500367, #6a058b);
  transform: 
    translateY(-5px) 
    scale(1.06);
  box-shadow: 
    0 12px 30px rgba(60, 1, 78, 0.6),
    inset 0 1px 2px rgba(255,255,255,0.4);
  letter-spacing: 0.8px;
}

.feature-btn-static:hover::before {
  left: 100%;
}

.feature-btn-static:active {
  transform: scale(0.96);
  box-shadow: 
    0 4px 15px rgba(60, 1, 78, 0.5),
    inset 0 1px 2px rgba(255,255,255,0.2);
}

/* Mobile optimizations (reduced but still premium) */
@media (max-width: 1200px) {
  .features-container-static {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .features-static {
    padding: 70px 20px;
  }
  
  .features-title-static {
    font-size: 2.8rem;
    margin-bottom: 40px;
  }
  
  .feature-card-static {
    border-radius: 16px;
    backdrop-filter: none;
  }
  
  .feature-card-static:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }
  
  .feature-image-static {
    height: 200px;
  }
  
  .feature-card-static:hover .feature-image-static img {
    transform: scale(1.07);
  }
  
  .feature-btn-static {
    padding: 10px 24px;
  }

.feature-card-static p {
  margin-top: 20px;
}

}

@media (max-width: 780px) {
  .features-title-static {
    font-size: 2.2rem;
  }
  
  .feature-card-static {
    border-radius: 14px;
  }
  
  .feature-card-static h3 {
    font-size: 1.7rem;
    margin-bottom: 0px;
    margin-top: 20px;
  }
  
  .feature-btn-static:hover {
    transform: translateY(-3px) scale(1.03);
  }

  }

  /* About Section */
.about1-section {
  padding: 80px 20px;
  background: linear-gradient(45deg, #e764e7, #f2c8ee);
}

.about1-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about1-inner-box {
  background-color: #fcf7fc;
  border-radius: 16px;
  padding: 50px 30px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.about1-inner-box {
  /* your existing styles */
  box-shadow: 
    inset 0 2px 4px rgba(192, 41, 226, 0.8),
    0 15px 30px rgba(0, 0, 0, 0.05);
}

.about1-inner-box {
  /* your existing styles */
  transition: all 0.3s ease;
}

.about1-inner-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about1-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* Left Text Column */
.about1-text {
  flex: 1 1 50%;
}

.about1-text .subheading {
  font-size: 1.3rem;
  color: #00d86c;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.about1-text .main-heading {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #7905a7;
  font-family: 'Poiret One', sans-serif;
  margin: 5px 0 1px;
  

}

.about1-text .description {
  font-size: 0.85;
  line-height: 1.5;
  color: #706d7c;
  margin-bottom: 25px;
  margin-top: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: -0.2px;
}

.about1-btn {
  display: inline-block;
  margin: 25px auto 0;
  background: linear-gradient(45deg, #3c014e, #500367);
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  text-align: center;
  transition: 
    all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1),
    transform 0.3s ease;
  box-shadow: 
    0 6px 20px rgba(60, 1, 78, 0.4),
    inset 0 1px 2px rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  z-index: 1;
  width: 50%;
}

.about1-btn-static::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: 0.6s;
  z-index: -1;
}

.about1-btn:hover {
  background: linear-gradient(45deg, #500367, #6a058b);
  transform: 
    translateY(-5px) 
    scale(1.06);
  box-shadow: 
    0 12px 30px rgba(60, 1, 78, 0.6),
    inset 0 1px 2px rgba(255,255,255,0.4);
  letter-spacing: 0.8px;
}

.about1-btn-static:hover::before {
  left: 100%;
}

.about1-btn-static:active {
  transform: scale(0.96);
  box-shadow: 
    0 4px 15px rgba(60, 1, 78, 0.5),
    inset 0 1px 2px rgba(255,255,255,0.2);
}



/* Right Image Column */
.about1-image {
  flex: 1 1 45%;
}

.about1-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  transform: perspective(800px) rotateY(-15deg) rotateX(5deg);
  transition: transform 0.5s ease;
}

.about1-image img:hover {
  transform: perspective(800px) rotateY(0deg) rotateX(0deg);
}

/* Responsive */
@media (max-width: 768px) {
 

  .about1-text,
  .about1-image {
    flex: 1 1 100%;
  }

  .about1-image {
    margin-top: 30px;
  }

  .about1-btn {
    width: 80%;
  }

  .about1-text .main-heading {
    font-size: 2rem;
    line-height: 1.2;
  }

  .about1-inner-box {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 50px 15px;
 
}

.about1-text .description {
  font-size: 0.89rem;
}

}

@media (max-width: 768px) {
  .about1-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about1-text,
  .about1-image {
    flex: 1 1 100%;
  }

  .about1-image {
    margin-top: 30px;
    display: flex;
    justify-content: center;
  }

  .about1-image img {
    max-width: 100%;
    height: auto;
  }

  .about1-btn {
    width: 80%;
    margin: 25px auto 0;
    display: block;
  }

  .about1-text .main-heading {
    font-size: 2rem;
    line-height: 1.2;
  }

  .about1-inner-box {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 50px 15px;
  }

  .about1-text .description {
    font-size: 0.89rem;
  }
}



/* FAQS SECTION */

/* Youth FAQ Section - Unique Classes */
.youth-faq-section {
  padding: 100px 0;
  background-color: #272032;
  position: relative;
  overflow: hidden;
}

.youth-faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 2;
}

.youth-faq-title {
  text-align: center;
  font-size: 2.2rem;
  letter-spacing: 0.8px;
  color: #d8d8d8;
  margin-bottom: 60px;
  font-family: 'Poiret One', cursive;
  line-height: 1.3;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: youthFaqFadeInDown 1s ease-out 0.3s forwards;
}

@keyframes youthFaqFadeInDown {
  from {
    opacity: 0;
    transform: translate(-50%, -30px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.youth-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Image Column */
.youth-faq-image-col {
  position: relative;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.youth-faq-image-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transform: rotateY(15deg) translateZ(0);
  transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.youth-faq-image-col:hover .youth-faq-image-wrapper {
  transform: rotateY(5deg) translateZ(20px);
}

.youth-faq-parallax-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease-out;
}

.youth-faq-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255,170,0,0.3) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.youth-faq-image-col:hover .youth-faq-glow {
  opacity: 1;
}

.youth-faq-caption {
  text-align: center;
  margin-top: 20px;
  color: #5c2496;
  font-style: italic;
  font-size: 1.1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: youthFaqFadeInUp 0.8s ease-out 0.6s forwards;
}

/* FAQ Content */
.youth-faq-content-col {
  position: relative;
}

@media (max-width: 768px) {
  .youth-faq-content-col {
    margin-top: -100px;
  }
}

.youth-faq-item {
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  transform: none;
  opacity: 1;
}

.youth-faq-question {
  width: 100%;
  padding: 22px 30px;
  text-align: left;
  background: #fff;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.1rem;
  color: #3c014e;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.youth-faq-question::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: #ffaa00;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.youth-faq-question:hover {
  background: #f0e5ff;
  transform: translateX(10px);
}

.youth-faq-toggle {
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform 0.4s ease;
}

.youth-faq-plusminus {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.youth-faq-plusminus::before,
.youth-faq-plusminus::after {
  content: '';
  position: absolute;
  background: #00b460;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.youth-faq-plusminus::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.youth-faq-plusminus::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.youth-faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  background: #f9e5fa;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.youth-faq-answer p {
  padding: 25px 0;
  color: #444356;
  line-height: 1.7;
  font-family: 'Segoe UI', sans-serif;
  letter-spacing: -0.5px;
}

/* Active State */
.youth-faq-item.active .youth-faq-question {
  background: #f0e5ff;
}

.youth-faq-item.active .youth-faq-question::before {
  transform: scaleY(1);
}

.youth-faq-item.active .youth-faq-plusminus::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.youth-faq-item.active .youth-faq-answer {
  max-height: 500px;
  padding: 0 30px;
}

/* Floating Particles */
.youth-faq-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.youth-faq-particles::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  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: youthFaqFloatParticles 40s linear infinite;
}

/* Responsive */
@media (max-width: 768px) {
  .youth-faq-grid {
    grid-template-columns: 1fr;
  }
  
  .youth-faq-image-col {
    max-width: 500px;
    margin: 0 auto 40px;
  }
  
  .youth-faq-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }
}

@media (max-width: 576px) {
  .youth-faq-container {
    padding: 0 20px;
  }
  
  .youth-faq-title {
    font-size: 2rem;
  }
  
  .youth-faq-question {
    padding: 16px 20px;
    font-size: 1rem;
  }
  
  .youth-faq-answer p {
    padding: 20px 0;
  }
}


/* Redesigned Contact Us Section */
.contact-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #fbdcff, #e5f6ff);
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(67, 97, 238, 0.2), transparent);
    border-radius: 50%;
    z-index: 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
    font-family: 'Poiret one',sans-serif;
    color: #1a0d2b;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: #43a4f0;
    margin: 1rem auto 0;
    display: block;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: #4a4a4a;
    margin-top: 0.2rem;
    font-size: 1.1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.animate-on-scroll.animated {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.contact-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 3rem;
}

.contact-info-column,
.contact-form-column {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
    opacity: 0;
}

.contact-info-column {
    transform: translateX(-50px);
    transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
}

.contact-form-column {
    transform: translateX(50px);
    transition: opacity 0.6s ease 0.6s, transform 0.6s ease 0.6s;
}

/* Info Column */
.info-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #370247;
    font-family: 'Poiret one',sans-serif;
    font-weight: 600;
    border-bottom: 3px solid #370f43;
    display: inline-block;
    padding-bottom: 0.4rem;
}

.info-description {
    color: #555;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-method:hover {
    transform: scale(1.02);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: #ddefff;
    border-radius: 50%;
    color: #330947;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

.contact-details h4 {
    font-size: 1.4rem;
    color: #222;
    margin-bottom: 0.2rem;
    font-family: 'Caveat Brush', sans-serif;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.contact-details p {
    color: #555;
    font-size: 0.95rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 2rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #f0f3ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00904f;
    transition: 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    background: #3b4ef8;
    color: #fff;
    transform: translateY(-3px);
}

/* Form Column */
.form-title {
font-size: 1.6rem;
font-weight: 600;
color: #1a1a1a;
font-family: 'Poiret One', sans-serif;
border-bottom: 3px solid #470459;
display: inline-block;
padding-bottom: 0.4rem;
margin-bottom: 1.5rem;
margin-left: 90px;
margin-right: auto;

}

/* Contact Form Container */
form#contactForm {
 
  padding: 30px 40px;
  border-radius: 0 0 16px 16px;
  margin-top: 80px;
  width: 100%;
  max-width: 450px;
  margin: auto;
}

/* Input and Textarea Styles */
form#contactForm input,
form#contactForm textarea {
  width: 100%;
  border: 2px solid #ddd;
  border-top: none;
  border-left: none;
  border-right: none;
  border-radius: 0 0 8px 8px;
  padding: 14px 16px;
  margin-top: 21px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
  background: #fdfdfd;
  resize: vertical;
}

form#contactForm input:focus,
form#contactForm textarea:focus {
  border-color: #7c3aed;
  outline: none;
  background: #fff;
}

/* Submit Button */
form#contactForm button[type="submit"] {
  margin-top: 24px;
  width: 100%;
  background-color: #370147;
  color: white;
  border: none;
  padding: 14px;
  font-size: 1.1rem;
  border-radius: 0 0 8px 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: 600;
}

form#contactForm button[type="submit"]:hover {
  background-color: #5d046e;
}

/* Feedback Message */
#formFeedback {
  margin-top: 16px;
  font-size: 0.95rem;
  padding: 12px 15px;
  border-radius: 0 0 8px 8px;
  display: none;
}

#formFeedback.success {
  background-color: #00a955;
  color: white;
}

#formFeedback.error {
  background-color: #e74c3c;
  color: white;
}

@media (max-width: 908px) {

  form#contactForm {
  padding: 30px 40px;
  padding-left: 1px;
  padding-right: 1px;
  }

.form-title {
margin-left: 0px;
margin-right: auto;

}

}



/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-columns {
        flex-direction: column;
    }

    .contact-info-column,
    .contact-form-column {
        transform: none !important;
        transition-delay: 0s !important;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .form-title, .info-title {
        font-size: 1.6rem;
    }
}


/*FOOTER FOR ALL HERE*/
.footer {
  background-color: #2f0e41;
  color: #ccc;
  padding: 60px 20px 20px;
  font-family: 'Arial', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.footer-column {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-column h3 {
  color: #02b72c;
  margin-bottom: 15px;
  font-size: 30px;
  font-family: 'Poiret one', sans-serif;
}

.footer-column p,
.footer-column ul {
  font-size: 14px;
  line-height: 1.7;
  color: #9494b7;
  font-family: 'Inter', sans-serif;


}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #76819a;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 1rem;
   font-family: 'Inter', sans-serif;
  font-weight: 400;
}

@media (Max-Width: 768px) {
  .footer-column ul li a {
    font-size: 0.95rem;
  }

  .footer-column ul li {
    margin-bottom: 5px;
  }

  .footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5px;
  }
}

.footer-column ul li a:hover {
  color: #ffa600;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 14px;
  color: #888;
}

.footer-bottom a {
  color: #ffc400;
   text-decoration: none;
  
}

@media (Max-Width: 768px) {
  .footer-bottom p {
    margin-right: 70px;
    margin-top: 10px;
    font-size: 0.87rem;
  }
}

/* BACK TO THE TOP BUTTON FOR ALL PAGES */
.back-to-top {
  /* Positioning */
  position: fixed;
  left: 10px;
  bottom: 0px; /* Start hidden */
  z-index: 999;

  /* Shape & Style */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #6e45e2, #89d4cf);
  color: white;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  
  /* Transition for smooth fade-in/out */
  transition: all 0.4s ease, transform 0.2s ease;
  opacity: 0;
}

.back-to-top.visible {
  bottom: 30px; /* Slide up */
  opacity: 1;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(110, 69, 226, 0.3);
}

.back-to-top:active {
  transform: scale(0.95);
}


/* PAGE HEADER FOR EVERY PAGE */
.contact-header {
  background-color: #351161;
  padding: 60px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 170, 0, 0.2);
  position: relative;
  overflow: hidden;
  animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Subtle moving gradient overlay */
.contact-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    rgba(255, 170, 0, 0.05) 0%,
    transparent 20%,
    transparent 80%,
    rgba(106, 0, 255, 0.05) 100%
  );
  animation: gradientFlow 15s linear infinite;
  z-index: 0;
}

@keyframes gradientFlow {
  0% { transform: translate(0, 0); }
  50% { transform: translate(25%, 25%); }
  100% { transform: translate(0, 0); }
}

.contact-header h1 {
  font-size: 2.8rem;
  margin-bottom: 12px;
  color: #ffaa00;
  font-family: 'Poiret One', sans-serif;
  position: relative;
  z-index: 1;
  animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
  from { transform: translateY(-30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.breadcrumb {
  font-size: 1.1rem;
  color: #e7e7e7;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
  from { transform: translateY(15px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.breadcrumb a {
  color: #1ac500;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.breadcrumb a:hover {
  color: #8aff7a;
  text-decoration: underline;
  text-shadow: 0 0 5px rgba(26, 197, 0, 0.3);
}

.breadcrumb span {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.5);
}

/* Subtle floating dots */
.contact-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.03) 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(255,170,0,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: floatDots 20s linear infinite;
  z-index: 0;
}

@keyframes floatDots {
  from { background-position: 0 0; }
  to { background-position: 40px 40px; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-header {
    padding: 50px 20px;
  }
  
  .contact-header h1 {
    font-size: 2.2rem;
  }
  
  .breadcrumb {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .contact-header h1 {
    font-size: 1.8rem;
  }
  
  .breadcrumb span {
    margin: 0 5px;
  }
}


/* RELIABLE STICKY CONTACT WIDGET - FULL WORKING VERSION */
.contact-wrapper {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  font-family: 'Segoe UI', Roboto, -apple-system, sans-serif;
  display: flex;
  flex-direction: column-reverse; /* Fixes hover gap issue */
  align-items: flex-end;
}

.contact-tab {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  border: none;
  z-index: 2; /* Ensures button stays above panel */
  animation: gentlePulse 2.5s infinite;
}

.contact-panel {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  width: 180px;
  margin-bottom: 10px; /* Space between panel and button */
  position: relative;
  z-index: 1;
}

/* Fixed hover state - now works reliably */
.contact-wrapper:hover .contact-panel,
.contact-panel:hover {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.contact-option {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  text-decoration: none;
  color: #2d3748;
  transition: all 0.25s ease-out;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.9);
}

.contact-option:last-child {
  border-bottom: none;
}

.contact-option:hover {
  background: #f8f9fa;
  padding-left: 22px;
  color: #128C7E;
}

.contact-option img, 
.contact-option svg {
  width: 22px;
  height: 22px;
  margin-right: 14px;
  transition: transform 0.3s ease;
}

.contact-option:hover img, 
.contact-option:hover svg {
  transform: scale(1.15);
}

/* Animations */
@keyframes gentlePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

@keyframes ripple {
  to {
    transform: scale(2);
    opacity: 0;
  }
}

.contact-tab:active::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.6s linear;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .contact-wrapper {
    bottom: 15px;
    right: 15px;
  }
  
  .contact-tab {
    padding: 10px 16px;
    font-size: 14px;
  }
  
  .contact-panel {
    width: 160px;
  }
  
  .contact-option {
    padding: 12px 16px;
  }
  
  .contact-option img, 
  .contact-option svg {
    width: 20px;
    height: 20px;
    margin-right: 12px;
  }
}

/* Entry Animation */
.contact-wrapper {
  animation: slideIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
  animation-delay: 0.5s;
}

@keyframes slideIn {
  from { transform: translateX(100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}


/* ABOUT US PAGE STARTS HERE */
.our-history-section-unique {
  padding: 60px 20px;
  background-color: #f1dbf7;
}

.history-container-unique {
  max-width: 1200px;
  margin: auto;
}

.history-header-unique {
  text-align: center;
  margin-bottom: 40px;
}

.history-subheading-unique {
  color: #edae00;
  font-size: 2rem;
  font-family: 'Caveat Brush', cursive;
}

.history-main-heading-unique {
  font-size: 3rem;
  font-weight: bold;
  color: #3a095d;
  line-height: 1.2;
  font-family: 'Poiret One', cursive;
  font-weight: 800;
}

.history-grid-unique {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.history-text-unique {
  flex: 1;
  min-width: 300px;
}

.history-about-heading-unique {
  font-size: 2rem;
  margin-bottom: 15px;
  font-family: 'Poiret One', cursive;
  color: #0a994f;

}

.history-about-description-unique,
.history-more-text-unique p {
  font-size: 1rem;
  line-height: 1.58;
  color: #333;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.2px;
  font-weight: 400;
}

.history-more-text-unique.hidden {
  display: none;
}

.history-more-text-unique.visible {
  display: block;
  margin-top: 10px;
}

.history-read-more-btn-unique {
display: inline-block;
  margin: 25px auto 0;
  background: linear-gradient(45deg, #3c014e, #500367);
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-align: center;
  transition: 
    all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1),
    transform 0.3s ease;
  box-shadow: 
    0 6px 20px rgba(60, 1, 78, 0.4),
    inset 0 1px 2px rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  z-index: 1;
}

 .history-read-more-btn-unique::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: 0.6s;
  z-index: -1;
}

.history-read-more-btn-unique:hover {
  background: linear-gradient(45deg, #500367, #6a058b);
  transform: 
    translateY(-5px) 
    scale(1.06);
  box-shadow: 
    0 12px 30px rgba(60, 1, 78, 0.6),
    inset 0 1px 2px rgba(255,255,255,0.4);
  letter-spacing: 0.8px;
}

.feature-btn-static:hover::before {
  left: 100%;
}

.feature-btn-static:active {
  transform: scale(0.96);
  box-shadow: 
    0 4px 15px rgba(60, 1, 78, 0.5),
    inset 0 1px 2px rgba(255,255,255,0.2);
}

.history-image-unique {
  flex: 1;
  min-width: 300px;
  perspective: 1000px; /* Adds 3D feel without distortion */
}

.history-image-unique img {
  max-width: 100%;
  border-radius: 8px;
  transform: skewY(-5deg); /* Slants vertically */
  transition: transform 0.3s ease;
}
.history-image-unique img:hover {
  transform: skewY(0deg);
}



@media (max-width: 768px) {
  .history-main-heading-unique {
    font-size: 2rem;
  }

  .history-about-description-unique,
.history-more-text-unique p {
  font-size: 0.9rem;
  font-weight: 400;
}
}

/* Accountability Section */
#accountability-sec-7391 {
  padding: 60px 20px;
  background-color: #1c0219;
  color: #00dc72;
  
}

.container-7391 {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title-7391 {
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
  color: #00ea80;
  font-family: 'Poiret One', cursive;
  letter-spacing: 0.7px;
}

.grid-7391 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.card-7391 {
  background: #3e0757;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(1, 197, 148, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

/* popup reveal */

.card-7391 {
  opacity: 0;
  transform: translateX(-50px);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

/* When visible: slide in and fade in */
.card-7391.visible {
  opacity: 1;
  transform: translateX(0);
}


.card-7391:hover {
  transform: translateY(-5px);
  background-color: #6e0488;
}

.card-7391 h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #00dc72;
  display: flex;
  align-items: center;
  font-family: 'Caveat Brush', cursive;
  line-height: 1.2;
  letter-spacing: 0.6px;
  font-weight: 400;
}

.card-7391 h3 i {
  margin-right: 10px;
  color: #00ea80;
}

.card-7391 p {
  font-size: 0.87rem;
  line-height: 1.5;
  color: #e5d6e7;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  letter-spacing: -0.2px;
}

@media (max-width: 768px) {

  .section-title-7391 {
    font-size: 1.6rem;
    letter-spacing: 0.7px;
  }

  .card-7391 p {
    font-size: 0.87rem;
  }
}

/* Team members info */
.features-static-8472 {
  padding: 80px 20px;
  background-color: #f7c8f1;
}

.features-container-static-8472 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding-top: 30px;
  padding-bottom: 60px;
}

.feature-card-static-8472 {
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.15),
    0 5px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 30px;
  position: relative;
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
  will-change: transform;

  /* Initial hidden state */
  opacity: 0;
  transform: translateY(40px);
  transition:
    transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    opacity 0.6s ease,
    box-shadow 0.5s ease,
    filter 0.4s ease;
}

/* Revealed state */
.feature-card-static-8472.visible {
  opacity: 1;
  transform: translateY(0);
}



.feature-card-static-8472::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #ffa600, #ff00aa, #3c014e);
  z-index: 2;
}

.feature-card-static-8472::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,166,0,0.03) 0%, rgba(255,0,170,0.03) 50%, rgba(60,1,78,0.03) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card-static-8472:hover {
  transform:
    translateY(-15px)
    perspective(1000px)
    rotateX(5deg)
    scale(1.05);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.25),
    0 20px 40px rgba(60, 1, 78, 0.3);
  filter: brightness(1.03);
  z-index: 10;
}

.feature-card-static-8472:hover::after {
  opacity: 1;
}

.feature-image-static-8472 {
  overflow: hidden;
  height: 280px;
  position: relative;
}

.feature-image-static-8472 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1),
    filter 0.4s ease;
  transform: translateZ(0);
}

.feature-card-static-8472:hover .feature-image-static-8472 img {
  transform: scale(1.1) translateY(-5%);
  filter: brightness(1.05) contrast(1.05);
}

.features-title-static-8472 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 50px;
  background: linear-gradient(90deg, #ff00aa, #ffa600);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Poiret One', sans-serif;
}

.feature-card-static-8472 h3 {
  font-size: 1.5rem;
  font-family: 'Poiret One', sans-serif;
  margin: 25px 0 15px;
  padding: 0 25px;
  background: linear-gradient(45deg, #ff00aa, #ffa600);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  line-height: 1.2;
  text-align: center;
  margin-top: 2px;
}

.feature-card-static-8472:hover h3 {
  letter-spacing: 0.8px;
}

.feature-desc-8472 {
  padding: 0 25px;
  font-size: 1rem;
  font-weight: 370;
  color: #6a6a6a;
  line-height: 1.5;
  margin-bottom: 5px;
}

.feature-desc-8472.short {
  display: block;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.4;

}

.feature-desc-8472.full {
  display: none;
}

.feature-desc-8472.full.show {
  display: block;
}

.feature-desc-8472.full p {
  margin-top: 10px;
}

.feature-btn-static-8472 {
  display: inline-block;
  margin: 25px auto 0;
  background: linear-gradient(45deg, #3c014e, #500367);
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-align: center;
  transition:
    all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1),
    transform 0.3s ease;
  box-shadow:
    0 6px 20px rgba(60, 1, 78, 0.4),
    inset 0 1px 2px rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  z-index: 1;
}

.feature-btn-static-8472::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: 0.6s;
  z-index: -1;
}

.feature-btn-static-8472:hover {
  background: linear-gradient(45deg, #500367, #6a058b);
  transform:
    translateY(-5px)
    scale(1.06);
  box-shadow:
    0 12px 30px rgba(60, 1, 78, 0.6),
    inset 0 1px 2px rgba(255,255,255,0.4);
  letter-spacing: 0.8px;
}

.feature-btn-static-8472:hover::before {
  left: 100%;
}

.feature-btn-static-8472:active {
  transform: scale(0.96);
  box-shadow:
    0 4px 15px rgba(60, 1, 78, 0.5),
    inset 0 1px 2px rgba(255,255,255,0.2);
}

.hidden {
  display: none;
}

@media (max-width: 768px) {

  .features-title-static-8472 {
    font-size: 1.9rem;
    
  }

  .feature-image-static-8472 {
  overflow: hidden;
  height: 230px;
  position: relative;
}
}

/* open modal */
/* Modal Background */
.modal-8472 {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Hide modal by default */
.modal-8472.hidden {
  display: none;
}

/* Modal Box */
.modal-content-8472 {
  background: #ffffff;
  padding: 35px;
  border-radius: 16px;
  max-width: 650px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.3s ease-in-out;
 
}

/* Close button */
.modal-close-8472 {
  position: absolute;
  top: -13px;
  right: 20px;
  font-size: 50px;
  font-weight: 800;
  cursor: pointer;
  color: #400063;
  transition: 0.3s ease;
 
}
.modal-close-8472:hover {
  color: #06be65;
  transform: scale(1.1);
}

/* Modal Text Styling */
#modal-text-8472 {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #5b5b5b;
  letter-spacing: -0.3px;
  font-family: 'Inter', sans-serif;
}

#modal-text-8472 strong {
  font-size: 1.4rem;
  color: #02eb5f;
  display: inline-block;
  margin-top: 15px;
  font-family: 'Poiret One', sans-serif;
  letter-spacing: 0.3px;
}

/* Bullet list if you add ul in future */
#modal-text-8472 ul {
  padding-left: 20px;
  margin-top: 10px;
}

#modal-text-8472 ul li {
  margin-bottom: 8px;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Prevent body scroll when modal is open */
body.modal-open {
  overflow: hidden;
}





/* CONTACT US PAGE START HERE */

/* Enhanced Contact Form with Effects */
.contact-form-ngo {
  background-color: #eed4ee;
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
}

.contact-form-ngo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.3) 0%, transparent 50%);
  z-index: 0;
}

.contact-form-ngo-container {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255,255,255,0.3);
  position: relative;
  z-index: 1;
  transform: translateY(0);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.4);
}

.contact-form-ngo-container:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.12),
    0 0 0 2px rgba(255,255,255,0.4);
}

.contact-form-ngo h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: transparent;
  background: linear-gradient(45deg, #ff00aa, #ffa600);
  font-family: 'Poiret One', sans-serif;
  -webkit-background-clip: text;
  background-clip: text;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.contact-form-ngo h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #ffb300, #e301c1);
  border-radius: 3px;
}

.contact-form-ngo-form .form-group {
  margin-bottom: 25px;
  position: relative;
}

.contact-form-ngo-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 300;
  color: #333;
  margin-left: 5px;
  transition: all 0.3s ease;
  transform-origin: left center;
  font-family: 'Caveat Brush', cursive;
  font-size: 1.5rem;
}

.contact-form-ngo-form input,
.contact-form-ngo-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
  background-color: rgba(255,255,255,0.8);
}

.contact-form-ngo-form input:focus,
.contact-form-ngo-form textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
  background-color: #fff;
}

.contact-form-ngo-form input:focus + label,
.contact-form-ngo-form textarea:focus + label {
  color: #007bff;
  transform: translateY(-5px) scale(0.9);
}

.contact-submit-btn {
  background: linear-gradient(45deg, #0abb77, #4f0183);
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.4s cubic-bezier(0.165, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(10, 187, 119, 0.3);
  z-index: 1;
}

.contact-submit-btn:hover {
  background: linear-gradient(45deg, #007bff, #620787);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(98, 7, 135, 0.4);
}

.contact-submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: 0.6s;
  z-index: -1;
}

.contact-submit-btn:hover::before {
  left: 100%;
}

.contact-submit-btn i {
  transition: transform 0.3s ease;
}

.contact-submit-btn:hover i {
  transform: translateX(5px);
}

/* Floating label effect */
.form-group:focus-within label {
  color: #007bff;
  transform: translateY(-5px) scale(0.9);
}

/* Animated border effect */
@keyframes border-pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(0, 123, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 123, 255, 0); }
}

.contact-form-ngo-container:focus-within {
  animation: border-pulse 2s infinite;
}

@media (Max-Width: 900px) {

  .contact-form-ngo-form label {

  font-size: 1.3rem;
}
}

/* js styling for form */
.form-message {
  margin-top: 15px;
  padding: 12px;
  border-radius: 6px;
  font-weight: 500;
  font-family: 'Poiret One', sans-serif;
}

.form-success {
  background-color: #e0f8e9;
  color: #00b058;
  border: 1px solid #28a745;
}

.form-error {
  background-color: #fdecea;
  color: #c0392b;
  border: 1px solid #e74c3c;
}


/* FAQ SECTION  */
.contact-faq-section {
  padding: 100px 0;
  background-color: #272032;
  position: relative;
  overflow: hidden;
}

.contact-faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 2;
}

.contact-faq-title {
  text-align: center;
  font-size: 2.2rem;
  letter-spacing: 0.8px;
  color: #d8d8d8;
  margin-bottom: 60px;
  font-family: 'Poiret One', cursive;
  line-height: 1.3;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: contactFaqFadeInDown 1s ease-out 0.3s forwards;
}

@keyframes contactFaqFadeInDown {
  from {
    opacity: 0;
    transform: translate(-50%, -30px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.contact-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Image Column */
.contact-faq-image-col {
  position: relative;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.contact-faq-image-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transform: rotateY(15deg) translateZ(0);
  transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.contact-faq-image-col:hover .contact-faq-image-wrapper {
  transform: rotateY(5deg) translateZ(20px);
}

.contact-faq-parallax-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease-out;
}

.contact-faq-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255,170,0,0.3) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.contact-faq-image-col:hover .contact-faq-glow {
  opacity: 1;
}

.contact-faq-caption {
  text-align: center;
  margin-top: 20px;
  color: #5c2496;
  font-style: italic;
  font-size: 1.1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: contactFaqFadeInUp 0.8s ease-out 0.6s forwards;
}

/* FAQ Content */
.contact-faq-content-col {
  position: relative;
}

@media (max-width: 768px) {
  .contact-faq-content-col {
    margin-top: -100px;
  }
}

.contact-faq-item {
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  transform: none;
  opacity: 1;
}

/* Question Button */
.contact-faq-question {
  width: 100%;
  padding: 22px 30px;
  text-align: left;
  background: #fff;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.1rem;
  color: #3c014e;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.contact-faq-question::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: #ffaa00;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-faq-question:hover {
  background: #f0e5ff;
  transform: translateX(10px);
}

/* Toggle Icon */
.contact-faq-toggle {
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform 0.4s ease;
  flex-shrink: 0;
}

.contact-faq-plusminus {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.contact-faq-plusminus::before,
.contact-faq-plusminus::after {
  content: '';
  position: absolute;
  background: #00b460;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-faq-plusminus::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.contact-faq-plusminus::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

/* Answer Panel */
.contact-faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  background: #f9e5fa;
  transition: max-height 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), padding 0.4s ease;
}

.contact-faq-answer p {
  padding: 25px 0;
  color: #444356;
  line-height: 1.7;
  font-family: 'Segoe UI', sans-serif;
  letter-spacing: -0.5px;
}

/* Active State */
.contact-faq-item.active .contact-faq-question {
  background: #f0e5ff;
}

.contact-faq-item.active .contact-faq-question::before {
  transform: scaleY(1);
}

.contact-faq-item.active .contact-faq-plusminus::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.contact-faq-item.active .contact-faq-answer {
  max-height: 500px;
  padding: 25px 30px; /* add vertical padding for visible content */
}

/* Floating Particles */
.contact-faq-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.contact-faq-particles::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  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;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-faq-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-faq-image-col {
    max-width: 500px;
    margin: 0 auto 40px;
  }
  
  .contact-faq-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }
}

@media (max-width: 576px) {
  .contact-faq-container {
    padding: 0 20px;
  }
  
  .contact-faq-title {
    font-size: 2rem;
  }
  
  .contact-faq-question {
    padding: 16px 20px;
    font-size: 1rem;
  }
  
  .contact-faq-answer p {
    padding: 20px 0;
  }
}


/* Coming Soon Section with Effects */
.coming-soon-section {
  padding: 30px 20px;
  text-align: center;
  background: linear-gradient(45deg, #500367, #6a058b);
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(106, 0, 255, 0.2) 0%, transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(255, 0, 212, 0.2) 0%, transparent 30%);
  z-index: 0;
}

.coming-soon-container {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(253, 232, 253, 0.95);
  padding: 50px 30px;
  border-radius: 20px;
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.1),
    0 0 0 4px rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
  transform: translateY(0);
  transition: all 0.5s ease;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.coming-soon-container:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 15px 50px rgba(0, 0, 0, 0.2),
    0 0 0 4px rgba(255, 255, 255, 0.15);
}

.coming-soon-container h1 {
  font-size: 2.8rem;
  color: #30044a;
  margin-bottom: 20px;
  font-family: 'Poiret One', cursive;
  position: relative;
  display: inline-block;
}

.coming-soon-container h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #ff00aa, #ffa600);
  border-radius: 3px;
}

.coming-soon-container p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.3px;
  margin-top: -10px;
  position: relative;
}

.back-btn {
  display: inline-block;
  background-color: #03c17b;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(3, 193, 123, 0.3);
  z-index: 1;
}

.back-btn i {
  margin-right: 8px;
  transition: transform 0.3s ease;
}

.back-btn:hover {
  background-color: #7700b3;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(119, 0, 179, 0.4);
}

.back-btn:hover i {
  transform: translateX(-5px);
}

.back-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.6s;
  z-index: -1;
}

.back-btn:hover::before {
  left: 100%;
}

/* Floating shapes animation */
.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px);
  animation: float 15s linear infinite;
}

.shape-1 {
  width: 100px;
  height: 100px;
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  bottom: 15%;
  right: 10%;
  animation-delay: 2s;
  animation-duration: 20s;
}

.shape-3 {
  width: 70px;
  height: 70px;
  top: 60%;
  left: 5%;
  animation-delay: 4s;
  animation-duration: 25s;
}

.shape-4 {
  width: 120px;
  height: 120px;
  top: 30%;
  right: 20%;
  animation-delay: 6s;
  animation-duration: 18s;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: translateY(-100px) rotate(180deg);
    opacity: 0.7;
  }
  100% {
    transform: translateY(0) rotate(360deg);
    opacity: 1;
  }
}

/* Pulsing animation for the container */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.coming-soon-container {
  animation: pulse 3s infinite;
}


/* =======GET INVOLVED PAGE STARTS */

/* Get Involved Section */
#mmpz-get-involved.mmpz-get-involved-section {
  padding: 80px 20px;
  background: linear-gradient(45deg, #e764e7, #f2c8ee);
}

#mmpz-get-involved .mmpz-get-involved-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  background-color: #fcf7fc;
  border-radius: 16px;
  padding: 50px 30px;
  box-shadow: 
    inset 0 2px 4px rgba(192, 41, 226, 0.8),
    0 15px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

#mmpz-get-involved .mmpz-get-involved-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Left Image Column */
#mmpz-get-involved .mmpz-get-involved-image {
  flex: 1 1 45%;
}

#mmpz-get-involved .mmpz-get-involved-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  transform: perspective(800px) rotateY(-15deg) rotateX(5deg);
  transition: transform 0.5s ease;
}

#mmpz-get-involved .mmpz-get-involved-image img:hover {
  transform: perspective(800px) rotateY(0deg) rotateX(0deg);
}

/* Right Content Column */
#mmpz-get-involved .mmpz-get-involved-content {
  flex: 1 1 50%;
  font-family: 'Inter', sans-serif;
  color: #706d7c;
}

#mmpz-get-involved .mmpz-get-involved-content .mmpz-subheader {
  font-size: 1.1rem;
  color: #00d86c;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-family: 'Caveat Brush', cursive;

}

#mmpz-get-involved .mmpz-get-involved-content .mmpz-header {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #7905a7;
  font-family: 'Poiret One', cursive;
  margin: 5px 0 19px;
  line-height: 1.2;

}

#mmpz-get-involved .mmpz-get-involved-content .mmpz-description {
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 25px;
  font-weight: 400;
  letter-spacing: -0.2px;
}

/* List Styling */
#mmpz-get-involved .mmpz-involvement-list {
  list-style: none;
  padding-left: 0;
  color: #706d7c;
  font-size: 1rem;
  line-height: 1.2;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
   letter-spacing: -0.2px;
   font-weight: 300;
}

#mmpz-get-involved .mmpz-involvement-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

#mmpz-get-involved .mmpz-involvement-list li i {
  color: #009d61; /* accent color */
  font-size: 1.25rem;
  min-width: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  #mmpz-get-involved .mmpz-get-involved-container {
    flex-direction: column;
    padding: 50px 15px;
  }

  #mmpz-get-involved .mmpz-get-involved-image,
  #mmpz-get-involved .mmpz-get-involved-content {
    flex: 1 1 100%;
  }

  #mmpz-get-involved .mmpz-get-involved-image {
    margin-top: 30px;
    display: flex;
    justify-content: center;
  }

  #mmpz-get-involved .mmpz-get-involved-image img {
    max-width: 100%;
    height: auto;
  }

  #mmpz-get-involved .mmpz-get-involved-content .mmpz-header {
    font-size: 1.6rem;
    line-height: 1.2;
    margin-top: -10px;
  }

/* List Styling */
#mmpz-get-involved .mmpz-involvement-list {
  font-size: 0.85rem;
 
}

#mmpz-get-involved .mmpz-get-involved-image img {
margin-top: -30px;
}

}


