/* ===== ROOT VARIABLES ===== */
:root {
  --blue: #0052CC;
  --blue-dark: #003380;
  --orange: #FF6B00;
  --yellow: #FFD700;
  --white: #ffffff;
  --light: #F7FAFC;
  --dark: #1a1a2e;
  --text: #2d3748;
  --text-light: #718096;
  --shadow: 0 4px 20px rgba(0, 82, 204, 0.15);
  --radius: 12px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

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

.text-orange {
  color: var(--orange);
}

.text-yellow {
  color: var(--yellow);
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #FF6B00, #FF8C42);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.5);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* PREMIUM GLOW BUTTON (Uiverse.io Style) */
.glow-btn-container {
  position: relative;
  display: inline-block;
  padding: 3px;
  background: linear-gradient(90deg, #03a9f4, #f441a5);
  border-radius: 50px;
  /* Adjusted to match site's rounded buttons */
  transition: all 0.4s ease;
  z-index: 1;
}

.glow-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  background-color: #000;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
}

.glow-btn-container::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 50px;
  z-index: -1;
  filter: blur(0);
  transition: filter 0.4s ease;
  background: linear-gradient(90deg, #03a9f4, #f441a5);
}

.glow-btn-container:hover::before {
  filter: blur(1.2rem);
}

.glow-btn-container:active::before {
  filter: blur(0.2rem);
}

.glow-btn-container:hover .glow-btn {
  background-color: #111;
}

.course-card .glow-btn-container {
  margin-top: auto;
}

/* SECTION HEADER */
.section-hd {
  text-align: center;
  margin-bottom: 50px;
}

.section-hd h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark);
  margin: 10px 0;
}

.section-hd p {
  color: var(--text-light);
  font-size: 1.05rem;
}

.section-hd.light h2 {
  color: #fff;
}

.section-hd.light p {
  color: rgba(255, 255, 255, 0.8);
}

.tag {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  border-bottom-color: var(--orange);
}

.nav-wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-wrap {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--orange);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fdf001;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.3) translateY(-2px);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  border: none;
  outline: none;
}

.brand-name {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue-dark);
}

.brand-sub {
  display: block;
  font-size: 0.65rem;
  color: var(--orange);
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 5px;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--blue);
  background: rgba(0, 82, 204, 0.08);
}

.btn-enroll {
  background: linear-gradient(135deg, var(--orange), #FF8C42);
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.btn-enroll:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--blue-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* HERO */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #003380 0%, #0052CC 50%, #1565C0 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 85px;
}

.hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  animation: float 6s ease-in-out infinite;
}

.shape.s1 {
  width: 500px;
  height: 500px;
  background: var(--yellow);
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.shape.s2 {
  width: 300px;
  height: 300px;
  background: var(--orange);
  bottom: -100px;
  left: -50px;
  animation-delay: 2s;
}

.shape.s3 {
  width: 200px;
  height: 200px;
  background: #fff;
  top: 50%;
  left: 40%;
  animation-delay: 4s;
}

@keyframes float {

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

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

.hero-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 215, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.4);
  color: var(--yellow);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 15px;
}

.hero-tagline {
  color: var(--yellow);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.hero-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}

.hero-trust i {
  color: var(--yellow);
}

.hero-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 35px 30px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  animation: hero-card-float 8s ease-in-out infinite;
  transition: transform 0.5s ease;
}

.hero-card::after {
  content: "";
  position: absolute;
  top: -110%;
  left: -210%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(30deg);
  transition: all 0.6s ease;
  pointer-events: none;
  animation: shine 10s infinite;
}

@keyframes shine {
  0% {
    left: -210%;
    top: -110%;
  }

  10% {
    left: 110%;
    top: 110%;
  }

  100% {
    left: 110%;
    top: 110%;
  }
}

@keyframes hero-card-float {

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

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

.hero-card:hover {
  transform: translateY(-5px) rotateX(5deg) rotateY(5deg);
}

.hero-logo-wrap {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--yellow);
  margin: 0 auto 20px;
  background: #fdf001;
}

.hero-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.3) translateY(-3px);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  border: none;
  outline: none;
}

.hero-card h3 {
  font-size: 1rem;
  opacity: 0.8;
  font-weight: 400;
}

.hero-card h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 5px 0;
}

.hero-card p {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 15px;
}

.hero-courses-mini {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-courses-mini span {
  background: rgba(255, 215, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.4);
  color: var(--yellow);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  transition: all 0.3s ease;
}

.hero-courses-mini span:hover {
  background: var(--yellow);
  color: var(--blue-dark);
  transform: translateY(-3px);
}

.hero-right {
  position: relative;
  perspective: 1000px;
}

.float-card {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: float-card-motion 6s ease-in-out infinite;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.float-card:hover {
  transform: scale(1.1) rotate(5deg);
  z-index: 10;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
}

.float-card i {
  font-size: 1.2rem;
  color: var(--orange);
  margin-bottom: 4px;
}

.float-card strong {
  font-size: 1.1rem;
  color: var(--blue-dark);
  font-weight: 700;
}

.float-card small {
  font-size: 0.7rem;
  color: var(--text-light);
}

.fc1 {
  top: -20px;
  right: -10px;
  animation-delay: 0s;
}

.fc2 {
  bottom: 80px;
  right: -30px;
  animation-delay: -2s;
}

.fc3 {
  bottom: -10px;
  left: -20px;
  animation-delay: -4s;
}

@keyframes float-card-motion {

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

  33% {
    transform: translateY(-15px) rotate(2deg);
  }

  66% {
    transform: translateY(10px) rotate(-2deg);
  }
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0)
  }

  50% {
    transform: translateX(-50%) translateY(8px)
  }
}

/* STATS */
.stats {
  background: linear-gradient(135deg, var(--orange), #FF8C42);
  padding: 60px 20px;
}

.stats-wrap {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-item {
  text-align: center;
  color: #fff;
}

.stat-item i {
  font-size: 2rem;
  margin-bottom: 10px;
  opacity: 0.9;
}

.stat-item .stat-num {
  font-size: 2.5rem;
  font-weight: 800;
}

.iso-text {
  font-size: 2rem;
}

.stat-item span {
  font-size: 1.5rem;
  font-weight: 700;
}

.stat-item p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-top: 5px;
}

/* ABOUT */
.about {
  padding: 80px 0;
  background: var(--light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

/* ABOUT SLIDER */
.about-slider {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  background: #e8f0fe;
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--blue);
}

.slide-fallback i {
  font-size: 4rem;
  opacity: 0.4;
}

.slide-fallback p {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.5;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  color: var(--blue-dark);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  z-index: 10;
}

.slider-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.prev-btn {
  left: 12px;
}

.next-btn {
  right: 12px;
}

.slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.dot.active {
  background: #fff;
  width: 28px;
  border-radius: 5px;
}

.est-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, var(--orange), #FF8C42);
  color: #fff;
  padding: 12px 15px;
  border-radius: 12px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
  z-index: 10;
}

.est-badge strong {
  display: block;
  font-size: 1.4rem;
}

.about-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.ainfo {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  padding: 15px;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.ainfo i {
  color: var(--orange);
  font-size: 1.2rem;
  margin-top: 3px;
}

.ainfo strong {
  display: block;
  font-size: 0.85rem;
  color: var(--blue-dark);
}

.ainfo p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}

.about-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 15px;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 25px 0;
}

.mv-card {
  background: #fff;
  padding: 20px;
  border-radius: var(--radius);
  border-top: 4px solid var(--blue);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.mv-card i {
  font-size: 1.5rem;
  color: var(--blue);
  margin-bottom: 10px;
}

.mv-card h4 {
  font-size: 1rem;
  color: var(--blue-dark);
  margin-bottom: 8px;
}

.mv-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

.about-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text);
}

.about-checks i {
  color: var(--orange);
  font-size: 1rem;
}

/* COURSES */
.courses {
  padding: 80px 0;
  background: #fff;
}

.cert-notice {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: #fff;
  padding: 15px 25px;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 600;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.cert-notice i {
  color: var(--yellow);
  font-size: 1.2rem;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.course-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #eef2ff;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.course-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 82, 204, 0.2);
}

.course-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.tally {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
}

.rscit {
  background: linear-gradient(135deg, #11998e, #38ef7d);
  color: #fff;
}

.excel {
  background: linear-gradient(135deg, #1d6e3c, #27ae60);
  color: #fff;
}

.metro {
  background: linear-gradient(135deg, #f093fb, #f5576c);
  color: #fff;
}

.basic {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  color: #fff;
}

.typing {
  background: linear-gradient(135deg, #fa709a, #fee140);
  color: #fff;
}

.course-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--orange), #FF8C42);
  color: #fff;
}

.course-badge.govt {
  background: linear-gradient(135deg, var(--blue), #4facfe);
}

.course-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.course-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.course-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--text-light);
  background: var(--light);
  padding: 4px 10px;
  border-radius: 50px;
}

.course-meta i {
  color: var(--orange);
}

.course-card p {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.course-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.course-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text);
}

.course-card li i {
  color: var(--blue);
  font-size: 0.75rem;
}

.course-btn {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.course-btn:hover {
  background: linear-gradient(135deg, var(--orange), #FF8C42);
  transform: translateY(-2px);
}

.syllabus-compact {
  margin-top: 10px;
}

.syllabus-compact li {
  margin-bottom: 6px !important;
  align-items: flex-start !important;
}

.syllabus-compact li i {
  margin-top: 4px;
}

.syllabus-compact strong {
  color: var(--blue-dark);
  font-weight: 600;
  min-width: 80px;
  display: inline-block;
}

/* SYLLABUS ACCORDION */
.syllabus-accordion {
  margin-top: 15px;
  text-align: left;
}

.syllabus-header {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--blue-dark);
  margin-top: 12px;
  border-bottom: 1px solid #eee;
  padding-bottom: 4px;
}

.syllabus-details {
  display: none;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 5px;
  line-height: 1.5;
  padding-left: 5px;
}

.course-card.expanded .syllabus-details {
  display: block;
  animation: slideDown 0.3s ease-out;
}

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

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

/* CERTIFICATE */
.cert-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--blue-dark) 0%, #0052CC 100%);
}

.cert-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.cert-img {
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.cert-info h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
}

.cert-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.cert-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.cert-benefits i {
  color: var(--yellow);
  font-size: 1.3rem;
  margin-top: 3px;
}

.cert-benefits strong {
  display: block;
  color: #fff;
  margin-bottom: 3px;
}

.cert-benefits p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  margin: 0;
}

/* WHY US */
.why-us {
  padding: 80px 0;
  background: var(--light);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.why-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 82, 204, 0.15);
}

.why-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.why-icon i {
  font-size: 1.8rem;
  color: #fff;
}

.why-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.why-card p {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* TESTIMONIALS */
.testimonials {
  padding: 80px 0;
  background: #fff;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.testi-card {
  background: var(--light);
  padding: 30px;
  border-radius: 16px;
  border-left: 4px solid var(--orange);
  transition: var(--transition);
}

.testi-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.stars {
  color: var(--yellow);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.testi-card p {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testi-auth {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.testi-auth strong {
  display: block;
  color: var(--dark);
}

.testi-auth small {
  color: var(--text-light);
  font-size: 0.8rem;
}

/* CONTACT */
.contact {
  padding: 80px 0;
  background: var(--light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 5px;
}

.contact-sub {
  color: var(--orange);
  font-size: 0.9rem;
  margin-bottom: 25px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.ci-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ci-icon i {
  color: #fff;
  font-size: 1.1rem;
}

.contact-item strong {
  display: block;
  color: var(--dark);
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-item a:hover {
  color: var(--orange);
}

.contact-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-map {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--light);
  border: 2px solid var(--blue);
  color: var(--blue);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.btn-map:hover {
  background: var(--blue);
  color: #fff;
}

.map-box {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* FOOTER */
.footer {
  background: var(--dark);
  color: #fff;
}

.footer-top {
  padding: 60px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-logo-wrap {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--orange);
  margin-bottom: 15px;
  background: #fdf001;
}

.footer-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.3) translateY(-3px);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  border: none;
  outline: none;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer-tagline {
  color: var(--yellow) !important;
  font-weight: 500;
  margin-top: 10px;
}

.footer h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 20px;
}

.footer-links ul,
.footer-courses ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-courses a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover,
.footer-courses a:hover {
  color: var(--yellow);
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  margin-bottom: 12px;
}

.footer-contact i {
  color: var(--orange);
  margin-top: 3px;
  flex-shrink: 0;
}

.btn-footer-enroll {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange), #FF8C42);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  margin-top: 15px;
  transition: var(--transition);
}

.btn-footer-enroll:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* FLOATING BUTTONS */
.fab-call {
  position: fixed;
  bottom: 140px;
  right: 25px;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 20px rgba(0, 82, 204, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.fab-wa {
  position: fixed;
  bottom: 75px;
  right: 25px;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.fab-call:hover,
.fab-wa:hover {
  transform: scale(1.1);
}

.scroll-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--orange), #FF8C42);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4);
  z-index: 999;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

.scroll-top:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */
/* RESPONSIVE */
@media (max-width:1024px) {
  .container {
    max-width: 950px;
  }

  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width:768px) {
  .nav-wrap {
    height: 60px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 999;
    text-align: center;
    gap: 15px;
  }

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

  .hamburger {
    display: flex;
    order: 3;
  }

  .brand-logo-wrap {
    width: 48px;
    height: 48px;
  }

  .brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .brand-name {
    font-size: 0.9rem;
    line-height: 1.2;
  }

  .brand-sub {
    font-size: 0.55rem;
  }

  .glow-btn-container.navbar-btn {
    display: none; /* Hide the large enroll button in navbar on mobile to save space */
  }

  .hero {
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .hero-wrap {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .hero-sub {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
    font-size: 0.75rem;
  }

  .hero-right {
    display: block; /* Show a simplified hero card on mobile */
    margin-top: 20px;
  }

  .hero-card {
    padding: 20px;
    max-width: 300px;
    margin: 0 auto;
  }

  .hero-logo-wrap {
    width: 80px;
    height: 80px;
  }

  .hero-card h2 {
    font-size: 1.3rem;
  }

  .hero-courses-mini span {
    font-size: 0.65rem;
    padding: 3px 10px;
  }

  .float-card {
    display: none; /* Hide floating cards on mobile to avoid clutter */
  }

  .stats {
    padding: 40px 10px;
  }

  .stats-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-num {
    font-size: 1.8rem;
  }

  .section-hd {
    margin-bottom: 35px;
  }

  .section-hd h2 {
    font-size: 1.6rem;
  }

  .about,
  .courses,
  .cert-section,
  .why-us,
  .testimonials,
  .contact {
    padding: 50px 0;
  }

  .about-grid,
  .courses-grid,
  .cert-grid,
  .testi-grid,
  .contact-grid,
  .footer-grid,
  .mv-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .fab-call {
    bottom: 130px;
    right: 15px;
    width: 50px;
    height: 50px;
  }

  .fab-wa {
    bottom: 70px;
    right: 15px;
    width: 50px;
    height: 50px;
  }

  .scroll-top {
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
  }

  .brand {
    gap: 8px;
  }
}

@media (max-width:480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .stats-wrap {
    grid-template-columns: 1fr 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .glow-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .testi-card {
    padding: 20px;
  }
}