body {
  font-family: 'IBM Plex Sans', Arial, sans-serif;
  margin: 0;
  background: #0b1736;
  color: #fff;
}

.header {
  background: #000;
  padding: 0rem 0rem;

  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 28px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
}

nav a {
  color: #ffffff !important; 
  text-decoration: none !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:visited {
  color: #ffffff !important;
}

nav a:hover,
nav a:focus {
  color: #00b4ff !important; 
  text-decoration: none;
}


nav a.active {
  border-bottom: 2px solid #00b4ff;
  padding-bottom: 0.2rem;
}

.hero {
  position: relative;
  text-align: center;
}

.hero-banner {
  width: 100%;
  height: auto;
  opacity: 0.25;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.btn-primary, .btn-secondary {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary {
  background: #0062ff;
  color: #fff;
}

.btn-primary:hover {
  background: #0044cc;
}

.btn-secondary {
  background: #00b4ff;
  color: #000;
}

.btn-secondary:hover {
  background: #0094dd;
}

.section {
  padding: 4rem 2rem;
  text-align: center;
}

.bg-gradient {
  background: linear-gradient(135deg, #001f4d, #003366);
}

.bg-dark {
  background: #000;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s, background 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  background: rgba(0,98,255,0.25);
}

/* MODAL STYLES */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.modal {
  background: #0b1736;
  border-radius: 8px;
  padding: 2rem;
  max-width: 600px;
  width: 80%;
  color: #fff;
  position: relative;
  animation: fadeIn 0.3s ease-in;
}

.close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero {
  background: url("../images/banner.png") no-repeat center center;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  text-align: center;
  padding: 6rem 2rem;
  color: #fff;
  min-height: 30vh;
}


.hero-text {
  background-color: rgba(11, 23, 54, 0.7);
  padding: 1rem;
  border-radius: 10px;
  display: inline-block;
  margin-top: 20rem;
}

h1, h2 {
    color: #61dafb;
    text-align: left;
}

p {
    font-size: 1.1em;
    max-width: 2000px;
    margin: 15px left;
    text-align: left;
}

.container {
    max-width: 2000px;
    margin: 0 left;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between; 
  padding: 1rem 1.5rem;
}


.header img.logo {
  height: 28px;
  margin: 0; 
  padding: 0; 
  vertical-align: middle;
}

.header nav ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

#access .container {
  text-align: center;
}

#access .btn-primary,
#access .btn-secondary {
  margin: 0.5rem 1rem;
}

.why-section {
  background: linear-gradient(135deg, #0b1736, #001f4d);
  text-align: left;
  padding: 2rem 2rem;
}

.why-section h2 {
  color: #61dafb;
  text-align: left;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.why-section p {
  font-size: 1.1em;
  color: #e0e0e0;
  text-align: left;
  max-width: 2000px;
  margin: 0 left 2rem auto;
}

.benefits-list {
  list-style: none;
  max-width: 2000px;
  margin: 0 left;
  padding: 0;
}

.benefits-list li {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #00b4ff;
  margin: 1rem 0;
  padding: 1rem 1.5rem;
  border-radius: 6px;
  color: #fff;
  font-size: 1rem;
  transition: transform 0.3s, background 0.3s;
}

.benefits-list li:hover {
  background: rgba(0, 180, 255, 0.1);
  transform: translateX(5px);
}

#overview {
  padding-bottom: 1rem;
  padding-top: 1rem;
}

#why {
  padding-top: 1rem;
}