:root {
  --gold: #d4af37;
  --gold-light: #ffe37a;
  --gold-dark: #9f7a16;
  --silver: #c9c9c9;
  --silver-light: #f2f2f2;
  --white: #ffffff;
  --black: #050505;
  --charcoal: #101010;
  --soft-dark: #181818;
  --muted: #d8d8d8;
  --text-dark: #171717;
  --overlay: rgba(0, 0, 0, 0.74);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
}

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

/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 26px 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.95),
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.logo img {
  width: 110px;
  height: auto;
  display: block;
  filter:
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.35))
    drop-shadow(0 0 14px rgba(212, 175, 55, 0.35));
}

nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

nav a {
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  transition: 0.3s ease;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.45);
}

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

.nav-btn {
  padding: 13px 25px;
  border: 2px solid var(--gold-light);
  border-radius: 999px;
  box-shadow:
    0 0 12px rgba(212, 175, 55, 0.5),
    inset 0 0 10px rgba(212, 175, 55, 0.18);
}

.nav-btn:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: #070707;
}

/* HERO */
.hero {
  min-height: 100vh;
 background:
  linear-gradient(
    rgba(0, 0, 0, 0.28),
    rgba(0, 0, 0, 0.34)
  ),
  radial-gradient(
    circle at center,
    rgba(212, 175, 55, 0.10),
    rgba(0, 0, 0, 0.22) 65%
  ),
  url("background.jpeg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 125px 7% 80px;
  position: relative;
  overflow: hidden;
}
.hero h1 {
  max-width: 900px;
  margin: 0 auto 22px;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #ffffff, #ffe37a, #c9c9c9);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 24px rgba(212, 175, 55, 0.18);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.04), transparent, rgba(212,175,55,0.08)),
    radial-gradient(circle at 50% 50%, transparent 0%, rgba(0,0,0,0.45) 72%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 55px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--silver-light), transparent);
  opacity: 0.85;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.eyebrow {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 27px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--silver-light);
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.35),
    0 0 18px rgba(212, 175, 55, 0.25);
}

/* LARGE HERO LOGO */
.hero-logo-main {
  width: min(620px, 90vw);
  height: auto;
  display: block;
  margin: 0 auto 26px;
  filter:
    drop-shadow(0 0 10px rgba(255, 255, 255, 0.35))
    drop-shadow(0 0 28px rgba(212, 175, 55, 0.55))
    drop-shadow(0 14px 22px rgba(0, 0, 0, 0.65));
}

.hero p {
  max-width: 820px;
  margin: 0 auto 34px;
  color: var(--silver-light);
  font-size: 18px;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 31px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: #070707;
  box-shadow:
    0 12px 30px rgba(212, 175, 55, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 45px rgba(212, 175, 55, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.btn-outline {
  border: 2px solid var(--silver-light);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.18);
}

.btn-outline:hover {
  background: var(--white);
  color: #080808;
  transform: translateY(-2px);
}



/* SECTIONS */
section {
  padding: 90px 7%;
}

.section-light {
  background:
    linear-gradient(135deg, #ffffff, #f3f3f3, #e7e7e7);
  color: var(--text-dark);
}

.section-dark {
  background:
    radial-gradient(circle at top, rgba(212, 175, 55, 0.13), transparent 35%),
    linear-gradient(180deg, #070707, #121212);
  color: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: 55px;
}

.section-title span {
  color: var(--gold-dark);
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
}

.section-dark .section-title span {
  color: var(--gold-light);
}

.section-title h2 {
  font-size: clamp(32px, 5vw, 52px);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 10px;
  line-height: 1.1;
}

.section-title p {
  max-width: 780px;
  margin: 18px auto 0;
  color: #4d4d4d;
}

.section-dark .section-title p {
  color: var(--silver);
}

/* =========================
   MOVE MAIN HERO LOGO CLOSER TO NAV
========================= */
.hero-content {
  transform: translateY(-70px);
}

.hero-logo-main {
  margin-bottom: 18px;
}

/* ABOUT */
#about .section-title span {
  font-size: 40px;
  letter-spacing: 6px;
  font-weight: 900;
  color: var(--gold-dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.about-box {
  background: rgba(255, 255, 255, 0.98);
  color: var(--text-dark);
  border-left: 6px solid var(--gold);
  padding: 38px;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.25),
    inset 0 0 0 1px rgba(212, 175, 55, 0.25);
}

.about-box h3 {
  font-size: 30px;
  margin-bottom: 18px;
  text-transform: uppercase;
  color: #111;
}

.about-box p {
  color: #414141;
  margin-bottom: 16px;
}

.about-list {
  list-style: none;
  margin-top: 22px;
}

.about-list li {
  margin-bottom: 12px;
  font-weight: 800;
  color: #1c1c1c;
}

.about-list li::before {
  content: "✓";
  color: var(--gold-dark);
  margin-right: 10px;
  font-weight: 900;
}

.about-image.logo-showcase {
  min-height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  border-radius: 12px;

  background:
    radial-gradient(circle at center, #ffffff 0%, #fbfbfb 45%, #eeeeee 100%);

  border: 1px solid rgba(212, 175, 55, 0.38);

  box-shadow:
    0 24px 65px rgba(0, 0, 0, 0.16),
    0 0 30px rgba(212, 175, 55, 0.12);
}

.about-image.logo-showcase img {
  width: min(530px, 100%);
  height: auto;
  display: block;

  filter:
    brightness(1.16)
    contrast(1.06)
    saturate(1.08)
    drop-shadow(0 12px 18px rgba(0, 0, 0, 0.16))
    drop-shadow(0 0 14px rgba(212, 175, 55, 0.18));
}

@media (max-width: 850px) {
  .about-image.logo-showcase {
    min-height: 320px;
    padding: 26px;
  }

  .about-image.logo-showcase img {
    width: 100%;
  }
}


/* SERVICES */
#services .section-title span {
  font-size: 40px;
  letter-spacing: 6px;
  font-weight: 900;
  color: var(--gold-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.service-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
  padding: 36px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  transition: 0.3s ease;
  box-shadow: 0 20px 50px rgba(0,0,0,0.22);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-light);
  box-shadow:
    0 25px 60px rgba(0,0,0,0.38),
    0 0 24px rgba(212, 175, 55, 0.18);
}

.service-number {
  color: var(--gold-light);
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  text-transform: uppercase;
  color: var(--white);
}

.service-card p {
  color: var(--silver);
  font-size: 15px;
}

/* QUALITY STRIP */
.quality-strip {
  background:
    linear-gradient(135deg, rgba(0,0,0,0.82), rgba(35,35,35,0.75)),
    radial-gradient(circle at center, rgba(212,175,55,0.26), transparent 60%),
    url("background.jpg") center/cover no-repeat;
  padding: 75px 7%;
  text-align: center;
  border-top: 1px solid rgba(212, 175, 55, 0.35);
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
}

.quality-strip h2 {
  font-size: clamp(30px, 5vw, 54px);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  color: var(--white);
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.24);
}

.quality-strip p {
  max-width: 850px;
  margin: auto;
  font-size: 18px;
  color: var(--silver-light);
}

/* CONTACT */
#contact .section-title span {
  font-size: 40px;
  letter-spacing: 6px;
  font-weight: 900;
  color: var(--gold-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.contact-card {
  background: #ffffff;
  color: var(--text-dark);
  padding: 42px;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 25px 65px rgba(0,0,0,0.18);
}

.contact-card h3 {
  font-size: 28px;
  margin-bottom: 18px;
  text-transform: uppercase;
  color: #111;
}

.contact-card p {
  color: #444;
  margin-bottom: 18px;
}

.contact-info {
  list-style: none;
  margin-top: 20px;
}

.contact-info li {
  margin-bottom: 14px;
  font-weight: 800;
}

.contact-info a {
  color: var(--gold-dark);
}

form {
  display: grid;
  gap: 15px;
}

input,
textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #c9c9c9;
  background: #fdfdfd;
  font-size: 15px;
  font-family: inherit;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

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

button {
  border: none;
  cursor: pointer;
  width: fit-content;
}

footer {
  background: #050505;
  padding: 30px 7%;
  text-align: center;
  color: var(--silver);
  font-size: 14px;
  border-top: 1px solid rgba(212, 175, 55, 0.28);
}

/* MOBILE */
@media (max-width: 850px) {
  header {
    padding: 22px 6%;
  }

  nav {
    gap: 15px;
  }

  nav a {
    display: none;
  }

  nav .nav-btn {
    display: inline-block;
    font-size: 12px;
    padding: 10px 18px;
  }

  .logo img {
    width: 95px;
  }

  .eyebrow {
    font-size: 21px;
    margin-bottom: 18px;
  }

  .hero-logo-main {
    width: min(420px, 94vw);
    margin-bottom: 22px;
  }

  .hero p {
    font-size: 16px;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .about-image {
    min-height: 300px;
  }

  section {
    padding: 75px 6%;
  }

  .about-box,
  .contact-card,
  .service-card {
    padding: 28px;
  }
}

.featured-service {
  border-color: var(--gold-light);
  background:
    linear-gradient(180deg, rgba(255, 227, 122, 0.12), rgba(255,255,255,0.025));
}

.service-card h4 {
  color: var(--gold-light);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.service-list {
  list-style: none;
  margin-top: 18px;
}

.service-list li {
  color: var(--silver-light);
  font-size: 15px;
  margin-bottom: 10px;
  font-weight: 700;
}

.service-list li::before {
  content: "✓";
  color: var(--gold-light);
  margin-right: 10px;
  font-weight: 900;
}

/* Certificate Authentication Section */
.certificate-auth-section {
  width: 100%;
  min-height: 560px;
  padding: 90px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.95), rgba(245,245,245,0.92)),
    radial-gradient(circle at top left, rgba(201, 162, 77, 0.25), transparent 35%),
    radial-gradient(circle at bottom right, rgba(180, 180, 180, 0.35), transparent 40%);
  position: relative;
  overflow: hidden;
}

.certificate-auth-section::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background: linear-gradient(135deg, #c9a24d, #f5f5f5);
  opacity: 0.22;
  border-radius: 50%;
  top: -120px;
  left: -120px;
}

.certificate-auth-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: linear-gradient(135deg, #d9d9d9, #ffffff);
  opacity: 0.45;
  border-radius: 50%;
  bottom: -160px;
  right: -120px;
}

.certificate-auth-container {
  width: 100%;
  max-width: 1100px;
  position: relative;
  z-index: 2;
}

.certificate-auth-content {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(201, 162, 77, 0.35);
  border-radius: 28px;
  padding: 65px 45px;
  text-align: center;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

.certificate-label {
  display: inline-block;
  margin-bottom: 18px;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(201, 162, 77, 0.12);
  color: #a67820;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.certificate-auth-content h2 {
  margin: 0 0 18px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.05;
  font-weight: 900;
  background: linear-gradient(90deg, #b88a2c, #d8d8d8, #777777);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.certificate-auth-content p {
  margin: 0 0 38px;
  color: #333333;
  font-size: 21px;
  font-weight: 500;
}

.certificate-search-box {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  background: #ffffff;
  border: 1px solid #d4d4d4;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.certificate-search-box input {
  flex: 1;
  padding: 21px 24px;
  border: none;
  outline: none;
  font-size: 17px;
  color: #222222;
  background: #ffffff;
}

.certificate-search-box input::placeholder {
  color: #777777;
}

.certificate-search-box button {
  padding: 0 46px;
  border: none;
  background: linear-gradient(135deg, #c9a24d, #9f7424);
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
}

.certificate-search-box button:hover {
  background: linear-gradient(135deg, #9f7424, #c9a24d);
  transform: translateY(-1px);
}

.certificate-note {
  display: block;
  margin-top: 18px;
  color: #666666;
  font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 700px) {
  .certificate-auth-section {
    padding: 70px 16px;
  }

  .certificate-auth-content {
    padding: 45px 22px;
    border-radius: 22px;
  }

  .certificate-auth-content p {
    font-size: 18px;
  }

  .certificate-search-box {
    flex-direction: column;
  }

  .certificate-search-box input {
    width: 100%;
    text-align: center;
  }

  .certificate-search-box button {
    width: 100%;
    padding: 18px;
  }
}

.courses-section  {
  padding: 90px 20px;
  background: linear-gradient(135deg, #ffffff, #f5f5f5, #d9d9d9);
}





.courses-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.courses-section .section-label {
  display: inline-block;
  margin-bottom: 18px;
  color: #b88a2c;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 40px;
}



.courses-section h2 {
  font-size: clamp(39px, 5vw, 89px);
  margin-bottom: 22px;
  background: linear-gradient(90deg, #b88a2c, #cfcfcf, #777);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.courses-section p {
  font-size: 19px;
  color: #333;
  max-width: 760px;
  margin: 0 auto 40px;
}

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

.course-card {
  background: #ffffff;
  border: 1px solid rgba(201, 162, 77, 0.35);
  border-radius: 22px;
  padding: 35px 28px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
}

.course-card h3 {
  font-size: 28px;
  color: #b88a2c;
  margin-bottom: 14px;
}

.course-card p {
  font-size: 16px;
  color: #444;
  margin: 0;
}

@media (max-width: 700px) {
  .courses-section .section-label {
    font-size: 20px;
  }

  .courses-section h2 {
    font-size: 40px;
  }
}

/* =========================
   PREMIUM HEADER
========================= */


.header-container {
  width: 100%;
  padding: 8px 35px 8px 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: visible;
  background: transparent;
}
.site-logo {
  width: 95px; /* smaller logo */
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(214, 178, 76, 0.25));
}

/* Logo farther left */
.logo-area {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-right: auto;
  margin-left: 0;
  padding-left: 0;
}


/* Nav stays on the right */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}

.desktop-nav > a,
.nav-drop-btn {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  padding: 6px 0;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75);
}

.desktop-nav > a:hover,
.nav-drop-btn:hover {
  color: #050505;
}

.nav-dropdown {
  position: relative;
}

.nav-drop-btn {
  display: flex;
  align-items: center;
  gap: 7px;
}

.nav-dropdown-menu {
  position: absolute;
  top: 35px;
  right: 0;
  width: 150px;
  padding: 8px;
  border-radius: 12px;
  background: rgba(8, 8, 8, 0.98);
  border: 1px solid rgba(214, 178, 76, 0.5);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
  display: none;
  flex-direction: column;
  gap: 6px;
  z-index: 999999;
}

.nav-dropdown.open .nav-dropdown-menu {
  display: flex;
}

.nav-dropdown-menu a {
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 10px 12px;
  border-radius: 8px;
  background: linear-gradient(135deg, #171717, #0f0f0f);
}

.nav-dropdown-menu a:hover {
  background: linear-gradient(135deg, #d6b24c, #9f7424);
  color: #111111;
}

/* Mobile button */
.mobile-menu-btn {
  display: none;
  width: 52px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(214, 178, 76, 0.75);
  background: rgba(8, 8, 8, 0.88);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  margin-left: auto;
  z-index: 100000;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffffff, #d6b24c);
  transition: 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile dropdown hidden by default */
.mobile-nav {
  display: none;
}

/* Mobile only */
@media (max-width: 768px) {
  .header-container {
    padding: 8px 18px 8px 6px;
  }

  .site-logo {
    width: 70px;
  }

  .mobile-menu-btn {
    width: 44px;
    height: 40px;
    border-radius: 12px;
  }

  .mobile-menu-btn span {
    width: 22px;
    height: 2.5px;
  }
}
  .mobile-nav {
    position: absolute;
    top: 100%;
    left: 14px;
    right: 14px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(8, 8, 8, 0.98);
    border: 1px solid rgba(214, 178, 76, 0.55);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(14px);
    flex-direction: column;
    gap: 10px;
    z-index: 999999;
  }

  .mobile-nav.show {
    display: flex;
  }

  .mobile-nav a {
    display: block;
    width: 100%;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    padding: 14px 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, #171717, #0f0f0f);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-nav a:hover {
    background: linear-gradient(135deg, #d6b24c, #9f7424);
    color: #111111;
  }

  /* =========================
   MOBILE NAV FIX
========================= */

.site-header {
  width: 100%;
  background: rgba(40, 40, 40, 0.45);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border-bottom: 1px solid rgba(214, 178, 76, 0.35);
  position: sticky;
  top: 0;
  z-index: 99999;
  overflow: visible;
}

.header-container {
  width: 100%;
  padding: 8px 35px 8px 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: visible;
}

.logo-area {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-right: auto;
}

.site-logo {
  width: 95px;
  height: auto;
  display: block;
}

/* Desktop */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}

.desktop-nav > a,
.nav-drop-btn {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 0;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 32px;
  right: 0;
  width: 150px;
  padding: 8px;
  border-radius: 12px;
  background: rgba(8, 8, 8, 0.98);
  border: 1px solid rgba(214, 178, 76, 0.5);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
  display: none;
  flex-direction: column;
  gap: 6px;
  z-index: 999999;
}

.nav-dropdown.open .nav-dropdown-menu {
  display: flex;
}

.nav-dropdown-menu a {
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 10px 12px;
  border-radius: 8px;
  background: linear-gradient(135deg, #171717, #0f0f0f);
}

/* Mobile hamburger hidden on desktop */
.mobile-menu-btn {
  display: none;
}

/* Mobile dropdown hidden by default */
.mobile-nav {
  display: none;
}

/* =========================
   MOBILE ONLY
========================= */

@media (max-width: 768px) {
  .header-container {
    padding: 8px 18px 8px 6px;
  }

  .site-logo {
    width: 70px;
  }

  /* Hide desktop Home / Services / More on mobile */
  .desktop-nav {
    display: none !important;
  }

  /* Show hamburger */
  .mobile-menu-btn {
    display: flex !important;
    width: 44px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(214, 178, 76, 0.75);
    background: rgba(8, 8, 8, 0.88);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    margin-left: auto;
    z-index: 100000;
  }

  .mobile-menu-btn span {
    width: 22px;
    height: 2.5px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ffffff, #d6b24c);
    transition: 0.3s ease;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  .mobile-nav {
    position: absolute;
    top: 100%;
    left: 14px;
    right: 14px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(8, 8, 8, 0.98);
    border: 1px solid rgba(214, 178, 76, 0.55);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(8px);
    flex-direction: column;
    gap: 10px;
    z-index: 999999;
  }

  .mobile-nav.show {
    display: flex !important;
  }

  .mobile-nav a {
    display: block;
    width: 100%;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 13px 15px;
    border-radius: 12px;
    background: linear-gradient(135deg, #171717, #0f0f0f);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-nav a:hover {
    background: linear-gradient(135deg, #d6b24c, #9f7424);
    color: #111111;
  }
}


/* =========================
   PREMIUM SMOOTH SCROLL
========================= */
html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

/* Prevent sticky header from covering sections */
section,
[id] {
  scroll-margin-top: 95px;
}

/* Premium reveal animation */
/* =========================
   FAST PREMIUM SCROLL REVEAL
========================= */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(4px);
  transition:
    opacity 0.55s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.55s ease;
  will-change: opacity, transform, filter;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Premium button/nav movement */
.desktop-nav a,
.nav-drop-btn,
.mobile-nav a,
.btn,
button {
  transition:
    color 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.desktop-nav a:hover,
.nav-drop-btn:hover,
.mobile-nav a:hover,
.btn:hover {
  transform: translateY(-1px);
}

/* Accessibility: reduce animation for users who prefer less motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

#home {
  scroll-margin-top: 0;
}

/* =========================
   PREMIUM LINE-BY-LINE REVEAL
========================= */
.reveal,
.line-reveal {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(3px);
  transition:
    opacity 0.5s ease,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.5s ease;
  will-change: opacity, transform, filter;
}

.reveal.show,
.line-reveal.show {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Slightly more premium for boxes/cards */
.service-card.line-reveal,
.course-card.line-reveal,
.contact-card.line-reveal,
.about-box.line-reveal,
.about-image.line-reveal,
.certification-box.line-reveal {
  transform: translateY(24px) scale(0.985);
}

.service-card.line-reveal.show,
.course-card.line-reveal.show,
.contact-card.line-reveal.show,
.about-box.line-reveal.show,
.about-image.line-reveal.show,
.certification-box.line-reveal.show {
  transform: translateY(0) scale(1);
}

/* Disable animation for people who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .line-reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

/* =========================
   PREMIUM GOLD NAV BAR
========================= */
.site-header {
  width: 100%;
  background:
    linear-gradient(
      135deg,
    rgba(82, 55, 8, 0.62),
rgba(212, 175, 55, 0.58),
rgba(116, 78, 12, 0.62)
    );
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 227, 122, 0.65);
  position: sticky;
  top: 0;
  z-index: 99999;
  overflow: visible;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.header-container {
  background: transparent !important;
}

/* Desktop nav text */
.desktop-nav > a,
.nav-drop-btn {
  color: #ffffff !important;
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.65),
    0 0 8px rgba(255, 255, 255, 0.18);
}

.desktop-nav > a:hover,
.nav-drop-btn:hover {
  color: #050505 !important;
  text-shadow: none;
}

/* Logo glow on gold navbar */
.site-logo {
  filter:
    drop-shadow(0 4px 10px rgba(0, 0, 0, 0.45))
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.35));
}

/* More dropdown */
.nav-dropdown-menu {
  background: rgba(12, 12, 12, 0.98) !important;
  border: 1px solid rgba(255, 227, 122, 0.75) !important;
}

.nav-dropdown-menu a:hover {
  background: linear-gradient(135deg, #ffe37a, #d4af37, #9f7424) !important;
  color: #050505 !important;
}

/* Mobile hamburger */
.mobile-menu-btn {
  background: rgba(0, 0, 0, 0.72) !important;
  border: 1px solid rgba(255, 255, 255, 0.65) !important;
}

.mobile-menu-btn span {
  background: linear-gradient(90deg, #ffffff, #ffe37a) !important;
}

/* Mobile dropdown */
.mobile-nav {
  background: rgba(10, 10, 10, 0.98) !important;
  border: 1px solid rgba(255, 227, 122, 0.75) !important;
}

.mobile-nav a:hover {
  background: linear-gradient(135deg, #ffe37a, #d4af37, #9f7424) !important;
  color: #050505 !important;
}

/* =========================
   COMBINED LEVEL I & II COURSE
========================= */
.courses-grid.single-course {
  grid-template-columns: 1fr;
  max-width: 900px;
  margin: 0 auto;
}

.combined-course {
  padding: 45px 38px;
}

.combined-course h3 {
  font-size: clamp(30px, 4vw, 48px);
  margin-bottom: 18px;
}

.course-levels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 30px;
}

.course-levels div {
  background: linear-gradient(135deg, #f8f8f8, #ffffff);
  border: 1px solid rgba(201, 162, 77, 0.35);
  border-radius: 18px;
  padding: 24px;
}

.course-levels h4 {
  color: #b88a2c;
  font-size: 22px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.course-levels p {
  font-size: 15px;
  margin: 0;
  color: #444;
}

@media (max-width: 700px) {
  .course-levels {
    grid-template-columns: 1fr;
  }

  .combined-course {
    padding: 32px 22px;
  }
}


/* =========================
   SERVICES SILVER CHROME BACKGROUND
========================= */
#services {
  background:
    linear-gradient(
      135deg,
      #f8f8f8 0%,
      #d9d9d9 18%,
      #ffffff 34%,
      #bdbdbd 50%,
      #f2f2f2 66%,
      #a8a8a8 82%,
      #efefef 100%
    );
  color: #111111;
  position: relative;
  overflow: hidden;
}

#services::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,0.35),
      rgba(255,255,255,0.08),
      rgba(0,0,0,0.06),
      rgba(255,255,255,0.18)
    );
  pointer-events: none;
}

#services .section-title,
#services .services-grid {
  position: relative;
  z-index: 2;
}

#services .section-title span {
  color: #b88a2c;
}

#services .section-title h2 {
  color: #111111;
  text-shadow: none;
}

#services .section-title p {
  color: #333333;
}

/* Keep cards premium on chrome background */
#services .service-card {
  background: linear-gradient(180deg, rgba(20,20,20,0.92), rgba(35,35,35,0.88));
  border: 1px solid rgba(184, 138, 44, 0.45);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

#services .service-card h3 {
  color: #ffffff;
}

#services .service-card p {
  color: #e5e5e5;
}

#services .service-number,
#services .service-card h4 {
  color: #ffd86b;
}

#services .service-list li {
  color: #f2f2f2;
}