/* ---------------------------------------------------------
   Nethrax GLOBAL STYLE
   Primary: #00539F
   Accent: #0096FF
   Background: #FFFFFF
------------------------------------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
}

/* ---------------------------
   BASIC LAYOUT
--------------------------- */
.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

section {
  padding: 3.5rem 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1.8rem;
  color: #00539F;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.2rem;
}

/* ---------------------------
   HEADER
--------------------------- */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 2000;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: #00539F;
  letter-spacing: 0.04em;
}

/* ===========================
   GLOBAL NAVIGATION BAR
=========================== */
/* MOBILE MENU BUTTON */
.mobile-menu-btn {
  width: 28px;
  height: 22px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-btn span {
  background: #051d43;
  height: 3px;
  border-radius: 3px;
}

/* Show button only on mobile */
@media (max-width: 992px) {
  .mobile-menu-btn {
    display: flex;
  }

  .main-nav {
    display: none !important;
    /* hide desktop nav */
  }
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -280px;
  width: 260px;
  height: 100vh;
  background: #ffffff;
  padding: 80px 20px 20px;
  box-shadow: -6px 0 18px rgba(0, 0, 0, 0.15);
  transition: right 0.35s ease;
  z-index: 999;
}

.mobile-nav.open {
  right: 0;
}

/* Show button on mobile */
@media (max-width: 992px) {
  .mobile-menu-btn {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    background: white;
    height: 100vh;
    width: 260px;
    padding-top: 80px;
    transition: 0.4s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }

  .main-nav.show {
    right: 0;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 18px;
    padding-left: 20px;
  }

  .main-nav ul li.has-dropdown .dropdown {
    position: relative;
    width: 100%;
    display: none;
    opacity: 1;
    transform: none;
    box-shadow: none;
    padding-left: 10px;
  }

  .main-nav ul li.has-dropdown:hover .dropdown {
    display: block;
  }
}

/* -------------------------------
   COLLAPSIBLE SUBMENU
-------------------------------- */
.dropdown-header {
  display: flex;
  justify-content: space-between;
  padding: 14px 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  color: #051d43;
  border-bottom: 1px solid #eee;
}

.arrow {
  transition: 0.3s ease;
}

.dropdown.open .arrow {
  transform: rotate(90deg);
}

/* submenu container */
.dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.dropdown-menu li a {
  padding-left: 20px;
  background: #f8faff;
}

/* -------------------------------
   MOBILE SIDEMENU NAV
-------------------------------- */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -280px;
  width: 260px;
  height: 100vh;
  background: #ffffff;
  padding: 80px 20px 20px;
  box-shadow: -6px 0 18px rgba(0, 0, 0, 0.15);
  transition: right 0.35s ease;
  z-index: 999;
}

.mobile-nav.open {
  right: 0;
}

/* -------------------------------
   MOBILE MENU LIST
-------------------------------- */
.mobile-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu li a {
  display: block;
  padding: 12px 5px;
  font-size: 16px;
  color: #051d43;
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
}

/* Overlay background when menu opens */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  z-index: 998;
}

.menu-overlay.show {
  display: block;
}

/* Close button inside sidebar */
.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 26px;
  cursor: pointer;
  color: #051d43;
}

/* Hamburger animation */
.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

.mobile-menu-btn span {
  transition: 0.3s ease;
}


.site-header {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}

/* LOGO AREA */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 42px;
  width: auto;
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: #0d1a36;
  letter-spacing: 0.5px;
}

/* MAIN NAV */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 35px;
  align-items: center;
}

@media (max-width: 1250px) {
  .main-nav ul {
    gap: 12px;
  }

  .main-nav ul li a {
    font-size: 12px !important
  }
}

.main-nav ul li a {
  text-decoration: none;
  font-size: 15px;
  color: #051d43;
  font-weight: 500;
  padding: 6px 4px;
  transition: 0.2s ease;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
  color: #005aff;
}

/* DROPDOWN WRAPPER */
.main-nav ul li.has-dropdown {
  position: relative;
}

/* DROPDOWN BOX */
.main-nav ul li.has-dropdown .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;

  background: #ffffff;
  padding: 10px 0;

  width: 230px;
  border-radius: 8px;

  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.12);

  flex-direction: column;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.25s ease;
}

/* DROPDOWN LIST ITEMS */
.main-nav ul li.has-dropdown .dropdown li {
  display: block;
  width: 100%;
}

.main-nav ul li.has-dropdown .dropdown li a {
  padding: 12px 18px;
  display: block;
  font-size: 14.5px;
  color: #051d43;
  transition: 0.2s;
  white-space: nowrap;
}

.main-nav ul li.has-dropdown .dropdown li a:hover {
  background: #f0f6ff;
  color: #005aff;
}

.main-nav ul li.has-dropdown .dropdown li a.active {
  color: #005aff;
}

/* SHOW DROPDOWN */
.main-nav ul li.has-dropdown:hover .dropdown {
  display: flex;
  opacity: 1;
  transform: translateY(0px);
  gap: 0px !important;
}

/* MOBILE RESPONSIVE */
@media (max-width: 992px) {
  .main-nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    background: white;
    height: 100vh;
    width: 260px;
    padding-top: 80px;
    transition: 0.4s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }

  .main-nav.show {
    right: 0;
  }

  .main-nav ul li.has-dropdown .dropdown {
    position: relative;
    width: 100%;
    box-shadow: none;
    top: 0;
    opacity: 1;
    transform: none;
  }

  .main-nav ul li.has-dropdown:hover .dropdown {
    display: block;
  }
}

/* ---------------------------
   HERO
--------------------------- */
.hero {
  background: linear-gradient(135deg, #ffffff 25%, #869dcf 60%);
  border-bottom: 1px solid #e5e7eb;
  padding: 3.5rem 0 3rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 300;
  color: #00539F;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.00rem;
  color: #333;
  margin-bottom: 0.8rem;
}

.hero-illustration {
  display: flex;
  justify-content: center;
}

.hero-illustration-box {
  /* background: radial-gradient(circle at top, #ffffff, #ffffff); */
  border-radius: 16px;
  padding: 1.6rem;
  width: 100%;
  max-width: 360px;
  /* box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15); */
}

.hero-illustration-box img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

/* ---------------------------
   GRIDS & CARDS
--------------------------- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

@media (max-width: 900px) {

  .hero-inner,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 1.4rem 1.6rem;
  transition: 0.25s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 400;
  color: #00539F;
  margin-bottom: 0.5rem;
}

.card p {
  color: #444;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

.card-list-title {
  font-weight: 600;
  margin-top: 0.6rem;
  margin-bottom: 0.2rem;
}

/* ---------------------------
   LISTS
--------------------------- */
ul.clean-list {
  list-style: none;
  padding-left: 0;
}

ul.clean-list li {
  margin-bottom: 0.25rem;
}

ul.dot-list {
  padding-left: 1.2rem;
}

ul.dot-list li {
  margin-bottom: 0.25rem;
}

/* ---------------------------
   CTA STRIP
--------------------------- */
.cta-strip {
  background: #00539F;
  color: #ffffff;
  text-align: center;
  padding: 3rem 1rem;
}

.cta-strip p {
  max-width: 700px;
  margin: 0.5rem auto 1.5rem;
}

/* ---------------------------
   BUTTONS
--------------------------- */
.btn {
  display: inline-block;
  padding: 0.65rem 1.4rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: 0.25s ease;
}

.btn-primary {
  background: #00539F;
  color: #ffffff;
}

.btn-primary:hover {
  background: #003F7A;
}

.btn-outline-light {
  border: 1px solid #ffffff;
  color: #ffffff;
}

.btn-outline-light:hover {
  background: #ffffff;
  color: #00539F;
}

/* ---------------------------
   FOOTER
--------------------------- */
.site-footer {
  background: #F3F7FF;
  padding: 2rem 0;
  text-align: center;
  margin-top: 3rem;
  border-top: 1px solid #e5e7eb;
}

.site-footer p {
  color: #333;
  font-size: 0.95rem;
}

.footer-small {
  font-size: 0.8rem;
  color: #666;
}

/* ---------------------------
   UNDER CONSTRUCTION
--------------------------- */
.uc-wrapper {
  min-height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.uc-box {
  background: #ffffff;
  padding: 2rem 2.5rem;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.uc-box h1 {
  font-size: 1.6rem;
  color: #00539F;
  margin-bottom: 0.8rem;
}

.uc-box p {
  font-size: 1rem;
  color: #444;
}

/* ---------------------------
   FORMS
--------------------------- */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #fff;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00539F;
  box-shadow: 0 0 0 3px rgba(0, 83, 159, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* ---------------------------
   RESPONSIVE
--------------------------- */
@media (max-width: 900px) {
  .nav-wrapper {
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
  }

  .main-nav ul {
    flex-wrap: wrap;
    row-gap: 0.4rem;
  }
}