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

body {
  background-color: #05070D;
  color: #FFFFFF;
  font-family: 'Poppins', 'Inter', sans-serif;
  line-height: 1.5;
  scroll-behavior: smooth;
}

body.menu-open {
  overflow: hidden;
}

body.lead-modal-open {
  overflow: hidden;
}

h1, h2, h3, h4, .heading-font {
  font-family: 'Cinzel', 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.btn, button, .cta-button {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
}

:root {
  --bg-primary: #05070D;
  --bg-secondary: #0B1018;
  --gold: #D4AF37;
  --gold-highlight: #F5C542;
  --blue-accent: #00AEEF;
  --white: #FFFFFF;
  --grey-text: #B8B8B8;
  --border-gold: #8C6A18;
}

@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes border-run {
  to {
    --border-angle: 360deg;
  }
}

.hero-image,
.panel,
.mini-course-card,
.course-card,
.need-card,
.objective-card,
.positioning-card,
.institute-benefit-card,
.benefit-item,
.testimonial,
.contact-form,
.mentor-card {
  isolation: isolate;
  position: relative;
}

.panel > *,
.mini-course-card > *,
.course-card > *,
.need-card > *,
.objective-card > *,
.positioning-card > *,
.institute-benefit-card > *,
.benefit-item > *,
.testimonial > *,
.contact-form > *,
.mentor-card > * {
  position: relative;
  z-index: 2;
}

.hero-image::before,
.panel::before,
.mini-course-card::before,
.course-card::before,
.need-card::before,
.objective-card::before,
.positioning-card::before,
.institute-benefit-card::before,
.benefit-item::before,
.testimonial::before,
.contact-form::before,
.mentor-card::before {
  animation: border-run 4.8s linear infinite;
  background: conic-gradient(
    from var(--border-angle),
    transparent 0deg,
    transparent 62deg,
    rgba(0, 174, 239, 0.95) 92deg,
    var(--gold-highlight) 122deg,
    var(--gold) 150deg,
    transparent 188deg,
    transparent 360deg
  );
  border-radius: inherit;
  content: "";
  inset: -1px;
  opacity: 0.65;
  position: absolute;
  z-index: 0;
}

.hero-image::after,
.panel::after,
.mini-course-card::after,
.course-card::after,
.need-card::after,
.objective-card::after,
.positioning-card::after,
.institute-benefit-card::after,
.benefit-item::after,
.testimonial::after,
.contact-form::after,
.mentor-card::after {
  background: var(--surface-bg, var(--bg-secondary));
  border-radius: inherit;
  content: "";
  inset: 2px;
  position: absolute;
  z-index: 1;
}

.hero-image::before {
  animation-duration: 3.8s;
  opacity: 0.95;
}

.hero-image::after {
  background: #0B1018;
}

.mini-course-card::before,
.course-card::before,
.need-card::before,
.objective-card::before,
.positioning-card::before,
.institute-benefit-card::before {
  opacity: 0.48;
  transition: opacity 0.3s ease;
}

.mini-course-card:hover::before,
.course-card:hover::before,
.need-card:hover::before,
.objective-card:hover::before,
.positioning-card:hover::before,
.institute-benefit-card:hover::before {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero-image::before,
  .panel::before,
  .mini-course-card::before,
  .course-card::before,
  .need-card::before,
  .objective-card::before,
  .positioning-card::before,
  .institute-benefit-card::before,
  .benefit-item::before,
  .testimonial::before,
  .contact-form::before,
  .mentor-card::before {
    animation: none;
  }
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-highlight) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.section-sub {
  color: var(--grey-text);
  max-width: 700px;
  margin-bottom: 3rem;
}

header {
  background: rgba(5, 7, 13, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-gold);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
}

body {
  padding-top: 81px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  min-width: 0;
  text-decoration: none;
}

.logo img {
  display: block;
  height: 52px;
  max-width: 220px;
  object-fit: contain;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--white);
  position: relative;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a[aria-current="page"],
body:has(.hero) .nav-links a[href="index.html"],
body:has(.about-story-section) .nav-links a[href="about.html"],
body:has(.courses-grid) .nav-links a[href="courses.html"],
body:has(.gallery-page) .nav-links a[href="gallery.html"],
body:has(.why-detail-section) .nav-links a[href="why-us.html"],
body:has(.contact-section) .nav-links a[href="contact.html"]:not(.enroll-btn) {
  color: var(--gold);
}

.nav-links a[aria-current="page"]::before,
body:has(.hero) .nav-links a[href="index.html"]::before,
body:has(.about-story-section) .nav-links a[href="about.html"]::before,
body:has(.courses-grid) .nav-links a[href="courses.html"]::before,
body:has(.gallery-page) .nav-links a[href="gallery.html"]::before,
body:has(.why-detail-section) .nav-links a[href="why-us.html"]::before,
body:has(.contact-section) .nav-links a[href="contact.html"]:not(.enroll-btn)::before {
  background: var(--gold);
  border-radius: 999px;
  bottom: -8px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
}

.enroll-btn {
  background: transparent;
  border: 1.5px solid var(--gold);
  padding: 8px 24px;
  border-radius: 40px;
  color: var(--gold);
  font-weight: 600;
}

.enroll-btn:hover {
  background: var(--gold);
  color: #05070D;
}

.menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--gold);
  background: transparent;
  border: 0;
  position: relative;
}

.menu-icon i {
  transition: transform 0.28s ease, opacity 0.2s ease;
}

.menu-backdrop {
  display: none;
}

.drawer-head {
  display: none;
}

.app-bottom-nav {
  display: none;
}

.hero {
  background: radial-gradient(circle at 20% 30%, #0B1018, #05070D);
  padding: 100px 0;
}

.hero-grid {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1;
  min-width: 300px;
}

.hero-content h1 {
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content p {
  color: var(--grey-text);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.btn-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: #05070D;
  padding: 12px 32px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-highlight);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.btn-outline {
  border: 1.5px solid var(--gold);
  background: transparent;
  padding: 12px 32px;
  border-radius: 40px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-3px);
}

.hero-image {
  flex: 1;
  min-width: 300px;
  background: #0B1018;
  border-radius: 24px;
  border: 1px solid transparent;
  overflow: hidden;
  padding: 2px;
  box-shadow: 0 20px 35px -10px rgba(0,0,0,0.5);
}

.hero-image img {
  width: 100%;
  border-radius: 21px;
  display: block;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

.hero-kicker {
  color: var(--blue-accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.stat-box {
  background: rgba(11, 16, 24, 0.75);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 18px;
  padding: 18px;
}

.stat-box strong {
  color: var(--gold);
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
}

.stat-box span {
  color: var(--grey-text);
  font-size: 0.85rem;
}

.institute-proof {
  background:
    radial-gradient(circle at 14% 20%, rgba(0, 174, 239, 0.15), transparent 30%),
    linear-gradient(180deg, #05070D 0%, #0B1018 100%);
  padding: 64px 0;
}

.institute-panel {
  background: rgba(11, 16, 24, 0.78);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 24px;
  display: grid;
  gap: 34px;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  padding: 34px;
  position: relative;
}

.institute-panel::before {
  background: linear-gradient(90deg, var(--gold), var(--blue-accent), var(--gold-highlight));
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.institute-copy {
  align-self: center;
}

.institute-copy .section-title {
  margin-bottom: 14px;
}

.institute-copy p {
  color: var(--grey-text);
  margin-bottom: 26px;
  max-width: 560px;
}

.institute-stats {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.institute-stat {
  background: rgba(5, 7, 13, 0.62);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 18px;
  padding: 18px;
}

.institute-stat strong {
  color: var(--gold);
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 1.35rem;
  line-height: 1.2;
  margin-bottom: 6px;
}

.institute-stat span {
  color: var(--grey-text);
  font-size: 0.9rem;
}

.program-need-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(212, 175, 55, 0.13), transparent 30%),
    var(--bg-primary);
}

.program-need-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.need-card {
  background: var(--bg-secondary);
  border: 1px solid transparent;
  border-radius: 22px;
  min-height: 255px;
  overflow: hidden;
  padding: 24px;
  transition: transform 0.3s ease;
}

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

.need-card i {
  align-items: center;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 16px;
  color: var(--gold);
  display: flex;
  font-size: 1.35rem;
  height: 48px;
  justify-content: center;
  margin-bottom: 20px;
  width: 48px;
}

.need-card h3 {
  color: var(--gold);
  font-size: 1.08rem;
  margin-bottom: 12px;
}

.need-card p {
  color: var(--grey-text);
  font-size: 0.92rem;
}

.objectives-section {
  background: var(--bg-primary);
}

.objectives-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.objective-card {
  background: var(--bg-secondary);
  border: 1px solid transparent;
  border-radius: 22px;
  min-height: 260px;
  overflow: hidden;
  padding: 24px;
  transition: transform 0.3s ease;
}

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

.objective-card span {
  color: rgba(212, 175, 55, 0.24);
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 18px;
}

.objective-card h3 {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.objective-card p {
  color: var(--grey-text);
  font-size: 0.94rem;
}

.positioning-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(0, 174, 239, 0.12), transparent 30%),
    var(--bg-secondary);
}

.positioning-flex {
  align-items: stretch;
  display: flex;
  gap: 24px;
}

.positioning-card {
  background: var(--bg-secondary);
  border: 1px solid transparent;
  border-radius: 24px;
  flex: 1 1 0;
  overflow: hidden;
  padding: 30px;
}

.positioning-card h3,
.positioning-card ul,
.positioning-card li,
.positioning-card span,
.positioning-card i {
  position: relative;
  z-index: 2;
}

.positioning-card h3 {
  color: var(--gold);
  font-size: 1.35rem;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.positioning-card ul {
  display: grid;
  gap: 16px;
  list-style: none;
}

.positioning-card li {
  align-items: flex-start;
  color: var(--grey-text);
  display: flex;
  gap: 12px;
}

.positioning-card i {
  flex: 0 0 auto;
  font-size: 1rem;
  margin-top: 4px;
}

.positioning-card.positive i {
  color: var(--gold);
}

.positioning-card.negative i {
  color: #ff6b6b;
}

.positioning-card.negative h3 {
  color: #ffb3b3;
}

.institute-benefits-section {
  background: var(--bg-primary);
}

.institute-benefits-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.institute-benefit-card {
  background: var(--bg-secondary);
  border: 1px solid transparent;
  border-radius: 22px;
  min-height: 245px;
  overflow: hidden;
  padding: 24px;
  transition: transform 0.3s ease;
}

.institute-benefit-card:hover {
  transform: translateY(-6px);
}

.institute-benefit-card i {
  align-items: center;
  background: rgba(0, 174, 239, 0.1);
  border: 1px solid rgba(0, 174, 239, 0.24);
  border-radius: 16px;
  color: var(--blue-accent);
  display: flex;
  font-size: 1.32rem;
  height: 48px;
  justify-content: center;
  margin-bottom: 20px;
  width: 48px;
}

.institute-benefit-card h3 {
  color: var(--gold);
  font-size: 1.12rem;
  margin-bottom: 12px;
}

.institute-benefit-card p {
  color: var(--grey-text);
  font-size: 0.94rem;
}

.placement-proof-section {
  background:
    radial-gradient(circle at 14% 18%, rgba(0, 174, 239, 0.12), transparent 30%),
    var(--bg-secondary);
}

.placement-table-card {
  background: var(--bg-secondary);
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 22px 42px -26px rgba(0, 0, 0, 0.8);
}

.placement-table-wrap {
  overflow-x: auto;
}

.placement-table {
  border-collapse: collapse;
  min-width: 920px;
  width: 100%;
}

.placement-table th,
.placement-table td {
  border-bottom: 1px solid rgba(212, 175, 55, 0.13);
  padding: 15px 18px;
  text-align: left;
}

.placement-table th {
  background: rgba(5, 7, 13, 0.9);
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.placement-table td {
  color: var(--grey-text);
  font-size: 0.92rem;
}

.placement-table tbody tr:hover {
  background: rgba(212, 175, 55, 0.06);
}

.placement-table td:nth-child(2),
.placement-table td:nth-child(5) {
  color: var(--white);
  font-weight: 600;
}

.placement-table td:nth-child(5) {
  color: var(--gold-highlight);
}

.placement-summary {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(212, 175, 55, 0.12), rgba(0, 174, 239, 0.1)),
    rgba(5, 7, 13, 0.72);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 22px 24px;
}

.placement-summary strong {
  color: var(--gold);
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 1.65rem;
  line-height: 1;
}

.placement-summary span,
.placement-summary p {
  color: var(--grey-text);
}

.placement-summary p {
  margin: 0;
  max-width: 760px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 32px;
}

.section-head .section-sub {
  margin-bottom: 0;
}

.page-hero {
  background:
    radial-gradient(circle at 14% 18%, rgba(0, 174, 239, 0.14), transparent 32%),
    radial-gradient(circle at 84% 18%, rgba(212, 175, 55, 0.11), transparent 30%),
    var(--bg-primary);
  padding: 72px 0;
}

.page-hero-grid {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
}

.page-hero .section-sub {
  margin-bottom: 28px;
}

.page-hero-media {
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 28px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.42);
  overflow: hidden;
  position: relative;
}

.page-hero-media::after {
  background: linear-gradient(180deg, transparent 45%, rgba(5, 7, 13, 0.55));
  content: "";
  inset: 0;
  position: absolute;
}

.page-hero-media img {
  aspect-ratio: 16 / 11;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
}

.panel {
  background: var(--bg-secondary);
  border: 1px solid transparent;
  border-radius: 24px;
  padding: 30px;
}

.mentor-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(212, 175, 55, 0.16), transparent 32%),
    var(--bg-secondary);
}

.mentor-card {
  align-items: center;
  background: var(--bg-secondary);
  border: 1px solid transparent;
  border-radius: 28px;
  display: grid;
  gap: 44px;
  grid-template-columns: 320px 1fr;
  overflow: hidden;
  padding: 38px;
}

.mentor-card::before {
  opacity: 0.9;
}

.mentor-image-wrap {
  align-items: center;
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 35% 25%, rgba(245, 197, 66, 0.28), transparent 34%),
    #05070D;
  border: 2px solid rgba(212, 175, 55, 0.42);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  max-width: 320px;
  overflow: hidden;
  padding: 8px;
  width: 100%;
}

.mentor-image-wrap img {
  aspect-ratio: 1;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  width: 100%;
}

.mentor-content h3 {
  color: var(--white);
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 14px;
}

.mentor-content p {
  color: var(--grey-text);
  max-width: 760px;
}

.mentor-stats {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 26px 0;
}

.mentor-stats div {
  background: rgba(5, 7, 13, 0.58);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 18px;
  padding: 16px;
}

.mentor-stats strong {
  color: var(--gold);
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  line-height: 1.2;
  margin-bottom: 6px;
}

.mentor-stats span {
  color: var(--grey-text);
  font-size: 0.88rem;
}

.mentor-list {
  margin-top: 0;
}

.highlight-list {
  display: grid;
  gap: 16px;
  list-style: none;
  margin-top: 24px;
}

.highlight-list li {
  color: var(--grey-text);
  display: flex;
  gap: 12px;
}

.highlight-list i {
  color: var(--gold);
  margin-top: 4px;
}

.about-story-section,
.why-detail-section,
.contact-section {
  background: var(--bg-primary);
}

.value-grid {
  display: grid;
  gap: 18px;
}

.value-card {
  background: rgba(11, 16, 24, 0.78);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 22px;
  padding: 24px;
}

.value-card i {
  align-items: center;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 14px;
  color: var(--gold);
  display: flex;
  height: 46px;
  justify-content: center;
  margin-bottom: 16px;
  width: 46px;
}

.value-card h3 {
  color: var(--gold);
  margin-bottom: 8px;
}

.value-card p {
  color: var(--grey-text);
}

.faq-block {
  margin-top: 50px;
}

.faq-block h3 {
  color: var(--gold);
  margin-bottom: 18px;
}

.mini-course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.mini-course-card {
  background: var(--bg-secondary);
  border: 1px solid transparent;
  border-radius: 24px;
  padding: 24px;
  transition: 0.3s;
}

.mini-course-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
}

.mini-course-card h3 {
  color: var(--gold);
  margin-bottom: 8px;
}

.mini-course-card p {
  color: var(--grey-text);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.home-cta {
  background: radial-gradient(circle at 80% 20%, rgba(0, 174, 239, 0.16), transparent 32%), var(--bg-secondary);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-panel p {
  color: var(--grey-text);
  max-width: 680px;
}

.courses-grid, .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.course-card {
  background: var(--bg-secondary);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid transparent;
  transition: 0.3s;
}

.course-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 20px 30px -12px rgba(0,0,0,0.6);
}

.course-card h3 {
  color: var(--gold);
  font-size: 1.7rem;
}

.course-tag {
  color: var(--blue-accent);
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin: 8px 0;
}

.card-duration {
  color: var(--grey-text);
  font-size: 0.9rem;
  margin: 10px 0;
}

.modules-list {
  margin: 15px 0;
  padding-left: 18px;
  color: var(--grey-text);
  font-size: 0.85rem;
}

.modules-list li {
  margin: 6px 0;
}

.btn-card {
  margin-top: 20px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 30px;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
}

.btn-card:hover {
  background: var(--gold);
  color: #05070D;
}

.benefits-grid {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.benefit-item {
  background: rgba(11, 16, 24, 0.7);
  backdrop-filter: blur(4px);
  padding: 24px;
  border-radius: 20px;
  text-align: center;
  border-bottom: 2px solid var(--gold);
}

.benefit-item i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 15px;
}

.testimonial-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.testimonial {
  background: var(--bg-secondary);
  padding: 28px;
  border-radius: 24px;
  flex: 1;
  border-left: 4px solid var(--gold);
}

.gallery-preview-section,
.gallery-page {
  background:
    radial-gradient(circle at 88% 14%, rgba(0, 174, 239, 0.12), transparent 30%),
    var(--bg-primary);
}

.masonry-gallery {
  column-count: 3;
  column-gap: 20px;
}

.masonry-gallery--preview {
  column-count: 3;
}

.gallery-item {
  background: var(--bg-secondary);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 20px;
  break-inside: avoid;
  display: inline-block;
  margin: 0 0 20px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.gallery-item::after {
  background: linear-gradient(180deg, transparent 58%, rgba(5, 7, 13, 0.58));
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.28s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item img {
  display: block;
  height: auto;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.35s ease;
  width: 100%;
}

.gallery-item:hover img {
  opacity: 0.92;
  transform: scale(1.035);
}

.faq-item {
  background: var(--bg-secondary);
  margin-bottom: 16px;
  border-radius: 16px;
  padding: 20px;
  cursor: pointer;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  color: var(--gold);
  font-weight: 600;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
  color: var(--grey-text);
  padding-top: 0;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-top: 16px;
}

.contact-grid {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.contact-list a {
  align-items: center;
  background: rgba(11, 16, 24, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 16px;
  color: var(--white);
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  text-decoration: none;
}

.contact-list i {
  color: var(--gold);
  flex: 0 0 auto;
  width: 22px;
}

.contact-list a:hover {
  border-color: rgba(212, 175, 55, 0.45);
}

.contact-visual {
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 24px;
  overflow: hidden;
}

.contact-visual img {
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  width: 100%;
}

.contact-form {
  flex: 1;
  background: var(--bg-secondary);
  padding: 32px;
  border-radius: 32px;
}

.contact-form h3 {
  color: var(--gold);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

input, select, textarea {
  width: 100%;
  padding: 14px;
  background: #0f1620;
  border: 1px solid #2a2f3a;
  border-radius: 12px;
  color: white;
  font-family: 'Poppins', sans-serif;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  outline: none;
}

.lead-modal {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: 20px;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.22s ease, visibility 0.22s ease;
  visibility: hidden;
  z-index: 10000;
}

.lead-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.lead-modal__backdrop {
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(5px);
  inset: 0;
  position: absolute;
}

.lead-modal__dialog {
  background:
    linear-gradient(180deg, rgba(11, 16, 24, 0.98), rgba(5, 7, 13, 0.98));
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 24px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.65);
  max-height: calc(100vh - 40px);
  max-width: 460px;
  overflow-y: auto;
  padding: 28px;
  position: relative;
  transform: translateY(14px) scale(0.98);
  transition: transform 0.22s ease;
  width: min(100%, 460px);
}

.lead-modal.is-open .lead-modal__dialog {
  transform: translateY(0) scale(1);
}

.lead-modal__close {
  align-items: center;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 12px;
  color: var(--gold);
  cursor: pointer;
  display: flex;
  height: 40px;
  justify-content: center;
  position: absolute;
  right: 18px;
  top: 18px;
  width: 40px;
}

.lead-modal__close:hover {
  background: var(--gold);
  color: #05070D;
}

.lead-modal__head {
  padding-right: 42px;
}

.lead-modal__head span {
  color: var(--blue-accent);
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.lead-modal__head h2 {
  color: var(--gold);
  font-size: 1.75rem;
  line-height: 1.2;
  margin-bottom: 8px;
}

.lead-modal__head p {
  color: var(--grey-text);
  font-size: 0.92rem;
  margin-bottom: 22px;
}

.lead-form {
  display: grid;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 7px;
}

.lead-form label span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 600;
}

.lead-course-field[hidden] {
  display: none;
}

.lead-form input,
.lead-form select {
  border-radius: 12px;
  padding: 12px 13px;
}

.lead-checks {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 14px;
  display: grid;
  gap: 10px;
  padding: 12px;
}

.lead-checks label {
  align-items: center;
  color: var(--grey-text);
  display: flex;
  font-size: 0.9rem;
  gap: 10px;
}

.lead-checks input {
  accent-color: var(--gold);
  flex: 0 0 auto;
  height: 16px;
  padding: 0;
  width: 16px;
}

.lead-submit {
  border: 0;
  cursor: pointer;
  margin-top: 4px;
  width: 100%;
}

.lead-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.lead-message {
  color: var(--grey-text);
  font-size: 0.88rem;
  min-height: 1.2em;
}

.lead-message.is-success {
  color: #7ee787;
}

.lead-message.is-error {
  color: #ff8a8a;
}

footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-gold);
  padding: 48px 0 24px;
}

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

.footer-col h4 {
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col a {
  color: var(--grey-text);
  text-decoration: none;
  display: block;
  margin: 10px 0;
  transition: 0.2s;
}

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

.social i {
  font-size: 22px;
  margin-right: 18px;
  color: var(--grey-text);
  transition: 0.2s;
}

.social i:hover {
  color: var(--gold);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #1e2532;
  color: #6c757d;
}

@media (max-width: 900px) {
  body {
    padding-top: 71px;
  }

  header {
    padding: 12px 0;
    background: rgba(5, 7, 13, 0.9);
  }

  .navbar {
    position: relative;
    flex-wrap: nowrap;
  }

  .logo {
    max-width: calc(100% - 62px);
  }

  .logo img {
    height: 46px;
    max-width: 190px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: min(84vw, 360px);
    background: linear-gradient(180deg, rgba(11, 16, 24, 0.98), rgba(5, 7, 13, 0.98));
    border-left: 1px solid rgba(212, 175, 55, 0.32);
    border-radius: 0;
    box-shadow: -28px 0 60px rgba(0, 0, 0, 0.55);
    gap: 0;
    opacity: 0;
    overflow-y: auto;
    padding: 18px 22px 24px;
    pointer-events: none;
    transform: translateX(100%);
    transition: opacity 0.25s ease, transform 0.32s ease;
    visibility: hidden;
    z-index: 9998;
  }

  .nav-links.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    visibility: visible;
  }

  .drawer-head {
    align-items: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--gold);
    display: flex;
    font-family: 'Cinzel', serif;
    font-size: 1.15rem;
    font-weight: 700;
    justify-content: space-between;
    margin-bottom: 14px;
    padding: 4px 0 18px;
  }

  .drawer-close {
    align-items: center;
    background: var(--gold);
    border: 0;
    border-radius: 12px;
    color: #05070D;
    cursor: pointer;
    display: flex;
    height: 42px;
    justify-content: center;
    width: 42px;
  }

  .drawer-close i {
    font-size: 1.2rem;
  }

  .nav-links li:not(.drawer-head) {
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  }

  .nav-links li:last-child {
    border-bottom: 0;
    padding-top: 12px;
  }

  .nav-links a {
    align-items: center;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    padding: 14px 12px;
    width: 100%;
  }

  .nav-links a::before {
    display: none;
  }

  .nav-links a:not(.enroll-btn)::after {
    color: rgba(212, 175, 55, 0.75);
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-size: 0.72rem;
    font-weight: 900;
  }

  .nav-links a:hover {
    background: rgba(212, 175, 55, 0.08);
  }

  .nav-links .enroll-btn {
    background: var(--gold);
    color: #05070D;
    justify-content: center;
    margin-top: 2px;
    padding: 13px 18px;
    text-align: center;
  }

  .menu-icon {
    align-items: center;
    background: rgba(212, 175, 55, 0.1);
    border: 0;
    border-radius: 14px;
    display: flex;
    height: 46px;
    justify-content: center;
    width: 46px;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    z-index: 9999;
  }

  .menu-icon:hover,
  .menu-icon.is-open {
    background: var(--gold);
    color: #05070D;
  }

  .menu-icon.is-open {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    transform: rotate(90deg);
  }

  .menu-icon.is-open i {
    transform: rotate(90deg) scale(0.92);
  }

  .menu-backdrop {
    background: rgba(0, 0, 0, 0.58);
    backdrop-filter: blur(3px);
    display: block;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    transition: opacity 0.25s ease;
    visibility: hidden;
    z-index: 9997;
  }

  .menu-backdrop.show {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

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

  .hero {
    padding: 72px 0;
  }

  .hero-grid {
    align-items: flex-start;
    gap: 36px;
  }

  .hero-content,
  .hero-image {
    flex: 0 0 100%;
    min-width: 0;
  }

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

  .hero-image {
    border-radius: 18px;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-stats,
  .split-grid,
  .page-hero-grid,
  .institute-panel,
  .mentor-card {
    grid-template-columns: 1fr;
  }

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

  .program-need-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .institute-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .positioning-flex {
    align-items: stretch;
    flex-direction: column;
  }

  .institute-panel {
    padding: 28px;
  }

  .mentor-card {
    gap: 30px;
    padding: 30px;
  }

  .mentor-image-wrap {
    max-width: 260px;
  }

  .section-head,
  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero {
    padding: 56px 0;
  }

  .masonry-gallery,
  .masonry-gallery--preview {
    column-count: 2;
  }
}

@media (max-width: 520px) {
  body {
    padding-bottom: calc(58px + env(safe-area-inset-bottom));
  }

  .container {
    padding: 0 18px;
  }

  .app-bottom-nav {
    align-items: center;
    background: rgba(5, 7, 13, 0.98);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(212, 175, 55, 0.22);
    bottom: 0;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.36);
    display: grid;
    gap: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    left: 0;
    padding: 5px 8px calc(5px + env(safe-area-inset-bottom));
    position: fixed;
    right: 0;
    z-index: 1001;
  }

  .app-bottom-nav a {
    align-items: center;
    border-radius: 10px;
    color: var(--grey-text);
    display: flex;
    flex-direction: column;
    font-size: 0.66rem;
    font-weight: 700;
    gap: 2px;
    min-width: 0;
    padding: 5px 4px;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  }

  .app-bottom-nav a:hover,
  .app-bottom-nav a:focus-visible {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    outline: none;
  }

  .app-bottom-nav i {
    align-items: center;
    color: var(--gold);
    display: flex;
    font-size: 0.95rem;
    height: 18px;
    justify-content: center;
    width: 24px;
  }

  .app-bottom-nav a[aria-current="page"],
  body:has(.hero) .app-bottom-nav a[href="index.html"],
  body:has(.about-story-section) .app-bottom-nav a[href="about.html"],
  body:has(.courses-grid) .app-bottom-nav a[href="courses.html"] {
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold);
  }

  .app-bottom-nav a[aria-current="page"] i,
  body:has(.hero) .app-bottom-nav a[href="index.html"] i,
  body:has(.about-story-section) .app-bottom-nav a[href="about.html"] i,
  body:has(.courses-grid) .app-bottom-nav a[href="courses.html"] i {
    color: var(--gold-highlight);
  }

  .hero {
    padding: 56px 0;
  }

  .hero-content h1 {
    font-size: 1.85rem;
    line-height: 1.25;
  }

  .hero-content p {
    margin-bottom: 24px;
  }

  .hero-kicker {
    font-size: 0.75rem;
    letter-spacing: 1px;
  }

  .btn-group {
    gap: 12px;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
  }

  .page-hero-media {
    border-radius: 18px;
  }

  .contact-form {
    border-radius: 22px;
    padding: 22px;
  }

  .contact-list a {
    align-items: flex-start;
  }

  .lead-modal {
    align-items: flex-end;
    padding: 12px;
  }

  .lead-modal__dialog {
    border-radius: 20px;
    max-height: calc(100vh - 24px);
    padding: 24px 18px 18px;
  }

  .lead-modal__head h2 {
    font-size: 1.45rem;
  }

  .hero-stats {
    gap: 12px;
    margin-top: 28px;
  }

  .institute-proof {
    padding: 46px 0;
  }

  .institute-panel {
    border-radius: 18px;
    padding: 22px;
  }

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

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

  .program-need-grid {
    grid-template-columns: 1fr;
  }

  .institute-benefits-grid {
    grid-template-columns: 1fr;
  }

  .objective-card {
    min-height: auto;
  }

  .need-card,
  .institute-benefit-card {
    min-height: auto;
  }

  .positioning-card {
    flex: 1 1 auto;
    padding: 24px;
    width: 100%;
  }

  .placement-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .institute-stat {
    padding: 16px;
  }

  .mentor-card {
    border-radius: 20px;
    padding: 22px;
  }

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

  .mentor-content h3 {
    font-size: 1rem;
  }

  .stat-box {
    padding: 14px;
  }

  .hero-image {
    border-radius: 16px;
  }

  .masonry-gallery,
  .masonry-gallery--preview {
    column-count: 1;
    column-gap: 0;
  }

  .gallery-item {
    margin-bottom: 16px;
  }
}

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

.blue-accent {
  color: var(--blue-accent);
}

@media (min-width: 901px) and (max-width: 1180px) {
  .program-need-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
