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

body {
  font-family: Poppins, sans-serif;
  background: #ffffff;
  color: #1f2937;
}

/* CONTAINER */
.container {
  width: 100%;
  margin: auto;
  padding: 0 20px;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
}

.center {
  text-align: center;
}

/* ================= HEADER ================= */
.header-sec {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e5e7eb;
  z-index: 10;
}

.header-sec-inner {
  height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-sec .header-logo {
  height: 40px;
}

.header-sec .header-logo img{
  height: 40px;
}

.header-sec .header-btn {
  padding: 8px 12px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fb7185, #f43f5e);
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.header-sec .header-btn svg {
  height: 16px;
  width: 16px;
}

/* ================= HERO ================= */
.sec-1 {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(180deg, #fff1f5, #ffffff);
  overflow: hidden;
}

.sec-1-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.sec-1-blob-pink {
  width: 300px;
  height: 300px;
  background: rgba(251, 113, 133, 0.2);
  top: 50px;
  right: -100px;
}

.sec-1-blob-blue {
  width: 400px;
  height: 400px;
  background: rgba(6, 182, 212, 0.2);
  bottom: -150px;
  left: -150px;
}

.sec-1-content {
  text-align: center;
  max-width: 700px;
}

.sec-1-content .sec-1-head {
  font-size: 48px;
  margin: 24px 0;
  font-weight: 700;
}

.sec-1-content .sec-1-head .highlight {
  display: block;
  color: #fb7185;
}

.sec-1-content .sec-1-content {
  max-width: 700px;
  margin: auto;
  color: #6b7280;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 32px;
}

.sec-1-content p strong {
  color: #1d2030;
}

.sec-1-badge {
  background: #ffe4e6;
  padding: 8px 18px;
  width: fit-content;
  margin: auto;
  border-radius: 999px;
  font-weight: 500;
  color: #e11d48;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  line-height: 20px;
}

.sec-1-badge svg {
  width: 16px;
  height: 16px;
  stroke: #e11d48;
}

.sec-1-whatsapp-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 28px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fb7185, #f43f5e);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: auto;
  transition:all 0.3s ease;
}

.sec-1-whatsapp-btn:hover {
  color: #fff;
  transform: translateY(-6px);
}

.sec-1-whatsapp-btn svg {
  height: 16px;
  width: 16px;
}

/* STATS */
.sec-1-stats {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.sec-1-stat-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.sec-1-stat-card h3 {
  font-size: 30px;
  line-height: 36px;
}

@media (max-width: 768px) {
  .sec-1 {
    padding: 80px 0 96px 0;
  }

  .sec-1-content .sec-1-head {
    font-size: 34px;
  }
}

@media (max-width: 500px) {
  .sec-1-stats {
    grid-template-columns: 1fr;
  }
}

/* ================= SECTIONS ================= */
.sec-2 {
  background-color: #f9f9fa;
}

.sec-2 {
  padding: 80px 0;
}

.sec-2-title {
  text-align: center;
  font-size: 36px;
}

.sec-2-title {
  margin-bottom: 16px;
}

.sec-2-title .highlight {
  color: #fb7185;
}

.sec-2-subtitle {
  text-align: center;
  color: #6b7280;
  margin-bottom: 50px;
}

/* WHY US GRID */
.sec-2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sec-2-card {
  position: relative;
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  overflow: hidden;
}

.sec-2-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.sec-2-card.red::before {
  background: radial-gradient(
    600px circle at var(--mouse-x) var(--mouse-y),
    rgb(248 95 119 / 6%),
    transparent 30%
  );
}

.sec-2-card.blue::before {
  background: radial-gradient(
    600px circle at var(--mouse-x) var(--mouse-y),
    rgb(0 199 185 / 6%),
    transparent 30%
  );
}

.sec-2-card:hover::before {
  opacity: 1;
}

.sec-2-card h4 {
  margin-bottom: 8px;
  font-size: 18px;
}

.sec-2-card p {
  color: #65758b;
  font-size: 14px;
  line-height: 20px;
}

.sec-2-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}

.sec-2-card-icon-red {
  background-color: #ffe6ea;
}

.sec-2-card-icon-red svg {
  stroke: #ff6680;
}

.sec-2-card-icon-blue {
  background-color: #00bdd61a;
}

.sec-2-card-icon-blue svg {
  stroke: #03bed6;
}

.sec-2-card:hover {
  transform: translateY(-6px);
}

.sec-2-info-card {
  margin-top: 48px;
  background: linear-gradient(
    135deg,
    hsl(187 100% 42%) 0%,
    hsl(175 100% 40%) 100%
  );
  display: flex;
  flex-direction: column;
  padding: 32px;
  border-radius: 24px;
  color: #fff;
  text-align: center;
}

.sec-2-info-card-icon-sec {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.sec-2-info-card h3 {
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 32px;
}

@media (max-width: 768px) {
  .sec-2-title {
    font-size: 24px;
    line-height: 32px;
  }
}

/* COURSES */
/* ================= SEC-3 ================= */
.sec-3 {
  padding: 80px 0;
}

.sec-3-header {
  text-align: center;
  margin-bottom: 48px;
}

.sec-3-title {
  font-size: 36px;
  font-weight: 800;
}

.sec-3-title .highlight {
  color: #00bdd6;
}

.sec-3-subtitle {
  /* max-width: 520px; */
  margin: 12px auto 0;
  color: #6b7280;
}

.sec-3-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* CARD */
.sec-3-card {
  position: relative;
  background: #ffffff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.sec-3-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.sec-3-card:hover {
  transform: translateY(-6px);
}

.sec-3-card:hover::before {
  opacity: 1;
}

.sec-3-card.primary::before {
  background: radial-gradient(
    600px circle at var(--mouse-x) var(--mouse-y),
    rgb(248 95 119 / 6%),
    transparent 30%
  );
}

.sec-3-card.accent::before {
  background: radial-gradient(
    600px circle at var(--mouse-x) var(--mouse-y),
    rgb(0 199 185 / 6%),
    transparent 30%
  );
}

/* Highlight */
.sec-3-card-highlight {
  border: 2px solid #06b6d4;
}

.sec-3-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(
    135deg,
    hsl(187 100% 42%) 0%,
    hsl(175 100% 40%) 100%
  );
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
}

/* Header */
.sec-3-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.sec-3-card-title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
}

/* Icons */
.sec-3-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sec-3-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 2;
}

.sec-3-icon-primary {
  background: #ffe5ea;
  color: #ff6680;
}

.sec-3-icon-accent {
  background: rgba(6, 182, 212, 0.12);
  color: #06b6d4;
}

/* List */
.sec-3-list {
  list-style: none;
}

.sec-3-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: #6b7280;
  font-size: 14px;
}

/* Check */
.sec-3-check {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  position: relative;
  margin-top: 2px;
}

.sec-3-check.primary {
  border-color: #ff6680;
  color: #ff6680;
}

.sec-3-check.accent {
  border-color: #06b6d4;
  color: #06b6d4;
}

/* Responsive */
@media (max-width: 768px) {
  .sec-3-grid {
    grid-template-columns: 1fr;
  }

  .sec-3-title {
    font-size: 28px;
  }
}

/* ================= SEC-4 CTA ================= */
.sec-4 {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

/* Background layers */
.sec-4-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #fb7185, #f43f5e);
  opacity: 0.06;
}

.sec-4-bg-blob {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: rgba(244, 63, 94, 0.15);
  border-radius: 50%;
  filter: blur(120px);
}

/* Content */
.sec-4-container {
  position: relative;
}

.sec-4-content {
  max-width: 720px;
  margin: auto;
  text-align: center;
}

.sec-4-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
}

.sec-4-title .highlight {
  display: block;
  margin-top: 10px;
  color: #f43f5e;
}

.sec-4-desc {
  margin: 20px auto 32px;
  font-size: 18px;
  color: #6b7280;
  max-width: 550px;
}

/* Actions */
.sec-4-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Buttons */
.sec-4-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.25s ease;
}

.sec-4-btn:hover{
	color: #fff;
}

.sec-4-btn svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

/* Primary */
.sec-4-btn-primary {
  background: linear-gradient(135deg, #fb7185, #f43f5e);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(244, 63, 94, 0.35);
}

.sec-4-btn-primary:hover {
  transform: translateY(-2px);
}

/* Outline */
.sec-4-btn-outline {
  background: #ffffff;
  border: 2px solid #00bdd6;
  color: #00bdd6;
  transition: background 0.3s ease;
}

.sec-4-btn-outline:hover {
  background: #00bdd6;
  color: #ffffff;
}

/* Note */
.sec-4-note {
  margin-top: 28px;
  font-size: 14px;
  color: #6b7280;
}

/* Responsive */
@media (max-width: 768px) {
  .sec-4 {
    padding: 70px 0;
  }

  .sec-4-title {
    font-size: 28px;
  }

  .sec-4-desc {
    font-size: 16px;
  }
}

/* ================= FOOTER ================= */
.footer-sec {
  background: #1d2030;
  color: #ffffff;
  padding: 64px 0 40px;
}

.footer-sec-container {
  text-align: center;
}

/* Main */
.footer-sec-main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Logo */
.footer-sec-logo-box {
  background: #ffffff;
  padding: 10px;
  border-radius: 14px;
  margin-bottom: 16px;
}

.footer-sec-logo {
  height: 48px;
  width: auto;
}

/* Description */
.footer-sec-desc {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
  font-size: 16px;
}

.footer-sec .sec-footer-links a {
  color: #ffffff80;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-sec .sec-footer-links a:hover {
  color: #ff3b63;
}

.footer-sec .sec-footer-contact-info {
	display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-sec .sec-footer-contact-info a {
  color: #ffffff80;
  text-decoration: none;
  transition: color 0.2s ease;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
}

.footer-sec .sec-footer-contact-info a:hover {
  color: #ffffff;
}	

/* Info */
.footer-sec-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-sec-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-sec-info-item svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}

/* Bottom */
.footer-sec-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.floating-whatsapp-icon{
	display: block; 
	position: fixed; 
	bottom: 20px; 
    right: 20px;
    z-index: 9999;
}

.floating-whatsapp-icon svg{
	transition: all .3s ease-in-out;
}

.floating-whatsapp-icon svg:hover{
	transform: scale(1.1)
}


/* Responsive */
@media (min-width: 768px) {
  .footer-sec-info {
    flex-direction: row;
    justify-content: center;
    gap: 32px;
  }
}

.delay-1 {
  animation-delay: 0.1s;
}
.delay-2 {
  animation-delay: 0.2s;
}
.delay-3 {
  animation-delay: 0.3s;
}
.delay-4 {
  animation-delay: 0.4s;
}

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

/* RESPONSIVE */
@media (max-width: 768px) {
  .sec-2-grid {
    grid-template-columns: 1fr;
  }

  .sec-1-content h1 {
    font-size: 32px;
  }
}

/* animation on scroll */
/* ===============================
   SCROLL REVEAL (LAYOUT)
================================ */
.reveal {
  opacity: 0;
  transform: translateY(48px) scale(0.96);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Direction variants */
.reveal-left {
  transform: translateX(-56px) scale(0.97);
}

.reveal-right {
  transform: translateX(56px) scale(0.97);
}

.reveal-scale {
  transform: scale(0.92);
}

.reveal-left.active,
.reveal-right.active,
.reveal-scale.active {
  transform: none;
}

/* ===============================
   TEXT WORD REVEAL
================================ */
.text-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.55s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.text-word.active {
  opacity: 1;
  transform: translateY(0);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .text-word {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
