:root {
  --primary-blue: #0a192f;
  --primary-yellow: #ffd700;
  --accent-red: #e63946;
  --text-dark: #1f2937;
  --text-light: #64748b;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* Custom Premium Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--primary-blue);
  border-radius: 0px;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary-yellow), #b89800);
  border-radius: 10px;
}

/* Premium Text Selection */
::selection {
  background-color: var(--primary-yellow);
  color: var(--primary-blue);
}

body {
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  color: var(--primary-blue);
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  display: block;
}

h2::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  background-color: var(--primary-yellow);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

section {
  padding: 5rem 5%;
}

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

ul {
  list-style: none;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-yellow {
  background: rgba(255, 215, 0, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--primary-blue);
  box-shadow: 0 6px 16px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

/* Glassy Spark Sweep Animation */
.btn-yellow::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
  transform: skewX(-25deg);
  animation: sparkSweep 3.5s infinite running;
}

@keyframes sparkSweep {
  0% {
    left: -100%;
  }
  20% {
    left: 200%;
  }
  100% {
    left: 200%;
  }
}

.btn-yellow:hover {
  background: rgba(255, 215, 0, 1);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--primary-blue);
}

.view-all-container {
  text-align: center;
  margin-top: 3.5rem;
}

.btn-animated {
  background: linear-gradient(
    45deg,
    var(--primary-blue),
    #3b82f6,
    var(--primary-blue)
  );
  background-size: 200% auto;
  color: var(--white);
  padding: 1rem 2.8rem;
  font-size: 1.1rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.4);
  animation: gradientPulse 3s ease infinite;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.btn-animated:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.5);
  background-position: right center;
  color: var(--white);
}

.btn-animated i {
  transition: transform 0.3s ease;
}

.btn-animated:hover i {
  transform: translateX(6px);
}

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

/* Header */
header {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding: 1rem 5%;
  display: flex;
  align-items: center;
  gap: 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-right: auto;
}

.logo img {
  animation: imgGlowPulse 4s alternate infinite ease-in-out;
}

@keyframes imgGlowPulse {
  0% {
    filter: drop-shadow(0 0 2px rgba(230, 57, 70, 0));
    transform: scale(1);
  }
  100% {
    filter: drop-shadow(0 0 8px rgba(230, 57, 70, 0.4));
    transform: scale(1.02);
  }
}

/* Premium Logo Glow Background */
.logo-glow-bg {
  position: relative;
  display: inline-block;
  padding: 15px;
  z-index: 1;
}

.logo-glow-bg::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160%;
  height: 160%;
  background: radial-gradient(
    circle,
    rgba(230, 57, 70, 0.7) 0%,
    transparent 75%
  );
  z-index: -1;
  filter: blur(20px);
  border-radius: 50%;
  animation: glowBackgroundPulse 3s infinite alternate ease-in-out;
}

@keyframes glowBackgroundPulse {
  0% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.logo span {
  color: var(--primary-yellow);
}

nav ul {
  display: flex;
  gap: 2rem;
}

nav a {
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.3s;
  position: relative;
  padding-bottom: 4px;
}

nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-yellow);
  transition: width 0.3s ease;
  border-radius: 2px;
}

nav a:hover {
  color: var(--primary-blue);
}

nav a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  color: var(--primary-blue);
  background: none;
  border: none;
  cursor: pointer;
}

/* Hero Section */
.hero {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
  background-image:
    linear-gradient(rgba(30, 58, 138, 0.8), rgba(30, 58, 138, 0.9)),
    url("images/new_hero_bg.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 2rem 5%;
  position: relative;
}

/* Animated CSS Background overlay for Hero */
.animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-45deg, #0a0f24, #1e3a8a, #001e54, #2563eb);
  background-size: 400% 400%;
  animation: gradientShift 12s ease infinite;
  z-index: 0;
}

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

/* Floating animated background elements */
.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.shape {
  position: absolute;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  animation: floatShape linear infinite;
  bottom: -20vh;
}

@keyframes floatShape {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-120vh) rotate(360deg);
    opacity: 0;
  }
}

.hero-stamp {
  position: absolute;
  top: 2rem;
  right: 5%;
  width: 105px;
  height: 105px;
  background-color: var(--accent-red);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.6);
  border: 2px dashed var(--white);
  transform: rotate(15deg);
  z-index: 10;
  animation: stampPulse 3s infinite;
}

@keyframes stampPulse {
  0% {
    transform: rotate(15deg) scale(1);
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.6);
  }
  50% {
    transform: rotate(15deg) scale(1.05);
    box-shadow: 0 0 35px rgba(239, 68, 68, 0.9);
  }
  100% {
    transform: rotate(15deg) scale(1);
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.6);
  }
}

.hero-stamp .stamp-title {
  font-size: 0.8rem;
  line-height: 1.2;
  margin-bottom: 4px;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.hero-stamp .stamp-logo {
  font-size: 0.65rem;
  background: transparent;
  color: var(--white);
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  display: flex;
  gap: 2px;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.hero-stamp .stamp-logo span {
  color: var(--primary-yellow);
  text-shadow: 0 0 10px rgba(253, 224, 71, 0.8);
}

@media (max-width: 768px) {
  .hero-stamp {
    width: 85px;
    height: 85px;
    top: 1rem;
    right: 1rem;
  }
  .hero-stamp .stamp-title {
    font-size: 0.65rem;
  }
  .hero-stamp .stamp-logo {
    font-size: 0.5rem;
    padding: 2px 4px;
  }
}

.hero-content {
  max-width: 800px;
}

/* Benefits Section */
.benefits-container {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-item {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--white);
  padding: 3rem 2rem;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  text-align: center;
  width: 300px;
  transition:
    transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.4s,
    background 0.4s;
  cursor: pointer;
}

.benefit-item:hover {
  transform: scale(1.1) translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.benefit-item i {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.benefit-item:hover i {
  transform: scale(1.25) rotate(10deg);
}

.benefit-item h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.benefit-item p {
  font-weight: 500;
}

/* Ultra-Modern Aesthetic: Cosmic Sunset */
.benefit-item:nth-child(1) h4,
.benefit-item:nth-child(1) i {
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.benefit-item:nth-child(1) i {
  filter: drop-shadow(0 15px 15px rgba(255, 65, 108, 0.4));
}
.benefit-item:nth-child(1) p {
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Ultra-Modern Aesthetic: Liquid Gold */
.benefit-item:nth-child(2) h4,
.benefit-item:nth-child(2) i {
  background: linear-gradient(135deg, #fde047, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.benefit-item:nth-child(2) i {
  filter: drop-shadow(0 15px 15px rgba(245, 158, 11, 0.4));
}
.benefit-item:nth-child(2) p {
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Ultra-Modern Aesthetic: Neon Emerald */
.benefit-item:nth-child(3) h4,
.benefit-item:nth-child(3) i {
  background: linear-gradient(135deg, #11998e, #38ef7d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.benefit-item:nth-child(3) i {
  filter: drop-shadow(0 15px 15px rgba(17, 153, 142, 0.4));
}
.benefit-item:nth-child(3) p {
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.7;
}

.badge {
  background-color: var(--accent-red);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: #e5e7eb;
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.govt-logos {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 2rem;
  border-radius: 12px;
  backdrop-filter: blur(5px);
}

.govt-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.9;
}

.govt-logo-item i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-yellow);
}

/* Sections Backgrounds */
.bg-light {
  background-color: var(--bg-light);
}

/* Courses Section */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.course-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.05);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@keyframes orbFloatX {
  0% {
    transform: translate(-120px, 0) scale(0.8);
    opacity: 0;
  }
  20% {
    transform: translate(0px, 10px) scale(1);
    opacity: 1;
  }
  80% {
    transform: translate(200px, -10px) scale(1.2);
    opacity: 1;
  }
  100% {
    transform: translate(300px, 0) scale(0.8);
    opacity: 0;
  }
}

.course-card::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.15) 0%,
    rgba(30, 58, 138, 0.05) 45%,
    transparent 70%
  );
  z-index: -1;
  transition: transform 0.6s ease;
  animation: orbFloatX 4s infinite linear;
}

.course-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 45px rgba(31, 38, 135, 0.12);
  border: 1px solid rgba(255, 255, 255, 1);
  background: rgba(255, 255, 255, 0.85);
}

.course-card:hover::before {
  transform: scale(1.8) translate(20px, 20px);
  animation-play-state: paused;
}

.course-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.1),
    rgba(30, 58, 138, 0.02)
  );
  border: 1px solid rgba(30, 58, 138, 0.1);
  color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 1.8rem;
  transition: all 0.5s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.course-card:hover .course-icon {
  background: var(--primary-blue);
  color: var(--primary-yellow);
  transform: rotateY(360deg) scale(1.15);
  box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3);
}

.course-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.category-title {
  text-align: center;
  font-size: 1.8rem;
  color: var(--text-dark);
  margin: 3rem 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.category-title i {
  color: var(--primary-yellow);
}

/* --- Global Interactive Classes --- */
.vm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  margin: 3rem 0;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.interactive-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.interactive-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-yellow), var(--accent-red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: 2;
}

.interactive-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(8, 27, 75, 0.12);
}

.interactive-card:hover::before {
  transform: scaleX(1);
}

.interactive-card .icon-wrap {
  width: 80px;
  height: 80px;
  background: rgba(30, 58, 138, 0.05);
  color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 1.8rem;
  transition: all 0.5s ease;
}

.interactive-card:hover .icon-wrap {
  background: var(--primary-blue);
  color: var(--white);
  transform: rotateY(360deg) scale(1.1);
  box-shadow: 0 10px 20px rgba(30, 58, 138, 0.3);
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  border: 1px solid transparent;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(200, 30, 30, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--accent-red);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-block;
  animation: continuousPulse 2.5s infinite alternate ease-in-out;
}

@keyframes continuousPulse {
  0% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 0px rgba(220, 38, 38, 0));
  }
  100% {
    transform: translateY(-4px) scale(1.08);
    filter: drop-shadow(0 5px 8px rgba(220, 38, 38, 0.5));
  }
}

.feature-box:hover .feature-icon {
  animation: none;
  transform: scale(1.2) rotate(-15deg);
  color: var(--primary-blue);
  text-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
  filter: none;
}

.feature-box h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* Benefits Section */
.benefits-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.benefit-item {
  background: linear-gradient(135deg, var(--primary-blue), #2563eb);
  color: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  width: 300px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition:
    transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.4s;
}

.benefit-item:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
  z-index: 3;
}

.benefit-item i {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-yellow);
  transition: transform 0.4s ease;
}

.benefit-item:hover i {
  transform: scale(1.2);
}

.benefit-item h4 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.benefit-item:nth-child(2) {
  transform: scale(1.1);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.4);
  z-index: 2;
}

.benefit-item:nth-child(2):hover {
  transform: scale(1.15) translateY(-10px);
  box-shadow: 0 25px 50px rgba(37, 99, 235, 0.6);
  z-index: 4;
}

@media (max-width: 900px) {
  .benefit-item:nth-child(2) {
    transform: scale(1);
  }
}

/* Job Roles */
.jobs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.job-tag {
  background-color: var(--bg-light);
  color: var(--primary-blue);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  border: 1px solid #e5e7eb;
  transition: all 0.3s;
}

.job-tag:hover {
  background-color: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
}

/* About Section */
.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
}

.about-content p {
  margin-bottom: 1.5rem;
}

/* Contact */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  background: var(--white);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-blue);
  flex-shrink: 0;
}

.info-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.info-text p {
  color: var(--text-light);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
  background: var(--bg-light);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary-blue);
  background: var(--white);
}

/* About Page Specific Styles */
.about-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h3 {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.founder-card {
  flex: 0 0 400px;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 0.3s;
}

.founder-card:hover {
  transform: translateY(-10px);
}

.founder-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: center top;
}

.founder-info {
  padding: 2.5rem 2rem;
  text-align: center;
}

.founder-tag {
  background-color: var(--primary-yellow);
  color: var(--primary-blue);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 1rem;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.founder-info h4 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

@media (max-width: 992px) {
  .about-hero {
    flex-direction: column-reverse;
    text-align: center;
  }
  .founder-card {
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
  }
}

/* Student Reviews */
.reviews-section {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background: linear-gradient(135deg, #f0f8ff, #e0e7ff, #f3f4f6);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.course-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.course-icon {
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.course-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.course-card p {
  color: var(--text-light);
}

.course-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 58, 138, 0.95); /* var(--primary-blue) with opacity */
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: all 0.4s ease;
  transform: translateY(100%);
  border-radius: 12px;
  text-align: center;
}

.course-overlay p {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.course-card:hover .course-overlay {
  opacity: 1;
  transform: translateY(0);
}

.review-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  position: relative;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.07);
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    background 0.3s;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  z-index: 3;
}

.review-card:nth-child(2) {
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(31, 38, 135, 0.1);
  z-index: 2;
}

.review-card:nth-child(2):hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 20px 45px rgba(31, 38, 135, 0.15);
  z-index: 3;
}

@media (max-width: 900px) {
  .review-card:nth-child(2) {
    transform: scale(1);
  }
  .review-card:nth-child(2):hover {
    transform: translateY(-5px);
  }
}

.quote-icon {
  font-size: 2.5rem;
  color: var(--primary-yellow);
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.review-text {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
  font-size: 1.05rem;
}

.reviewer-profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}

.reviewer-img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-blue);
  padding: 2px;
}

.reviewer-info {
  text-align: left;
}

.reviewer-info h5 {
  font-size: 1.1rem;
  color: var(--primary-blue);
  margin-bottom: 0.2rem;
}

.reviewer-info p {
  font-size: 0.85rem;
  color: #9ca3af;
}

.star-rating {
  color: #f59e0b;
  font-size: 0.9rem;
  margin-top: 0.3rem;
}

/* Footer */
footer {
  background: var(--primary-blue);
  color: var(--white);
  padding: 4rem 5% 1rem;
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-yellow),
    var(--accent-red),
    var(--primary-yellow)
  );
  background-size: 200% auto;
  animation: gradientPulse 3s infinite linear;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-yellow);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-col a {
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--primary-yellow);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--primary-yellow);
  color: var(--primary-blue);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Floating elements */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@keyframes pulseBadge {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

.notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: var(--accent-red);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--white);
  animation: pulseBadge 1.5s infinite ease-in-out;
}

@keyframes ringing {
  0% {
    transform: rotate(0);
  }
  10% {
    transform: rotate(15deg);
  }
  20% {
    transform: rotate(-10deg);
  }
  30% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(0);
  }
}

.phone-float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 110px;
  right: 45px;
  background-color: #22c55e;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 22px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    transform 0.3s,
    background-color 0.3s;
  animation: ringing 1.5s infinite ease-in-out;
}

.phone-float:hover {
  transform: scale(1.1);
  background-color: #16a34a;
  animation-play-state: paused;
}

.sticky-enroll-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--accent-red);
  color: var(--white);
  text-align: center;
  padding: 1rem;
  font-weight: 700;
  font-size: 1.1rem;
  z-index: 99;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: none; /* Only show on mobile */
}

/* Affiliations Section */
.bg-white {
  background-color: var(--white);
}

#affiliations {
  padding-top: 2rem;
  padding-bottom: 5rem;
}

#affiliations h2 {
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.affiliations-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.affiliation-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 120px;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  filter: grayscale(100%) opacity(0.7);
  cursor: pointer;
}

.affiliation-logo:hover {
  filter: grayscale(0%) opacity(1);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(30, 58, 138, 0.15);
  border-color: rgba(30, 58, 138, 0.2);
}

.affiliation-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 3rem;
  }
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  nav ul {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: 0.3s;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
  }

  nav ul.active {
    left: 0;
  }
  .mobile-menu-btn {
    display: block;
  }
  header .btn {
    display: none;
  }

  .hero h1 {
    font-size: 2.2rem;
  }
  .hero-btns {
    flex-direction: column;
    width: 100%;
  }
  .btn {
    width: 100%;
  }
  .hero-btns .btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .sticky-enroll-btn {
    display: block;
  }
  .whatsapp-float {
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 25px;
  }
  .phone-float {
    bottom: 140px;
    right: 25px;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  body {
    padding-bottom: 60px; /* Space for sticky btn */
  }

  .affiliations-wrapper {
    gap: 1.5rem;
  }

  .affiliation-logo {
    width: calc(50% - 1rem);
    max-width: 150px;
    height: 100px;
    padding: 1.2rem;
  }
}

/* Career Page Styles */
.career-hero {
  margin-top: 80px;
  height: 450px;
  background-image:
    linear-gradient(rgba(10, 25, 47, 0.8), rgba(10, 25, 47, 0.8)),
    url("images/careers_hero_bg.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10%;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.career-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1;
}

.career-hero > * {
  position: relative;
  z-index: 2;
}

.career-hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.breadcrumb {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.8;
}

.breadcrumb a {
  color: var(--white);
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: var(--primary-yellow);
}

.intro-section {
  padding: 6rem 10%;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.intro-section h2 {
  margin-bottom: 2rem;
}

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

/* Accordion Section */
.careers-section {
  padding: 4rem 10% 8rem;
  background-color: var(--bg-light);
}

.accordion-container {
  max-width: 1000px;
  margin: 0 auto;
}

.accordion-item {
  background-color: var(--white);
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.accordion-header {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s;
}

.accordion-header:hover {
  background-color: rgba(230, 57, 70, 0.02);
}

.accordion-header h3 {
  font-size: 1.3rem;
  color: var(--primary-blue);
  margin: 0;
}

.accordion-icon {
  font-size: 1.2rem;
  color: var(--accent-red);
  transition: transform 0.4s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: var(--white);
}

.accordion-item.active {
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.1);
  border-color: rgba(230, 57, 70, 0.2);
}

.accordion-item.active .accordion-content {
  max-height: 800px;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-body {
  padding: 0 2rem 2rem;
}

.accordion-body h4 {
  margin: 1.5rem 0 1rem;
  color: var(--primary-blue);
  border-left: 4px solid var(--accent-red);
  padding-left: 15px;
}

.accordion-body ul {
  list-style: none;
  padding: 0;
}

.accordion-body li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--text-dark);
}

.accordion-body li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--accent-red);
}

.apply-line {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px dashed #e2e8f0;
  font-weight: 600;
  color: var(--primary-blue);
}

.apply-line a {
  color: var(--accent-red);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .career-hero {
    padding: 0 5%;
    height: 350px;
  }
  .career-hero h1 {
    font-size: 2.5rem;
  }
  .careers-section {
    padding: 4rem 5% 6rem;
  }
  .accordion-header {
    padding: 1.2rem 1.5rem;
  }
  .accordion-header h3 {
    font-size: 1.1rem;
  }
}
