/* === GLOBAL STYLES === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f9f9fb;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

/* === NAVBAR === */
.navbar {
  background: linear-gradient(90deg, #0072ce, #3c1361);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10%;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease, padding 0.3s ease;
}

.navbar.sticky {
  background: rgba(60, 19, 97, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.navbar .logo img {
  height: 70px;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 14px;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.navbar .logo {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 14px;
  padding: 5px 8px;
}

.navbar .logo img:hover {
  transform: scale(1.05);
  filter: brightness(1.15);
  background: #fafafa;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffcc00;
  transition: width 0.3s ease;
}

.nav-links li a:hover::after {
  width: 100%;
}

.nav-links li a:hover {
  color: #ffcc00;
}

/* === MOBILE NAVIGATION === */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 25px;
  background: #fff;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: rgba(60, 19, 97, 0.95);
    flex-direction: column;
    width: 200px;
    padding: 20px;
    gap: 15px;
    display: none;
    border-radius: 0 0 10px 10px;
  }

  .nav-links.show {
    display: flex;
  }
}

/* === MOBILE NAVIGATION === */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hide nav links on mobile initially */
@media screen and (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background: linear-gradient(90deg, #0072ce, #3c1361);
    flex-direction: column;
    width: 200px;
    padding: 20px;
    gap: 15px;
    display: none;
    border-radius: 8px;
  }

  .nav-links.active {
    display: flex;
  }
}



/* === HERO SECTION === */
.hero {
  position: relative;
  height: 95vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.3));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  animation: fadeUp 1.2s ease forwards;
}

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.4);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(90deg, #ffcc00, #ffd633);
  color: #3c1361;
  text-align: center;
  padding: 60px 20px;
  border-radius: 15px;
  margin: 50px 10%;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-btn {
  cursor: pointer;
  background: #3c1361;
  color: #ffcc00;
  padding: 14px 40px;
  border-radius: 35px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #fff;
  color: #3c1361;
  transform: scale(1.05);
}

/* === PROGRAMS SECTION === */
.programs {
  background: #f1eef6;
  padding: 80px 10%;
  text-align: center;
}

.programs h2 {
  color: #3c1361;
  margin-bottom: 40px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.program-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.program-card i {
  font-size: 2.5rem;
  color: #3c1361;
  margin-bottom: 15px;
}

.program-card h3 {
  margin-bottom: 10px;
  color: #3c1361;
}

.program-card p {
  color: #555;
}

/* === FOOTER === */
footer {
  background: #2b0a47;
  color: #fff;
  text-align: center;
  padding: 40px 10%;
}

footer a {
  color: #ffcc00;
  text-decoration: none;
  margin: 0 5px;
}

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

/* === BACK TO TOP BUTTON === */
#backToTop {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  background: #3c1361;
  color: #ffcc00;
  border: none;
  padding: 12px 16px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, background 0.3s ease;
}

#backToTop:hover {
  transform: scale(1.1);
  background: #ffcc00;
  color: #3c1361;
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #2b0a47;
  color: #fff;
  text-align: center;
  padding: 15px 20px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-banner a {
  color: #ffcc00;
  text-decoration: underline;
  margin: 0 5px;
}

.cookie-banner button {
  background: #ffcc00;
  color: #3c1361;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-banner button:hover {
  background: #fff;
  color: #3c1361;
}

/* === ANIMATIONS === */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
  .hero h1 { font-size: 2.5rem; }
  .hero p { font-size: 1rem; }
}

@media (max-width: 768px) {
  .hero { height: 80vh; }
  .cta-btn { padding: 12px 30px; }
}

/* === CONTACT FORM STYLING === */
/* === CONTACT FORM STYLING (Floating Labels + Effects) === */
.contact-form {
  max-width: 600px;
  margin: 50px auto;
  background: #fff;
  padding: 40px 35px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.contact-form:hover {
  border-color: #3c1361;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Input wrapper for floating labels */
.form-group {
  position: relative;
  margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 1rem;
  border: 2px solid #ccc;
  border-radius: 8px;
  background: transparent;
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #3c1361;
  box-shadow: 0 0 8px rgba(60, 19, 97, 0.3);
  outline: none;
}

/* Floating Label */
.form-group label {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: #777;
  font-size: 0.95rem;
  pointer-events: none;
  transition: all 0.25s ease;
  background: #fff;
  padding: 0 6px;
}

/* Label animation */
.contact-form input:focus + label,
.contact-form textarea:focus + label,
.contact-form input:not(:placeholder-shown) + label,
.contact-form textarea:not(:placeholder-shown) + label {
  top: -8px;
  left: 12px;
  font-size: 0.8rem;
  color: #3c1361;
}

/* Textarea tweaks */
.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* Button */
.contact-form .cta-btn {
  display: inline-block;
  background-color: #3c1361;
  color: #ffcc00;
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form .cta-btn:hover {
  background-color: #ffcc00;
  color: #3c1361;
  transform: scale(1.05);
}


.program-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden; /* Ensures images are clipped to card */
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.program-img {
  width: 100%;
  height: 180px;
  object-fit: cover; /* crops images nicely */
  display: block;
}

.program-card i {
  font-size: 2rem;
  color: #ffcc00;
  margin: 15px 0;
}




.why-donate {
  padding: 80px 10%;
  text-align: center;
  background-color: #f9f9fb;
}

.why-donate h2 {
  font-size: 2.5rem;
  color: #3c1361;
  margin-bottom: 20px;
}

.why-donate p {
  font-size: 1.1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.8;
}

.why-donate .counters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.counter-card {
  background-color: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  width: 180px;
  text-align: center;
}

.counter-card h3.counter {
  font-size: 2rem;
  color: #ffcc00;
  margin-bottom: 10px;
}

.counter-card p {
  font-size: 1rem;
  color: #333;
}

/* CTA Button */
.why-donate .cta-btn {
  display: inline-block;
  padding: 15px 35px;
  font-size: 1.1rem;
  background-color: #ffcc00;
  color: #3c1361;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.why-donate .cta-btn:hover {
  background-color: #e6b800;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .why-donate .counters {
    flex-direction: column;
    gap: 20px;
  }

  .counter-card {
    width: 80%;
    margin: 0 auto;
  }
}

/* === ABOUT PAGE STYLES (SAFE ADDITION) === */

/* Hero (About Page) */
.about-hero {
  position: relative;
  background: url("../assets/images/bg_hero5.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 140px 20px;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.about-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.about-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffcc00;
  margin-bottom: 15px;
}

.about-hero p {
  font-size: 1.1rem;
  color: #f0f0f0;
  line-height: 1.6;
}

/* About Section */
.about-section {
  background: #fff;
  text-align: center;
  padding: 80px 10%;
}

.about-section h2 {
  font-size: 2rem;
  color: #3c1361;
  margin-bottom: 10px;
}

.about-section p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
}

/* Mission/Vision/Values Cards */
.mission-card {
  background: #f1eef6;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.mission-card i {
  font-size: 2.5rem;
  color: #3c1361;
  margin-bottom: 15px;
}

.mission-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #3c1361;
}

/* Team Section */
.team-section {
  background: #f9f9fb;
  text-align: center;
  padding: 80px 10%;
}

.team-section h2 {
  font-size: 2rem;
  color: #3c1361;
  margin-bottom: 10px;
}

.team-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.team-card img {
  border-radius: 12px;
  margin-bottom: 15px;
  width: 100%;
  height: auto;
}

.team-card h4 {
  color: #3c1361;
  margin-bottom: 5px;
}

.team-card p {
  color: #666;
  font-size: 0.95rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .about-hero {
    padding: 100px 20px;
  }

  .about-hero h1 {
    font-size: 2.2rem;
  }

  .mission-card {
    margin-bottom: 20px;
  }
}

/* === ABOUT PAGE === */
.about-hero {
  background: linear-gradient(rgba(60, 19, 97, 0.6), rgba(0, 0, 0, 0.6)),
              url("../assets/images/bg_hero5.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 10%;
}

.about-section {
  padding: 80px 10%;
  text-align: center;
}

.about-header h2 {
  color: #3c1361;
  font-size: 2rem;
  margin-bottom: 10px;
}

.section-line {
  width: 80px;
  border: 2px solid #ffcc00;
  margin: 0 auto 20px auto;
}

.about-header p {
  max-width: 800px;
  margin: 0 auto;
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-mission {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.mission-card {
  flex: 1 1 300px;
  background: #f1eef6;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.mission-card i {
  font-size: 2.5rem;
  color: #3c1361;
  margin-bottom: 15px;
}

.mission-card h3 {
  color: #3c1361;
  margin-bottom: 10px;
}

.team-section {
  padding: 80px 10%;
  text-align: center;
  background: #f9f9fb;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.team-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.team-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

.team-card h4 {
  color: #3c1361;
  margin-bottom: 5px;
}

.team-card p {
  color: #777;
  font-size: 0.95rem;
}

@media screen and (max-width: 768px) {
  .about-hero {
    padding: 80px 5%;
  }
  .about-section, .team-section {
    padding: 60px 5%;
  }
}

/* === ABOUT HERO SECTION === */

/* === ABOUT HERO SECTION (Refined) === */
.hero.about-hero {
  background-image:
    linear-gradient(rgba(60, 19, 97, 0.25), rgba(0, 0, 0, 0.15)),
    url("../assets/images/bg_hero1.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #fff;
  text-align: center;
  padding: 120px 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: heroZoom 20s ease-in-out infinite alternate;
}


/* Animation for smooth zoom/shift effect */
@keyframes heroZoom {
  0% {
    background-size: 100%;
    background-position: center;
  }
  50% {
    background-size: 110%;
    background-position: center top;
  }
  100% {
    background-size: 100%;
    background-position: center;
  }
}

.hero.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1); /* gentle overlay */
}
.hero.about-hero .hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero.about-hero h1 {
  font-size: 2.8rem;
  color: #ffcc00;
  margin-bottom: 15px;
}

.hero.about-hero p {
  font-size: 1.2rem;
  color: #f9f9f9;
  line-height: 1.7;
}

/* === FOOTER SOCIAL ICONS === */
.footer-social {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffcc00;
  color: #3c1361;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.footer-social a:hover {
  background: #fff;
  color: #3c1361;
  transform: scale(1.1);
}

/* === FOOTER TEXT ALIGNMENT === */
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
  gap: 30px;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 100px;
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  font-size: 0.9rem;
  color: #ddd;
  text-align: center;
}

.copyright {
  font-size: 0.85rem;
  color: #aaa;
  margin-top: 15px;
  text-align: center;
}


/* === FOOTER === */
footer {
  background: linear-gradient(135deg, #2b0a47, #3c1361);
  color: #fff;
  padding: 60px 10% 30px;
  position: relative;
  font-size: 0.95rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  text-align: left;
}

.footer-nav h4,
.footer-social h4 {
  color: #ffcc00;
  margin-bottom: 15px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-nav ul li {
  margin-bottom: 10px;
}

.footer-nav ul li a {
  color: #ddd;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.footer-nav ul li a i {
  color: #ffcc00;
  font-size: 0.9rem;
}

.footer-nav ul li a:hover {
  color: #ffcc00;
  transform: translateX(5px);
}

/* Social Icons */
.footer-social .social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.footer-social .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: #ffcc00;
  color: #3c1361;
  border-radius: 50%;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.footer-social .social-icons a:hover {
  background: #fff;
  color: #3c1361;
  transform: scale(1.15);
}

/* Legal Info */
.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  text-align: center;
  font-size: 0.9rem;
  color: #ddd;
  line-height: 1.6;
}

.footer-legal a {
  color: #ffcc00;
  text-decoration: none;
}

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

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  footer {
    padding: 40px 6% 25px;
    text-align: center;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-nav ul li a {
    justify-content: center;
  }

  .footer-social .social-icons {
    justify-content: center;
  }
}


.footer-about {
  max-width: 320px;
}

.footer-about .footer-logo {
  width: 90px;
  margin-bottom: 15px;
  background: #fff;
  padding: 6px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.footer-about p {
  font-size: 0.95rem;
  color: #ddd;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .footer-about {
    max-width: 100%;
    text-align: center;
  }
}


.text-hero {
  background: linear-gradient(135deg, #3c1361, #ffcc00);
  color: #fff;
  text-align: center;
  padding: 160px 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 80vh;
  overflow: hidden;
  position: relative;
}

.text-hero .hero-content {
  z-index: 1;
}

.text-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  border-right: 3px solid #fff;
  overflow: hidden;
  animation: blink 0.8s infinite;
}

.text-hero p {
  font-size: 1.2rem;
  margin-top: 15px;
  color: #f9f9f9;
}

.cta-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 30px;
  background: #ffcc00;
  color: #3c1361;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #fff;
  color: #3c1361;
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

/* === OUR STORY SECTION (Modern Version) === */
.our-story {
  background: linear-gradient(135deg, #3c1361, #6a1b9a, #ffcc00);
  background-size: 300% 300%;
  animation: bgShift 12s ease infinite;
  color: #fff;
  padding: 100px 10%;
  text-align: center;
  border-radius: 20px;
  max-width: 1000px;
  margin: 80px auto;
  box-shadow: 0 10px 30px rgba(60, 19, 97, 0.25);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.our-story.show {
  opacity: 1;
  transform: translateY(0);
}

.our-story h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #ffeb99;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.our-story p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #f5f5f5;
  max-width: 850px;
  margin: 0 auto;
}

/* Animated background gradient movement */
@keyframes bgShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
