* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

:root {
  --navy: #0b1e36;
  --accent: #2b7cff;
  --text: #374151;
  --light: #f4f6fb;
  --border: #e5e7eb;
}

body {
  background: #ffffff;
  color: var(--text);
  line-height: 1.6;
}


.navbar {
  background: linear-gradient(90deg, #081629, #0b1e36);
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.nav-container {
  padding: 18px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: #e5e7eb;
  text-decoration: none;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--accent);
}


.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: white;
  margin: 4px 0;
}


.content {
  padding: 120px 6% 80px;
}

.section {
  margin-bottom: 80px;
}

.section-title {
  text-align: center;
  color: var(--navy);
  margin-bottom: 40px;
  font-size: 32px;
}


.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.card {
  border: 1px solid var(--border);
  padding: 30px;
  border-radius: 14px;
  background: #ffffff;
  text-align: center;
}

.company-logo {
  width: 200px;
  margin-bottom: 18px;
}

.org {
  font-weight: 600;
}

.time {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 12px;
}


.logo-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.logo-strip img {
  width: 180px;
  object-fit: contain;
  transition: 0.3s ease;
}

.logo-strip img:hover {
  transform: scale(1.05);
}


.event-images {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.event-images img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
}


footer {
  background: var(--light);
  padding: 24px;
  text-align: center;
  font-size: 14px;
}


@media (max-width: 900px) {

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--navy);
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 20px 0;
  }

  .nav-links li {
    margin: 12px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .event-images {
    grid-template-columns: 1fr;
  }

  .logo-strip img {
    width: 140px;
  }

  .company-logo {
    width: 160px;
  }
}



:root {
  --navy-dark: #0f172a;
  --navy: #1e3a8a;
  --accent: #60a5fa;
  --bg: #ffffff;
}

footer, .footer {
  background: #0f172a !important;
  color: white !important;
  text-align: center !important;
  padding: 20px !important;
  font-size: 16px !important;
}

.navbar {
  background: rgba(15, 23, 42, 0.95) !important;
}

.nav-links a:hover,
.nav-links a.active {
  color: #60a5fa !important;
}


@media (min-width: 901px) {
  .nav-container, .navbar-container {
    max-width: 1300px !important;
    margin: 0 auto !important;
    padding: 18px 30px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    box-sizing: border-box !important;
    min-height: 70px !important;
  }
}

