  *, *::before, *::after { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html { 
    scroll-behavior: smooth; 
}

body {
    font-family: 'Outfit', sans-serif;
    background:#0a1628;
    color:#ffffff;
    overflow-x: hidden;
}


/* navbar start */

nav {
  position: fixed; 
  top: 0; 
  left: 0; 
  right: 0; 
  z-index: 100;
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  padding: 18px 6%;
  background: rgba(10,22,40,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245,197,24,0.15);
  transition: background 0.3s;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem;
  letter-spacing: 2px;
  color: #f5c518;
}

.nav-logo span {
  color: #ffffff;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #cbd5e1;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.25s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute; 
  bottom: -4px; 
  left: 0; 
  right: 0;
  height: 2px;
  background: #f5c518;
  transform: scaleX(0);
  transition: transform 0.25s;
}

.nav-links a:hover {
  color: #f5c518;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  background: #f5c518;
  color: #0a1628;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: background 0.25s, transform 0.2s;
}

.nav-cta:hover {
  background: #fde68a;
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
}

/* navbar end */

/* hero banner start */

#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 120px 6% 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute; 
  inset: 0; 
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 50%, rgba(37,99,235,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(245,197,24,0.08) 0%, transparent 60%),
    linear-gradient(160deg, #0a1628 0%, #0d2147 100%);
}

.hero-grid {
  position: absolute; 
  inset: 0; 
  z-index: 0; 
  opacity: 0.04;
  background-image:
    linear-gradient(#3b82f6 1px, transparent 1px),
    linear-gradient(90deg, #3b82f6 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero-left {
  position: relative; 
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 580px;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-badge {
  display: inline-flex; 
  align-items: center; 
  gap: 8px;
  background: rgba(245,197,24,0.12);
  border: 1px solid rgba(245,197,24,0.35);
  color: #f5c518;
  padding: 8px 18px; 
  border-radius: 50px;
  font-size: 0.78rem; 
  font-weight: 600; 
  letter-spacing: 1.5px;
  text-transform: uppercase; 
  margin-bottom: 24px;
  width: fit-content;
  animation: fadeUp 0.6s ease both;
}

.hero-badge span {
  width: 7px; 
  height: 7px;
  background: #f5c518; 
  border-radius: 50%;
  animation: pulse 1.5s ease infinite;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 2px;
  margin-bottom: 22px;
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero-title .yellow { 
    color: #f5c518; 
}

.hero-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  color: #cbd5e1;
  line-height: 1.75;
  margin-bottom: 36px;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-btns {
  display: flex; 
  gap: 16px; 
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}

.btn-primary {
  background: #f5c518; 
  color: #0a1628;
  padding: 15px 36px; 
  border-radius: 8px;
  font-weight: 700; 
  font-size: 0.95rem;
  text-decoration: none; 
  letter-spacing: 0.4px;
  transition: all 0.25s;
  display: inline-flex; 
  align-items: center; 
  gap: 8px;
}

.btn-primary:hover {
  background: #fde68a;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(245,197,24,0.3);
}

.btn-secondary {
  background: transparent; 
  color: #ffffff;
  padding: 15px 36px; 
  border-radius: 8px;
  font-weight: 600; 
  font-size: 0.95rem;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.2);
  transition: all 0.25s;
}

.btn-secondary:hover {
  border-color: #f5c518;
  color: #f5c518;
}

.hero-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.4s ease both;
}

.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid #f5c518;
  padding: 18px 24px;
  border-radius: 10px;
  backdrop-filter: blur(6px);
  flex: 1;
  min-width: 110px;
  transition: transform 0.25s, border-color 0.25s;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: #f5c518;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem; 
  color: #f5c518; 
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem; 
  color: #94a3b8;
  font-weight: 500; 
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.hero-right {
  position: relative; 
  z-index: 1;
  flex: 0 0 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeLeft 0.7s 0.3s ease both;
}

.hero-image-wrapper {
  position: relative;
  width: 380px;
  height: 480px;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  position: relative; z-index: 2;
  border: 2px solid rgba(245,197,24,0.2);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.hero-img-ring {
  position: absolute;
  top: -16px; 
  left: -16px; 
  right: -16px; 
  bottom: -16px;
  border-radius: 32px;
  border: 1.5px solid rgba(245,197,24,0.18);
  z-index: 1;
}

.hero-img-ring::before {
  content: '';
  position: absolute; 
  inset: -12px;
  border-radius: 36px;
  border: 1px solid rgba(37,99,235,0.15);
}

.hero-float-badge {
  position: absolute;
  bottom: -18px; 
  left: -24px; 
  z-index: 3;
  background: #f5c518;
  color: #0a1628;
  font-weight: 700; 
  font-size: 0.82rem;
  padding: 12px 20px; 
  border-radius: 12px;
  letter-spacing: 0.4px;
  box-shadow: 0 10px 30px rgba(245,197,24,0.35);
  animation: float 4s ease-in-out infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

@media (max-width: 960px) {
  #hero {
    flex-direction: column-reverse;
    padding-top: 110px;
    text-align: center;
  }
  .hero-left { max-width: 100%; align-items: center; }
  .hero-badge { 
    margin-left: auto; 
    margin-right: auto; 
}

  .hero-subtitle { 
    text-align: center; 
}

  .hero-btns { 
    justify-content: center; 
}

  .hero-stats { 
    justify-content: center; 
}

  .hero-right { 
    flex: none; 
    width: 100%; 
    justify-content: center; 
}

  .hero-image-wrapper { 
    width: 280px; 
    height: 360px; 
}

}

@media (max-width: 480px) {
  .hero-btns { 
    flex-direction: column; 
}

  .btn-primary, .btn-secondary { 
    text-align: center; 
    justify-content: center; 
}

  .hero-image-wrapper { 
    width: 240px; 
    height: 300px; 
}

}

/* hero banner end */

/* about start */

/* ── ABOUT SECTION ──────────────────────────────────────── */
#about {
  padding: 100px 6%;
  background: #0d2147;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Faint background glow */
#about::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.07), transparent 70%);
  pointer-events: none;
}

/* ══════════════════════════════════════════════════════════
   LEFT — IMAGE SIDE
══════════════════════════════════════════════════════════ */
.about-image-side {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
  width: 400px;
  height: 500px;
}

/* Main photo */
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

/* Decorative offset border behind image */
.about-img-border {
  position: absolute;
  top: 16px; left: 16px;
  right: -16px; bottom: -16px;
  border: 2px solid rgba(245, 197, 24, 0.2);
  border-radius: 28px;
  z-index: 1;
  transition: border-color 0.3s;
}

.about-img-wrapper:hover .about-img-border {
  border-color: rgba(245, 197, 24, 0.45);
}

/* ── FLOATING BADGES ────────────────────────────────────── */
.about-badge-exp,
.about-badge-clients {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 14px;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

/* Experience badge — bottom left */
.about-badge-exp {
  bottom: -20px;
  left: -24px;
  background: #f5c518;
  color: #0a1628;
  animation: float 4s ease-in-out infinite;
}

/* Clients badge — top right */
.about-badge-clients {
  top: -20px;
  right: -24px;
  background: #0a1628;
  border: 1px solid rgba(245, 197, 24, 0.25);
  color: #ffffff;
  animation: float 4s ease-in-out infinite;
  animation-delay: 2s;
}

.badge-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  color: inherit;
}

.about-badge-clients .badge-num {
  color: #f5c518;
}

.badge-label {
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.3px;
  opacity: 0.85;
}

/* ══════════════════════════════════════════════════════════
   RIGHT — CONTENT SIDE
══════════════════════════════════════════════════════════ */
.about-content-side {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-para {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.85;
  margin-bottom: 16px;
}

.about-para strong {
  color: #ffffff;
  font-weight: 700;
}

/* ── SKILL TAGS ─────────────────────────────────────────── */
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 36px;
}

.about-tag {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 50px;
  letter-spacing: 0.3px;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.2s;
  cursor: default;
}

.about-tag:hover {
  background: rgba(245, 197, 24, 0.1);
  border-color: rgba(245, 197, 24, 0.35);
  color: #f5c518;
  transform: translateY(-2px);
}

/* ── BUTTONS ────────────────────────────────────────────── */
.about-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════
   ANIMATION
══════════════════════════════════════════════════════════ */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  #about {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 70px 5%;
  }

  .about-image-side {
    order: -1;
  }

  .about-img-wrapper {
    width: 300px;
    height: 380px;
  }

  .about-badge-exp  { bottom: -14px; left: -14px; }
  .about-badge-clients { top: -14px; right: -14px; }
}

@media (max-width: 480px) {
  #about {
    padding: 60px 5%;
  }

  .about-img-wrapper {
    width: 260px;
    height: 330px;
  }

  .about-btns {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    text-align: center;
    justify-content: center;
  }
}

/* about end */

/* service section start */

#services {
  padding: 100px 6%;
  background: #0d2147;
}

.section-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #f5c518;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 1.5px;
  color: #ffffff;
  margin-bottom: 20px;
}

.section-title span {
  color: #f5c518;
}

.divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #f5c518, transparent);
  margin: 18px 0 20px;
}

.section-desc {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.75;
  max-width: 560px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f5c518, #2563eb);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(245,197,24,0.05), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  border-color: rgba(245, 197, 24, 0.25);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  width: 54px;
  height: 54px;
  background: rgba(245, 197, 24, 0.1);
  border: 1px solid rgba(245, 197, 24, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 22px;
  transition: background 0.3s, transform 0.3s;
}

.service-card:hover .service-icon {
  background: rgba(245, 197, 24, 0.18);
  transform: scale(1.08);
}

.service-name {
  font-weight: 700;
  font-size: 1.08rem;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: 0.2px;
}

.service-desc {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.75;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  #services {
    padding: 70px 5%;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 40px;
  }

  .service-card {
    padding: 28px 22px;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* service section end */

/* why choose me start */

#why {
  padding: 100px 6%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: #0a1628;
}

.why-visual {
  position: relative;
  height: 480px;
}

.why-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(245, 197, 24, 0.12);
  border-radius: 50%;
}

.why-ring-1 {
  width: 330px;
  height: 330px;
  animation: spin 20s linear infinite;
}

.why-ring-2 {
  width: 420px;
  height: 420px;
  animation: spin 28s linear infinite reverse;
}

.why-card-main {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #f5c518 0%, #f59e0b 100%);
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  color: #0a1628;
  text-align: center;
  box-shadow:0 0 60px rgba(245, 197, 24, 0.3),0 20px 50px rgba(0, 0, 0, 0.3);
  animation: float 4s ease-in-out infinite;
  z-index: 2;
}

.why-card-main .big {
  font-size: 3.8rem;
  line-height: 1;
}

.why-card-main .sm {
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  margin-top: 4px;
  opacity: 0.8;
}

.why-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f5c518;
  opacity: 0.4;
}

.reason-list {
  list-style: none;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.reason-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
  cursor: default;
}

.reason-item:hover {
  border-color: rgba(245, 197, 24, 0.3);
  background: rgba(245, 197, 24, 0.04);
  transform: translateX(6px);
}

.reason-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: #f5c518;
  line-height: 1;
  min-width: 36px;
  opacity: 0.85;
}

.reason-text h4 {
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}

.reason-text p {
  font-size: 0.86rem;
  color: #94a3b8;
  line-height: 1.7;
}

@keyframes spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes float {
  0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
  50%       { transform: translate(-50%, -50%) translateY(-14px); }
}

@media (max-width: 960px) {
  #why {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 70px 5%;
  }

  .why-visual {
    height: 320px;
    order: -1; 
  }

  .why-ring-1 { 
    width: 240px; 
    height: 240px; 
}

  .why-ring-2 { 
    width: 310px; 
    height: 310px; 
}

  .why-card-main {
    width: 160px;
    height: 160px;
  }

  .why-card-main .big { 
    font-size: 3rem; 
}

}

@media (max-width: 480px) {
  .reason-item {
    padding: 16px 18px;
    gap: 14px;
  }

  .reason-num { 
    font-size: 1.5rem; 
}

}

/* why choose me end */

/* training section start */

#training {
  padding: 100px 6%;
  background: #0d2147;
}

.training-intro {
  max-width: 660px;
  margin-bottom: 60px;
}

.training-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.training-card {
  background: #0a1628;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: default;
}

.training-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  border-color: rgba(245, 197, 24, 0.2);
}

.training-header {
  padding: 28px 28px 24px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2),rgba(245, 197, 24, 0.08));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s;
}

.training-card:hover .training-header {
  background: linear-gradient(135deg,rgba(37, 99, 235, 0.28),rgba(245, 197, 24, 0.14));
}

.training-icon-big {
  font-size: 2.4rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.training-card:hover .training-icon-big {
  transform: scale(1.15) rotate(-5deg);
}

.training-level {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
}

.level-beginner {
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.22);
}

.level-intermediate {
  background: rgba(245, 197, 24, 0.12);
  color: #f5c518;
  border: 1px solid rgba(245, 197, 24, 0.25);
}

.level-advanced {
  background: rgba(239, 68, 68, 0.12);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.22);
}

.training-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.training-name {
  font-weight: 700;
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}

.training-desc {
  font-size: 0.87rem;
  color: #94a3b8;
  line-height: 1.75;
  margin-bottom: 24px;
  flex: 1;
}

.training-meta {
  display: flex;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: auto;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  color: #94a3b8;
  font-weight: 500;
}

.meta-item svg {
  width: 14px;
  height: 14px;
  fill: #f5c518;
  flex-shrink: 0;
}

@media (max-width: 960px) {
  #training {
    padding: 70px 5%;
  }

  .training-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
  }

  .training-intro {
    margin-bottom: 40px;
  }
}

@media (max-width: 600px) {
  #training {
    padding: 60px 5%;
  }

  .training-grid {
    grid-template-columns: 1fr;
  }

  .training-header {
    padding: 22px 22px 18px;
  }

  .training-body {
    padding: 22px;
  }

  .training-name {
    font-size: 1.05rem;
  }
}

/* training section end */

/* testimonial section start */

#testimonials {
  padding: 100px 6%;
  background: #0a1628;
  position: relative;
  overflow: hidden;
}

#testimonials::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08), transparent 70%);
  pointer-events: none;
}

#testimonials::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.06), transparent 70%);
  pointer-events: none;
}

.testimonials-intro {
  max-width: 600px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}

.testi-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 36px 28px 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  cursor: default;
  transition: transform 0.3s ease,box-shadow 0.3s ease,border-color 0.3s ease,background 0.3s ease;
}

.testi-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #f5c518, #2563eb);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border-color: rgba(245, 197, 24, 0.22);
  background: rgba(255, 255, 255, 0.05);
}

.testi-card:hover::before {
  transform: scaleX(1);
}

.testi-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: #f5c518;
  opacity: 0.15;
  position: absolute;
  top: 16px; right: 24px;
  line-height: 1;
  pointer-events: none;
  transition: opacity 0.3s ease;
  user-select: none;
}

.testi-card:hover .testi-quote {
  opacity: 0.28;
}

.testi-stars {
  color: #f5c518;
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.testi-text {
  font-size: 0.91rem;
  color: #cbd5e1;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
  flex: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: auto;
}

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #f5c518);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #ffffff;
  flex-shrink: 0;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testi-card:hover .testi-avatar {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(245, 197, 24, 0.3);
}

.testi-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: #ffffff;
  letter-spacing: 0.2px;
}

.testi-role {
  font-size: 0.78rem;
  color: #64748b;
  margin-top: 3px;
  font-weight: 400;
}

@media (max-width: 960px) {
  #testimonials {
    padding: 70px 5%;
  }

  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
  }

  .testimonials-intro {
    margin-bottom: 40px;
  }
}

@media (max-width: 600px) {
  #testimonials {
    padding: 60px 5%;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testi-card {
    padding: 28px 22px 22px;
  }

  .testi-quote {
    font-size: 4rem;
  }

  .testi-stars {
    font-size: 0.82rem;
  }
}

/* testimonial section end */

/* footer start */

footer {
  background: #0d2147;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 60px 6% 36px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  bottom: -60px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 200px;
  background: radial-gradient(ellipse, rgba(245, 197, 24, 0.05), transparent 70%);
  pointer-events: none;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 3px;
  color: #f5c518;
  line-height: 1;
  cursor: default;
  transition: opacity 0.25s;
}

.footer-logo:hover {
  opacity: 0.85;
}

.footer-logo span {
  color: #ffffff;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  text-decoration: none;
  transition: background 0.25s ease,border-color 0.25s ease,transform 0.2s ease,box-shadow 0.25s ease;
  cursor: pointer;
}

.social-btn:hover {
  background: #f5c518;
  border-color: #f5c518;
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(245, 197, 24, 0.3);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 0.82rem;
  color: #475569;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 0.82rem;
  color: #64748b;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
  transition: color 0.25s ease;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: #f5c518;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.footer-links a:hover {
  color: #f5c518;
}

.footer-links a:hover::after {
  transform: scaleX(1);
}

@media (max-width: 640px) {
  footer {
    padding: 48px 5% 28px;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
    padding-bottom: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .footer-links {
    gap: 20px;
  }

  .footer-logo {
    font-size: 1.7rem;
  }
}

/* footer end */