/* Utilities */

.grid {
  display: grid;
  gap: 16px;
}
.card {
  background: #fff;
  border: 1px solid rgba(16, 24, 40, 0.12);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.06);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255);
  /*background: rgba(255, 255, 255, 0.86);*/
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(16, 24, 40, 0.12);
}
.header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.08);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}
.menu-header {
  display: inline-flex;
  gap: 40px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-logo {
  width: 140px;
  height: auto;
}
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav a,
.nav button {
  font: inherit;
  color: #5a5a5a;
  text-decoration: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 3px;
  border-radius: 12px;
}
.nav a:hover,
.nav button:hover {
  background: rgba(30, 42, 138, 0.08);
  color: #4f6b85;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-right .btn {
  background: #f28c3d;
  color: #ffffff;
}
.top-links {
  display: none;
  gap: 12px;
  align-items: center;
}
.top-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #5a6475;
  font-weight: 800;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 12px;
}
.top-link:hover {
  background: rgba(222, 223, 243, 0.55);
  color: #0a0a36;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 900;
  line-height: 1;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
  white-space: nowrap;
}
.btn:focus-visible,
.nav a:focus-visible,
.nav button:focus-visible,
.icon-btn:focus-visible {
  outline: 3px solid rgba(238, 151, 30, 0.35);
  outline-offset: 2px;
}
.btn-primary {
    background: #ff7a1a;
    color: #fff;
    border-color: #ff7a1a;
    box-shadow: 0 14px 28px rgba(10, 10, 54, 0.2);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 35px rgba(10, 10, 54, 0.24);
}
.btn-ghost {
  background: transparent;
  color: #0a0a36;
  border-color: rgba(10, 10, 54, 0.22);
}
.btn-ghost:hover {
  transform: translateY(-1px);
  border-color: rgba(10, 10, 54, 0.42);
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(16, 24, 40, 0.12);
  background: rgba(255, 255, 255, 0.85);
  cursor: pointer;
}
@media (min-width: 767px) {
  .icon-btn {
    display: none;
  }
}
/* Mega menu */
.has-mega {
  position: relative;
}
.mega {
  position: absolute;
  left: 0;
  top: calc(100% + 1px);
  width: min(820px, 92vw);
  display: none;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(16, 24, 40, 0.12);
  box-shadow: 0 14px 40px rgba(16, 24, 40, 0.1);
  background: #fff;
}
.has-mega:hover .mega,
.has-mega:focus-within .mega {
  display: block;
}
.mega-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 14px;
}
.mega-title {
  margin: 6px 8px 8px;
  font-size: 12px;
  color: #0a0a36;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.mega-link {
  display: block;
  padding: 10px 10px;
  margin: 3px 0;
  border-radius: 14px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 14px;
}
.mega-link:hover {
  background: rgba(222, 223, 243, 0.6);
  border-color: rgba(10, 10, 54, 0.14);
  color: #0a0a36;
}
.mega-feature {
  border-radius: 16px;
  padding: 14px;
  background: linear-gradient(
    180deg,
    rgba(222, 223, 243, 0.45),
    rgba(222, 223, 243, 0.1)
  );
  border: 1px solid rgba(10, 10, 54, 0.1);
}
.mega-feature-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: #e4ebff;
  color: #0a0a36;
}
.mega-feature h3 {
  margin: 10px 0 6px;
  font-size: 16px;
  color: #0a0a36;
  margin: 15px 0px;
}
.mega-feature p {
  margin: 0 0 12px;
  font-size: 14px;
  color: #3e4460;
  font-weight: 500;
  line-height: 1.55;
}
.mega-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
a#megaPrimary {
  background: #f28c3d;
  color: #fff;
  width: 100%;
}

.btn-ghost {
  background: #1775c1 !important;
  color: #fff !important;
  width: 100%;
}
/* Mobile nav */
.mobile-panel {
  display: none;
  border-top: 1px solid rgba(16, 24, 40, 0.12);
  padding: 12px 0 16px;
}
.mobile-panel .nav-col {
  display: grid;
  gap: 8px;
}
.mobile-panel a,
.mobile-panel button {
  width: 100%;
  text-align: left;
  border: 1px solid rgba(16, 24, 40, 0.12);
  border-radius: 14px;
  padding: 12px 12px;
  background: #fff;
  font-weight: 900;
  text-decoration: none;
  color: #5a5a5a;
  font-weight: 600;
}
.mobile-panel a:hover,
.mobile-panel button:hover {
  background: rgba(33, 122, 190, 0.1);
  border-color: rgba(10, 10, 54, 0.16);
  color: #0a0a36;
}
.mobile-mega {
  display: none;
  padding: 8px 0 0;
}
.mobile-mega a {
  background: rgba(255, 255, 255, 0.9);
  border-style: dashed;
  font-weight: 600;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  div#mobileMega a {
    display: block;
    margin-bottom: 5px;
  }
  div#mobileMegaIndu a {
    display: block;
    margin-bottom: 5px;
  }
  .nav-right .btn {
    width: 110px;
    font-size: 14px;
    white-space: break-spaces;
  }
}

/* Responsive */
@media (min-width: 1024px) {
  .top-links {
    display: inline-flex;
  }
}
@media (max-width: 1024px) {
  .nav {
    display: none;
  }
  .mobile-panel {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .highlights-grid {
    grid-template-columns: 1fr;
  }
}

/* Accessibility helper */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.has-mega span {
  display: inline;
}
.header-logo{
  width: 140px; 
  height: auto
}