* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  overflow-x: hidden;
}

.hero-container {
  position: relative;
  width: 100vw;
  height: relative;
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 25%, #d35400 50%, #a0522d 75%, #8b4513 100%);
  overflow: hidden;
}

/* Background Elements */
.background-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.sun {
  position: absolute;
  top: 10%;
  right: 15%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, #f1c40f 0%, #f39c12 70%);
  border-radius: 50%;
  animation: sunPulse 4s ease-in-out infinite;
  box-shadow: 0 0 50px rgba(241, 196, 15, 0.6);
}

@keyframes sunPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.cloud {
  position: absolute;
  background: rgba(236, 240, 241, 0.8);
  border-radius: 50px;
  animation: cloudFloat 20s linear infinite;
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  background: rgba(236, 240, 241, 0.8);
  border-radius: 50px;
}

.cloud-1 {
  width: 80px;
  height: 30px;
  top: 15%;
  left: -100px;
  animation-duration: 25s;
}

.cloud-1::before {
  width: 50px;
  height: 50px;
  top: -25px;
  left: 10px;
}

.cloud-1::after {
  width: 60px;
  height: 40px;
  top: -15px;
  right: 10px;
}

.cloud-2 {
  width: 60px;
  height: 25px;
  top: 25%;
  left: -80px;
  animation-duration: 30s;
  animation-delay: -10s;
}

.cloud-2::before {
  width: 40px;
  height: 40px;
  top: -20px;
  left: 8px;
}

.cloud-2::after {
  width: 45px;
  height: 35px;
  top: -12px;
  right: 8px;
}

.cloud-3 {
  width: 70px;
  height: 28px;
  top: 35%;
  left: -90px;
  animation-duration: 35s;
  animation-delay: -20s;
}

.cloud-3::before {
  width: 45px;
  height: 45px;
  top: -22px;
  left: 12px;
}

.cloud-3::after {
  width: 50px;
  height: 38px;
  top: -15px;
  right: 12px;
}

@keyframes cloudFloat {
  0% {
    transform: translateX(-100px);
  }
  100% {
    transform: translateX(calc(100vw + 100px));
  }
}

.sand-dune {
  position: absolute;
  background: linear-gradient(45deg, #deb887 0%, #d2b48c 100%);
  border-radius: 50% 50% 0 0;
}

.dune-1 {
  width: 300px;
  height: 80px;
  bottom: 0;
  left: 10%;
  animation: duneShimmer 6s ease-in-out infinite;
}

.dune-2 {
  width: 250px;
  height: 60px;
  bottom: 0;
  right: 20%;
  animation: duneShimmer 8s ease-in-out infinite reverse;
}

.dune-3 {
  width: 200px;
  height: 50px;
  bottom: 0;
  left: 60%;
  animation: duneShimmer 7s ease-in-out infinite;
  animation-delay: -2s;
}

@keyframes duneShimmer {
  0%,
  100% {
    opacity: 0.8;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.1);
  }
}

.baobab-tree {
  position: absolute;
  bottom: 0;
}

.tree-1 {
  left: 5%;
  width: 40px;
  height: 120px;
  background: linear-gradient(to top, #8b4513 0%, #a0522d 100%);
  border-radius: 20px 20px 0 0;
  animation: treeWave 8s ease-in-out infinite;
}

.tree-1::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: #228b22;
  border-radius: 50%;
  animation: leavesRustle 4s ease-in-out infinite;
}

.tree-2 {
  right: 8%;
  width: 35px;
  height: 100px;
  background: linear-gradient(to top, #8b4513 0%, #a0522d 100%);
  border-radius: 18px 18px 0 0;
  animation: treeWave 10s ease-in-out infinite reverse;
  animation-delay: -3s;
}

.tree-2::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: #228b22;
  border-radius: 50%;
  animation: leavesRustle 5s ease-in-out infinite reverse;
}

@keyframes treeWave {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(2deg);
  }
  75% {
    transform: rotate(-2deg);
  }
}

@keyframes leavesRustle {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
  }
  50% {
    transform: translateX(-50%) scale(1.1);
  }
}

/* Floating Particles */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.particle {
  position: absolute;
  background: rgba(241, 196, 15, 0.6);
  border-radius: 50%;
  animation: particleFloat 15s linear infinite;
}

.particle-1 {
  width: 8px;
  height: 8px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.particle-2 {
  width: 6px;
  height: 6px;
  top: 40%;
  left: 80%;
  animation-delay: -3s;
}

.particle-3 {
  width: 10px;
  height: 10px;
  top: 60%;
  left: 20%;
  animation-delay: -6s;
}

.particle-4 {
  width: 7px;
  height: 7px;
  top: 30%;
  left: 70%;
  animation-delay: -9s;
}

.particle-5 {
  width: 9px;
  height: 9px;
  top: 70%;
  left: 60%;
  animation-delay: -12s;
}

.particle-6 {
  width: 5px;
  height: 5px;
  top: 50%;
  left: 40%;
  animation-delay: -15s;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

/* Hero Content */
.hero-content {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh; /* 👈 Makes it behave like a full hero */
  padding: 2rem;
  position: relative;
  z-index: 10;
  overflow: hidden;
  flex-direction: column; /* Ensures vertical stacking of content */
}

.elephant-container {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-250%,280%);
  
  z-index: 5;
}

.elephant-svg {
  width: 300px;
  height: 250px;
  animation: elephantBob 4s ease-in-out infinite;
}

@keyframes elephantBob {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.elephant-trunk {
  animation: trunkWave 3s ease-in-out infinite;
  transform-origin: 120px 140px;
}

@keyframes trunkWave {
  0%,
  100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(10deg);
  }
}

.elephant-ear-left,
.elephant-ear-right {
  animation: earFlap 2s ease-in-out infinite alternate;
}

.elephant-ear-right {
  animation-delay: -1s;
}

@keyframes earFlap {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(1.2);
  }
}

.elephant-eye-left,
.elephant-eye-right {
  animation: eyeBlink 4s ease-in-out infinite;
}

@keyframes eyeBlink {
  0%,
  90%,
  100% {
    transform: scaleY(1);
  }
  95% {
    transform: scaleY(0.1);
  }
}

.content-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 3rem;
  text-align: center;
  max-width: 600px;
  width: 100%; /* 👈 Important for responsiveness */
  box-sizing: border-box; /* Make padding part of width */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  animation: contentFloat 6s ease-in-out infinite;
}


@keyframes contentFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.title-line-1 {
  display: block;
  color: #2c3e50;
  animation: titleSlideIn 1s ease-out;
}

.title-line-2 {
  display: block;
  background: linear-gradient(45deg, #e74c3c, #f39c12, #e67e22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleSlideIn 1s ease-out 0.3s both;
}

@keyframes titleSlideIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  animation: subtitleFadeIn 1s ease-out 0.6s both;
}

@keyframes subtitleFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 0.9;
    transform: translateY(0);
  }
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
  display: inline-block;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  font-family: Georgia, 'Times New Roman', Times, serif;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: buttonSlideUp 1s ease-out 0.9s both;
  text-decoration: none;
  text-align: center;
  min-width: 180px;

}

.cta-primary {
  background: linear-gradient(45deg, #e74c3c, #f39c12);
  color: white;
  box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}

.cta-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(231, 76, 60, 0.4);
  color: white;
  text-decoration: none;
}

.cta-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: #2c3e50;
  border: 2px solid rgba(44, 62, 80, 0.3);
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

@keyframes buttonSlideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Cultural Elements */
.cultural-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.african-pattern {
  position: absolute;
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #d35400, #e67e22);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation: patternSpin 20s linear infinite;
}

.pattern-1 {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.pattern-2 {
  top: 70%;
  right: 20%;
  animation-delay: -7s;
}

.pattern-3 {
  top: 45%;
  left: 80%;
  animation-delay: -14s;
}

@keyframes patternSpin {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.2);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

.montessori-block {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  animation: blockFloat 12s ease-in-out infinite;
}

.block-1 {
  background: #e74c3c;
  top: 25%;
  right: 10%;
  animation-delay: 0s;
}

.block-2 {
  background: #f39c12;
  top: 60%;
  left: 10%;
  animation-delay: -4s;
}

.block-3 {
  background: #27ae60;
  top: 80%;
  right: 30%;
  animation-delay: -8s;
}

@keyframes blockFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-30px) rotate(90deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
  75% {
    transform: translateY(-40px) rotate(270deg);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .content-box {
    padding: 2rem;
    margin-top: 150px;
  }

  .elephant-svg {
    width: 250px;
    height: 200px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    max-width: 250px;
  }

  .sun {
    width: 80px;
    height: 80px;
    top: 5%;
    right: 10%;
  }

  .dune-1,
  .dune-2,
  .dune-3 {
    height: 40px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .content-box {
    padding: 1.5rem;
    margin-top: 120px;
  }

  .elephant-svg {
    width: 200px;
    height: 160px;
  }

  .hero-content {
    padding: 1rem;
  }
}

/* Main Content Sections */
.main-content {
  position: relative;
  z-index: 1;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(45deg, #e67e22, #d35400);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  0% {
    filter: brightness(1);
  }
  100% {
    filter: brightness(1.2);
  }
}

/* Interactive Plant Garden Section */
.plant-garden-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, #f4e4bc 0%, #e8d5b7 100%);
  position: relative;
  overflow: hidden;
}

.plant-garden-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(211, 84, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(230, 126, 34, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.floating-quote-card {
  position: absolute;
  top: 10%;
  right: 5%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 2rem;
  max-width: 300px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  animation: cardFloat 6s ease-in-out infinite;
  z-index: 10;
}

.floating-quote-card blockquote {
  font-style: italic;
  font-size: 1.1rem;
  color: #2c3e50;
  margin: 0;
  line-height: 1.6;
}

.floating-quote-card cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #e67e22;
  font-weight: bold;
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(1deg);
  }
}

.plant-garden {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  margin-top: 4rem;
}

.garden-plant {
  cursor: pointer;
  transition: all 0.3s ease;
  animation: plantSway 4s ease-in-out infinite;
}

.garden-plant:nth-child(2) {
  animation-delay: -1s;
}
.garden-plant:nth-child(3) {
  animation-delay: -2s;
}
.garden-plant:nth-child(4) {
  animation-delay: -3s;
}

@keyframes plantSway {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  25% {
    transform: rotate(2deg) scale(1.05);
  }
  75% {
    transform: rotate(-2deg) scale(1.05);
  }
}

.plant-svg {
  width: 120px;
  height: 140px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.garden-plant:hover {
  transform: scale(1.2) rotate(5deg);
  animation-play-state: paused;
}

.garden-plant:hover .plant-svg {
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3)) brightness(1.1);
}

/* Program Tiles Section */
.program-tiles-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  position: relative;
}

.program-tiles-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23E67E22' fill-opacity='0.05'%3E%3Cpath d='M30 30c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20zm0 0c0 11.046 8.954 20 20 20s20-8.954 20-20-8.954-20-20-20-20 8.954-20 20z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.program-tiles-section .section-title {
  color: #ecf0f1;
  background: linear-gradient(45deg, #f39c12, #e67e22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.program-tile {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  animation: tileFloat 8s ease-in-out infinite;
}

.program-tile:nth-child(2) {
  animation-delay: -1s;
}
.program-tile:nth-child(3) {
  animation-delay: -2s;
}
.program-tile:nth-child(4) {
  animation-delay: -3s;
}
.program-tile:nth-child(5) {
  animation-delay: -4s;
}
.program-tile:nth-child(6) {
  animation-delay: -5s;
}

@keyframes tileFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.program-tile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(243, 156, 18, 0.1) 0%, rgba(230, 126, 34, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.program-tile:hover::before {
  opacity: 1;
}

.program-tile:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.tile-content {
  position: relative;
  z-index: 2;
}

.tile-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
  animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

.program-tile h3 {
  font-size: 1.8rem;
  color: #ecf0f1;
  margin-bottom: 1rem;
  font-weight: bold;
}

.program-tile p {
  color: #bdc3c7;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.tile-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-tag {
  background: rgba(243, 156, 18, 0.2);
  color: #f39c12;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  border: 1px solid rgba(243, 156, 18, 0.3);
}

/* Learning Journey Map */
.journey-map-section {
  padding: 8rem 0;
 /* background: linear-gradient(135deg, #16a085 0%, #1abc9c 100%);*/
 background: url('img/jms1.png');
  position: relative;
  overflow: hidden;
}

.journey-map-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.journey-map-section .section-title {
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.journey-map {
  position: relative;
  height: 400px;
  margin-top: 4rem;
}

.journey-path {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.journey-path path {
  animation: pathDraw 8s ease-in-out infinite;
}

@keyframes pathDraw {
  0% {
    stroke-dashoffset: 100;
  }
  50% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -100;
  }
}

.journey-stops {
  position: relative;
  z-index: 3;
  height: 100%;
}

.journey-stop {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: stopPulse 3s ease-in-out infinite;
}

.journey-stop:nth-child(2) {
  animation-delay: -0.6s;
}
.journey-stop:nth-child(3) {
  animation-delay: -1.2s;
}
.journey-stop:nth-child(4) {
  animation-delay: -1.8s;
}
.journey-stop:nth-child(5) {
  animation-delay: -2.4s;
}

@keyframes stopPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.stop-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.journey-stop:hover .stop-icon {
  transform: scale(1.2);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.stop-label {
  background: rgba(255, 255, 255, 0.9);
  color: #2c3e50;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
  white-space: nowrap;
}

.journey-animals {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.journey-animal {
  position: absolute;
  font-size: 2rem;
  animation: animalWalk 15s linear infinite;
}

.animal-1 {
  top: 20%;
  animation-delay: 0s;
}

.animal-2 {
  top: 60%;
  animation-delay: -5s;
}

.animal-3 {
  top: 40%;
  animation-delay: -10s;
}

@keyframes animalWalk {
  0% {
    left: -5%;
    transform: scaleX(1);
  }
  50% {
    left: 50%;
    transform: scaleX(1);
  }
  100% {
    left: 105%;
    transform: scaleX(-1);
  }
}

/* Profile Section */
.profile-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, #355E3B 0%, #436148 100%);
  position: relative;
}

.profile-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ECF0F1' fill-opacity='0.05'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm10 0c0 5.5 4.5 10 10 10s10-4.5 10-10-4.5-10-10-10-10 4.5-10 10z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.profile-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 3rem;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  animation: profileFloat 6s ease-in-out infinite;
}

@keyframes profileFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.profile-content {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.profile-image {
  flex-shrink: 0;
}

.profile-avatar {
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border: 3px solid rgba(255, 255, 255, 0.3);
  animation: avatarGlow 4s ease-in-out infinite;
}

@keyframes avatarGlow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
  }
}

.profile-info h3 {
  font-size: 2rem;
  color: white;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.profile-title {
  font-size: 1.2rem;
  color: #f39c12;
  margin-bottom: 1.5rem;
  font-weight: bold;
}

.profile-description {
 
 color: #ecf0f1;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.profile-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.highlight-tag {
  background: rgba(243, 156, 18, 0.2);
  color: #f39c12;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  border: 1px solid rgba(243, 156, 18, 0.3);
}

/* Background Whimsy */
.background-whimsy {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.floating-bird {
  position: absolute;
  font-size: 1.5rem;
  animation: birdFly 20s linear infinite;
}

.bird-1 {
  top: 15%;
  animation-delay: 0s;
}

.bird-2 {
  top: 25%;
  animation-delay: -7s;
}

.bird-3 {
  top: 35%;
  animation-delay: -14s;
}

@keyframes birdFly {
  0% {
    left: -5%;
    transform: scaleX(1);
  }
  50% {
    left: 50%;
    transform: scaleX(1) translateY(-20px);
  }
  100% {
    left: 105%;
    transform: scaleX(-1);
  }
}

.floating-drum {
  position: absolute;
  font-size: 2rem;
  animation: drumBounce 4s ease-in-out infinite;
}

.drum-1 {
  top: 70%;
  left: 10%;
  animation-delay: 0s;
}

.drum-2 {
  top: 80%;
  right: 15%;
  animation-delay: -2s;
}

@keyframes drumBounce {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }

  .plant-garden {
    gap: 2rem;
  }

  .plant-svg {
    width: 100px;
    height: 120px;
  }

  .floating-quote-card {
    position: relative;
    top: auto;
    right: auto;
    margin: 2rem auto;
    max-width: 100%;
  }

  .program-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .program-tile {
    padding: 2rem;
  }

  .profile-content {
    flex-direction: column;
    text-align: center;
  }

  .journey-stop {
    position: relative !important;
    display: inline-flex;
    margin: 1rem;
  }

  .journey-map {
    height: auto;
    padding: 2rem 0;
  }

  .journey-path {
    display: none;
  }
}

@media (max-width: 480px) {
  .section-container {
    padding: 0 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .program-tile {
    padding: 1.5rem;
  }

  .profile-card {
    padding: 2rem;
  }

  .tile-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tile-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

}

.profile-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(255, 204, 153, 0.4); /* subtle amber glow */
  animation: sigilPulse 4s infinite ease-in-out;
  transition: box-shadow 0.3s ease;
}

.profile-avatar img.sigil-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ✨ Pulse animation */
@keyframes sigilPulse {
  0% {
    box-shadow: 0 0 12px rgba(255, 204, 153, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 204, 153, 0.55);
  }
  100% {
    box-shadow: 0 0 12px rgba(255, 204, 153, 0.3);
  }
}

.admin-photo {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.admin-img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

/***********************************/

