/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: #111;
  background: #ffffff;
}

/* ================= NAVBAR ================= */
.navbar {
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1300px;
  margin: auto;
  padding: 18px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 55px;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 35px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: black;
  font-weight: 500;
  position: relative;
  padding: 10px 0;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Arrow animation */
.arrow {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

/* Rotate arrow on hover */
.dropdown:hover .arrow {
  transform: rotate(180deg);
}

/* DROPDOWN MENU */
.dropdown-menu {
  position: absolute;
  top: 140%;
  left: 0;
  background: white;
  min-width: 220px;
  border-radius: 14px;
  padding: 15px 0;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

/* KEEP MENU OPEN ON HOVER */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* DROPDOWN LINKS */
.dropdown-menu a {
  display: block;
  padding: 12px 22px;
  color: #0f172a;
  font-weight: 500;
}

.dropdown-menu a:hover {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: white;
}

/* MAIN LINK HOVER */
.nav-links > a:hover,
.dropdown-toggle:hover {
  color: #a5b4fc;
}

.nav-actions {
  display: flex;
  gap: 15px;
}

.lang-btn {
  background: transparent;
  border: 1px solid #ccc;
  padding: 8px 14px;
  border-radius: 30px;
}

.primary-btn {
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: white;
  padding: 10px 26px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: 0.4s ease;
}

.primary-btn:hover {
  transform: translateY(-4px);
  opacity: 0.85;
}

.secondary-btn {
  background: transparent;
  border: 1px solid #4f46e5;
  color: #4f46e5;
  padding: 10px 26px;
  border-radius: 30px;
  cursor: pointer;
}

/* HERO SECTION */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;

  /* OVERLAY + IMAGE BACKGROUND */
  background:
    linear-gradient(
      rgba(5, 15, 25, 0.75),
      rgba(5, 15, 25, 0.85)
    ),
    url("./images/download\ 22.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


/* CENTER CONTENT */
.hero-inner {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
}

.hero-left {
  max-width: 650px;
}

/* TEXT */
.hero-left h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-left p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 35px;
}

.primary-btn,
.secondary-btn {
  padding: 14px 28px;
  border-radius: 40px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

/* primary */
.primary-btn {
  background: #1ec28b;
  color: white;
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(30, 194, 139, 0.35);
}

/* secondary */
.secondary-btn {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.5);
}

.secondary-btn:hover {
  background: white;
  color: #05101a;
}

/* COMMUNITY */
.hero-community {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-community img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
}

.hero-community img:first-child {
  margin-left: 0;
}

.extra {
  width: 40px;
  height: 40px;
  background: #1ec28b;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-left: -10px;
}

.community-text {
  margin-left: 12px;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.8;
}

.scroll-line {
  width: 2px;
  height: 60px;
  background: white;
  margin: 10px auto 0;
  animation: scrollMove 2s infinite;
}

@keyframes scrollMove {
  0% { transform: scaleY(0); opacity: 0; }
  50% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0); opacity: 0; }
}


/* ================= JOURNEY SECTION ================= */

.journey-section {
  position: relative;
  padding: 0 80px 140px;
  margin-top: -100px;
  z-index: 5;
}

.journey-card {
  max-width: 1050px;
  margin: 0 auto;
  padding: 60px 60px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 15% 15%, #fde68a 0%, transparent 40%),
    radial-gradient(circle at 85% 25%, #a5b4fc 0%, transparent 40%),
    radial-gradient(circle at 50% 90%, #fbcfe8 0%, transparent 40%),
    rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.12);
}

/* ---------- HEADER ---------- */

.journey-header {
  max-width: 600px;
  margin-bottom: 36px;
}

.journey-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
  opacity: 0.7;
}

.journey-header h2 {
  font-size: 2.3rem;
  font-weight: 500;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #111, #4f46e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.journey-header p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* ---------- GRID ---------- */

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 36px;
}

/* ---------- INNER CARDS ---------- */

.journey-item {
  background: rgba(255,255,255,0.78);
  border-radius: 24px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.journey-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 32px 60px rgba(79,70,229,0.25);
}

.journey-icon {
  font-size: 2.1rem;
  margin-bottom: 14px;
}

.journey-item h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.journey-item p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.45;
}

/* ---------- CTA ---------- */

.journey-action {
  text-align: center;
}

/* ---------- SCROLL REVEAL ---------- */

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.coe-journey-text {
  text-align: center;            /* Center the text */
  padding: 60px 20px;            /* Space around the section */
  background-color: #f9f9f9;     /* Optional: subtle background */
  color: #333;                   /* Text color */
  font-family: 'Arial', sans-serif;
}

.coe-journey-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.coe-journey-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 800px;              /* Limit width for readability */
  margin: 0 auto;                /* Center the paragraph */
}


/* Core Offerings Section */
.core-offerings {
  padding: 60px 20px;
  text-align: center;
  font-family: 'Arial', sans-serif;
  background-color: #fff;
}

.core-offerings h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.digital-offering {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #333;
}

.digital-offering .unlock-icon {
  font-size: 1.5rem;
}

/* Grid for cards */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* Card styling */
.offering-card {
  background-color: #f9f9f9;
  padding: 25px 20px 40px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  position: relative;
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
}

.offering-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Tip colors */
.yellow-tip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 5px;
  background-color: #FFD700;
  border-radius: 5px 5px 0 0;
}

.red-tip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 5px;
  background-color: #FF4C4C;
  border-radius: 5px 5px 0 0;
}

.blue-tip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 5px;
  background-color: #4C9FFF;
  border-radius: 5px 5px 0 0;
}

.purple-tip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 5px;
  background-color: #A259FF;
  border-radius: 5px 5px 0 0;
}

/* Card headings */
.offering-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: bold;
}

/* Card paragraph */
.offering-card p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #555;
}

/* Card list with colored checkmarks */
.offering-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.offering-card ul li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  font-size: 0.95rem;
  color: #333;
}

/* Checkmark color based on tip */
.yellow-tip ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #FFD700;
}

.red-tip ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #FF4C4C;
}

.blue-tip ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #4C9FFF;
}

.purple-tip ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #A259FF;
}

/* Learn more button */
.learn-more {
  text-decoration: none;
  font-weight: bold;
  color: #333;
  position: relative;
  display: inline-block;
  transition: all 0.3s;
}

.learn-more::after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background: #333;
  transition: width 0.3s;
  margin-top: 3px;
}

.learn-more:hover::after {
  width: 100%;
}

.learn-more:hover {
  color: #000;
}



/* In-Person Experiences Section */
.in-person-experiences {
  padding: 60px 20px;
  background-color: #f5f5f5;
  font-family: 'Arial', sans-serif;
  text-align: center;
}

.in-person-experiences .section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.in-person-experiences .star-icon {
  font-size: 1.5rem;
  color: #FFD700;
}

.in-person-experiences h2 {
  font-size: 2rem;
  margin: 0;
  font-weight: bold;
  color: #333;
}

/* Cards Grid */
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: left;
}

/* Individual Card Styling */
.experience-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.experience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.experience-card img {
 height: 40%;
  width: 80%;
  border-radius: 12px;
  margin-bottom: 10px;
}

.experience-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.experience-card p {
  font-size: 0.95rem;
  margin-bottom: 15px;
  color: #555;
}

/* List with colored checkmarks */
.experience-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.experience-card ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

/* Checkmark colors */
.blue-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #4C9FFF;
}

.red-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #FF4C4C;
}

.yellow-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #FFD700;
}

/* Learn more button */
.experience-card .learn-more {
  text-decoration: none;
  font-weight: bold;
  color: #333;
  position: relative;
  display: inline-block;
  transition: all 0.3s;
}

.experience-card .learn-more::after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background: #333;
  transition: width 0.3s;
  margin-top: 3px;
}

.experience-card .learn-more:hover::after {
  width: 100%;
}

.experience-card .learn-more:hover {
  color: #000;
}


/* CTA Section */
.cta-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #fff;
  font-family: 'Arial', sans-serif;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 900; /* very bold */
  color: #000;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2rem;
  color: #000;
  margin-bottom: 40px;
}

/* CTA Button */
.cta-button {
  text-decoration: none;
  background-color: #A259FF; /* purple color */
  color: #fff;
  padding: 15px 35px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 50px;
  display: inline-block;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #8638ff; /* slightly darker purple on hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}


/* Spiritual Activism Section */
.spiritual-activism {
  padding: 80px 20px;
  background-color: #f9f9f9;
  font-family: 'Arial', sans-serif;
  text-align: center;
}

/* Section Heading */
.spiritual-heading h2 {
  font-size: 2.5rem;
  font-weight: 900; /* bolder */
  color: #000;
  margin-bottom: 15px;
}

.spiritual-heading p {
  font-size: 1.2rem;
  color: #000;
  margin-bottom: 50px;
}

/* Grid for 4 cards */
.spiritual-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
  text-align: left;
}

.spiritual-card {
  background-color: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.spiritual-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Tip colors for top border */
.yellow-tip::before,
.blue-tip::before,
.red-tip::before,
.green-tip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 5px;
  border-radius: 5px 5px 0 0;
}

.yellow-tip::before { background-color: #FFD700; }
.blue-tip::before { background-color: #4C9FFF; }
.red-tip::before { background-color: #FF4C4C; }
.green-tip::before { background-color: #28A745; }

.spiritual-card h3 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.spiritual-card p {
  font-size: 1rem;
  color: #555;
}

/* Featured Spiritual Card */
.featured-spiritual-card {
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.featured-spiritual-card .numbered-points p {
  font-size: 1rem;
  margin-bottom: 15px;
  line-height: 1.5;
}

.featured-spiritual-card .numbered-points .number {
  font-weight: bold;
  margin-right: 10px;
}

.number.yellow { color: #FFD700; }
.number.blue { color: #4C9FFF; }
.number.red { color: #FF4C4C; }
.number.green { color: #28A745; }

/* Quote styling */
.featured-spiritual-card blockquote {
  position: relative;
  border-left: 5px solid red;
  padding-left: 20px;
  font-style: italic;
  color: #333;
  margin: 30px 0;
  font-size: 1rem;
  line-height: 1.6;
}

/* Button inside featured card */
.featured-button {
  text-decoration: none;
  background-color: #A259FF;
  color: #fff;
  padding: 15px 35px;
  font-weight: bold;
  border-radius: 50px;
  display: inline-block;
  transition: all 0.3s ease;
}

.featured-button:hover {
  background-color: #8638ff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Awakening Section */
.awakening-section {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
  font-family: 'Arial', sans-serif;
}

/* Intro text */
.awakening-text h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #000;
  margin-bottom: 20px;
}

.awakening-text p {
  font-size: 1.2rem;
  color: #000;
  margin-bottom: 20px;
  line-height: 1.6;
}

.awakening-text .underline-red {
  border-bottom: 3px solid red;
  font-weight: bold;
}

.awakening-text h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 50px;
}

/* Cards Grid */
.awakening-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
  text-align: center;
}

.awakening-card {
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.awakening-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Background colors */
.yellow-bg { background-color: #FFD700; color: #000; }
.lightblue-bg { background-color: #B0E0E6; color: #000; }
.beige-bg { background-color: #F5F5DC; color: #000; }

/* Emoji styling */
.awakening-card .emoji {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

/* Card headings */
.awakening-card h4 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Card paragraphs */
.awakening-card p {
  font-size: 1rem;
  margin-bottom: 20px;
}

/* Card buttons */
.card-button {
  text-decoration: none;
  background-color: #A259FF;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: bold;
  display: inline-block;
  transition: all 0.3s ease;
}

.card-button:hover {
  background-color: #8638ff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Final CTA Button */
.final-cta {
  margin-top: 40px;
}

.final-button {
  text-decoration: none;
  background-color: #A259FF;
  color: #fff;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: bold;
  display: inline-block;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.final-button:hover {
  background-color: #8638ff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Impact Stats Section */
.impact-stats {
  background: radial-gradient(circle at top, #1e1e1e, #0b0b0b);
  padding: 90px 20px;
  text-align: center;
  color: #fff;
  font-family: 'Arial', sans-serif;
}

.impact-stats h2 {
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 20px;
}

.impact-stats p {
  max-width: 850px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
}

/* Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

/* Stat Card */
.stat-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  padding: 35px 20px;
  border-radius: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

/* Icon */
.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: rgba(255,255,255,0.1);
}

/* Icon colors */
.stat-icon.yellow { color: #FFD700; }
.stat-icon.orange { color: #FF8C42; }
.stat-icon.red { color: #FF4C4C; }
.stat-icon.blue { color: #4C9FFF; }
.stat-icon.green { color: #3CB371; }
.stat-icon.pink { color: #FF6EC7; }

/* Numbers */
.stat-card h3 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.stat-card span {
  font-size: 0.95rem;
  color: #bbb;
}


/* We're Back Section */
.we-are-back {
  padding: 90px 20px;
  background: radial-gradient(circle at top, #1b1f2a, #0b0d12);
  color: #fff;
  font-family: Arial, sans-serif;
  text-align: center;
}

/* Header */
.back-header .pill {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: bold;
  margin-bottom: 25px;
}

.back-header p {
  max-width: 900px;
  margin: 0 auto 70px;
  color: #d0d0d0;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Cards Grid */
.back-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

/* Individual Card */
.back-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border-radius: 22px;
  padding: 30px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.back-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* Badge */
.badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 0.85rem;
}

.badge.blue { background: #4C9FFF; color: #000; }
.badge.yellow { background: #FFD700; color: #000; }

/* Card Content */
.back-card h3 {
  margin-top: 30px;
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.back-card img {
  height: 50%;
  width: 100%;
  border-radius: 15px;
  margin-bottom: 20px;
}

.back-card p {
  font-size: 0.95rem;
  color: #ddd;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn.purple {
  background: #A259FF;
  color: #fff;
}

.btn.purple:hover {
  background: #8638ff;
  transform: translateY(-3px);
}

.btn.outline-yellow {
  border: 2px solid #FFD700;
  color: #FFD700;
}

.btn.outline-yellow:hover {
  background: #FFD700;
  color: #000;
  transform: translateY(-3px);
}

/* Big CTA */
.big-cta {
  margin-top: 70px;
  display: inline-block;
  background: linear-gradient(90deg, #ff4ecd, #ff8b5c);
  color: #fff;
  padding: 18px 50px;
  border-radius: 60px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.big-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* Add this if using JS animation */
.back-card {
  opacity: 0;
  transform: translateY(40px);
}


/* Footer */
.site-footer {
  background: #000;
  color: #ccc;
  padding: 80px 30px 30px;
  font-family: Arial, sans-serif;
}

/* Grid Layout */
.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 60px;
}

/* About */
.footer-about p {
  line-height: 1.7;
  margin-bottom: 25px;
  color: #bbb;
}

.socials a {
  margin-right: 15px;
  font-size: 1.4rem;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.3s ease;
}

.socials a:hover {
  opacity: 0.7;
}

/* Links */
.footer-links h1,
.footer-subscribe h1 {
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  text-decoration: none;
  color: #bbb;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

/* Subscribe */
.footer-subscribe p {
  margin-bottom: 20px;
  color: #bbb;
}

.footer-subscribe form {
  display: flex;
  gap: 10px;
}

.footer-subscribe input {
  flex: 1;
  padding: 12px 15px;
  border-radius: 30px;
  border: none;
  outline: none;
}

.footer-subscribe button {
  padding: 12px 25px;
  border-radius: 30px;
  border: none;
  background: #7a3cff;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.footer-subscribe button:hover {
  background: #5c1fff;
  transform: translateY(-2px);
}

/* Bottom Footer */
.footer-bottom {
  max-width: 1200px;
  margin: 50px auto 0;
  padding-top: 25px;
  border-top: 1px solid #222;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.bottom-links a {
  margin-left: 25px;
  text-decoration: none;
  color: #bbb;
}

.bottom-links a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .bottom-links a {
    margin-left: 15px;
    margin-right: 15px;
  }
}


.text-section {
  padding: 110px 20px;
  text-align: center;
  max-width: 950px;
  margin: auto;
  position: relative;
}

/* Soft gradient background for alternating sections */
.text-section.alt-bg {
  background: linear-gradient(
    135deg,
    #fef6e4,
    #e3f6f5
  );
}

/* Label / Small Header */
.section-label {
  display: inline-block;
  padding: 10px 26px;
  background: linear-gradient(
    135deg,
    #ff9f1c,
    #ffbf69
  );
  color: #3a2f00;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 30px;
}

/* Main Heading */
.text-section h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 22px;
  background: linear-gradient(
    90deg,
    #1b4332,
    #2d6a4f
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Paragraph Text */
.text-section p {
  font-size: 19px;
  color: #344e41;
  line-height: 1.75;
  max-width: 720px;
  margin: auto;
}

.what-is-coe {
  padding: 120px 40px;
  background: #f7f7f2;
  text-align: center;
}

/* HEADER */
.what-header h2 {
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(
    90deg,
    #ff9f1c,
    #e36414
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.what-header p {
  max-width: 720px;
  margin: auto;
  font-size: 18px;
  color: #555;
  line-height: 1.7;
}

/* CARDS CONTAINER */
.coe-cards {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* CARD BASE */
.coe-card {
  padding: 40px 28px;
  border-radius: 22px;
  text-align: left;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.coe-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #2f2f2f;
}

.coe-card a {
  margin-top: 20px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
}

/* CARD COLORS */
.coe-card.yellow {
  background: #fef3c7;
}

.coe-card.peach {
  background: #fde2e4;
}

.coe-card.blue {
  background: #e0f2fe;
}

.coe-card.green {
  background: #ecfdf5;
}

/* CTA */
.coe-cta {
  margin-top: 70px;
}

.cta-btn {
  display: inline-block;
  padding: 18px 36px;
  background: linear-gradient(
    90deg,
    #ff4d8d,
    #ff7a18
  );
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  font-size: 16px;
}

.core-values {
  background: #0b0f1a;
  color: #fff;
  padding: 120px 60px;
}

.core-values-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* TITLE */
.values-title {
  font-size: 36px;
  margin-bottom: 40px;
}

/* VALUE ITEMS */
.value-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.value-item h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.value-item p {
  color: #cbd5e1;
  line-height: 1.6;
  font-size: 15px;
}

/* NUMBER BADGES */
.value-number {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.value-number.pink {
  background: linear-gradient(135deg, #ff4d8d, #ff7a18);
}

.value-number.green {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.value-number.blue {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.value-number.teal {
  background: linear-gradient(135deg, #14b8a6, #0d9488);
}

/* IMAGES */
.values-images {
  position: relative;
}

.image-card {
  background: #111827;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.image-card.large {
  width: 100%;
}

.image-card.large img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.image-card.large span {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0,0,0,0.6);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
}

.image-card.small {
  width: 180px;
  position: absolute;
  right: -30px;
  top: -40px;
}

.image-card.small img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.code-ethics {
  background: linear-gradient(
    135deg,
    #020617,
    #0f172a
  );
  padding: 120px 60px;
  text-align: center;
}

/* TITLE */
.ethics-title {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 70px;
  background: linear-gradient(
    90deg,
    #22c55e,
    #38bdf8,
    #f472b6
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* GRID */
.ethics-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* CARD */
.ethics-card {
  position: relative;
  padding: 40px 30px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    #ffffff,
    #f8fafc
  );
  text-align: left;
  box-shadow: 0 25px 50px rgba(0,0,0,0.35);
  transition: transform 0.3s ease;
}

.ethics-card:hover {
  transform: translateY(-8px);
}

/* NUMBER */
.ethics-number {
  position: absolute;
  top: -18px;
  right: 22px;
  background: linear-gradient(
    135deg,
    #6366f1,
    #a855f7
  );
  color: #fff;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
}

/* CARD TEXT */
.ethics-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  background: linear-gradient(
    90deg,
    #16a34a,
    #0ea5e9
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ethics-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #334155;
}

/* Section styling */
.purpose-history {
  background-color: #0a1f44; /* dark blue */
  padding: 80px 20px;
  color: #fff;
  text-align: center;
  font-family: 'Arial', sans-serif;
}

/* Section title */
.section-title {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 50px;
  background: linear-gradient(90deg, #ff6ec4, #7873f5, #42e695);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Cards container */
.cards-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

/* Individual card */
.card {
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
  padding: 30px 20px;
  width: 300px;
  border-radius: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
  color: #fff;
  text-align: left;
}

.card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.card p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Card hover effect */
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Learn more link button */
.learn-more {
  font-weight: bold;
  text-decoration: none;
  color: #0a1f44;
  background: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  display: inline-block;
  transition: background 0.3s, color 0.3s;
}

.learn-more:hover {
  background: #42e695;
  color: #fff;
}

/* History text and button */
.history-text {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 30px;
}

.history-text p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  line-height: 1.7;
}

/* Story button */
.story-btn {
  background: linear-gradient(90deg, #ff6ec4, #42e695);
  border: none;
  color: #fff;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.story-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Section styling */
.transformative-experiences {
  background-color: #ffffff; /* White background */
  padding: 100px 20px;
  text-align: center;
  font-family: 'Arial', sans-serif;
  color: #0a1f44; /* Default dark blue text for readability */
}

/* Small header */
.small-header {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  padding: 5px 15px;
  display: inline-block;
  background: linear-gradient(90deg, #ff6ec4, #42e695, #7873f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-radius: 5px;
}

/* Main header */
.main-header {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 25px;
  background: linear-gradient(90deg, #42e695, #ff6ec4, #7873f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Description paragraph */
.description {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 20px auto;
  line-height: 1.7;
  color: #0a1f44;
}

/* Sub-description paragraph */
.sub-description {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  color: #5a5a5a;
}

/* Section styling */
.transformative-path {
  background-color: #ffffff;
  padding: 80px 20px;
  font-family: 'Arial', sans-serif;
}

.path-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: bold;
  color: #0a1f44;
  margin-bottom: 80px;
}

/* Each stage */
.stage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-bottom: 80px;
  flex-wrap: wrap;
  border-top: 1px solid #ddd;
  padding-top: 50px;
}

.stage.reverse {
  flex-direction: row-reverse;
}

/* Stage content */
.stage-content {
  flex: 1;
  min-width: 300px;
}

/* Small colored header */
.stage-small {
  font-size: 1.3rem;
  font-weight: bold;
  padding: 5px 12px;
  display: inline-block;
  background: linear-gradient(90deg, #ff6ec4, #42e695, #7873f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-radius: 5px;
  margin-bottom: 10px;
}

/* Main header */
.stage-main {
  font-size: 2rem;
  font-weight: bold;
  color: #0a1f44;
  margin-bottom: 15px;
}

/* Description paragraph */
.stage-content p {
  font-size: 1rem;
  margin-bottom: 15px;
  line-height: 1.6;
  color: #333;
}

/* Stage items side by side */
.stage-items {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.stage-items span {
  background-color: #f0f0f0;
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #0a1f44;
}

/* Stage image */
.stage-image {
  flex: 1;
  min-width: 300px;
}

.stage-image img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 900px) {
  .stage {
    flex-direction: column !important;
  }
  .stage.reverse {
    flex-direction: column !important;
  }
  .stage-image, .stage-content {
    max-width: 100%;
  }
}

/* General body styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

/* Community section styles */
.community-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #fff;
}

.gap-top {
  margin-top: 60px; /* gap between sections */
}

.community-section .small-header {
  font-size: 18px;
  font-weight: bold;
  color: #ff6b6b; /* colorful */
  margin-bottom: 10px;
}

.community-section .main-header {
  font-size: 36px;
  font-weight: bolder;
  color: #000;
  margin-bottom: 20px;
}

.community-section .description {
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Quote Carousel */
.quote-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #f1f1f1;
}

.carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.quotes .quote {
  display: none;
  font-size: 20px;
  font-style: italic;
  color: #333;
  padding: 20px;
}

.quotes .quote.active {
  display: block;
}

/* Arrows */
.arrow {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  background: none;
  border: none;
  color: #ff6b6b;
  font-weight: bold;
}

.left-arrow {
  left: 10px;
}

.right-arrow {
  right: 10px;
}

/* Social Buttons */
.social-buttons {
  margin-top: 30px;
}

.social-btn {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background: #ff6b6b;
  padding: 12px 24px;
  margin: 5px;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: #ff4757;
  transform: scale(1.05);
}

/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background-color: #fff;
  color: #333;
}

/* Section Styling */
.news-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

/* Header Text */
.news-header {
  text-align: center;
  margin-bottom: 40px;
}

.small-header {
  font-size: 20px;
  font-weight: bold;
  color: #ff6600;
  margin-bottom: 10px;
}

.big-header {
  font-size: 36px;
  font-weight: bolder;
  color: #0077cc;
  margin-bottom: 20px;
}

.description {
  font-size: 16px;
  color: #555;
  max-width: 800px;
  margin: auto;
}

/* Buttons */
.news-buttons {
  margin-top: 25px;
}

.news-buttons button {
  font-size: 16px;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin: 0 10px;
  transition: all 0.3s ease;
}

.news-btn {
  background-color: #fff;
  color: #0077cc;
  border: 2px solid #0077cc;
}

.views-btn {
  background-color: #eee;
  color: #333;
  border: 2px solid #ccc;
}

.news-buttons button:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

/* Cards Layout */
.cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Big Card */
.big-card {
  flex: 2;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 15px;
  transition: box-shadow 0.3s ease;
}

.big-card:hover {
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.animated-image {
  width: 80%;
  border-radius: 12px;
  transition: transform 0.5s ease;
}

.animated-image:hover {
  transform: scale(1.05);
}

.card-main-header {
  margin: 15px 0;
  font-size: 22px;
  font-weight: bold;
  color: #0077cc;
}

.card-meta {
  color: #555;
  margin-bottom: 15px;
}

.card-description {
  font-size: 16px;
  margin-bottom: 15px;
}

.read-more {
  text-decoration: none;
  color: #0077cc;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.read-more:hover {
  border-bottom: 2px solid red;
  color: red;
}

/* Small Cards */
.small-cards {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Newsletter Card */
.newsletter-card {
  background-color: #f1f1f1;
  padding: 20px;
  border-radius: 15px;
}

.newsletter-form {
  display: flex;
  margin: 15px 0;
}

.newsletter-form input {
  flex: 1;
  padding: 10px;
  border-radius: 8px 0 0 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.newsletter-form button {
  padding: 10px 15px;
  border: none;
  background-color: #0077cc;
  color: #fff;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #ff0000;
}

.privacy-text {
  font-size: 12px;
  color: #777;
}

/* Categories Card */
.categories-card {
  background-color: #f1f1f1;
  padding: 20px;
  border-radius: 15px;
}

.categories-card h3 {
  margin-bottom: 15px;
}

.categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category {
  padding: 8px 12px;
  border-radius: 8px;
  background-color: #ffcc00;
  color: #333;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category:hover {
  background-color: #ff6600;
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .cards-container {
    flex-direction: column;
  }
  .small-cards {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .small-card {
    flex: 1;
  }
}
/* Latest Updates Section */
.latest-updates {
  background-color: #fff;
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.updates-header {
  text-align: center;
  margin-bottom: 40px;
}

.updates-header h2 {
  font-size: 32px;
  font-weight: bold;
  color: #0077cc;
}

/* Update Items */
.update-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  gap: 20px;
  flex-wrap: wrap;
}

.update-image img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.update-image img:hover {
  transform: scale(1.05);
}

.update-text {
  flex: 1;
}

.update-text h3 {
  font-size: 20px;
  font-weight: bold;
  color: #ff6600;
  margin-bottom: 8px;
}

.update-text p {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
}

.update-text .read-more {
  text-decoration: none;
  color: #0077cc;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.update-text .read-more:hover {
  border-bottom: 2px solid red;
  color: red;
}

/* Responsive */
@media (max-width: 768px) {
  .update-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .update-image img {
    width: 100%;
    max-width: 300px;
    margin-bottom: 15px;
  }
  .update-text {
    flex: unset;
  }
}

/* Vision Hero Section */
.vision-hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #ff9a9e, #fad0c4);
    color: #fff;
    animation: fadeIn 2s ease-in-out;
}
.vision-hero h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 2px 2px rgba(0,0,0,0.2);
}
.vision-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Vision Sections */
.vision-section {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
    background: #f5f7fa;
}
.section-card {
    max-width: 900px;
    background: linear-gradient(145deg, #ffffff, #e0f7fa);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.section-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.2);
}
.section-card h2 {
    font-size: 2rem;
    color: #ff5e62;
    margin-bottom: 20px;
    text-align: center;
}
.section-card p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Optional Gradient Animation */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(-20px);}
    100% { opacity: 1; transform: translateY(0);}
}

/* Guiding Principles Section */
.principles-section {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #fceabb, #f8b500);
}
.principles-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #6a1b9a;
}
.principles-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
.principles-section .card {
    background: linear-gradient(145deg, #ffffff, #ffd700);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s, background 0.5s;
}
.principles-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    background: linear-gradient(145deg, #ffe57f, #ffb300);
}
.principles-section .card span {
    display: block;
    margin-top: 10px;
    font-size: 0.95rem;
    color: #333;
}

/* Code of Ethics Section */
.ethics-section {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #cfd9df, #e2ebf0);
}
.ethics-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #d32f2f;
}
.ethics-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.ethics-section .card {
    background: linear-gradient(145deg, #fff, #f8bbd0);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s, background 0.5s;
}
.ethics-section .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
    background: linear-gradient(145deg, #f48fb1, #f06292);
}
.ethics-section .card strong {
    font-size: 1.2rem;
    color: #880e4f;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #c3cfe2, #c3cfe2);
}
.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #4b0082;
}
.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 40px;
}
.cta-buttons a {
    display: inline-block;
    margin: 10px;
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s, background 0.3s;
}
.btn-purple {
    background: #6a1b9a;
}
.btn-purple:hover {
    background: #9c27b0;
    transform: scale(1.05);
}
.btn-light-purple {
    background: #ab47bc;
}
.btn-light-purple:hover {
    background: #ce93d8;
    transform: scale(1.05);
}

/* Journey Hero Section */
.journey-hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #a1c4fd, #c2e9fb);
    color: #1a237e;
    animation: fadeIn 2s ease-in-out;
}
.journey-hero h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ff6f61;
    margin-bottom: 15px;
    letter-spacing: 1px;
}
.journey-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 25px;
    background: linear-gradient(to right, #ff8a65, #ffb74d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.journey-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: #333;
}

/* Programs Section */
.programs-section {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #fbc2eb, #a6c1ee);
}
.programs-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #4a148c;
}
.programs-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}
.programs-section .card {
    background: linear-gradient(145deg, #fff, #ffe0f0);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s, background 0.5s;
    text-align: left;
}
.programs-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.2);
    background: linear-gradient(145deg, #ffd1e0, #ffb6c1);
}
.programs-section .card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.programs-section .card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}
.programs-section .card ul li {
    margin-bottom: 8px;
    font-size: 1rem;
}
.btn-small {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    background: #4a148c;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-small:hover {
    background: #7b1fa2;
    transform: scale(1.05);
}

/* Curriculum Section */
.curriculum-section {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #fdfbfb, #ebedee);
}
.curriculum-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #d84315;
}
.curriculum-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
.curriculum-section .card {
    background: linear-gradient(145deg, #ffffff, #ffccbc);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s, background 0.5s;
}
.curriculum-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.2);
    background: linear-gradient(145deg, #ffab91, #ff8a65);
}
.curriculum-section .card span {
    display: block;
    margin-top: 10px;
    font-size: 0.95rem;
    color: #333;
}

/* Testimonials Section */
.testimonials-section {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0f4c3, #dcedc8);
}
.testimonials-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #33691e;
}
.testimonials-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
.testimonials-section .card {
    background: linear-gradient(145deg, #ffffff, #f1f8e9);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}
.testimonials-section .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.2);
}
.testimonials-section .testimonial-img {
    width: 50px;
    height: 50px;
    border-radius: 30%;
    object-fit: cover;
    object-position: center;
    margin-bottom: 15px;
}
.testimonials-section .card h3 {
    margin: 10px 0 5px 0;
    color: #33691e;
}
.testimonials-section .card h4 {
    margin-bottom: 15px;
    color: #558b2f;
    font-weight: 500;
}
.testimonials-section .card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}


.page-hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #ff9a9e, #fad0c4);
  color: #fff;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  padding: 60px;
}

.program-card {
  background: white;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
  transition: transform .3s, box-shadow .3s;
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}


.content {
  padding: 80px 60px;
  text-align: center;
}

.content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.intro {
  max-width: 800px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
}

.growth-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.growth-card {
  background: white;
  padding: 35px;
  border-radius: 22px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
  transition: transform .3s, background .3s;
}

.growth-card:hover {
  transform: translateY(-10px);
  background: #e3f2fd;
}



.content {
  padding: 80px 60px;
  text-align: center;
}

.living-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.living-card {
  background: white;
  padding: 40px;
  border-radius: 22px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  transition: transform .3s, box-shadow .3s;
}

.living-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}


.content {
  padding: 80px 60px;
  text-align: center;
}

.projects {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.project-card {
  background: white;
  padding: 40px;
  border-radius: 22px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  transition: transform .3s, background .3s;
}

.project-card:hover {
  transform: translateY(-10px);
  background: #ffe0e6;
}

.content { padding:80px; text-align:center; }

.cards {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.card {
  background: black;
  padding:40px;
  border-radius:22px;
  box-shadow:0 15px 30px rgba(0,0,0,.15);
  transition:.3s;
}
.card:hover { transform:translateY(-10px); background:#f3e5f5; }

.content { padding:80px; }

.events {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

.event {
  background:white;
  padding:40px;
  border-radius:22px;
  box-shadow:0 15px 30px rgba(0,0,0,.15);
  transition:.3s;
}
.event:hover { transform:scale(1.05); background:#fff3e0; }

.content { padding:80px; }

.articles {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

.article {
  background:white;
  padding:40px;
  border-radius:22px;
  box-shadow:0 15px 30px rgba(0,0,0,.15);
  transition:.3s;
}
.article:hover { transform:translateY(-10px); background:#e0f2f1; }

.content { padding:80px; max-width:800px; margin:auto; }

.faq {
  background:white;
  padding:30px;
  margin-bottom:25px;
  border-radius:18px;
  box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.content { padding:80px; text-align:center; }


.socials a {
  margin:20px;
  display:inline-block;
  font-weight:bold;
  color:#333;
}

.main-header {
  text-align: center;
  padding: 3rem 1rem;
}

.main-header h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  background: linear-gradient(90deg, #6a11cb, #2575fc, #1cc7a6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main-header p {
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto;
  color: #444;
  line-height: 1.7;
}

/* ===== ENGAGEMENT SECTION ===== */
.engagement-section {
  padding: 80px 20px;
  background: #f7f9fc;
}

.cards-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* ===== CARD ===== */
.engagement-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 35px 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.engagement-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* Icon */
.card-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

/* Headings */
.engagement-card h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 12px;
}

.engagement-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 20px 0 10px;
  color: #2563eb;
}

/* Text */
.engagement-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* Benefits List */
.engagement-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.engagement-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  margin-bottom: 10px;
  color: #444;
}

.engagement-card ul li::before {
  content: "•";
  color: #2563eb;
  font-size: 20px;
  line-height: 1;
}

/* Button */
.card-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s ease;
}

.card-btn:hover {
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  transform: scale(1.05);
}

/* ===== DONATION SECTION ===== */
.donation-section {
  padding: 90px 20px;
  background: #f7f9fc;
}

/* Big Card */
.donation-card {
  max-width: 1200px;
  margin: auto;
  padding: 50px;
  border-radius: 24px;
  border: 2px solid #e5e7eb;
  display: flex;
  gap: 40px;
  align-items: center;
  background: #ffffff;
}

/* Left Content */
.donation-content {
  flex: 1;
}

.donation-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: #1e3a8a;
  margin-bottom: 20px;
}

.donation-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
}

/* Benefits */
.donation-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.donation-benefits li {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #333;
}

.donation-benefits li::before {
  content: "✓";
  color: #16a34a;
  font-weight: bold;
  font-size: 18px;
}

/* Amount Boxes */
.donation-amounts {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.amount-box {
  background: #000000;
  color: #ffffff;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.amount-box:hover {
  background: #1f2937;
  transform: translateY(-4px);
}

/* Custom Amount */
.custom-amount {
  display: inline-block;
  margin-bottom: 30px;
  padding: 16px 28px;
  border-radius: 12px;
  border: 2px dashed #9ca3af;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-amount:hover {
  background: #f3f4f6;
}

/* Donate Button */
.donate-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: #f97316;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 35px;
  text-decoration: none;
  transition: all 0.35s ease;
}

.donate-btn:hover {
  background: #ea580c;
  transform: scale(1.05);
}

/* Right Image */
.donation-image {
  flex: 0.8;
  display: flex;
  justify-content: center;
}

.donation-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 900px) {
  .donation-card {
    flex-direction: column;
    text-align: center;
  }

  .donation-benefits li {
    justify-content: center;
  }

  .donation-amounts {
    justify-content: center;
  }
}


/* ===== GLOBAL COMMUNITY SECTION ===== */
.community-section {
  padding: 90px 20px;
  background: #ffffff;
  text-align: center;
}

.community-container {
  max-width: 1100px;
  margin: auto;
}

/* Header */
.community-title {
  font-size: 38px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 45px;
}

/* Images Grid */
.community-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  justify-content: center;
  margin-bottom: 40px;
}

.community-images img {
  width: 100%;
  max-width: 320px;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  margin: auto;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.community-images img:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
}

/* Text */
.community-text {
  max-width: 820px;
  margin: 0 auto 35px;
  font-size: 16.5px;
  line-height: 1.8;
  color: #4b5563;
}

/* Button */
.community-btn {
  display: inline-block;
  padding: 14px 38px;
  border-radius: 35px;
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.35s ease;
}

.community-btn:hover {
  background: linear-gradient(135deg, #9333ea, #7c3aed);
  transform: scale(1.08);
}

/* Responsive */
@media (max-width: 900px) {
  .community-images {
    grid-template-columns: 1fr;
  }

  .community-images img {
    max-width: 420px;
    height: 240px;
  }
}


/* Header */
.main-header {
  text-align: center;
  margin-bottom: 40px;
}

.main-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.main-header p {
  color: #666;
  font-size: 1rem;
}

/* FAQ Section */
.content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Collapsing Cards */
.faq-card {
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 20px;
  padding: 18px 22px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.faq-card:hover {
  transform: translateY(-3px);
}

/* Remove default marker */
.faq-card summary {
  list-style: none;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  position: relative;
  padding-right: 30px;
}

/* Hide default arrow */
.faq-card summary::-webkit-details-marker {
  display: none;
}

/* Custom + / - icon */
.faq-card summary::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-card[open] summary::after {
  content: "−";
}

/* Answer text */
.faq-card p {
  margin-top: 15px;
  line-height: 1.6;
  color: #444;
  animation: fadeIn 0.3s ease-in-out;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ===== Contact Form Container ===== */
.contact-form {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  padding: 50px 40px;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

/* ===== Animated Wave Background ===== */
.contact-form::before,
.contact-form::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -60%;
  left: -50%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.15), transparent 60%);
  animation: waveMove 10s linear infinite;
}

.contact-form::after {
  animation-duration: 15s;
  opacity: 0.6;
}

@keyframes waveMove {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ===== Inputs & Textarea ===== */
.contact-form input,
.contact-form textarea {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 15px 18px;
  margin-bottom: 20px;
  border-radius: 12px;
  border: none;
  outline: none;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

/* ===== Focus Wave Glow ===== */
.contact-form input:focus,
.contact-form textarea:focus {
  box-shadow: 0 0 0 2px rgba(0, 198, 255, 0.6);
  background: rgba(255, 255, 255, 0.18);
}

/* ===== Textarea Height ===== */
.contact-form textarea {
  min-height: 120px;
  resize: none;
}

/* ===== Submit Button ===== */
.contact-form button {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 15px;
  border-radius: 30px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 114, 255, 0.4);
}

/* ===== Mobile Friendly ===== */
@media (max-width: 600px) {
  .contact-form {
    padding: 40px 25px;
  }
}
