* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f172a, #111827, #1e293b);
}

/* NAVBAR */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 95px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 0 5%;

  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.08);

  border-bottom: 1px solid rgba(255, 255, 255, 0.15);

  z-index: 1000;
}

/* LOGO */

.logo-section {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 2000;
  margin-top: 5px;
}

.logo-section img {
  width: 150px;
  height: 150px;
  object-fit: contain;

  position: absolute;
  top: 50%;
  left: 0;

  transform: translateY(-50%);

  filter: drop-shadow(0 0 15px rgba(0, 247, 255, 0.7))
    drop-shadow(0 0 30px rgba(0, 247, 255, 0.4));

  animation: none;
}

.logo-text {
  margin-left: 150px;
}

@media (max-width: 992px) {
  .logo-section img {
    width: 105px;
    height: 105px;
  }

  .logo-text {
    margin-left: 105px;
  }
}

.logo-text {
  color: #fff;
  font-family: "Orbitron", sans-serif;
  font-size: 20px;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: 2px;

  text-shadow:
    0 0 10px #00f7ff,
    0 0 20px #00f7ff;
}

.logo-text span {
  display: block;

  font-size: 12px;
  color: #00f7ff;

  letter-spacing: 4px;
}

/* NAV LINKS */

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 25px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;

  position: relative;
  transition: 0.4s;
}

.nav-links a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -6px;

  width: 0;
  height: 2px;

  background: #00f7ff;

  transition: 0.4s;
}

.nav-links a:hover {
  color: #00f7ff;
}

.nav-links a:hover::after {
  width: 100%;
}

/* ENROLL BUTTON */

.enroll-btn {
  padding: 12px 25px !important;

  border-radius: 50px;

  background: linear-gradient(45deg, #00f7ff, #00ff88);

  color: #000 !important;
  font-weight: 700;

  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.enroll-btn:hover {
  transform: translateY(-3px);

  box-shadow: 0 0 25px rgba(0, 255, 255, 0.9);
}

/* HAMBURGER MENU */

.menu-toggle {
  display: none;

  width: 45px;
  height: 45px;

  position: relative;

  cursor: pointer;

  justify-content: center;
  align-items: center;

  z-index: 2000;
}

.menu-toggle span {
  position: absolute;

  width: 32px;
  height: 3px;

  border-radius: 20px;

  background: white;

  transition: all 0.45s ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-10px);
}

.menu-toggle span:nth-child(2) {
  opacity: 1;
}

.menu-toggle span:nth-child(3) {
  transform: translateY(10px);
}

/* CHANGE TO CROSS */

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
}

/* TABLET */

@media (max-width: 1200px) {
  .nav-links {
    gap: 15px;
  }

  .nav-links a {
    font-size: 14px;
  }

  .logo-text {
    font-size: 20px;
  }

  .logo-section img {
    width: 85px;
    height: 85px;
  }
}

/* MOBILE */

@media (max-width: 992px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;

    top: 95px;
    right: -110%;

    width: 100%;
    max-width: 420px;

    height: calc(100vh - 95px);

    overflow-y: auto;

    flex-direction: column;

    padding: 40px 0 60px;

    backdrop-filter: blur(35px);

    background: linear-gradient(
      135deg,
      rgba(15, 23, 42, 0.97),
      rgba(30, 41, 59, 0.96),
      rgba(14, 165, 233, 0.15)
    );

    backdrop-filter: blur(25px);

    flex-direction: column;

    justify-content: flex-start;

    gap: 0;

    padding: 25px 0 50px;

    border-left: 1px solid rgba(255, 255, 255, 0.1);

    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);

    z-index: 1500;
  }

  /* WAVE EFFECT */

  .nav-links::before {
    content: "";

    position: absolute;

    top: -120px;
    left: -100px;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background: radial-gradient(rgba(0, 247, 255, 0.35), transparent 70%);

    animation: waveMove 8s linear infinite;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;

    width: 100%;

    padding: 18px 25px;

    font-size: 17px;
  }

  .enroll-btn {
    margin-top: 15px;
    display: inline-block;
  }

  .logo-section img {
    width: 75px;
    height: 75px;
  }

  .logo-text {
    font-size: 18px;
  }

  .logo-text span {
    font-size: 10px;
    letter-spacing: 2px;
  }
}

/* MOBILE SMALL */

@media (max-width: 480px) {
  .navbar {
    padding: 0 15px;
  }

  .logo-section img {
    width: 105px;
    height: 105px;
  }

  .logo-text {
    font-size: 15px;
  }

  .logo-text span {
    font-size: 8px;
    letter-spacing: 1px;
  }

  .nav-links {
    width: 100%;
    max-width: 100%;
  }
}

/* CUSTOM SCROLLBAR */

.nav-links::-webkit-scrollbar {
  width: 6px;
}

.nav-links::-webkit-scrollbar-track {
  background: transparent;
}

.nav-links::-webkit-scrollbar-thumb {
  background: #00f7ff;
  border-radius: 20px;
}

/* WAVE ANIMATION */

@keyframes waveMove {
  0% {
    transform: translateX(0) translateY(0);
  }

  50% {
    transform: translateX(40px) translateY(20px);
  }

  100% {
    transform: translateX(0) translateY(0);
  }
}

/* ===========================
   HERO SECTION
=========================== */

.hero {
  min-height: 100vh;
  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;

  padding: 120px 5% 80px;

  overflow: hidden;
}

/* Animated Grid Background */

.hero::before {
  content: "";

  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(0, 247, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 247, 255, 0.06) 1px, transparent 1px);

  background-size: 50px 50px;

  z-index: 0;
}

.hero::after {
  content: "";

  position: absolute;
  width: 600px;
  height: 600px;

  background: radial-gradient(rgba(0, 247, 255, 0.12), transparent 70%);

  top: -150px;
  right: -150px;

  border-radius: 50%;

  animation: pulseGlow 8s infinite ease-in-out;

  z-index: 0;
}

@keyframes pulseGlow {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
  }
}

/* Hero Content */

.hero-content {
  position: relative;

  z-index: 10;

  text-align: center;

  max-width: 850px;
}

/* LEFT RAIN */

.krs-rain-left {
  position: absolute;

  left: 20px;
  top: 0;

  width: 220px;
  height: 100%;

  pointer-events: none;
}

/* RIGHT RAIN */

.krs-rain-right {
  position: absolute;

  right: 20px;
  top: 0;

  width: 220px;
  height: 100%;

  pointer-events: none;
}

/* FALLING ITEMS */

.krs-rain-left span,
.krs-rain-right span {
  position: absolute;

  color: #00f7ff;

  font-family: "Orbitron", sans-serif;

  font-weight: 700;

  padding: 10px 18px;

  border-radius: 50px;

  background: rgba(0, 247, 255, 0.08);

  border: 1px solid rgba(0, 247, 255, 0.25);

  box-shadow: 0 0 20px rgba(0, 247, 255, 0.15);

  white-space: nowrap;

  animation: krsCourseRain 12s linear infinite;
}

/* LEFT SIDE POSITIONS */

.krs-rain-left span:nth-child(1) {
  left: 20px;
  animation-delay: 0s;
}

.krs-rain-left span:nth-child(2) {
  left: 80px;
  animation-delay: 2s;
}

.krs-rain-left span:nth-child(3) {
  left: 40px;
  animation-delay: 4s;
}

.krs-rain-left span:nth-child(4) {
  left: 110px;
  animation-delay: 6s;
}

.krs-rain-left span:nth-child(5) {
  left: 60px;
  animation-delay: 8s;
}

.krs-rain-left span:nth-child(6) {
  left: 20px;
  animation-delay: 10s;
}

.krs-rain-left span:nth-child(7) {
  left: 100px;
  animation-delay: 12s;
}

.krs-rain-left span:nth-child(8) {
  left: 50px;
  animation-delay: 14s;
}

/* RIGHT SIDE POSITIONS */

.krs-rain-right span:nth-child(1) {
  right: 20px;
  animation-delay: 1s;
}

.krs-rain-right span:nth-child(2) {
  right: 90px;
  animation-delay: 3s;
}

.krs-rain-right span:nth-child(3) {
  right: 40px;
  animation-delay: 5s;
}

.krs-rain-right span:nth-child(4) {
  right: 120px;
  animation-delay: 7s;
}

.krs-rain-right span:nth-child(5) {
  right: 60px;
  animation-delay: 9s;
}

.krs-rain-right span:nth-child(6) {
  right: 20px;
  animation-delay: 11s;
}

.krs-rain-right span:nth-child(7) {
  right: 100px;
  animation-delay: 13s;
}

.krs-rain-right span:nth-child(8) {
  right: 50px;
  animation-delay: 15s;
}

/* FALLING ANIMATION */

@keyframes krsCourseRain {
  0% {
    transform: translateY(-150px) rotate(-8deg);

    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(120vh) rotate(8deg);

    opacity: 0;
  }
}

/* =========================
   MOBILE COURSE RAIN
========================= */

@media (max-width: 768px) {
  .krs-rain-left,
  .krs-rain-right {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;

    opacity: 0.35;

    z-index: 1;
  }

  .hero-content {
    position: relative;

    z-index: 20;
  }

  .krs-rain-left span,
  .krs-rain-right span {
    font-size: 11px;

    padding: 6px 12px;

    animation: krsMobileRain 10s linear infinite;
  }

  /* RANDOM POSITIONS */

  .krs-rain-left span:nth-child(1) {
    left: 5%;
  }
  .krs-rain-left span:nth-child(2) {
    left: 22%;
  }
  .krs-rain-left span:nth-child(3) {
    left: 40%;
  }
  .krs-rain-left span:nth-child(4) {
    left: 70%;
  }

  .krs-rain-left span:nth-child(5) {
    left: 12%;
  }
  .krs-rain-left span:nth-child(6) {
    left: 55%;
  }
  .krs-rain-left span:nth-child(7) {
    left: 85%;
  }
  .krs-rain-left span:nth-child(8) {
    left: 30%;
  }

  .krs-rain-right span:nth-child(1) {
    left: 15%;
  }
  .krs-rain-right span:nth-child(2) {
    left: 50%;
  }
  .krs-rain-right span:nth-child(3) {
    left: 75%;
  }
  .krs-rain-right span:nth-child(4) {
    left: 25%;
  }

  .krs-rain-right span:nth-child(5) {
    left: 65%;
  }
  .krs-rain-right span:nth-child(6) {
    left: 8%;
  }
  .krs-rain-right span:nth-child(7) {
    left: 90%;
  }
  .krs-rain-right span:nth-child(8) {
    left: 45%;
  }
}

/* MOBILE RANDOM FALL */

@keyframes krsMobileRain {
  0% {
    transform: translateY(-150px) rotate(-12deg);

    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  50% {
    transform: translateY(50vh) rotate(8deg);
  }

  100% {
    transform: translateY(120vh) rotate(-8deg);

    opacity: 0;
  }
}

.hero-badge {
  display: inline-block;

  padding: 12px 24px;

  border-radius: 50px;

  background: rgba(0, 247, 255, 0.12);

  border: 1px solid rgba(0, 247, 255, 0.3);

  color: #00f7ff;

  font-weight: 600;

  margin-bottom: 25px;
}

.hero h1 {
  color: #fff;

  font-family: "Orbitron", sans-serif;

  font-size: clamp(3rem, 8vw, 6rem);

  line-height: 1.1;

  margin-bottom: 15px;

  text-shadow:
    0 0 20px rgba(0, 247, 255, 0.6),
    0 0 40px rgba(0, 247, 255, 0.3);
}

.hero h1 span {
  display: block;
  color: #00f7ff;
}

.hero h2 {
  color: white;

  font-size: clamp(1.2rem, 3vw, 2rem);

  margin-bottom: 20px;

  font-weight: 500;
}

.hero p {
  color: #cbd5e1;

  font-size: 1.1rem;

  max-width: 800px;

  margin: auto;
}

/* Buttons */

.hero-buttons {
  margin-top: 35px;

  display: flex;
  justify-content: center;
  gap: 20px;

  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  text-decoration: none;

  padding: 15px 35px;

  border-radius: 50px;

  font-weight: 600;

  transition: 0.4s;
}

.btn-primary {
  background: linear-gradient(45deg, #00f7ff, #00ff88);

  color: #000;
}

.btn-secondary {
  color: white;

  border: 1px solid rgba(255, 255, 255, 0.2);

  background: rgba(255, 255, 255, 0.05);
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-5px);
}

/* Floating Course Cards */

.floating-courses {
  position: relative;

  z-index: 2;

  margin-top: 80px;

  display: flex;
  justify-content: center;
  gap: 20px;

  flex-wrap: wrap;

  max-width: 1200px;
}

.course-card {
  padding: 16px 28px;
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.1);

  color: white;

  backdrop-filter: blur(12px);

  transition: 0.4s;

  animation: floating 5s infinite ease-in-out;
}

.course-card:nth-child(2) {
  animation-delay: 0.5s;
}

.course-card:nth-child(3) {
  animation-delay: 1s;
}

.course-card:nth-child(4) {
  animation-delay: 1.5s;
}

.course-card:nth-child(5) {
  animation-delay: 2s;
}

.course-card:nth-child(6) {
  animation-delay: 2.5s;
}

.course-card:nth-child(7) {
  animation-delay: 3s;
}

.course-card:hover {
  transform: translateY(-10px);

  border-color: #00f7ff;

  box-shadow: 0 0 20px rgba(0, 247, 255, 0.3);
}

@keyframes floating {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Stats */

.stats {
  margin-top: 80px;

  display: flex;
  justify-content: center;
  gap: 25px;

  flex-wrap: wrap;

  position: relative;
  z-index: 2;
}

.stat {
  min-width: 220px;

  padding: 25px;

  border-radius: 20px;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(10px);

  transition: 0.4s;
}

.stat:hover {
  transform: translateY(-8px);

  border-color: #00f7ff;
}

.stat h3 {
  color: #00f7ff;

  font-size: 2.3rem;

  margin-bottom: 10px;
}

.stat span {
  color: white;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 992px) {
  .hero {
    padding-top: 140px;
  }

  .floating-courses {
    gap: 15px;
  }

  .course-card {
    font-size: 14px;
  }

  .stat {
    min-width: 180px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }

  .hero h2 {
    font-size: 1.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 280px;
    text-align: center;
  }

  .stat {
    width: 100%;
    max-width: 350px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 130px 15px 60px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 15px;
  }

  .course-card {
    width: 100%;
    max-width: 280px;
    height: 10px;
  }
}

.courses-section {
  padding: 100px 6%;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  color: #fff;
  font-size: 3rem;
  font-family: "Orbitron";
}

.section-header p {
  color: #cbd5e1;
  margin-top: 15px;
}

.course-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;

  align-items: start;
}

@media (max-width: 992px) {
  .course-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .course-grid {
    grid-template-columns: 1fr;
  }
}

.course-card {
  position: relative;

  background: linear-gradient(
    145deg,
    rgba(17, 24, 39, 0.95),
    rgba(30, 41, 59, 0.95)
  );

  border: 1px solid rgba(0, 247, 255, 0.12);

  border-radius: 28px;

  overflow: hidden;

  transition: 0.45s;

  padding: 30px;

  /* min-height: 420px; */

  display: flex;
  flex-direction: column;
}

.course-card::before {
  content: "";

  position: absolute;

  top: -100px;
  right: -100px;

  width: 220px;
  height: 220px;

  border-radius: 50%;

  background: radial-gradient(rgba(0, 247, 255, 0.12), transparent 70%);
}

.course-card:hover {
  transform: translateY(-12px);

  border-color: #00f7ff;

  box-shadow: 0 15px 40px rgba(0, 247, 255, 0.15);
}

.course-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.course-badge {
  background: linear-gradient(45deg, #00f7ff, #00ff88);

  color: #000;

  padding: 8px 14px;

  border-radius: 30px;

  font-size: 12px;
  font-weight: 700;
}

.course-icon {
  width: 70px;
  height: 70px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 20px;

  background: linear-gradient(135deg, #00f7ff20, #00ff8820);

  font-size: 32px;
}

.course-card h3 {
  color: white;
  margin-top: 20px;
  margin-bottom: 10px;
}

.course-desc {
  color: #cbd5e1;
  line-height: 1.7;
}

.course-details {
  display: flex;
  justify-content: space-between;

  margin-top: 20px;

  color: #94a3b8;

  font-size: 14px;
}

.price {
  font-size: 2rem;

  font-weight: 800;

  color: #00f7ff;

  margin-top: 20px;
}

.course-buttons {
  margin-top: auto;

  display: flex;

  gap: 12px;
}

.syllabus-btn {
  flex: 1;

  background: rgba(255, 255, 255, 0.08);

  color: white;

  border: none;

  border-radius: 14px;

  cursor: pointer;

  padding: 14px;
}

.enroll-btn-course {
  flex: 1;

  border: none;

  border-radius: 14px;

  cursor: pointer;

  padding: 14px;

  font-weight: 700;

  background: linear-gradient(45deg, #00f7ff, #00ff88);

  color: black;
}

.hidden-syllabus {
  display: none;
}

.popup-overlay {
  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, 0.75);

  display: flex;

  justify-content: center;
  align-items: center;

  opacity: 0;
  visibility: hidden;

  transition: 0.4s;

  z-index: 99999;
}

.popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

.popup-box {
  width: 90%;
  max-width: 700px;

  max-height: 80vh;

  overflow-y: auto;

  background: linear-gradient(145deg, #0f172a, #111827);

  border: 1px solid rgba(0, 247, 255, 0.25);

  border-radius: 25px;

  padding: 35px;

  position: relative;

  box-shadow: 0 0 40px rgba(0, 247, 255, 0.15);
}

.popup-close {
  position: absolute;

  right: 20px;
  top: 15px;

  border: none;

  background: none;

  color: white;

  font-size: 28px;

  cursor: pointer;
}

.popup-box h2 {
  color: #00f7ff;

  margin-bottom: 25px;

  font-family: "Orbitron", sans-serif;
}

.popup-box ul {
  padding-left: 20px;
}

.popup-box li {
  color: white;

  margin-bottom: 12px;

  line-height: 1.7;
}

.courses-section {
  padding: 120px 6%;

  position: relative;
}

.course-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 30px;
}

.course-card {
  position: relative;

  overflow: hidden;

  border-radius: 30px;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );

  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: 0.5s;
}

.course-card:hover {
  transform: translateY(-15px);

  box-shadow: 0 25px 50px rgba(0, 247, 255, 0.18);

  border-color: #00f7ff;
}

.course-image {
  height: 220px;

  overflow: hidden;
}

.course-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: 0.6s;
}

.course-card:hover img {
  transform: scale(1.1);
}

.krs-learning-zone {
  padding: 120px 6%;
}

.krs-zone-heading {
  text-align: center;
  margin-bottom: 70px;
}

.krs-small-tag {
  color: #00f7ff;
  border: 1px solid rgba(0, 247, 255, 0.3);
  padding: 10px 20px;
  border-radius: 50px;
}

.krs-zone-heading h2 {
  color: white;
  font-size: 3.5rem;
  margin-top: 20px;
  font-family: "Orbitron", sans-serif;
}

.krs-zone-heading p {
  color: #cbd5e1;
  max-width: 700px;
  margin: 15px auto;
}

.krs-program-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.krs-program-card {
  position: relative;
  overflow: hidden;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 30px;

  transition: 0.5s;
}

.krs-program-card:hover {
  transform: translateY(-15px);
  border-color: #00f7ff;
  box-shadow: 0 20px 50px rgba(0, 247, 255, 0.18);
}

.krs-program-label {
  position: absolute;
  top: 15px;
  left: 15px;

  background: linear-gradient(45deg, #00f7ff, #00ff88);

  color: black;

  padding: 8px 14px;

  border-radius: 30px;

  font-size: 12px;
  font-weight: 700;

  z-index: 5;
}

.krs-program-banner {
  height: 220px;
  overflow: hidden;
}

.krs-program-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.krs-program-body {
  padding: 25px;
}

.krs-program-body h3 {
  color: white;
  margin-bottom: 12px;
}

.krs-program-body p {
  color: #cbd5e1;
  line-height: 1.7;
}

.krs-program-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.krs-program-meta span {
  background: rgba(255, 255, 255, 0.05);
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 13px;
}

.krs-program-price {
  margin-top: 20px;
}

.krs-old-fee {
  text-decoration: line-through;
  color: #64748b;
}

.krs-new-fee {
  color: #00f7ff;
  font-size: 30px;
  font-weight: 800;
  margin-left: 10px;
}

.krs-program-actions {
  display: flex;
  gap: 10px;
  margin-top: 25px;
}

.krs-syllabus-btn,
.krs-enroll-btn {
  flex: 1;
  border: none;
  padding: 14px;
  border-radius: 14px;
  cursor: pointer;
}

.krs-syllabus-btn {
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.krs-enroll-btn {
  background: linear-gradient(45deg, #00f7ff, #00ff88);
  color: black;
  font-weight: 700;
}

@media (max-width: 1200px) {
  .krs-program-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .krs-program-wrapper {
    grid-template-columns: 1fr;
  }

  .krs-zone-heading h2 {
    font-size: 2.4rem;
  }
}

.krs-hidden-syllabus {
  display: none;
  color: white;
}

.krs-popup-overlay {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  display: flex;

  justify-content: center;
  align-items: center;

  background: rgba(0, 0, 0, 0.75);

  opacity: 0;
  visibility: hidden;

  transition: 0.4s;

  z-index: 999999;
}

.krs-popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

.krs-popup-box {
  position: relative;

  width: 90%;
  max-width: 700px;

  max-height: 80vh;

  overflow-y: auto;

  padding: 35px;

  border-radius: 25px;

  background: #0f172a;

  border: 1px solid rgba(0, 247, 255, 0.25);
}

.krs-popup-close {
  position: absolute;

  top: 15px;
  right: 20px;

  width: 40px;
  height: 40px;

  border: none;

  border-radius: 50%;

  cursor: pointer;

  font-size: 22px;

  color: white;

  background: linear-gradient(45deg, #00f7ff, #00ff88);

  z-index: 10;
}

/* Popup Heading */

#krsPopupContent h2 {
  color: #ffffff;
  font-size: 28px;
  margin-bottom: 20px;
  font-family: "Orbitron", sans-serif;
}

/* List Container */

#krsPopupContent ul {
  padding-left: 25px;
  margin-top: 15px;
}

/* List Items */

#krsPopupContent li {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 10px;
}

/* Paragraphs */

#krsPopupContent p {
  color: #ffffff;
  line-height: 1.8;
}

/* Strong Text */

#krsPopupContent strong {
  color: #00f7ff;
}

/* Popup Scrollbar */

.krs-popup-box::-webkit-scrollbar {
  width: 8px;
}

.krs-popup-box::-webkit-scrollbar-thumb {
  background: #00f7ff;
  border-radius: 20px;
}

#krsPopupContent li {
  list-style: none;

  position: relative;

  padding: 12px 15px 12px 40px;

  margin-bottom: 10px;

  color: #ffffff;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 12px;
}

#krsPopupContent li::before {
  content: "✓";

  position: absolute;

  left: 15px;
  top: 50%;

  transform: translateY(-50%);

  color: #00ff88;

  font-weight: bold;
}

.krs-enroll-overlay {
  position: fixed;
  inset: 0;

  background: rgba(0, 0, 0, 0.75);

  display: flex;

  justify-content: center;
  align-items: center;

  opacity: 0;
  visibility: hidden;

  transition: 0.4s;

  z-index: 999999;
}

.krs-enroll-overlay.show {
  opacity: 1;
  visibility: visible;
}

.krs-enroll-box {
  width: 90%;
  max-width: 550px;

  background: #0f172a;

  border-radius: 25px;

  padding: 35px;

  position: relative;

  border: 1px solid rgba(0, 247, 255, 0.25);
}

.krs-enroll-close {
  position: absolute;

  right: 15px;
  top: 15px;

  width: 40px;
  height: 40px;

  border: none;

  border-radius: 50%;

  cursor: pointer;
}

.krs-enroll-box h2 {
  color: white;

  margin-bottom: 10px;
}

.krs-course-price {
  color: #00f7ff;

  font-size: 26px;

  font-weight: 700;

  margin-bottom: 25px;
}

#krsEnrollForm {
  display: flex;

  flex-direction: column;

  gap: 15px;
}

#krsEnrollForm input {
  padding: 15px;

  border-radius: 12px;

  border: 1px solid #334155;

  background: #111827;

  color: white;
}

#krsEnrollForm button {
  padding: 15px;

  border: none;

  border-radius: 12px;

  cursor: pointer;

  font-weight: 700;

  background: linear-gradient(45deg, #00f7ff, #00ff88);
}

.krs-success-overlay {
  position: fixed;
  inset: 0;

  background: rgba(0, 0, 0, 0.8);

  display: flex;

  justify-content: center;
  align-items: center;

  opacity: 0;
  visibility: hidden;

  transition: 0.4s;

  z-index: 9999999;
}

.krs-success-overlay.show {
  opacity: 1;
  visibility: visible;
}

.krs-success-box {
  width: 90%;
  max-width: 500px;

  padding: 40px;

  text-align: center;

  border-radius: 30px;

  background: linear-gradient(145deg, #0f172a, #1e293b);

  border: 1px solid rgba(0, 247, 255, 0.25);

  box-shadow: 0 0 40px rgba(0, 247, 255, 0.25);

  animation: krsPop 0.4s ease;
}

@keyframes krsPop {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.krs-success-icon {
  width: 90px;
  height: 90px;

  margin: auto;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 42px;
  font-weight: bold;

  color: white;

  background: linear-gradient(45deg, #00f7ff, #00ff88);

  margin-bottom: 25px;
}

.krs-success-box h2 {
  color: white;

  margin-bottom: 15px;
}

.krs-success-box p {
  color: #cbd5e1;

  line-height: 1.8;
}

.krs-success-box strong {
  color: #00f7ff;
}

.krs-success-box button {
  margin-top: 25px;

  padding: 14px 30px;

  border: none;

  border-radius: 50px;

  cursor: pointer;

  font-weight: 700;

  background: linear-gradient(45deg, #00f7ff, #00ff88);

  color: black;
}

.krs-advantage-section {
  padding: 120px 6%;

  display: grid;

  grid-template-columns: 1.2fr 1fr;

  gap: 60px;

  align-items: center;
}

.krs-advantage-tag {
  display: inline-block;

  padding: 10px 25px;

  border-radius: 50px;

  color: #00f7ff;

  border: 1px solid rgba(0, 247, 255, 0.3);
}

.krs-advantage-left h2 {
  color: white;

  font-size: 3.5rem;

  margin: 25px 0;

  line-height: 1.2;
}

.krs-advantage-left h2 span {
  color: #00f7ff;
}

.krs-advantage-left p {
  color: #cbd5e1;

  line-height: 1.9;

  font-size: 17px;
}

.krs-achievement-grid {
  margin-top: 50px;

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 20px;
}

.krs-achievement-box {
  padding: 25px;

  border-radius: 20px;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.08);

  text-align: center;
}

.krs-achievement-box h3 {
  color: #00f7ff;

  font-size: 38px;
}

.krs-achievement-box span {
  color: white;
}

.krs-advantage-right {
  display: grid;

  gap: 20px;
}

.krs-feature-panel {
  display: flex;

  align-items: center;

  gap: 20px;

  padding: 25px;

  border-radius: 25px;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );

  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: 0.4s;
}

.krs-feature-panel:hover {
  transform: translateX(10px);

  border-color: #00f7ff;

  box-shadow: 0 15px 35px rgba(0, 247, 255, 0.15);
}

.krs-feature-icon {
  width: 70px;
  height: 70px;

  min-width: 70px;

  border-radius: 20px;

  display: flex;

  align-items: center;
  justify-content: center;

  font-size: 32px;

  background: linear-gradient(45deg, #00f7ff, #00ff88);
}

.krs-feature-panel h3 {
  color: white;

  margin-bottom: 8px;
}

.krs-feature-panel p {
  color: #cbd5e1;

  line-height: 1.7;
}

@media (max-width: 992px) {
  .krs-advantage-section {
    grid-template-columns: 1fr;
  }

  .krs-advantage-left h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .krs-achievement-grid {
    grid-template-columns: 1fr;
  }

  .krs-feature-panel {
    flex-direction: column;

    text-align: center;
  }
}

/* SECTION */

.krs-learning-slider {
  padding: 120px 6%;

  text-align: center;

  overflow: hidden;
}

.krs-learning-header h2 {
  color: #fff;

  font-size: 3.2rem;

  margin: 20px 0;
}

.krs-learning-header h2 span {
  color: #00f7ff;
}

.krs-learning-header p {
  color: #cbd5e1;

  max-width: 700px;

  margin: auto;
}

/* CARD */

.krs-slider-wrapper {
  max-width: 850px;

  margin: 70px auto 40px;

  min-height: 380px;

  display: flex;

  justify-content: center;

  align-items: center;
}

.krs-slide-card {
  width: 100%;

  padding: 50px;

  border-radius: 35px;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );

  border: 1px solid rgba(255, 255, 255, 0.1);

  backdrop-filter: blur(10px);

  box-shadow: 0 20px 50px rgba(0, 247, 255, 0.12);

  transition: 0.5s;
}

.krs-step-badge {
  display: inline-block;

  padding: 10px 25px;

  border-radius: 50px;

  background: linear-gradient(45deg, #00f7ff, #00ff88);

  color: #000;

  font-weight: 700;

  margin-bottom: 25px;
}

.krs-slide-icon {
  width: 120px;
  height: 120px;

  margin: auto;

  border-radius: 30px;

  display: flex;

  align-items: center;
  justify-content: center;

  font-size: 55px;

  background: linear-gradient(45deg, #00f7ff, #00ff88);

  margin-bottom: 25px;
}

.krs-slide-card h3 {
  color: #fff;

  font-size: 32px;

  margin-bottom: 20px;
}

.krs-slide-card p {
  color: #cbd5e1;

  line-height: 1.9;

  font-size: 17px;
}

.krs-next-path {
  max-width: 700px;

  margin: auto;
}

.krs-next-path span {
  color: #00f7ff;

  font-size: 18px;

  display: block;

  margin-bottom: 15px;
}

.krs-progress {
  height: 8px;

  border-radius: 50px;

  overflow: hidden;

  background: rgba(255, 255, 255, 0.08);
}

.krs-progress-fill {
  height: 100%;

  width: 0;

  border-radius: 50px;

  background: linear-gradient(90deg, #00f7ff, #00ff88);

  animation: progressRun 4s linear infinite;
}

@keyframes progressRun {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

/* SECTION */

.krs-learning-slider {
  padding: 120px 6%;

  text-align: center;

  overflow: hidden;
}

.krs-learning-header h2 {
  color: #fff;

  font-size: 3.2rem;

  margin: 20px 0;
}

.krs-learning-header h2 span {
  color: #00f7ff;
}

.krs-learning-header p {
  color: #cbd5e1;

  max-width: 700px;

  margin: auto;
}

/* CARD */

.krs-slider-wrapper {
  max-width: 850px;

  margin: 70px auto 40px;

  min-height: 380px;

  display: flex;

  justify-content: center;

  align-items: center;
}

.krs-slide-card {
  width: 100%;

  padding: 50px;

  border-radius: 35px;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );

  border: 1px solid rgba(255, 255, 255, 0.1);

  backdrop-filter: blur(10px);

  box-shadow: 0 20px 50px rgba(0, 247, 255, 0.12);

  transition: 0.5s;
}

.krs-step-badge {
  display: inline-block;

  padding: 10px 25px;

  border-radius: 50px;

  background: linear-gradient(45deg, #00f7ff, #00ff88);

  color: #000;

  font-weight: 700;

  margin-bottom: 25px;
}

.krs-slide-icon {
  width: 120px;
  height: 120px;

  margin: auto;

  border-radius: 30px;

  display: flex;

  align-items: center;
  justify-content: center;

  font-size: 55px;

  background: linear-gradient(45deg, #00f7ff, #00ff88);

  margin-bottom: 25px;
}

.krs-slide-card h3 {
  color: #fff;

  font-size: 32px;

  margin-bottom: 20px;
}

.krs-slide-card p {
  color: #cbd5e1;

  line-height: 1.9;

  font-size: 17px;
}

.krs-next-path {
  max-width: 700px;

  margin: auto;
}

.krs-next-path span {
  color: #00f7ff;

  font-size: 18px;

  display: block;

  margin-bottom: 15px;
}

.krs-progress {
  height: 8px;

  border-radius: 50px;

  overflow: hidden;

  background: rgba(255, 255, 255, 0.08);
}

.krs-progress-fill {
  height: 100%;

  width: 0;

  border-radius: 50px;

  background: linear-gradient(90deg, #00f7ff, #00ff88);

  animation: progressRun 4s linear infinite;
}

@keyframes progressRun {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.krs-next-path {
  max-width: 700px;

  margin: auto;
}

.krs-next-path span {
  color: #00f7ff;

  font-size: 18px;

  display: block;

  margin-bottom: 15px;
}

.krs-progress {
  height: 8px;

  border-radius: 50px;

  overflow: hidden;

  background: rgba(255, 255, 255, 0.08);
}

.krs-progress-fill {
  height: 100%;

  width: 0;

  border-radius: 50px;

  background: linear-gradient(90deg, #00f7ff, #00ff88);

  animation: progressRun 4s linear infinite;
}

@keyframes progressRun {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.slide-left {
  animation: slideLeft 0.8s ease;
}

.slide-top {
  animation: slideTop 0.8s ease;
}

.slide-right {
  animation: slideRight 0.8s ease;
}

.slide-bottom {
  animation: slideBottom 0.8s ease;
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-200px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideTop {
  from {
    opacity: 0;
    transform: translateY(-200px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(200px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideBottom {
  from {
    opacity: 0;
    transform: translateY(200px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===============================
   FACULTY SECTION
================================ */

.krs-faculty-section {
  padding: 120px 6%;
}

.krs-faculty-header {
  text-align: center;

  margin-bottom: 70px;
}

.krs-faculty-tag {
  display: inline-block;

  padding: 12px 25px;

  border-radius: 50px;

  color: #00f7ff;

  border: 1px solid rgba(0, 247, 255, 0.3);

  background: rgba(0, 247, 255, 0.05);
}

.krs-faculty-header h2 {
  margin-top: 25px;

  color: white;

  font-size: 3.2rem;

  line-height: 1.2;
}

.krs-faculty-header h2 span {
  color: #00f7ff;
}

.krs-faculty-header p {
  max-width: 700px;

  margin: 20px auto 0;

  color: #cbd5e1;

  line-height: 1.8;
}

.krs-faculty-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 35px;
}

.krs-faculty-card {
  position: relative;

  overflow: hidden;

  border-radius: 30px;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );

  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: 0.5s;
}

.krs-faculty-card:hover {
  transform: translateY(-12px);

  box-shadow: 0 20px 50px rgba(0, 247, 255, 0.18);

  border-color: #00f7ff;
}

.krs-faculty-image {
  position: relative;

  height: 320px;

  overflow: hidden;
}

.krs-faculty-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: 0.6s;
}

.krs-faculty-card:hover img {
  transform: scale(1.08);
}

.krs-exp-badge {
  position: absolute;

  top: 20px;
  right: 20px;

  padding: 10px 18px;

  border-radius: 50px;

  background: linear-gradient(45deg, #00f7ff, #00ff88);

  color: #000;

  font-weight: 700;
}

.krs-faculty-content {
  padding: 30px;
}

.krs-faculty-content h3 {
  color: white;

  margin-bottom: 10px;

  font-size: 24px;
}

.krs-role {
  color: #00f7ff;

  display: block;

  margin-bottom: 15px;
}

.krs-faculty-content p {
  color: #cbd5e1;

  line-height: 1.8;

  margin-bottom: 20px;
}

.krs-skill-tags {
  display: flex;

  flex-wrap: wrap;

  gap: 10px;
}

.krs-skill-tags span {
  padding: 8px 15px;

  border-radius: 50px;

  background: rgba(0, 247, 255, 0.08);

  border: 1px solid rgba(0, 247, 255, 0.15);

  color: #00f7ff;

  font-size: 13px;
}

/* Tablet */

@media (max-width: 1100px) {
  .krs-faculty-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */

@media (max-width: 768px) {
  .krs-faculty-grid {
    grid-template-columns: 1fr;
  }

  .krs-faculty-header h2 {
    font-size: 2.2rem;
  }

  .krs-faculty-image {
    height: 280px;
  }
}

/* ============================
   CERTIFICATION SECTION
============================ */

.krs-certification-section {
  padding: 120px 6%;
}

.krs-cert-header {
  text-align: center;
  margin-bottom: 80px;
}

.krs-cert-tag {
  display: inline-block;

  padding: 12px 25px;

  border-radius: 50px;

  color: #00f7ff;

  border: 1px solid rgba(0, 247, 255, 0.25);
}

.krs-cert-header h2 {
  margin: 25px 0;

  color: white;

  font-size: 3rem;
}

.krs-cert-header h2 span {
  color: #00f7ff;
}

.krs-cert-header p {
  max-width: 800px;

  margin: auto;

  color: #cbd5e1;

  line-height: 1.8;
}

.krs-cert-container {
  display: grid;

  grid-template-columns: 1fr 1.2fr;

  gap: 60px;

  align-items: center;
}

.krs-cert-info {
  display: grid;
  gap: 25px;
}

.krs-cert-feature {
  display: flex;

  gap: 20px;

  padding: 25px;

  border-radius: 20px;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: 0.4s;
}

.krs-cert-feature:hover {
  transform: translateX(10px);

  border-color: #00f7ff;
}

.krs-cert-icon {
  width: 65px;
  height: 65px;

  min-width: 65px;

  border-radius: 15px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 30px;

  background: linear-gradient(45deg, #00f7ff, #00ff88);
}

.krs-cert-feature h3 {
  color: white;
  margin-bottom: 8px;
}

.krs-cert-feature p {
  color: #cbd5e1;
}

.krs-certificate-preview {
  perspective: 1200px;
}

.krs-cert-border {
  background: white;

  color: #111827;

  border-radius: 25px;

  padding: 40px;

  text-align: center;

  position: relative;

  border: 12px solid #d4af37;

  transition: 0.5s;
}

.krs-cert-border:hover {
  transform: rotateY(-5deg) rotateX(3deg);
}

.krs-cert-logo img {
  width: 210px;
}

.krs-cert-border h2 {
  margin-top: 10px;

  color: #0f172a;
}

.krs-cert-title {
  display: block;

  margin: 20px 0;

  letter-spacing: 4px;

  font-weight: 700;

  color: #d4af37;
}

.krs-cert-border h1 {
  margin: 20px 0;

  color: #0f172a;

  font-family: Georgia, serif;
}

.krs-cert-border h3 {
  color: #1e293b;
}

.krs-cert-details {
  display: flex;

  justify-content: space-between;

  margin-top: 35px;
}

.krs-cert-details div {
  text-align: left;
}

.krs-cert-details strong {
  display: block;
}

.krs-cert-footer {
  margin-top: 40px;

  display: flex;

  justify-content: space-between;

  align-items: center;
}

.line {
  width: 180px;

  border-top: 2px solid #000;

  margin-bottom: 8px;
}

.krs-qr {
  width: 90px;
  height: 90px;

  border: 2px dashed #000;

  display: flex;

  align-items: center;
  justify-content: center;

  font-size: 12px;
}

@media (max-width: 1000px) {
  .krs-cert-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .krs-cert-header h2 {
    font-size: 2rem;
  }

  .krs-cert-border {
    padding: 25px;
  }

  .krs-cert-details {
    flex-direction: column;
    gap: 15px;
  }

  .krs-cert-footer {
    flex-direction: column;
    gap: 20px;
  }
}

/* ==================================
   ABOUT US SECTION
================================== */

.krs-about-section {
  padding: 120px 6%;

  position: relative;

  overflow: hidden;
}

/* MAIN GRID */

.krs-about-container {
  display: grid;

  grid-template-columns: 1.2fr 1fr;

  gap: 60px;

  align-items: center;
}

/* LEFT SIDE */

.krs-about-badge {
  display: inline-block;

  padding: 12px 24px;

  border-radius: 50px;

  color: #00f7ff;

  border: 1px solid rgba(0, 247, 255, 0.3);

  background: rgba(0, 247, 255, 0.08);

  margin-bottom: 25px;
}

.krs-about-left h2 {
  font-size: 3.2rem;

  color: #fff;

  line-height: 1.2;

  margin-bottom: 25px;
}

.krs-about-left h2 span {
  color: #00f7ff;
}

.krs-about-desc {
  color: #cbd5e1;

  line-height: 2;

  font-size: 17px;

  margin-bottom: 40px;
}

/* STATS */

.krs-about-highlights {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 20px;
}

.krs-highlight-box {
  padding: 25px;

  border-radius: 25px;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );

  border: 1px solid rgba(255, 255, 255, 0.08);

  text-align: center;

  transition: 0.4s;
}

.krs-highlight-box:hover {
  transform: translateY(-10px);

  border-color: #00f7ff;

  box-shadow: 0 15px 40px rgba(0, 247, 255, 0.15);
}

.krs-highlight-box h3 {
  color: #00f7ff;

  font-size: 34px;
}

.krs-highlight-box span {
  color: white;
}

/* RIGHT SIDE */

.krs-about-right {
  position: relative;

  display: flex;

  justify-content: center;

  align-items: center;

  min-height: 550px;
}

.krs-about-glow {
  position: absolute;

  width: 380px;
  height: 380px;

  border-radius: 50%;

  background: radial-gradient(rgba(0, 247, 255, 0.35), transparent 70%);

  animation: aboutPulse 4s infinite;
}

.krs-about-right img {
  width: 280px;

  z-index: 2;

  filter: drop-shadow(0 0 25px #00f7ff);
}

/* FLOATING BOXES */

.krs-floating-card {
  position: absolute;

  padding: 15px 25px;

  border-radius: 18px;

  color: white;

  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.15);

  z-index: 3;
}

.card1 {
  top: 60px;
  right: 0;

  animation: floatCard 4s infinite;
}

.card2 {
  bottom: 120px;
  left: 0;

  animation: floatCard 5s infinite;
}

.card3 {
  bottom: 40px;
  right: 20px;

  animation: floatCard 6s infinite;
}

/* VISION MISSION */

.krs-about-bottom {
  margin-top: 100px;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

.krs-about-card {
  padding: 35px;

  border-radius: 30px;

  text-align: center;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );

  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: 0.4s;
}

.krs-about-card:hover {
  transform: translateY(-12px);

  border-color: #00f7ff;

  box-shadow: 0 20px 50px rgba(0, 247, 255, 0.18);
}

.krs-about-icon {
  width: 90px;
  height: 90px;

  margin: auto;

  border-radius: 20px;

  display: flex;

  align-items: center;
  justify-content: center;

  font-size: 42px;

  background: linear-gradient(45deg, #00f7ff, #00ff88);

  margin-bottom: 25px;
}

.krs-about-card h3 {
  color: white;

  margin-bottom: 15px;
}

.krs-about-card p {
  color: #cbd5e1;

  line-height: 1.9;
}

/* ANIMATION */

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes aboutPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
  }
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .krs-about-container {
    grid-template-columns: 1fr;
  }

  .krs-about-bottom {
    grid-template-columns: 1fr;
  }

  .krs-about-right {
    min-height: 420px;
  }
}

@media (max-width: 768px) {
  .krs-about-left h2 {
    font-size: 2.2rem;
  }

  .krs-about-highlights {
    grid-template-columns: 1fr;
  }

  .krs-about-right img {
    width: 200px;
  }

  .krs-floating-card {
    font-size: 13px;
    padding: 12px 18px;
  }
}

@media (max-width: 480px) {
  .krs-about-section {
    padding: 90px 5%;
  }

  .krs-about-left h2 {
    font-size: 1.9rem;
  }

  .krs-about-desc {
    font-size: 15px;
  }

  .krs-about-right {
    min-height: 350px;
  }

  .krs-about-glow {
    width: 250px;
    height: 250px;
  }
}

/* ==================================
   CONTACT US SECTION
================================== */

.krs-contact-section {
  padding: 120px 6%;
}

/* HEADER */

.krs-contact-header {
  text-align: center;

  margin-bottom: 70px;
}

.krs-contact-badge {
  display: inline-block;

  padding: 12px 25px;

  border-radius: 50px;

  color: #00f7ff;

  border: 1px solid rgba(0, 247, 255, 0.3);

  background: rgba(0, 247, 255, 0.08);
}

.krs-contact-header h2 {
  color: #fff;

  font-size: 3rem;

  margin: 25px 0;
}

.krs-contact-header h2 span {
  color: #00f7ff;
}

.krs-contact-header p {
  max-width: 750px;

  margin: auto;

  color: #cbd5e1;

  line-height: 1.9;
}

/* MAIN GRID */

.krs-contact-wrapper {
  display: grid;

  grid-template-columns: 1fr 1.2fr;

  gap: 40px;

  margin-bottom: 80px;
}

.krs-contact-info {
  display: flex;

  flex-direction: column;

  gap: 20px;
}

.krs-contact-card {
  display: flex;

  gap: 20px;

  padding: 25px;

  border-radius: 25px;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );

  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: 0.4s;
}

.krs-contact-card:hover {
  transform: translateX(10px);

  border-color: #00f7ff;

  box-shadow: 0 15px 35px rgba(0, 247, 255, 0.15);
}

.krs-contact-icon {
  width: 65px;
  height: 65px;

  min-width: 65px;

  border-radius: 18px;

  display: flex;

  align-items: center;
  justify-content: center;

  font-size: 30px;

  background: linear-gradient(45deg, #00f7ff, #00ff88);
}

.krs-contact-card h3 {
  color: white;

  margin-bottom: 8px;
}

.krs-contact-card p {
  color: #cbd5e1;

  line-height: 1.8;
}

.krs-contact-info {
  display: flex;

  flex-direction: column;

  gap: 20px;
}

.krs-contact-card {
  display: flex;

  gap: 20px;

  padding: 25px;

  border-radius: 25px;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );

  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: 0.4s;
}

.krs-contact-card:hover {
  transform: translateX(10px);

  border-color: #00f7ff;

  box-shadow: 0 15px 35px rgba(0, 247, 255, 0.15);
}

.krs-contact-icon {
  width: 65px;
  height: 65px;

  min-width: 65px;

  border-radius: 18px;

  display: flex;

  align-items: center;
  justify-content: center;

  font-size: 30px;

  background: linear-gradient(45deg, #00f7ff, #00ff88);
}

.krs-contact-card h3 {
  color: white;

  margin-bottom: 8px;
}

.krs-contact-card p {
  color: #cbd5e1;

  line-height: 1.8;
}

.krs-contact-form-box {
  padding: 35px;

  border-radius: 30px;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );

  border: 1px solid rgba(255, 255, 255, 0.08);
}

.krs-form-top {
  margin-bottom: 25px;
}

.krs-form-top h3 {
  color: white;

  font-size: 28px;
}

.krs-form-top span {
  color: #00f7ff;
}

.krs-contact-form {
  display: flex;

  flex-direction: column;

  gap: 18px;
}

.krs-contact-form input,
.krs-contact-form textarea,
.krs-contact-form select {
  width: 100%;

  padding: 16px;

  border: none;

  outline: none;

  border-radius: 15px;

  color: white;

  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.08);
}

.krs-contact-form textarea {
  resize: none;
}

.krs-contact-form button {
  padding: 18px;

  border: none;

  cursor: pointer;

  border-radius: 50px;

  font-size: 16px;

  font-weight: 700;

  background: linear-gradient(45deg, #00f7ff, #00ff88);

  color: black;

  transition: 0.4s;
}

.krs-contact-form button:hover {
  transform: translateY(-5px);
}

.krs-contact-bottom {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 25px;
}

.krs-bottom-card {
  padding: 30px;

  text-align: center;

  border-radius: 25px;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );

  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: 0.4s;
}

.krs-bottom-card:hover {
  transform: translateY(-10px);

  border-color: #00f7ff;
}

.krs-bottom-card h3 {
  color: white;

  margin-bottom: 15px;
}

.krs-bottom-card p {
  color: #cbd5e1;

  line-height: 1.8;
}

@media (max-width: 1100px) {
  .krs-contact-wrapper {
    grid-template-columns: 1fr;
  }

  .krs-contact-bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .krs-contact-header h2 {
    font-size: 2rem;
  }

  .krs-contact-actions {
    flex-direction: column;
  }

  .krs-contact-form-box {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .krs-contact-section {
    padding: 90px 5%;
  }

  .krs-contact-header h2 {
    font-size: 1.8rem;
  }

  .krs-contact-card {
    flex-direction: column;

    text-align: center;
  }

  .krs-contact-icon {
    margin: auto;
  }
}

.krs-contact-actions {
  margin-top: 15px;
}

.krs-whatsapp-btn {
  display: block;

  width: 100%;

  text-align: center;

  padding: 18px;

  border-radius: 18px;

  text-decoration: none;

  color: white;

  font-weight: 700;

  font-size: 17px;

  background: linear-gradient(45deg, #25d366, #1ebe5d);

  transition: 0.4s;
}

.krs-whatsapp-btn:hover {
  transform: translateY(-5px);

  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* SUCCESS POPUP */

.krs-success-popup {
  position: fixed;
  inset: 0;

  display: flex;
  justify-content: center;
  align-items: center;

  background: rgba(0, 0, 0, 0.75);

  backdrop-filter: blur(8px);

  z-index: 99999;

  opacity: 0;
  visibility: hidden;

  transition: 0.4s;
}

.krs-success-popup.active {
  opacity: 1;
  visibility: visible;
}

.krs-success-box {
  width: 90%;
  max-width: 500px;

  padding: 40px;

  text-align: center;

  border-radius: 30px;

  background: linear-gradient(135deg, #0f172a, #1e293b);

  border: 1px solid rgba(0, 247, 255, 0.3);

  box-shadow: 0 0 40px rgba(0, 247, 255, 0.25);

  animation: popupScale 0.4s ease;
}

.krs-success-icon {
  font-size: 70px;

  margin-bottom: 15px;
}

.krs-success-box h2 {
  color: #00f7ff;

  margin-bottom: 15px;
}

.krs-success-box p {
  color: white;

  line-height: 1.8;

  margin-bottom: 25px;
}

.krs-success-box button {
  border: none;

  cursor: pointer;

  padding: 14px 35px;

  border-radius: 50px;

  font-weight: 700;

  background: linear-gradient(45deg, #00f7ff, #00ff88);

  color: black;
}

@keyframes popupScale {
  from {
    transform: scale(0.7);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ==========================
   FOOTER V900
========================== */

.krs-footer-v900 {
  position: relative;

  margin-top: 120px;

  padding-top: 80px;

  overflow: hidden;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(0, 0, 0, 0.35)
  );

  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* GLOW */

.krs-footer-glow-v900 {
  position: absolute;

  border-radius: 50%;

  filter: blur(120px);
}

.glow1 {
  width: 350px;
  height: 350px;

  background: #00f7ff;

  top: -100px;
  left: -100px;

  opacity: 0.12;
}

.glow2 {
  width: 300px;
  height: 300px;

  background: #00ff88;

  right: -100px;
  bottom: -100px;

  opacity: 0.12;
}

/* GRID */

.krs-footer-container-v900 {
  width: 90%;

  max-width: 1400px;

  margin: auto;

  display: grid;

  grid-template-columns:
    1.5fr
    1fr
    1fr
    1.2fr;

  gap: 50px;

  position: relative;

  z-index: 2;
}

/* LOGO */

.krs-footer-logo-v900 {
  display: flex;

  align-items: center;

  gap: 18px;

  margin-bottom: 25px;
}

.krs-footer-logo-v900 img {
  width: 80px;
}

.krs-footer-logo-v900 h2 {
  color: white;

  font-size: 26px;

  font-family: "Orbitron", sans-serif;
}

.krs-footer-logo-v900 span {
  display: block;

  color: #00f7ff;

  font-size: 12px;

  letter-spacing: 2px;
}

.krs-footer-col-v900 p {
  color: #cbd5e1;

  line-height: 1.9;
}

/* TITLES */

.krs-footer-col-v900 h3 {
  color: white;

  margin-bottom: 25px;

  position: relative;
}

.krs-footer-col-v900 h3::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -8px;

  width: 50px;
  height: 3px;

  border-radius: 50px;

  background: #00f7ff;
}

/* LINKS */

.krs-footer-col-v900 ul {
  list-style: none;
}

.krs-footer-col-v900 ul li {
  margin-bottom: 15px;
}

.krs-footer-col-v900 ul li a {
  color: #cbd5e1;

  text-decoration: none;

  transition: 0.3s;
}

.krs-footer-col-v900 ul li a:hover {
  color: #00f7ff;

  padding-left: 8px;
}

/* SOCIAL */

.krs-socials-v900 {
  display: flex;

  gap: 15px;

  margin-top: 25px;
}

.krs-socials-v900 a {
  width: 45px;
  height: 45px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  color: white;

  text-decoration: none;

  background: rgba(255, 255, 255, 0.08);

  transition: 0.4s;
}

.krs-socials-v900 a:hover {
  background: #00f7ff;

  color: #000;

  transform: translateY(-5px);
}

/* CONTACT */

.krs-contact-item-v900 {
  display: flex;

  gap: 12px;

  margin-bottom: 18px;

  color: #cbd5e1;
}

/* NEWSLETTER */

.krs-newsletter-v900 {
  width: 90%;

  max-width: 1200px;

  margin: 70px auto;

  text-align: center;

  padding: 50px;

  border-radius: 30px;

  background: rgba(255, 255, 255, 0.05);

  backdrop-filter: blur(15px);

  border: 1px solid rgba(255, 255, 255, 0.08);
}

.krs-newsletter-v900 h3 {
  color: white;

  font-size: 32px;
}

.krs-newsletter-v900 p {
  color: #cbd5e1;

  margin: 15px 0 30px;
}

.krs-newsletter-v900 form {
  display: flex;

  justify-content: center;

  gap: 15px;

  flex-wrap: wrap;
}

.krs-newsletter-v900 input {
  width: 400px;

  max-width: 100%;

  padding: 18px;

  border: none;

  outline: none;

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.08);

  color: white;
}

.krs-newsletter-v900 button {
  padding: 18px 35px;

  border: none;

  cursor: pointer;

  border-radius: 50px;

  font-weight: 700;

  background: linear-gradient(45deg, #00f7ff, #00ff88);

  color: black;
}

/* BOTTOM */

.krs-footer-bottom-v900 {
  text-align: center;

  padding: 30px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.krs-footer-bottom-v900 p {
  color: #94a3b8;
}

@media (max-width: 1100px) {
  .krs-footer-container-v900 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .krs-footer-container-v900 {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .krs-footer-logo-v900 {
    justify-content: center;
  }

  .krs-socials-v900 {
    justify-content: center;
  }

  .krs-contact-item-v900 {
    justify-content: center;
  }

  .krs-footer-col-v900 h3::after {
    left: 50%;

    transform: translateX(-50%);
  }

  .krs-newsletter-v900 {
    padding: 30px 20px;
  }

  .krs-newsletter-v900 h3 {
    font-size: 26px;
  }
}

/* ==========================
   ABOUT SECTION 9001
========================== */

.krsAbout9001 {
  padding: 120px 6%;

  position: relative;
}

.krsAboutWrap9001 {
  display: grid;

  grid-template-columns: 1.2fr 1fr;

  gap: 60px;

  align-items: center;
}

/* LEFT */

.krsBadge9001 {
  display: inline-block;

  padding: 12px 25px;

  border-radius: 50px;

  background: rgba(0, 247, 255, 0.08);

  border: 1px solid rgba(0, 247, 255, 0.25);

  color: #00f7ff;

  margin-bottom: 25px;
}

.krsAboutContent9001 h2 {
  color: white;

  font-size: 3.2rem;

  line-height: 1.2;

  margin-bottom: 25px;
}

.krsAboutContent9001 h2 span {
  color: #00f7ff;
}

.krsDesc9001 {
  color: #cbd5e1;

  line-height: 2;

  margin-bottom: 40px;
}

.krsStats9001 {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 20px;
}

.krsStatBox9001 {
  padding: 25px;

  border-radius: 25px;

  text-align: center;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: 0.4s;
}

.krsStatBox9001:hover {
  transform: translateY(-8px);

  border-color: #00f7ff;
}

.krsStatBox9001 h3 {
  color: #00f7ff;

  font-size: 35px;
}

.krsStatBox9001 span {
  color: white;
}

/* FOUNDER */

.krsFounder9001 {
  position: relative;

  display: flex;

  justify-content: center;

  align-items: center;

  min-height: 500px;
}

.krsFounderGlow9001 {
  position: absolute;

  width: 350px;
  height: 350px;

  border-radius: 50%;

  background: radial-gradient(rgba(0, 247, 255, 0.25), transparent 70%);

  filter: blur(50px);
}

.krsFounderCard9001 {
  width: 350px;

  border-radius: 30px;

  overflow: hidden;

  background: rgba(255, 255, 255, 0.05);

  backdrop-filter: blur(15px);

  border: 1px solid rgba(255, 255, 255, 0.08);

  text-align: center;

  z-index: 2;
}

.krsFounderCard9001 img {
  width: 100%;
  height: 350px;

  object-fit: cover;
}

.krsFounderInfo9001 {
  padding: 25px;
}

.krsFounderInfo9001 h3 {
  color: white;

  font-size: 28px;
}

.krsFounderInfo9001 span {
  color: #00f7ff;

  display: block;

  margin: 10px 0 15px;
}

.krsFounderInfo9001 p {
  color: #cbd5e1;

  line-height: 1.8;
}

/* MINI CARDS */

.krsMiniCard9001 {
  position: absolute;

  padding: 12px 20px;

  border-radius: 15px;

  background: rgba(255, 255, 255, 0.08);

  color: white;

  backdrop-filter: blur(10px);
}

.mini1 {
  top: 50px;
  right: 0;
}

.mini2 {
  bottom: 100px;
  left: 0;
}

.mini3 {
  bottom: 20px;
  right: 40px;
}

/* MISSION */

.krsMissionGrid9001 {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;

  margin-top: 100px;
}

.krsMissionCard9001 {
  padding: 35px;

  border-radius: 30px;

  text-align: center;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: 0.4s;
}

.krsMissionCard9001:hover {
  transform: translateY(-10px);

  border-color: #00f7ff;
}

.krsMissionIcon9001 {
  font-size: 45px;

  margin-bottom: 20px;
}

.krsMissionCard9001 h3 {
  color: white;

  margin-bottom: 15px;
}

.krsMissionCard9001 p {
  color: #cbd5e1;

  line-height: 1.8;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .krsAboutWrap9001 {
    grid-template-columns: 1fr;
  }

  .krsMissionGrid9001 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .krsAboutContent9001 h2 {
    font-size: 2.2rem;
  }

  .krsStats9001 {
    grid-template-columns: 1fr;
  }

  .krsFounderCard9001 {
    width: 100%;
    max-width: 350px;
  }
}

@media (max-width: 480px) {
  .krsAbout9001 {
    padding: 90px 5%;
  }

  .krsAboutContent9001 h2 {
    font-size: 1.8rem;
  }

  .krsFounderCard9001 img {
    height: 280px;
  }
}

html {
  scroll-behavior: smooth;
}

/* Navbar active glow */

.krsNavLink9001.active {
  color: #00f7ff !important;

  text-shadow:
    0 0 10px #00f7ff,
    0 0 20px #00f7ff;
}

section {
  scroll-margin-top: 120px;
}

/* ===========================
   FLOATING WHATSAPP BUTTON
=========================== */

.krs-whatsapp-float-1001 {
  position: fixed;

  right: 25px;
  bottom: 25px;

  width: 75px;
  height: 75px;

  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;

  text-decoration: none;

  z-index: 99999;

  background: linear-gradient(135deg, #25d366, #1ebe5d);

  color: white;

  font-size: 38px;

  box-shadow:
    0 10px 35px rgba(37, 211, 102, 0.45),
    0 0 30px rgba(37, 211, 102, 0.25);

  animation: krsFloatWA1001 3s ease-in-out infinite;

  transition: 0.4s;
}

.krs-whatsapp-float-1001:hover {
  transform: scale(1.12);

  box-shadow:
    0 15px 45px rgba(37, 211, 102, 0.7),
    0 0 50px rgba(37, 211, 102, 0.45);
}

/* Ripple */

.krs-wa-ripple-1001 {
  position: absolute;

  width: 100%;
  height: 100%;

  border-radius: 50%;

  border: 2px solid rgba(255, 255, 255, 0.5);

  animation: krsRippleWA1001 2s infinite;
}

/* Tooltip */

.krs-wa-tooltip-1001 {
  position: absolute;

  right: 90px;

  white-space: nowrap;

  padding: 12px 18px;

  border-radius: 50px;

  background: rgba(15, 23, 42, 0.95);

  color: white;

  font-size: 14px;

  opacity: 0;

  visibility: hidden;

  transition: 0.4s;

  border: 1px solid rgba(255, 255, 255, 0.08);
}

.krs-whatsapp-float-1001:hover .krs-wa-tooltip-1001 {
  opacity: 1;

  visibility: visible;
}

/* Floating Animation */

@keyframes krsFloatWA1001 {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Ripple Animation */

@keyframes krsRippleWA1001 {
  0% {
    transform: scale(1);

    opacity: 1;
  }

  100% {
    transform: scale(1.8);

    opacity: 0;
  }
}

/* Mobile */

@media (max-width: 768px) {
  .krs-whatsapp-float-1001 {
    width: 65px;
    height: 65px;

    font-size: 32px;

    right: 18px;
    bottom: 18px;
  }

  .krs-wa-tooltip-1001 {
    display: none;
  }
}

/* Button Click Effect */

.btn-primary.btn-clicked {
  animation: krsPulseExplore 1s ease;
}

@keyframes krsPulseExplore {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);

    box-shadow:
      0 0 30px #00f7ff,
      0 0 80px #00f7ff;
  }

  100% {
    transform: scale(1);
  }
}

/* Courses Arrival */

.courses-arrived {
  animation: krsCoursesGlow 2.5s ease;
}

@keyframes krsCoursesGlow {
  0% {
    transform: scale(0.96);

    filter: brightness(1);
  }

  50% {
    transform: scale(1.02);

    box-shadow: 0 0 60px rgba(0, 247, 255, 0.6);

    filter: brightness(1.3);
  }

  100% {
    transform: scale(1);

    filter: brightness(1);
  }
}

.krs-course-beam {
  position: absolute;

  left: 50%;

  transform: translateX(-50%);

  width: 0;

  height: 5px;

  background: #00f7ff;

  border-radius: 50px;
}

.courses-arrived .krs-course-beam {
  animation: krsBeam 2s ease;
}

@keyframes krsBeam {
  0% {
    width: 0;
  }

  100% {
    width: 300px;
  }
}

/* Logo Clickable */

.logo-section {
  cursor: pointer;

  transition: 0.4s;
}

.logo-section:hover {
  transform: scale(1.03);
}

/* Home Arrival Effect */

.krsHomeGlow1001 {
  animation: krsHomeHighlight1001 2s ease;
}

@keyframes krsHomeHighlight1001 {
  0% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.4);

    transform: scale(1.01);
  }

  100% {
    filter: brightness(1);
  }
}

.krsEnrollMegaBtn {
  position: relative;

  overflow: hidden;

  padding: 14px 30px;

  border: none;

  border-radius: 60px;

  cursor: pointer;

  font-size: 17px;
  font-weight: 800;

  color: #000;

  background: linear-gradient(135deg, #00f7ff, #00ff88);

  box-shadow:
    0 0 20px rgba(0, 247, 255, 0.5),
    0 0 40px rgba(0, 255, 136, 0.3);

  transition: 0.4s;

  animation: krsEnrollPulse 2s infinite;
}

.krsEnrollMegaBtn span {
  display: block;

  font-size: 12px;

  margin-top: 2px;

  font-weight: 700;

  letter-spacing: 1px;
}

.krsEnrollMegaBtn:hover {
  transform: translateY(-4px) scale(1.05);

  box-shadow:
    0 0 30px rgba(0, 247, 255, 0.8),
    0 0 60px rgba(0, 255, 136, 0.5);
}

/* Shine Effect */

.krsEnrollMegaBtn::before {
  content: "";

  position: absolute;

  top: 0;
  left: -120%;

  width: 50%;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.7),
    transparent
  );

  transform: skewX(-25deg);

  animation: krsShine 3s infinite;
}

@keyframes krsShine {
  100% {
    left: 150%;
  }
}

/* Pulse */

@keyframes krsEnrollPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }

  100% {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .krsEnrollMegaBtn {
    font-size: 14px;

    padding: 12px 20px;
    padding-bottom: 18px;
  }

  .krsEnrollMegaBtn span {
    font-size: 10px;
  }
}


