* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background: #000;
  color: #fff;
  line-height: 1.6;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 14px 30px;
  background: rgba(0,0,0,0.92);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-area span {
  font-weight: 600;
}

.logo-area img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #d4af37;
}

/* NAV LINKS */
.navbar nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.navbar a:hover {
  color: #d4af37;
  text-shadow: 0 0 6px rgba(212,175,55,0.6);
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 36px;
  background: #111;
  display: none;
  flex-direction: column;
  min-width: 200px;
  border: 1px solid #222;
  animation: dropdownSlide 0.4s ease forwards;
}

.dropdown-content a {
  padding: 12px;
  border-bottom: 1px solid #222;
}

.dropdown:hover .dropdown-content {
  display: flex;
}

/* HERO */
.hero {
  min-height: 100vh;
  padding-top: 120px;
  text-align: center;
}

.hero h1 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 2px;
}

.hero p {
  margin-top: 14px;
  font-weight: 300;
}

/* HERO LOGO */
.hero-logo img {
  width: 160px;
  height: 160px;
  margin-top: 35px;
  border-radius: 50%;
  border: 3px solid #d4af37;
  object-fit: cover;
  background: #000;
  box-shadow:
    0 0 15px rgba(212,175,55,0.6),
    0 0 30px rgba(212,175,55,0.3);
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 12px 26px;
  margin: 10px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.4s ease;
}

.primary {
  background: #d4af37;
  color: #000;
}

.outline {
  border: 1px solid #d4af37;
  color: #d4af37;
}

/* GLOW EFFECT */
.glow:hover {
  box-shadow: 0 0 18px rgba(212,175,55,0.8);
  transform: translateY(-2px);
}

/* SECTIONS */
.section {
  padding: 80px 20px;
  text-align: center;
}

.dark {
  background: #111;
}

.instructor {
  background: linear-gradient(to bottom, #000, #111);
}

.contact p {
  margin: 6px 0;
}

/* FOOTER */
footer {
  padding: 20px;
  text-align: center;
  border-top: 1px solid #222;
  font-size: 13px;
}

/* ANIMATIONS */
@keyframes dropdownSlide {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes shine {
  0% { box-shadow: 0 0 15px rgba(212,175,55,0.4); }
  50% { box-shadow: 0 0 35px rgba(212,175,55,0.9); }
  100% { box-shadow: 0 0 15px rgba(212,175,55,0.4); }
}

.pulse-shine img {
  animation: pulse 3s infinite, shine 4s infinite;
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 52px;
  }
}
/* INTERNATIONAL RANKING IMAGE FIX */
.ranking-image-section {
  display: none;
  position: relative;
  z-index: 5; /* ABOVE background & overlay */
  padding: 90px 20px;
  text-align: center;
  background: rgba(0, 0, 0, 0.92);
}

.ranking-image-wrapper {
  display: flex;
  justify-content: center;
}

.ranking-image-section h2 {
  color: #d4af37;
  margin-bottom: 30px;
  font-size: 28px;
}

.ranking-image-section img {
  max-width: 100%;
  width: 900px;
  border-radius: 14px;
  border: 2px solid #d4af37;
  box-shadow: 0 0 30px rgba(212,175,55,0.7);
  animation: rankReveal 0.9s ease;
}

/* IMAGE REVEAL ANIMATION */
@keyframes rankReveal {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

