@import url(../main.css);

.gradient-bg {
  background: linear-gradient(135deg, #b59fe0, #7b52c7);
}

.glass-card {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(123, 82, 199, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(123, 82, 199, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(123, 82, 199, 0);
  }
}

.floating {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

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

.particle {
  position: absolute;
  background-color: rgba(181, 159, 224, 0.5);
  border-radius: 50%;
}

.hero-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: #e2d3ff;
  opacity: 0.1;
  background-image:
    linear-gradient(30deg, #7b52c7 12%, transparent 12.5%, transparent 87%, #7b52c7 87.5%, #7b52c7),
    linear-gradient(150deg, #7b52c7 12%, transparent 12.5%, transparent 87%, #7b52c7 87.5%, #7b52c7),
    linear-gradient(30deg, #7b52c7 12%, transparent 12.5%, transparent 87%, #7b52c7 87.5%, #7b52c7),
    linear-gradient(150deg, #7b52c7 12%, transparent 12.5%, transparent 87%, #7b52c7 87.5%, #7b52c7),
    linear-gradient(60deg, #7b52c777 25%, transparent 25.5%, transparent 75%, #7b52c777 75%, #7b52c777),
    linear-gradient(60deg, #7b52c777 25%, transparent 25.5%, transparent 75%, #7b52c777 75%, #7b52c777);
  background-size: 70px 123px;
  background-position: 0 0, 0 0, 35px 61px, 35px 61px, 0 0, 35px 61px;
  animation: movePattern 20s linear infinite;
}

@keyframes movePattern {
  0% {
    background-position: 0 0, 0 0, 35px 61px, 35px 61px, 0 0, 35px 61px;
  }

  100% {
    background-position: 70px 123px, 70px 123px, 105px 184px, 105px 184px, 70px 123px, 105px 184px;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes float-slow {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse-fast {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-float-slow {
  animation: float-slow 10s ease-in-out infinite;
}

.animate-pulse-fast {
  animation: pulse-fast 2s ease-in-out infinite;
}
.course-btn:hover .text{
  display: none;

} 
.course-btn{
  padding: 12px 16px;
}
.course-btn .icon{
  display: none;
  opacity: 0;
  transform: translateX(-5px);
  transition: 0.3s;
}
.course-btn:hover .icon{
  display: block;
  opacity: 1;
  transform: translateX(0px);

}
#about-img iframe {
    width: 800px;
    height: 500px;
  }
  .about-small-img iframe {
    width: 200px;
    height: 200px;
  }
  .why-con-img iframe{
    width: 800px;
    height: 500px;
  }
    .cta-section-img iframe{
    width: 300px;
    height: 300px;
  }

  .story-read-btn{
    margin-top: 5%;
  }
  

  .max-w-1200px{
    max-width: 1200px;

  }

@keyframes dotPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.02);
  }
}

.animate-dot-pulse {
  animation: dotPulse 6s ease-in-out infinite;
}
.why-learnlike-con {
  position: relative;
  max-width: 1240px;
  min-height: 980px;
  margin: 0 auto;
}

.why-con-img {
  position: absolute;
  left: 50%;
  top: 56%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.why-con-img iframe{
  width: 620px;
  height: 620px;
}

.choose-point {
  position: absolute;
  left: 50%;
  top: 56%;
  width: 290px;
  text-align: center;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(2px);
  border-radius: 16px;
}

/* 6 points around center (circle) */
.choose-1 { transform: translate(-50%, -50%) translate(0, -410px); }
.choose-2 { transform: translate(-50%, -50%) translate(-365px, -210px); }
.choose-3 { transform: translate(-50%, -50%) translate(-365px, 210px); }
.choose-4 { transform: translate(-50%, -50%) translate(0, 410px); }
.choose-5 { transform: translate(-50%, -50%) translate(365px, 210px); }
.choose-6 { transform: translate(-50%, -50%) translate(365px, -210px); }

.impacts-section{
  margin-top: 0;
}







@media screen and (max-width: 768px) {
  #about-img iframe {
    width: 300px;
    height: 500px;
  }
   .about-small-img iframe {
    width: 80px;
    height: 60px;
  }
  .why-learnlike-con {
    min-height: auto;
  }

  .why-con-img {
    position: static;
    transform: none;
    margin: 12px auto 0;
  }

  .why-con-img iframe{
    width: min(92vw, 360px);
    height: min(92vw, 360px);
    margin-top: 0;
  }
.impacts-section{
  margin-top: -10%;
}

  .story-read-btn{
    margin-top: 10px;
  }
  .choose-point {
    position: static;
    margin: 20px auto;
    width: min(92vw, 520px);
    transform: none !important;
    background: #fff;
  }

  .why-learnlike-con{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .right-points{
    display: contents;
  }
  .cta-section-img iframe{
    width: 200px;
    height: 200px;
  }
}

@media screen and (max-width: 480px) {
  .about-img iframe {
    width: 80px;
    height: 80px;
  }
}

@media screen and (min-width: 1024px) {
  .hero-mobile-images {
    display: none !important;
  }
}
