* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

:root {
  --primary: #1f3858;
  --primary-light: #324d71;
  --accent: #ff7e5f;
  --accent-dark: #e25d41;
  --text-dark: #333333;
  --text-light: #666666;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --transition: all 0.3s ease-in-out;
  --v1: #be91c6;
  --v2: #8a65cc;
  --v3: #5e30d9;
  --transparentv3: #5e30d900;
  --v4: #3b1895;
  --s1: #fea798;
  --s2: #ff846e;
  --cloud: #fea798;
}

body {
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
  line-height: 1.3;
}

p {
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

/* Navigation */
nav {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 0;
  transition: var(--transition);
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.5rem;
}
.navbar-brand-logo {
  height: 50px;  /* Adjust logo height */
  width: auto;   /* Maintain aspect ratio */
  margin-right: 15px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: var(--transition);
}

.navbar-brand-logo:hover {
  transform: scale(1.05);
}
.brand-text {
  color: var(--primary);
  transition: var(--transition);
}

.navbar-brand:hover .brand-text {
  color: var(--accent);
}

.nav-link {
  font-weight: 500;
  color: var(--primary) !important;
  margin: 0 0.5rem;
  position: relative;
  transition: var(--transition);
  padding: 0.5rem 0.75rem !important;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--accent);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 80%;
}

.donate-link {
  background-color: var(--accent)!important;
  color: var(--white) !important;
  border-radius: 50px;
  padding: 0.5rem 1.25rem !important;
  transition: var(--transition);
  background-color: var(--accent);
}

.donate-link:hover {
  background-color: var(--accent-dark)!important;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.donate-link::after {
  display: none;
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(31, 56, 88, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Buttons */
.button {
  border: 1px solid var(--primary);
  text-decoration: none;
  display: inline-flex;
  padding: 0.75rem 1.5rem;
  height: auto;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  color: var(--primary);
  font-weight: 500;
  transition: var(--transition);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.button:hover {
  color: var(--white);
  background-color: var(--primary);
  border: 1px solid var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.button_action {
  background-color: var(--accent);
  color: var(--white);
  border: 1px solid var(--accent);
}

.button_action:hover {
  color: var(--white);
  background-color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

/* Hero Section */
.main_section {
  padding: 1rem 0 1rem;
  background-color: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.main_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(123, 149, 183, 0.1) 0%, rgba(31, 56, 88, 0.05) 100%);
  z-index: -1;
}


.hero_span {
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  position: relative;
}

.hero_span::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--accent);
}

.hero_heading {
  font-weight: 700;
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero_text_p {
  color: var(--text-light);
  font-weight: 400;
  text-align: left;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero_img img {
  transition: var(--transition);
}

.hero_btns {
  margin-top: 1.5rem;
}




.third-section{
    padding-top: 10px;
  padding-bottom: 20px;
}
#course-carousel{
  height: 100%;
  display: flex;
  align-items: center;
}
.carousel-inner{
  height: 100%;
  display: flex;
  align-items: center;
}
.carousel-item{
  height: 100%;
}
.courses{
  display: flex;

}
.course-details{
  width: 90%;
  
  & p{
    color: var(--text-light);
    margin-top: 10px;
    padding-right:3em;
    margin-bottom: 20px;
  }
}


.course-img-holder{
  display: flex; 
  justify-content: center;
  width:100%;
  padding: 2rem;
  align-items: center;
}

.img-holder{
   width: 100%;
  height: 100%;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  background-image: linear-gradient(to top, #37ecba 0%, #72afd3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  & img{
    width: inherit;
  }
}





.icon-box .span {
  margin-left: 10px;
  font-family: 'Lucida Sans' sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #9198e5;
}

.card:hover {
  cursor: pointer;
  box-shadow: 0px 10px 20px rgba(0,0,0,0.1);
}



/* Section Styling */
.section-header {
  margin-bottom: 3rem;
  position: relative;
}

.section-subtitle {
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-divider {
  width: 80px;
  height: 3px;
  background-color: var(--accent);
  margin: 0 auto;
  margin-top: 1rem;
}

.section-description {
  max-width: 700px;
  margin: 1.5rem auto 0;
  color: var(--text-light);
}

/* Our Work Section */
.our-work {
  padding: 5rem 0;
  background-color: var(--white);
}

.img_holder {
  margin-bottom: 3rem;
}

/* Feature Cards */
.text-features {
  margin-top: 3rem;
}

.feature-card, .goal-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.241);
  height: 100%;
  border-bottom: 3px solid transparent;
}

.feature-card:hover, .goal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-bottom: 3px solid var(--accent);
}

.feature-icon, .goal-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.feature-card:hover .feature-icon, .goal-card:hover .goal-icon {
  transform: scale(1.1);
}

.feature-card h3, .goal-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.feature-card p, .goal-card p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Our Goals Section */
.our-goals {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTI4MCAxNDAiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEyODAgMTQwVjBTOTkzLjQ2IDE0MCA2NDAgMTM5IDAgMCAwIDB2MTQweiIgZmlsbD0iI2ZmZmZmZiIgZmlsbC1vcGFjaXR5PSIuMDUiLz48L3N2Zz4=');
  background-size: 100% 100%;
  z-index: 0;
  opacity: 0.5;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.cta-description {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

.cta-section .button {
  border-color: var(--white);
  color: var(--primary);
  background-color: var(--white);
  position: relative;
  z-index: 1;
}

.cta-section .button:hover {
  background-color: transparent;
  color: var(--white);
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Footer Section */
.footer_img_holder {
  height: 50vh;
  position: relative;
  overflow: hidden;
}



.site-footer {
  background-color: var(--primary);
  color: var(--white);
  position: relative;
  padding: 4rem 0 2rem;
}

.site-footer h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.site-footer h4 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  color: var(--white);
  font-weight: 600;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}
.social-icons-contact a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--accent);
  color: var(--white);

  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--accent);
  transform: translateY(-3px);
}
.social-icons-contact a:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}



.footer-links, .footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li, .footer-contact li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact li i {
  margin-right: 10px;
  color: var(--accent);
  margin-top: 5px;
}

.footer-bottom {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
}

.footer-bottom-links li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom-links li a:hover {
  color: var(--accent);
}

/* Animated Landscape in Footer */








.footer_img {
  position: relative;
  z-index: 5;
  max-height: 180px;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.3));
}




/* Responsive Styles */
@media (max-width: 991.98px) {
  .hero_heading {
    font-size: 2.5rem;
  }
  .navbar-brand {
    font-size: 1.25rem;
  }

  .navbar-brand-logo {
    height: 40px;
  }
  .hero_img {
    margin-top: 3rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .swiper {
    height: 350px;
  }
}

@media (max-width: 767.98px) {
  .main_section {
    padding: 2rem 0 2rem;
  }
  
  .hero_heading {
    font-size: 2rem;
  }
  
  .hero_text_p {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .swiper {
    height: 300px;
  }
  
  .footer-bottom-links {
    justify-content: flex-start;
    margin-top: 1rem;
  }
  
  .footer_img_holder {
    height: 40vh;
  }
}

@media (max-width: 575.98px) {
  .hero_span {
    font-size: 1rem;
  }
  
  .hero_heading {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .swiper {
    height: 250px;
  }
  
  .feature-card, .goal-card {
    padding: 1.5rem;
  }
  
  .feature-icon, .goal-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .feature-card h3, .goal-card h3 {
    font-size: 1.3rem;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
  
  .cta-description {
    font-size: 1rem;
  }
  
  .footer_img_holder {
    height: 30vh;
  }
  
  .footer_img {
    max-height: 120px;
  }
}

.landscape:after,
.landscape:before,
.landscape *,
.landscape *:after,
.landscape *:before {
  position: absolute;
}

.front {
  z-index: 1;
  bottom: 0;
  left: 0;
  right: 0;
}

.landscape {
  height: 100%;
  background-image: linear-gradient(var(--v1), var(--s1), var(--v1));
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.mountain {
  border-radius: 180% 80% 0% 0%/60vmin 60vmin 0% 0%;
  width: 40vmin;
  height: 30vmin;
  bottom: 50%;
  left: -10vmin;
  background: var(--s1);
  background-image: linear-gradient(var(--v1), var(--v2) 30%, var(--v3));
  box-shadow: inset -10px 0 10px -10px var(--s1);
  &:before {
    content: "";
    bottom: 0;
    width: inherit;
    height: inherit;
    background: inherit;
    border-radius: inherit;
    transform-origin: bottom center;
    transform: scaleX(1) scaleY(-0.6);
    filter: blur(3px);
  }
}

.mountain-2 {
  left: 5vmin;
  height: 15vmin;
  width: 40vmin;
  box-shadow: inset -15px 0 10px -14px var(--s1);
  border-radius: 120% 50% 0% 0%/25vmin 25vmin 0% 0%;
  background-image: linear-gradient(var(--v3), var(--v4));
}
.statue {
  position: absolute;
  height: 25vmin;
  bottom: 20vmin;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;

  object-fit: cover;
}

.mountain-3 {
  border-radius: 80% 0% 0 0/100% 100% 0 0;
  right: -85vmin;
  width: 100vmin;
  left: auto;
  height: 12vmin;
  color: var(--v3);
  background-image: linear-gradient(var(--s1), var(--v4));
  box-shadow: inset 15px 0 10px -10px var(--s1);
}

.mountain-3:after {
  content: "";
  border-radius: 60% 0 0 0/100% 0 0 0;
  background: inherit;
  width: 100%;
  height: 0;
  bottom: 0;
  right: 20%;
}

.lotus {
  width: 10vmin;
  height: 5vmin;
  background: conic-gradient(
    var(--v3) 0deg 40deg,
    var(--transparentv3) 50deg 70deg,
    var(--v3) 80deg
  );
  border-radius: 50%;
}

.lotus-1 {
  bottom: 10vmin;
  right: 5vmin;
  width: 20vmin;
}

.lotus-2 {
  bottom: 20vmin;
  right: 15vmin;
  height: 3vmin;
  transform: skew(-10deg);
  opacity: 0.5;
  mix-blend-mode: multiply;
}

.lotus-3 {
  bottom: 10vmin;
  right: 35vmin;
  transform: rotate(180deg) skew(-20deg);
  opacity: 0.8;
  width: 15vmin;
}

.cloud {
  width: 80vmin;
  height: 6vmin;
  background: currentcolor;
  color: var(--cloud);
  top: 24vmin;
  left: 20vmin;
  border-radius: 50%;
  box-shadow: 30vmin 0.5vmin 0 -1vmin currentcolor,
    -25vmin 0 0 -0.6vmin currentcolor;
  opacity: 0.3;
  transform: translate3d(-150vmin, 0, 0);
  animation: clouds 120s infinite;
  animation-delay: -10s;
}
@keyframes clouds {
  50% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(150vmin, 0, 0);
  }
}
.cloud-1 {
  left: 60vmin;
  top: 15vmin;
  opacity: 0.2;
  filter: blur(1px);
  animation-delay: 0;
  animation-duration: 100s;
}

.water {
  top: 50%;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(#fea79855, var(--v2));
  overflow: hidden;
  box-shadow: inset 0 1px 4px -3px white;
 
}

.stone {
  bottom: -5vh;
  left: 0;
  height: 20vmin;
  width: 40vmin;
  background: var(--v4);
  box-shadow: inset 0 0 20px -5px rgba(0, 0, 0, 0.2);
  border-radius: 0% 200% 0 0/0% 200%;
}
.stone:after {
  content: "";
  background: var(--v3);
  width: 100%;
  height: 100%;
  right: -15%;
  border-radius: inherit;
  z-index: -1;
  transform: scaleX(1.3) skew(10deg);
  box-shadow: inset 0 0 20px -5px rgba(0, 0, 0, 0.4);
}

.grass {
  height: 20vmin;
  width: 10vmin;
  border-radius: 0 60% 0 0/0 100% 0 0;
  bottom: 0;
  border-right: 5px solid var(--v4);
  box-shadow: 1px 0 0 var(--s1);
  filter: drop-shadow(-0.5vmin 6vmin 0 var(--s2))
    drop-shadow(-4.5vmin 10vmin 0 var(--v3));
}

.grass-1 {
  left: 14vmin;
  bottom: -2vmin;
  transform: scaleX(-1);
  box-shadow: 2px 0 0 var(--v4);
  border-color: var(--v3);
  filter: drop-shadow(-1vmin 5vmin 0 var(--v3))
    drop-shadow(-80vmin 5vmin 0 var(--v4));
}

.grass-2 {
  right: 0;
  left: auto;
  height: 20vmin;
  bottom: -2vmin;
  transform: scaleX(-1);
}

.sun {
  background: white;
  border-radius: 50%;
  width: 20vmin;
  height: 20vmin;
  left: calc(60% - 10vmin);
  top: 100%;
  transform: translate3d(0, 0, 0);
  animation: rise 20s infinite;
  box-shadow: 0 0 10px white;
}
.reed {
  height: 20vmin;
  width: 0.5vmin;
  bottom: 0;
  left: 10vmin;
  color: var(--v4);
  background: currentColor;
  transform-origin: bottom center;
  transform: rotate(4deg);
  box-shadow: inset -1px 0 0 var(--s2), -6vmin 3vmin 0 0, 80vmin 0 0 0;
  animation: verticalise 20s infinite;
}
.reed-1 {
  color: var(--s2);
  left: 15vmin;
  height: 25vmin;
  bottom: -5vmin;
  transform: rotate(-2deg);
  animation: verticalise-1 20s infinite;
  box-shadow: inset -1px 0 0 var(--s1), 6vmin 13vmin 0 0 var(--s1),
    80vmin 10vmin 0 0 var(--v3);
}
.reed:after {
  content: "";
  width: 1.5vmin;
  height: 10vmin;
  background: currentcolor;
  border-radius: 0.75vmin;
  top: 0;
  left: -0.5vmin;
  box-shadow: inherit;
}
@keyframes verticalise {
  0%,
  10% {
    transform: rotate(4deg);
  }
  30%,
  70% {
    transform: rotate(0);
  }
}
@keyframes verticalise-1 {
  0%,
  10% {
    transform: rotate(-2deg);
  }
  45%,
  70% {
    transform: rotate(0) translateY(-6vmin);
  }
}
@keyframes rise {
  100% {
    transform: translate3d(0, -100vh, 20vmin);
  }
}
@keyframes rise-reflection {
  30% {
    opacity: 0;
    transform: translate3d(0, 5vmin, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, 80vmin, 0);
  }
}
.sun-container {
  overflow: hidden;
  width: 100%;
  height: 50%;
}

.sun-container-1:after {
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: radial-gradient(circle at 60% 100%, var(--s2), transparent);
  animation: fade 20s infinite;
  mix-blend-mode: color-burn;
}

@keyframes fade {
  10% {
    opacity: 1;
  }
  30%,
  70% {
    opacity: 0;
  }
}
.sun-container-reflection {
  top: 50%;
  background: radial-gradient(circle at 60% 0%, var(--s2), transparent);
}
.sun-container-reflection .sun {
  background: linear-gradient(white, rgba(255, 255, 255, 0));
  box-shadow: none;
  filter: blur(5px);
  opacity: 1;
  top: 0;
  transform: translate3d(0, -20vmin, 0);
  animation-name: rise-reflection;
}

.light {
  height: 0.5vmin;
  width: 20vmin;
  background: white;
  left: 20%;
  right: 0;
  margin: auto;
  top: calc(50% + 1vmin);
  animation: light 20s infinite;
  opacity: 0;
  transform: scaleX(0.1) translate3d(0%, 0, 0);
  border-radius: 0.25vh;
  filter: blur(1px);
}

@-webkit-keyframes light {
  5% {
    opacity: 1;
    transform: scaleX(1);
  }
  10% {
    opacity: 0.6;
    transform: scaleX(1) translate3d(5%, 0, 0);
  }
  15% {
    opacity: 0.6;
    transform: scaleX(1) translate3d(-5%, 0, 0);
  }
  20% {
    opacity: 0;
    transform: scaleX(0.1) translate3d(0, 0, 0);
  }
}
@keyframes light {
  5% {
    opacity: 1;
    transform: scaleX(1);
  }
  10% {
    opacity: 0.6;
    transform: scaleX(1) translate3d(5%, 0, 0);
  }
  15% {
    opacity: 0.6;
    transform: scaleX(1) translate3d(-5%, 0, 0);
  }
  20% {
    opacity: 0;
    transform: scaleX(0.1) translate3d(0, 0, 0);
  }
}
.light-1 {
  top: calc(50% + 2vmin);
  animation-delay: 0.5s;
}

.light-2 {
  top: calc(50% + 3vmin);
  width: 18vmin;
  animation-delay: 1s;
}
.light-3 {
  top: calc(50% + 4vmin);
  width: 18vmin;
  animation-delay: 1.5s;
}
.light-4 {
  top: calc(50% + 5vmin);
  width: 16vmin;
  animation-delay: 2s;
}
.light-5 {
  top: calc(50% + 8vmin);
  width: 14vmin;
  animation-delay: 2.5s;
}
.light-6 {
  top: calc(50% + 9vmin);
  width: 10vmin;
  animation-delay: 3s;
}
.light-7 {
  top: calc(50% + 7vmin);
  width: 12vmin;
  animation-delay: 3.5s;
}

.splash {
  width: 8vmin;
  height: 3vmin;
  border: 2px solid var(--s1);
  box-shadow: 0 0 2px var(--s1);
  border-radius: 50%;
  bottom: 5vmin;
  left: 70%;
  animation: splash 9s infinite;
  transform: scale(0);
}

.splash-stone {
  bottom: 15vh;
  left: -3vmin;
  height: 10vmin;
  width: 30vmin;
}

.splash-4 {
  bottom: 5vmin;
  left: auto;
  bottom: 15vmin;
  right: -2vmin;
}

@keyframes splash {
  50%,
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.delay-1 {
  animation-delay: 1s;
}
.delay-2 {
  animation-delay: 2s;
}
.delay-3 {
  animation-delay: 3s;
}
.delay-4 {
  animation-delay: 4s;
}
.delay-5 {
  animation-delay: 5s;
}
.delay-6 {
  animation-delay: 6s;
}
 



.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #333;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
  font-size: 16px;
}

  .story-image {
    position: relative;
  }
  .floating-image {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 50%;
  }
  .floating-image img {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
    border: 5px solid var(--white);
  }
