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

:root {
  --primary-gradient: linear-gradient(135deg, #ff9933, #ffffff, #138808);
  --secondary-gradient: linear-gradient(135deg, #ff9933, #138808);
  --bg-dark: #0a0a0a;
  --bg-darker: #000000;
  --bg-card: #1a1a1a;
  --text-primary: #ffffff;
  --text-secondary: #e0e0e0;
  --text-muted: #b0b0b0;
  --border-light: rgba(255, 255, 255, 0.1);
  --accent-gold: #ffd93d;
  --shadow-glow: rgba(255, 153, 51, 0.3);
  --nav-height: 70px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: calc(var(--nav-height) + var(--banner-height));
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Rajdhani", sans-serif;
  line-height: 1.2;
  font-weight: 600;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

.announcement-banner {
  position: relative;
  z-index: 1002;
}

.banner-wrapper {
  position: sticky;
  top: 0;
  z-index: 1002;
  background: var(--primary-gradient);
  color: #000;
  font-weight: 600;
  text-align: center;
  padding: 0.5rem 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  animation: slideDown 0.6s ease-in-out;
  font-size: 0.875rem;
}

.banner-wrapper p {
  margin: 0;
}

.banner-wrapper a {
  color: #000;
  text-decoration: underline;
  font-weight: 700;
  margin-left: 0.5rem;
}

.banner-wrapper a:hover {
  opacity: 0.7;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-darker);
}

.navbar {
  height: var(--nav-height);
}

.nav-container {
  max-width: 1260px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
}

.nav-logo img {
  height: 30px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
}

.nav-menu li a {
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.nav-menu li a:hover {
  color: #007bff;
}

.login-btn {
  background: var(--secondary-gradient);
  color: var(--text-primary);
  padding: 0.6rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.login-btn:hover {
  background: var(--primary-gradient);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--text-primary);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-primary);
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 1.5rem;
}

.hero-logo {
  height: 85px;
  width: auto;
  margin: 0 auto 1.5rem;
}

.hero-content h1 {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.3;
  margin-bottom: 2rem;
  color: var(--text-primary);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.cta-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  background: var(--secondary-gradient);
  color: var(--text-primary);
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--shadow-glow);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--shadow-glow);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-size: 2.75rem;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

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

.mission-section {
  position: relative;
  padding: 6rem 1.5rem;
  background: linear-gradient(135deg, #000000, #1a1a1a);
  color: var(--text-primary);
  text-align: center;
  overflow: hidden;
  scroll-margin-top: calc(var(--nav-height) + var(--banner-height));
}

.mission-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(255, 153, 51, 0.1) 0%,
    transparent 70%
  );
  animation: pulseGlow 8s infinite ease-in-out;
  z-index: 0;
}

@keyframes pulseGlow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

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

.mission-content h2 {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
}

.mission-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 2.25rem;
}

.mission-content strong {
  color: var(--accent-gold);
}

.mission-btn {
  display: inline-block;
  background: var(--secondary-gradient);
  color: var(--text-primary);
  font-weight: 600;
  padding: 1.125rem 2.75rem;
  border-radius: 8px;
  font-size: 1.0625rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--shadow-glow);
}

.mission-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--shadow-glow);
}

.stats-section {
  background: #0f0f0f;
  color: var(--text-primary);
  padding: 6rem 1.5rem;
  text-align: center;
  position: relative;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.75rem 1.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.stat-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 153, 51, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.stat-box:hover::before {
  left: 100%;
}

.stat-box h3 {
  font-size: 3.25rem;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
}

.stat-box p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

.stat-box:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px var(--shadow-glow);
}

.training-programs-section {
  padding: 6rem 1.5rem;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  scroll-margin-top: calc(var(--nav-height) + var(--banner-height));
}

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

.course-card {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px var(--shadow-glow);
}

.card-image {
  height: 220px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.course-card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.course-title {
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 1px;
  margin: 0;
}

.course-description {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.cta-button {
  align-self: flex-start;
  padding: 0.9375rem 1.875rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-transform: uppercase;
  background: var(--secondary-gradient);
  color: var(--text-primary);
  transition: all 0.3s ease;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-glow);
}

.roadmap-section {
  background: var(--bg-darker);
  color: var(--text-primary);
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
  scroll-margin-top: calc(var(--nav-height) + var(--banner-height));
}

.roadmap-section::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(
    circle at center,
    rgba(19, 136, 8, 0.08),
    transparent 70%
  );
  z-index: 0;
}

.roadmap-steps {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.roadmap-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  padding: 2.25rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.roadmap-step:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(10px);
  box-shadow: 0 8px 25px var(--shadow-glow);
}

.step-number {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.625rem;
  font-weight: 700;
  background: var(--secondary-gradient);
  color: var(--text-primary);
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  box-shadow: 0 4px 15px var(--shadow-glow);
  transition: all 0.3s ease;
}

.roadmap-step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 6px 20px var(--shadow-glow);
}

.step-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.875rem;
  letter-spacing: 1px;
  color: var(--text-primary);
}

.step-content p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.step-content strong {
  color: var(--accent-gold);
}

.instructors-section {
  background: #0f0f0f;
  color: var(--text-primary);
  padding: 6rem 1.5rem;
}

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

.instructor-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-light);
}

.instructor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px var(--shadow-glow);
}

.instructor-image {
  height: 300px;
  overflow: hidden;
}

.instructor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.instructor-card:hover .instructor-image img {
  transform: scale(1.05);
}

.instructor-info {
  padding: 2.25rem;
}

.instructor-info h3 {
  font-size: 1.875rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
}

.instructor-info .badge {
  display: inline-block;
  background: var(--secondary-gradient);
  color: var(--text-primary);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1.125rem;
  border-radius: 20px;
  margin-bottom: 0.875rem;
}

.instructor-info .role {
  color: var(--accent-gold);
  font-size: 1rem;
  margin-bottom: 1.125rem;
  display: block;
}

.tags {
  margin-bottom: 1.125rem;
}

.tags span {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  border-radius: 6px;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.description {
  color: #c0c0c0;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.testimonials-section {
  background: var(--bg-dark);
  color: var(--text-primary);
  padding: 6rem 1.5rem;
  scroll-margin-top: calc(var(--nav-height) + var(--banner-height));
}

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  min-height: 230px;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px var(--shadow-glow);
  background: rgba(255, 255, 255, 0.08);
}

.testimonial-content p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
  font-style: italic;
}

.testimonial-author h3 {
  font-size: 1.1875rem;
  margin: 0 0 0.375rem 0;
  color: var(--text-primary);
  font-weight: 600;
}

.testimonial-author span {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.faq-section {
  padding: 6rem 1.5rem;
  background: #0f0f0f;
  color: var(--text-primary);
  scroll-margin-top: calc(var(--nav-height) + var(--banner-height));
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1.125rem;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.375rem 1.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  background: transparent;
  color: var(--text-primary);
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 153, 51, 0.1);
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  color: var(--accent-gold);
}

.faq-answer {
  overflow: hidden;
  padding: 0 1.75rem;
  background: rgba(255, 255, 255, 0.02);
}

.faq-answer p {
  padding: 1.125rem 0 1.75rem 0;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.contact-section {
  padding: 6rem 1.5rem;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  scroll-margin-top: calc(var(--nav-height) + var(--banner-height));
}

.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}

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

.form-group {
  display: flex;
  gap: 1rem;
}

.form-group input,
.form-group textarea {
  flex: 1;
  padding: 1.125rem 1.375rem;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  font-family: "Poppins", sans-serif;
  outline: none;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #888;
}

.form-group input:focus,
.form-group textarea:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 153, 51, 0.5);
}

textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form .hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form .hidden label {
  display: inline;
}

.contact-form [data-netlify-recaptcha="true"] {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 480px) {
  .contact-form [data-netlify-recaptcha="true"] {
    transform: scale(0.9);
    transform-origin: left center;
  }
}

@media (max-width: 360px) {
  .contact-form [data-netlify-recaptcha="true"] {
    transform: scale(0.77);
    transform-origin: left center;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  padding: 2.25rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
}

.info-item h3 {
  font-size: 1.1875rem;
  margin-bottom: 0.625rem;
  font-weight: 600;
  color: var(--accent-gold);
}

.info-item p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  margin: 0;
}

.footer {
  background-color: var(--bg-card);
  color: var(--text-muted);
  padding: 4.5rem 1.5rem 2.25rem;
  border-top: 1px solid var(--border-light);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto 3.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.footer-column h3 {
  color: var(--text-primary);
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 1.375rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.875rem;
}

.footer-column ul li a {
  color: var(--text-muted);
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--accent-gold);
}

.footer-divider {
  max-width: 1200px;
  margin: 0 auto 2.25rem;
  height: 1px;
  background-color: var(--border-light);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  color: var(--text-muted);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-links a:hover {
  color: var(--accent-gold);
  transform: translateY(-3px);
}

.footer-logo {
  flex: 1;
  display: flex;
  justify-content: center;
}

.footer-logo img {
  max-height: 30px;
  width: auto;
}

.footer-legal p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin: 0;
  text-align: right;
}

@media (max-width: 1024px) {
  html {
    font-size: 15px;
    scroll-padding-top: calc(var(--nav-height));
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    right: -100%;
    width: 280px;
    height: calc(100vh - var(--nav-height));
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    transition: right 0.4s ease;
    z-index: 1050;
    overflow-y: auto;
  }

  .nav-menu li a {
    font-size: 1.05rem;
    width: 100%;
    display: block;
  }

  .login-btn {
    width: 100%;
    text-align: center;
  }

  .menu-toggle:checked ~ .nav-menu {
    right: 0;
  }

  .menu-toggle:checked + .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle:checked + .hamburger span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle:checked + .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .instructors-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
    scroll-padding-top: calc(var(--nav-height));
  }

  .container {
    padding: 0 1.25rem;
  }

  .banner-wrapper {
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
  }

  .hero-content h1 {
    font-size: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .hero-logo {
    height: 60px;
    margin-bottom: 1.5rem;
  }

  .cta-btn {
    padding: 1rem 2.25rem;
    font-size: 1rem;
  }

  .mission-section,
  .stats-section,
  .training-programs-section,
  .roadmap-section,
  .instructors-section,
  .testimonials-section,
  .faq-section,
  .contact-section {
    padding: 4.5rem 1.25rem;
  }

  .mission-content h2,
  .section-header h2 {
    font-size: 2.25rem;
  }

  .mission-content p,
  .section-header p {
    font-size: 1.0625rem;
  }

  .stat-box {
    padding: 2.25rem 1.25rem;
  }

  .stat-box h3 {
    font-size: 2.75rem;
  }

  .courses-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .roadmap-step {
    gap: 1.5rem;
    padding: 1.75rem;
  }

  .step-number {
    width: 3.25rem;
    height: 3.25rem;
    font-size: 1.375rem;
  }

  .step-content h3 {
    font-size: 1.375rem;
  }

  .testimonials-grid {
    gap: 1.5rem;
  }

  .footer {
    padding: 3.5rem 1.25rem 1.75rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-legal p {
    text-align: center;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
    scroll-padding-top: calc(var(--nav-height));
  }

  .container {
    padding: 0 1rem;
  }

  .banner-wrapper {
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
  }

  .banner-wrapper a {
    display: block;
    margin-top: 0.25rem;
    margin-left: 0;
  }

  .nav-container {
    padding: 0 1rem;
  }

  .nav-logo img {
    height: 25px;
    width: auto;
  }

  .hero-section {
    min-height: 500px;
  }

  .hero-content h1 {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  .hero-logo {
    height: 50px;
  }

  .cta-btn {
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
  }

  .mission-section,
  .stats-section,
  .training-programs-section,
  .roadmap-section,
  .instructors-section,
  .testimonials-section,
  .faq-section,
  .contact-section {
    padding: 3.5rem 1rem;
  }

  .mission-content h2,
  .section-header h2 {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .mission-content p,
  .section-header p {
    font-size: 1rem;
  }

  .mission-btn {
    padding: 1rem 2.25rem;
    font-size: 1rem;
  }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .stat-box {
    padding: 2rem 1rem;
  }

  .stat-box h3 {
    font-size: 2.5rem;
  }

  .stat-box p {
    font-size: 1rem;
  }

  .courses-grid {
    gap: 1.25rem;
  }

  .card-image {
    height: 200px;
  }

  .card-content {
    padding: 1.75rem;
  }

  .course-title {
    font-size: 1.5rem;
  }

  .course-description {
    font-size: 1rem;
  }

  .cta-button {
    width: 100%;
    text-align: center;
    padding: 1rem 1.5rem;
  }

  .roadmap-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
    padding: 1.75rem 1.5rem;
  }

  .roadmap-step:hover {
    transform: translateY(-5px);
  }

  .step-number {
    margin-bottom: 0.5rem;
  }

  .step-content h3 {
    font-size: 1.25rem;
  }

  .step-content p {
    font-size: 1rem;
  }

  .instructors-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .instructor-image {
    height: 280px;
  }

  .instructor-info {
    padding: 1.75rem;
  }

  .instructor-info h3 {
    font-size: 1.625rem;
  }

  .instructor-info .badge {
    font-size: 0.8125rem;
    padding: 0.4375rem 1rem;
  }

  .tags span {
    font-size: 0.8125rem;
    padding: 0.4375rem 0.8125rem;
  }

  .description {
    font-size: 0.9375rem;
  }

  .testimonials-grid {
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .testimonial-card {
    padding: 1.75rem;
    min-height: auto;
  }

  .testimonial-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .testimonial-author h3 {
    font-size: 1.0625rem;
  }

  .testimonial-author span {
    font-size: 0.875rem;
  }

  .faq-question {
    padding: 1.125rem 1.375rem;
    font-size: 1.0625rem;
  }

  .faq-icon {
    font-size: 1.375rem;
  }

  .faq-answer {
    padding: 0 1.375rem;
  }

  .faq-answer p {
    padding: 1rem 0 1.5rem 0;
    font-size: 0.9375rem;
  }

  .form-group {
    flex-direction: column;
  }

  .form-group input,
  .form-group textarea {
    padding: 1rem 1.125rem;
    font-size: 0.9375rem;
  }

  .contact-info {
    padding: 1.75rem;
    gap: 1.75rem;
  }

  .info-item h3 {
    font-size: 1.0625rem;
  }

  .info-item p {
    font-size: 1rem;
  }

  .footer {
    padding: 3rem 1rem 1.5rem;
  }

  .footer-column h3 {
    font-size: 1rem;
    margin-bottom: 1.125rem;
  }

  .footer-column ul li {
    margin-bottom: 0.75rem;
  }

  .footer-column ul li a {
    font-size: 0.9375rem;
  }

  .social-links {
    gap: 1.25rem;
  }

  .social-links a svg {
    width: 20px;
    height: 20px;
  }

  .footer-logo img {
    max-height: 26px;
  }

  .footer-legal p {
    font-size: 0.875rem;
  }
}

@media (max-width: 360px) {
  html {
    font-size: 13px;
  }

  .nav-logo img {
    height: 20px;
    width: auto;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-logo {
    height: 45px;
  }

  .mission-content h2,
  .section-header h2 {
    font-size: 1.75rem;
  }

  .stat-box h3 {
    font-size: 2.25rem;
  }

  .course-title {
    font-size: 1.375rem;
  }

  .step-content h3 {
    font-size: 1.125rem;
  }

  .instructor-info h3 {
    font-size: 1.5rem;
  }
}

*:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (prefers-contrast: high) {
  .stat-box,
  .course-card,
  .roadmap-step,
  .instructor-card,
  .testimonial-card,
  .faq-item,
  .contact-info {
    border: 2px solid var(--text-primary);
  }
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  z-index: 999;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.back-to-top:hover {
  transform: translateY(-5px);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 1024px) {
  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 25px;
    right: 25px;
  }
  .back-to-top svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 768px) {
  .back-to-top {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 20px;
  }
  .back-to-top svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .back-to-top {
    width: 35px;
    height: 35px;
    bottom: 15px;
    right: 15px;
  }
  .back-to-top svg {
    width: 16px;
    height: 16px;
  }
}
