* {
  font-family: 'Outfit', sans-serif;
  margin: 0;
  padding: 0;
}


.instagram-float {
  position: fixed;
  width: 65px;
  height: 65px;
  bottom: 100px;
  right: 20px;
  background-color: #DD2A7B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(221, 42, 123, 0.8), 0 0 40px rgba(221, 42, 123, 0.4);
  z-index: 100;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulseGlowInstagram 2s infinite;
}

@keyframes pulseGlowInstagram {
  0% {
    box-shadow:
      0 0 15px rgba(221, 42, 123, 0.6), 0 0 30px rgba(221, 42, 123, 0.3);
  }

  50% {
    box-shadow: 0 0 25px rgba(221, 42, 123, 1), 0 0 60px rgba(221, 42, 123, 0.8);
    ;
  }

  100% {
    box-shadow: 0 0 15px rgba(221, 42, 123, 0.6), 0 0 30px rgba(221, 42, 123, 0.3);
    ;
  }
}

.instagram-float:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(221, 42, 123, 0.8), 0 0 40px rgba(221, 42, 123, 0.4);
}


.whatsapp-float {
  position: fixed;
  width: 65px;
  height: 65px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.8), 0 0 40px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulseGlow 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(37, 211, 102, 1), 0 0 50px rgba(37, 211, 102, 0.8);
}

.whatsapp-icon {
  width: 35px;
  height: 35px;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.6), 0 0 30px rgba(37, 211, 102, 0.3);
  }

  50% {
    box-shadow: 0 0 25px rgba(37, 211, 102, 1), 0 0 60px rgba(37, 211, 102, 0.8);
  }

  100% {
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.6), 0 0 30px rgba(37, 211, 102, 0.3);
  }
}


header {
  border-bottom: 3px solid #7b09cd;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  background-color: white;
  box-shadow: 0 5px 20px rgba(123, 9, 205, 0.15);
  animation: headerGlow 4s ease-in-out infinite;
  z-index: 9999;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}


@keyframes headerGlow {

  0%,
  100% {
    box-shadow: 0 5px 20px rgba(123, 9, 205, 0.15);
  }

  50% {
    box-shadow: 0 5px 30px rgba(123, 9, 205, 0.25);
  }
}

nav {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  padding-inline-start: 50px;
  padding-right: 20px;
}

nav img {
  margin-bottom: 10px;
}

nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

nav ul li {
  list-style: none;
  padding-inline: 20px;
}

nav ul li a {
  text-decoration: none;
  color: black;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 12px 12px;
  border-radius: 8px;
  font-weight: 500;
}

nav ul li button a {
  color: white;
}


nav ul li a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #7b09cd, #0d00ff);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}

nav ul li a:hover {
  color: #7b09cd;
  background: rgba(123, 9, 205, 0.1);
  transform: translateY(-2px);

}

nav ul li a:hover::before {
  width: 80%;
}

.signup {
  background-color: #9810fa !important;
  color: white !important;
  transition: 0.4s ease-in-out;
  box-shadow: 0 0 10px rgba(152, 16, 250, 0.3);
}

.signup:hover {
  background-color: #7b09cd !important;

  box-shadow: 0 0 20px rgba(123, 9, 205, 0.6), 0 0 30px rgba(152, 16, 250, 0.4);
  transform: translateY(-2px);
}

.signup:hover a {
  color: white !important;
}

.menu {
  display: none;
}

.menu-button {

  background: linear-gradient(135deg, #7b09cd, #0d00ff) !important;
  border: none !important;
  padding: 10px 20px !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  border-radius: 15px !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 8px 32px rgba(123, 9, 205, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.menu-button span {
  color: white !important;
  font-size: 24px !important;
  padding: 0;
  margin: 0;
}

.menu-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.menu-button:hover::before {
  left: 100%;
}

.menu-button:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(123, 9, 205, 0.5),
    0 0 60px rgba(152, 16, 250, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
  background: linear-gradient(135deg, #0d00ff, #7b09cd) !important;
}

.menu-button span {
  color: black;
  font-size: 30px;
}

/* ========= first-section ======== */

.first-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  /* Lighter background gradient */
  background: linear-gradient(135deg, #1a1c4b 0%, #4a47a3 50%, #2e2b5f 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  height: 100vh;
  width: 100%;
  padding-bottom: 50px;
  overflow: hidden;
  gap: 30px;
}

.first-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(/images/background.gif) center/cover no-repeat;
  opacity: 0.15;
  z-index: 0;
}

.first-section>* {
  position: relative;
  z-index: 1;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.first-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(123, 9, 205, 0.2) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

.first-section p {
  font-size: 20px;
  max-width: 600px;
  line-height: 1.6;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.first-section button a {
  color: white;
  text-decoration: none;
}


.first-text {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 50px;
  margin-top: 20px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.15);
  /* backdrop-filter: blur(20px); */
  /* -webkit-backdrop-filter: blur(20px); */
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(255, 255, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: first-text 5s infinite, float 6s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.first-text::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }

  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

@keyframes float {

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

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

@keyframes first-text {
  0% {
    transform: scale(1) translateY(0);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 0 15px rgba(255, 255, 255, 0.1);
  }

  50% {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 255, 255, 0.3);
  }

  100% {
    transform: scale(1) translateY(0);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 0 15px rgba(255, 255, 255, 0.1);
  }
}

.first-text:hover {
  scale: calc(1.1);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 255, 255, 0.4);
}

.first-section h1 {
  padding-inline: 20px;
  font-size: 55px;
  font-weight: 800;
  background: linear-gradient(90deg, #e2dde5, #ff36f8, #e2dde5);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
  filter: drop-shadow(0 0 20px rgba(255, 54, 248, 0.4));
  line-height: 1.3;
  min-height: 143px;
  /* 55px * 1.3 * 2 lines = 143px */
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes shimmer {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

.learn-more-btn {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(123, 9, 205, 0.3) !important;
  margin-top: 1px !important;
  height: 65px;
  font-weight: 700 !important;
  border-radius: 50px !important;
  color: #7b09cd !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  animation: glowPulse 2s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(123, 9, 205, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}

.learn-more-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(123, 9, 205, 0.2), transparent);
  transition: left 0.6s;
}

.learn-more-btn:hover::before {
  left: 100%;
}

@keyframes glowPulse {

  0%,
  100% {
    box-shadow: 0 0 10px rgba(123, 9, 205, 0.3);
  }

  50% {
    box-shadow: 0 0 25px rgba(123, 9, 205, 0.6), 0 0 40px rgba(152, 16, 250, 0.4);
  }
}

.learn-more-btn:hover {
  transform: scale(1.08) translateY(-3px) !important;
  box-shadow: 0 15px 40px rgba(123, 9, 205, 0.5),
    0 0 60px rgba(152, 16, 250, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
  border-color: rgba(123, 9, 205, 0.6) !important;
  animation: none;
  background: rgba(255, 255, 255, 1) !important;
}

.learn-more-btn span {
  padding-left: 15px;
}

.wave-container {
  position: relative;
  top: -110px;
  margin-top: -5px;
  width: 100%;
  overflow: hidden;
  line-height: 0;

}

.wave-container svg {
  display: block;
  width: 100%;
  height: 120px;
  /* adjust wave height */
}

@keyframes waveMove {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50px);
  }
}


/* From Uiverse.io by adeladel522 */
.home-btn {
  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  /* padding-inline: 1.25rem; */
  padding: 0px !important;
  background-color: rgb(0 107 179);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffff;
  gap: 10px;
  height: 70px;
  width: 250px;
  font-weight: bold;
  border: 3px solid #ffffff4d;
  outline: none;
  overflow: hidden;
  font-size: 18px;
}

.icon {
  /* width: 24px; */
  height: 24px;
  transition: all 0.3s ease-in-out;
}

.home-btn:hover {
  transform: scale(1.05);
  border-color: #fff9;
}

.home-btn:hover .icon {
  transform: translate(4px);
}

.home-btn:hover::before {
  animation: shine 1.5s ease-out infinite;
}

.home-btn::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 30%,
      rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0) 70%);
  top: 0;
  left: -100px;
  opacity: 0.6;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}

/* ====== Social media links ====== */
/* From Uiverse.io by vinodjangid07 */
.whatsapp {
  width: 60px;
  height: 60px;
  position: fixed !important;
  bottom: 10px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: transparent;
  position: relative;
  overflow: hidden;
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 99999;
}

.svgContainer {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  backdrop-filter: blur(0px);
  letter-spacing: 0.8px;
  border-radius: 10px;
  transition: all 0.3s;
  border: 1px solid rgba(156, 156, 156, 0.466);
}

.BG {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #075e54;
  z-index: -1;
  border-radius: 10px;
  pointer-events: none;
  transition: all 0.3s;
}

.whatsapp:hover .BG {
  transform: rotate(35deg);
  transform-origin: bottom;
}

.whatsapp:hover .svgContainer {
  background-color: rgba(156, 156, 156, 0.466);
  backdrop-filter: blur(4px);
}

/* From Uiverse.io by vinodjangid07 */
.telegram {
  width: 45px;
  height: 45px;
  position: fixed !important;
  bottom: 10px;
  right: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: transparent;
  position: relative;
  overflow: hidden;
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 9999;
}

.telegram .svgContainer {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  backdrop-filter: blur(0px);
  letter-spacing: 0.8px;
  border-radius: 10px;
  transition: all 0.3s;
  border: 1px solid rgba(156, 156, 156, 0.466);
}

.telegram .BG {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #24a1de;
  z-index: -1;
  border-radius: 10px;
  pointer-events: none;
  transition: all 0.3s;
}

.telegram:hover .BG {
  transform: rotate(35deg);
  transform-origin: bottom;
}

.telegram:hover .svgContainer {
  border: 1px solid rgba(226, 226, 226, 0.466);
  background-color: rgba(204, 204, 204, 0.466);
  backdrop-filter: blur(4px);
}

/* From Uiverse.io by vinodjangid07 */
.instagram {
  width: 45px;
  height: 45px;
  position: fixed !important;
  bottom: 10px;
  right: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: transparent;
  position: relative;
  overflow: hidden;
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 9999;
}

.svgContainer {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  backdrop-filter: blur(0px);
  letter-spacing: 0.8px;
  border-radius: 10px;
  transition: all 0.3s;
  border: 1px solid rgba(156, 156, 156, 0.466);
}

.instagram .BG {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #ea4c89;
  z-index: -1;
  border-radius: 10px;
  pointer-events: none;
  transition: all 0.3s;
}

.instagram:hover .BG {
  transform: rotate(35deg);
  transform-origin: bottom;
}

.instagram:hover .svgContainer {
  border: 1px solid #ffb4cf;
  background-color: rgba(216, 216, 216, 0.466);
  backdrop-filter: blur(4px);
}




/* =========== Second section ============ */

.second-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 5px;
  /* padding: 0 50px; */
  margin-top: -80px;
  position: relative;
  z-index: 10;
}

.stat-card {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-bottom: 15px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: both;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(123, 9, 205, 0.2);
  border-color: rgba(123, 9, 205, 0.3);
}

/* Icon size adjustments */
.icon-wrapper {
  width: 48px;
  height: 48px;
  font-size: 24px;
  margin-right: 15px;
}

/* Text size adjustments */
.stat-content h2 {
  font-size: 24px;
  font-weight: 800;
  color: #333;
}

.stat-content p {
  font-size: 13px;
  color: #666;
}

@media (max-width: 768px) {
  .second-section {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: -40px;
  }
}


.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(123, 9, 205, 0.2);
  border-color: rgba(123, 9, 205, 0.3);
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 30px;
  color: white;
  flex-shrink: 0;
}

.student-icon {
  background: linear-gradient(135deg, #667eea, #764ba2);
  box-shadow: 0 8px 20px rgba(118, 75, 162, 0.3);
}

.expert-icon {
  background: linear-gradient(135deg, #ff9a9e, #fecfef);
  box-shadow: 0 8px 20px rgba(255, 154, 158, 0.3);
}

.course-icon {
  background: linear-gradient(135deg, #a18cd1, #fbc2eb);
  box-shadow: 0 8px 20px rgba(161, 140, 209, 0.3);
}

.rate-icon {
  background: linear-gradient(135deg, #84fab0, #8fd3f4);
  box-shadow: 0 8px 20px rgba(132, 250, 176, 0.3);
}

.stat-content h2 {
  font-size: 28px;
  font-weight: 800;
  color: #333;
  margin: 0;
  line-height: 1.2;
}

.stat-content p {
  font-size: 14px;
  color: #666;
  margin: 5px 0 0 0;
  font-weight: 500;
}

.card {
  display: flex;
  margin: 10px;
  padding: 20px;
  flex-direction: row;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(123, 9, 205, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: both;
  border: 1px solid rgba(123, 9, 205, 0.1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #7b09cd, #0d00ff);
  transform: scaleY(0);
  transition: transform 0.4s ease;
}

.card:hover::before {
  transform: scaleY(1);
}

.second-section .card:nth-child(1) {
  animation-delay: 0.1s;
}

.second-section .card:nth-child(2) {
  animation-delay: 0.2s;
}

.second-section .card:nth-child(3) {
  animation-delay: 0.3s;
}

.second-section .card:nth-child(4) {
  animation-delay: 0.4s;
}


.card:hover {
  transform: translateY(-12px) scale(1.02);
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 20px 60px rgba(123, 9, 205, 0.25),
    0 0 40px rgba(152, 16, 250, 0.3),
    0 0 0 1px rgba(123, 9, 205, 0.2);
  border-color: rgba(123, 9, 205, 0.3);
}

.card span {
  transition: 0.3s ease-in-out;
}

.card:hover span {
  transform: scale(1.5) rotate(10deg);
  filter: drop-shadow(0 0 10px rgba(123, 9, 205, 0.6));
}


.card span {
  margin-bottom: 10px;
  color: #7b09cd;
}

.price {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(123, 9, 205, 0.9);
  /* purple with transparency */
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-weight: bold;
  font-size: 17px;
  animation: priceGlow 2s ease-in-out infinite;
}

@keyframes priceGlow {

  0%,
  100% {
    box-shadow: 0 0 10px rgba(123, 9, 205, 0.5);
  }

  50% {
    box-shadow: 0 0 20px rgba(123, 9, 205, 0.8), 0 0 30px rgba(152, 16, 250, 0.6);
  }
}

.card h2 {
  font-weight: 700;
}

.offcanvas {
  width: 60% !important;

}

.offcanvas-body {
  display: flex;
  flex-direction: column;
  z-index: 9999 !important;
}

.offcanvas-body a {
  color: black;
  text-decoration: none;
  padding: 5px;
  margin-bottom: 15px;
}

.offcanvas-body li {
  list-style: none;
}


/* ==========Third Section =========== */
.third-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, #fafbff 0%, #f5f7ff 100%);
  margin-top: 0;
  padding-bottom: 15px;
  overflow: hidden;
}

.third-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 15% 25%, rgba(123, 9, 205, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(63, 16, 250, 0.04) 0%, transparent 50%);
  z-index: 0;
}

.third-section>* {
  position: relative;
  z-index: 2;
}

.third-section h1 {
  font-weight: 800;
  font-size: 42px;
  margin-bottom: 15px;
  color: #1a1c4b;
  text-align: center;
}

.DevAcademy {
  background: linear-gradient(135deg, #7b09cd, #3f10fa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.third-section>p {
  font-size: 18px;
  color: #666;
  margin-bottom: 60px;
  text-align: center;
  max-width: 600px;
}

.third-section .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 15px;
  padding: 0 50px;
  width: 100%;
  max-width: 1200px;
  margin-top: -10px;
}

.third-section .card {
  text-align: left;
  border-radius: 24px;
  background: white;
  padding: 10px 20px;
  border: 1px solid rgba(123, 9, 205, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 5px;
  height: 100%;
}

.third-section .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #7b09cd, #3f10fa);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.third-section .card:hover::before {
  opacity: 1;
}

.third-section .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(123, 9, 205, 0.15);
  border-color: rgba(123, 9, 205, 0.15);
}

.third-section .card span {
  font-size: 42px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(123, 9, 205, 0.1), rgba(63, 16, 250, 0.1));
  color: #7b09cd;
  margin-bottom: 5px;
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.third-section .card:hover span {
  transform: scale(1.05);
  background: linear-gradient(135deg, #7b09cd, #3f10fa);
  color: white;
  box-shadow: 0 8px 25px rgba(123, 9, 205, 0.3);
}

.third-section .card h4 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1c4b;
  margin: 0;
  line-height: 1.3;
}

.third-section .card p {
  font-size: 15px;
  color: #666;
  margin: 0;
  line-height: 1.7;
}

.carousel-item {
  width: 100% !important;
}

.card2 {
  background-color: #f9b1fabc;
  padding: 10px;
  font-size: 25px !important;
  border-radius: 5px;
  animation: iconGlow 2s ease-in-out infinite;
}

@keyframes iconGlow {

  0%,
  100% {
    box-shadow: 0 0 10px rgba(249, 177, 250, 0.5);
    background-color: #f9b1fabc;
  }

  50% {
    box-shadow: 0 0 20px rgba(249, 177, 250, 0.8), 0 0 30px rgba(152, 16, 250, 0.4);
    background-color: #fbc4fcdc;
  }
}

/* ============Fourth Section ============= */
.fourth-section {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 20px;
  padding-top: 80px;
  color: white;
  background-color: #3f10fa;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}

.fourth-section h2 {
  font-weight: 700;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {

  0%,
  100% {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
  }

  50% {
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5), 0 0 40px rgba(255, 255, 255, 0.3);
  }
}

.fourth-section p {
  font-size: 15px;
}

.cta-signup-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 30px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  color: #3f10fa;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50px;
  margin-bottom: 20px;
  margin-top: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3),
    0 0 0 3px rgba(255, 255, 255, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.8);
  animation: btnPulse 1.5s ease-in-out infinite;
}

@keyframes btnPulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3),
      0 0 0 3px rgba(255, 255, 255, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }

  50% {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.5),
      0 0 0 6px rgba(255, 255, 255, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }
}

.cta-signup-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transition: left 0.6s;
}

.cta-signup-btn:hover::before {
  left: 100%;
}

.cta-signup-btn .btn-icon {
  font-size: 24px;
  animation: rocketBounce 2s ease-in-out infinite;
}

.cta-signup-btn .btn-text {
  position: relative;
  z-index: 1;
}

.cta-signup-btn .btn-arrow {
  font-size: 20px;
  transition: transform 0.3s ease;
  z-index: 1;
}

.cta-signup-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 60px rgba(255, 255, 255, 0.6),
    0 0 0 4px rgba(255, 255, 255, 0.9),
    0 0 80px rgba(255, 255, 255, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
  border-color: rgba(255, 255, 255, 1);
  animation: none;
}

.cta-signup-btn:hover .btn-arrow {
  transform: translateX(5px);
}

.cta-signup-btn:active {
  transform: translateY(-2px) scale(1.02);
}

@keyframes rocketBounce {

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

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

.fourth-section button a {
  color: black;
  text-decoration: none;
}


.copyright {
  background-color: rgb(30, 29, 29);
  height: 60px;
  color: white;
  text-align: center;
  padding-top: 22px;
  font-size: 13px;
  border-top: 4px solid #7b09cd;
}

/* ============ Fifth Section (Popular Courses) ============= */
.five-section {
  display: flex;
  flex-direction: column;
  margin-top: 0;
  padding: 80px 0;
  text-align: center;
  background-color: #f8f9ff;
  position: relative;
}

.five-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 0% 0%, rgba(123, 9, 205, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(63, 16, 250, 0.03) 0%, transparent 50%);
  z-index: 0;
}

.five-section>* {
  position: relative;
  z-index: 1;
}

.five-section h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #1a1c4b 0%, #4a47a3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.five-section p {
  font-size: 18px;
  color: #666;
  margin-bottom: 60px;
}

.courses {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  padding: 0 50px;
  max-width: 1400px;
  margin: 0 auto 50px;
  width: 100%;
}

.five-section .course {
  border-radius: 24px;
  overflow: hidden;
  max-width: 400px;
  position: relative;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.five-section .course:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(123, 9, 205, 0.15);
  border-color: rgba(123, 9, 205, 0.2);
}

.five-section .course .image-box {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.five-section .course .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.five-section .course:hover .image-box img {
  transform: scale(1.1);
}

/* .five-section .course .price {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.95);
  color: #7b09cd;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
} */

.five-section .course h5 {
  font-size: 20px;
  /* Slightly smaller font */
  font-weight: 700;
  color: #1a1c4b;
  margin: 15px 15px 5px;
  /* Reduced margins */
  line-height: 1.3;
}

.five-section .course .description {
  font-size: 14px;
  color: #666;
  margin: 0 15px 15px;
  /* Reduced margins */
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* Show fewer lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.five-section .course .information {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
  /* Reduced margin */
  color: #666;
  font-size: 13px;
  font-weight: 500;
}

.five-section .course .information p {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
}

.five-section .course .information span {
  font-size: 18px;
  color: #7b09cd;
}

.course-button {
  background: linear-gradient(135deg, #7b09cd 0%, #3f10fa 100%) !important;
  border: none !important;
  padding: 12px 30px !important;
  border-radius: 50px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(123, 9, 205, 0.3);
  /* margin-top: auto; */
}

.course-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(123, 9, 205, 0.4);
  filter: brightness(1.1);
}

/* Animation delays for cards */
.five-section .course:nth-child(1) {
  animation-delay: 0.1s;
}

.five-section .course:nth-child(2) {
  animation-delay: 0.2s;
}

.five-section .course:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.course:hover {
  transform: scale(1.07);
  box-shadow: 0 25px 50px rgba(63, 16, 250, 0.4), 0 0 40px rgba(123, 9, 205, 0.3);
}

.course img {
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  transition: 0.3s ease-in-out;
}

.image-box {
  overflow: hidden;
}

.course:hover img {
  transform: scale(1.02) rotate(2deg);

}

.course .category {
  color: #3f10fa;
  font-size: 10px;
  text-align: start !important;
  margin-top: 5px;
  margin-left: 4px;
  margin-bottom: -10px;
}

hr {
  width: 70px;
  height: 6px;
  border: none;
  border-radius: 2px;
  background: linear-gradient(90deg, #7b09cd, #0d00ff, #7b09cd);
  background-size: 200% auto;
  margin: 12px auto;
  animation: shimmer 3s linear infinite;
  box-shadow: 0 0 10px rgba(123, 9, 205, 0.4);
}

.course h5 {
  font-weight: 700;
  font-size: 17px;
  text-align: start;
  margin-left: 10px;
}

.description {
  font-size: 12px;
  margin-inline: 10px;
  text-align: justify;
  color: #828181;
}

.powered {
  font-size: 13px;
  color: black;
  text-align: start;
  margin-top: 30px;
  margin-bottom: -5px;
  margin-left: 20px;
}

.information {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.information p {
  font-size: 13px;
  display: flex;
  align-items: center;

}

.information span {
  padding-right: 5px;
  transition: all 0.3s ease;
}

.course:hover .information span {
  color: #7b09cd;
  transform: scale(1.1);
}

.course .btn-primary {
  transition: all 0.3s ease;
  animation: subtleGlow 3s ease-in-out infinite;
}

@keyframes subtleGlow {

  0%,
  100% {
    box-shadow: 0 0 10px rgba(13, 110, 253, 0.3);
  }

  50% {
    box-shadow: 0 0 20px rgba(13, 110, 253, 0.6), 0 0 30px rgba(13, 110, 253, 0.3);
  }
}

.course .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(13, 110, 253, 0.8), 0 0 40px rgba(13, 110, 253, 0.5);
  animation: none;
}

.view-courses {
  background-color: #0d00ff !important;
  color: #f1f1f1 !important;
  padding-inline: 30px !important;
  margin-bottom: 50px;
  transition: 0.3s ease-in-out;
}


.view-courses:hover {
  background-color: #0d04ac !important;

}

.lang-switch {
  position: fixed;
  bottom: 100px;
  /* Above WhatsApp button */
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 200;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ffffff, #f1f1f1);
  border-radius: 50px;
  padding: 8px 14px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  box-shadow: 0 0 15px rgba(0, 123, 255, 0.4);
  transition: all 0.3s ease;
  animation: floatLang 3s ease-in-out infinite;
}

.lang-btn img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
}

.lang-btn:hover {
  transform: scale(1.08);
  background: linear-gradient(135deg, #007bff, #00a8ff);
  color: white;
  box-shadow: 0 0 25px rgba(0, 123, 255, 0.8);
}

.lang-btn:hover img {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.9);
}

@keyframes floatLang {

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

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


/* =============FAQ section ============ */
/* ========== FAQ Section ========== */
.faq-section {
  max-width: 900px;
  margin: 0px auto;
  padding: 60px 40px;
  background: #ffffff;
  border-radius: 24px;
  text-align: center;
}

.faq-section h4 {
  color: #7b09cd;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.faq-section h1 {
  font-weight: 800;
  font-size: 42px;
  margin-bottom: 50px;
  color: #1a1c4b;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-question {
  width: 100%;
  background: #f8f9ff;
  border: 2px solid rgba(123, 9, 205, 0.1);
  outline: none;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  color: #1a1c4b;
  padding: 22px 28px;
  border-radius: 16px;
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.faq-question:hover {
  background: #f0f2ff;
  box-shadow: 0 6px 20px rgba(123, 9, 205, 0.12);
  transform: translateY(-2px);
  border-color: rgba(123, 9, 205, 0.25);
}

.faq-question[aria-expanded="true"] {
  background: linear-gradient(135deg, rgba(123, 9, 205, 0.08), rgba(63, 16, 250, 0.08));
  border-color: rgba(123, 9, 205, 0.3);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.faq-answer {
  text-align: left;
  background: #fafbff;
  border: 2px solid rgba(123, 9, 205, 0.1);
  border-top: none;
  padding: 25px 28px;
  border-radius: 0 0 16px 16px;
  margin-top: 0;
  animation: fadeIn 0.3s ease-in;
  color: #555;
  line-height: 1.7;
  font-size: 15px;
}

.arrow {
  width: 12px;
  height: 12px;
  border-right: 2.5px solid #7b09cd;
  border-bottom: 2.5px solid #7b09cd;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
}

.faq-question[aria-expanded="true"] .arrow {
  transform: rotate(225deg);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}









/* ====== RESPONSIVE PART ====== */

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 25%;
    width: 50%;
    background-color: rgb(255, 255, 255);
    text-align: center;
    border-radius: 20px;
    align-items: center;
    padding: 20px 0px;
    padding-left: 5px !important;
    z-index: 1000;
  }

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

  .menu {
    display: flex;
    margin-top: -10px;
    align-items: center;
    justify-content: center;
    z-index: 9999 !important;
  }

  .first-section {
    height: 70vh;
    padding-inline: 40px;
    margin: 0;
  }

  .first-section h1 {
    font-size: 30px;
    width: 100%;
  }

  .first-section p {
    font-size: 18px;
    margin-bottom: -10px;
  }

  .first-section button a {
    color: black;
    padding-bottom: 10px;
    text-decoration: none;
  }

  .first-section button a span {
    transform: translateY(5px);
  }

  .home-btn {
    font-size: 20px;
    padding: 0 20px;
    margin-bottom: 30px;
    height: 60px;
    width: 230px;
  }

  .second-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .third-section {
    text-align: center;
  }

  .third-section .cards {
    display: grid;
    grid-template-columns: 1fr;
    padding-inline: 50px;
    width: 100%;
  }

  .courses {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-inline: 50px;
    margin-bottom: 50px;

  }

  /* Hide the button on mobile, make entire card clickable */
  .course-button {
    display: none !important;
  }
}

/* Course card link styling */
.course-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  flex: 1;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(123, 9, 205, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.course-card-link:hover {
  text-decoration: none;
  color: inherit;
}

.course-card-link:active {
  transform: scale(0.98);
  opacity: 0.9;
}

/* Pulsing glow animation for mobile only */
@media (max-width: 768px) {
  .course-card-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    box-shadow: 0 0 0 0 rgba(123, 9, 205, 0.4);
    animation: cardPulse 2.5s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
  }
}

@keyframes cardPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(123, 9, 205, 0.4),
      0 0 15px rgba(123, 9, 205, 0.2);
  }

  50% {
    box-shadow: 0 0 0 4px rgba(123, 9, 205, 0.1),
      0 0 25px rgba(123, 9, 205, 0.4),
      0 0 40px rgba(152, 16, 250, 0.3);
  }
}

/* Show button on desktop, hide card link pointer on desktop */
@media (min-width: 769px) {
  .course-card-link {
    pointer-events: none;
  }

  .course-button {
    display: flex !important;
    justify-content: center;
    align-items: center;
  }
}

/* Interactive Section Styles */
.interactive-section {
  padding: 80px 50px;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
  color: white;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.interactive-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.interactive-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.interactive-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(99, 102, 241, 0.2);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 50px;
  color: #818cf8;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.interactive-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.interactive-subtitle {
  font-size: 20px;
  color: #94a3b8;
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.interactive-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.interactive-feature {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 16px;
  transition: all 0.3s ease;
  text-align: left;
}

.interactive-feature:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon-wrapper {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.feature-icon-wrapper .material-symbols-outlined {
  color: white;
  font-size: 28px;
}

.interactive-feature h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #f8fafc;
}

.interactive-feature p {
  color: #94a3b8;
  font-size: 16px;
  line-height: 1.5;
}

.interactive-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.interactive-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.6);
  color: white;
}

.interactive-cta .material-symbols-outlined {
  font-size: 24px;
}

/* RTL Support for Arabic */
[dir='rtl'] .interactive-feature {
  text-align: right;
}

[dir='rtl'] .interactive-badge {
  flex-direction: row-reverse;
}

[dir='rtl'] .interactive-cta {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .interactive-section {
    padding: 60px 20px;
  }

  .interactive-title {
    font-size: 36px;
  }

  .interactive-subtitle {
    font-size: 18px;
  }
}

/* Cart Badge & Link Styles */
.cart-link {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #ef4444;
  /* danger color */
  color: white;
  border-radius: 50%;
  padding: 0;
  font-size: 11px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  border: 1.5px solid white;
  z-index: 10;
  pointer-events: none;
}

.badge-pulse {
  animation: badge-pop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes badge-pop {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.4);
  }

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

/* Floating button badge override */
.floating-checkout-btn .cart-badge {
  top: 0;
  right: 0;
  min-width: 22px;
  height: 22px;
  font-size: 13px;
}

/* Quiz System Section */
.quiz-section {
  padding: 100px 50px;
  background: #f8fafc;
  position: relative;
  text-align: center;
}

.quiz-container {
  max-width: 1200px;
  margin: 0 auto;
}

.quiz-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(123, 9, 205, 0.1);
  border: 1px solid rgba(123, 9, 205, 0.2);
  border-radius: 50px;
  color: #7b09cd;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.quiz-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #0f172a;
}

.quiz-subtitle {
  font-size: 20px;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.quiz-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.quiz-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #f1f5f9;
  text-align: left;
}

.quiz-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(123, 9, 205, 0.1);
  border-color: rgba(123, 9, 205, 0.2);
}

.quiz-card:hover .card-icon {
  transform: rotate(5deg) scale(1.05);
  box-shadow: 0 12px 24px rgba(123, 9, 205, 0.3);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #7b09cd 0%, #9d4edd 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 16px rgba(123, 9, 205, 0.2);
  transition: all 0.3s ease;
}

.card-icon .material-symbols-outlined {
  color: white;
  font-size: 32px;
}

.quiz-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.quiz-card p {
  color: #64748b;
  font-size: 16px;
  line-height: 1.6;
}

.quiz-action {
  margin-top: 40px;
}

.quiz-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, #7b09cd 0%, #9d4edd 100%);
  color: white !important;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(123, 9, 205, 0.3);
}

.quiz-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(123, 9, 205, 0.5);
  color: white !important;
}

.quiz-btn .material-symbols-outlined {
  font-size: 24px;
}

@media (max-width: 768px) {
  .quiz-section {
    padding: 60px 20px;
  }

  .quiz-title {
    font-size: 36px;
  }

  .quiz-card {
    padding: 30px;
  }
}