/* READY OFFICIAL Header - Exact Replica */
.ready-header {
  position: sticky;
  top: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-bottom: 3px solid #d4af37;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  padding: 1rem 0;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

/* Logo Section */
.logo-section {
  flex-shrink: 0;
}

.logo-circle {
  position: relative;
  width: 120px;
  height: 60px;
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
  border: 2px solid #f4d03f;
  transition: all 0.3s ease;
}

.logo-circle:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.logo-text {
  font-family: 'Arial Black', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: #1a1a1a;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: -2px;
}

.official-text {
  font-family: 'Arial', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 0.5px;
  line-height: 1;
  margin-bottom: -1px;
}

.established-text {
  font-family: 'Arial', sans-serif;
  font-size: 0.45rem;
  font-weight: 400;
  color: #333;
  letter-spacing: 0.3px;
  line-height: 1;
}

/* Navigation Menu */
.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  margin-left: 3rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: 'Arial', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  padding: 0.75rem 1.25rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.nav-link:hover {
  color: #d4af37;
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-1px);
}

.nav-link.active {
  color: #d4af37;
  background: rgba(212, 175, 55, 0.15);
  font-weight: 600;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #d4af37;
  border-radius: 50%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #d4af37;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 1.5rem;
  }
  .nav-menu {
    gap: 1.8rem;
  }
  .nav-link {
    font-size: 0.95rem;
    padding: 0.6rem 1rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 1rem;
  }
  .logo-circle {
    width: 100px;
    height: 50px;
    border-radius: 25px;
  }
  .logo-text { font-size: 0.95rem; }
  .official-text { font-size: 0.55rem; }
  .established-text { font-size: 0.4rem; }

  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-top: 1px solid #d4af37;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }
  .header-nav.active { display: block; }
  .nav-menu {
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
  }
  .nav-menu li { width: 100%; }
  .nav-link {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem 2rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  }
  .nav-link:hover { background: rgba(212, 175, 55, 0.05); }
  .mobile-menu-toggle { display: flex; }
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

@media (max-width: 480px) {
  .header-container { padding: 0 0.75rem; }
  .logo-circle { width: 90px; height: 45px; border-radius: 22px; }
  .logo-text { font-size: 0.85rem; }
  .official-text { font-size: 0.5rem; }
  .established-text { font-size: 0.35rem; }
  .nav-link { font-size: 0.9rem; padding: 0.9rem 1.5rem; }
}

/* Smooth Scroll & Load Animation */
html { scroll-behavior: smooth; }
.ready-header { animation: slideDown 0.6s ease-out; }
@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}


/* banner */

.hero-banner.no-bg {
  padding: 4rem 2rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-banner .hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.hero-banner .text-block {
  flex: 1;
}

.hero-banner h1 {
  font-size: 2.5rem;
  margin: 0 0 1rem;
  color: #f5d16f;
}

.hero-banner .subhead {
  font-size: 1.2rem;
  margin: 0 0 1.5rem;
  color: #fff;
}

.hero-banner .description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #ddd;
}

.hero-banner .cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-banner .btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid #f5d16f;
  border-radius: 50px;
  color: #fff;
  background: transparent;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.hero-banner .btn:hover {
  background: #f5d16f;
  color: #1a1a1a;
}

.hero-banner .image-block {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-banner .image-placeholder {
  width: 100%;
  max-width: 400px;
  height: 300px;
  background: rgba(255,255,255,0.1);
  border: 2px dashed rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 1rem;
}

@media (max-width: 992px) {
  .hero-banner .hero-content {
    flex-direction: column-reverse;
    text-align: center;
  }
  .hero-banner .image-block,
  .hero-banner .text-block {
    width: 100%;
  }
  .hero-banner .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero-banner h1 {
    font-size: 2rem;
  }
  .hero-banner .subhead {
    font-size: 1rem;
  }
  .hero-banner .description {
    font-size: 0.95rem;
  }
  .hero-banner .image-placeholder {
    max-width: 300px;
    height: 200px;
  }
}

.elementor img{
      position: relative;
    display: inline-block;
    -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: cover;
    mask-image: radial-gradient(circle, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: cover;
}