
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}


:root {
  --navy-dark: #0b1e36;
  --navy: #102a44;
  --accent: #3b82f6;
  --bg: #f5f7fb;
  --card: #ffffff;
  --text: #2d3748;
  --muted: #6b7280;
}


body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}


.navbar {
  background: linear-gradient(90deg, var(--navy-dark), var(--navy));
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
  position: relative;
  z-index: 1000;
}

.navbar-container {
  max-width: 1400px;
  margin: auto;
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
}


.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 16px;
  padding-bottom: 6px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a.active {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 2px solid var(--accent);
}


.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: #ffffff;
  margin: 4px 0;
  transition: 0.3s;
}


.contact-page {
  padding: 70px 6% 90px;
}

.page-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  color: var(--navy-dark);
  font-weight: 800;
}


.contact-grid {
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 26px;
}


.contact-card {
  background: var(--card);
  border-radius: 14px;
  padding: 26px 30px;
  display: flex;
  gap: 18px;
  border-left: 5px solid var(--accent);
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
  transition: all .3s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0,0,0,.12);
}


.icon {
  font-size: 24px;
  color: var(--accent);
  min-width: 30px;
  margin-top: 3px;
}


.email-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  word-break: break-word;
}

.email-link:hover {
  text-decoration: underline;
}


.connect-card {
  flex-direction: column;
}

.connect-title {
  font-weight: 800;
  font-size: 22px;
  color: var(--navy-dark);
}

.social-icons {
  display: flex;
  gap: 14px;
  margin: 16px 0 14px;
  flex-wrap: wrap;
}

.social-icons a {
  width: 44px;
  height: 44px;
  background: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-dark);
  font-size: 18px;
  transition: all .3s ease;
}

.social-icons a:hover {
  background: var(--accent);
  color: #ffffff;
  transform: translateY(-3px);
}

.connect-text {
  line-height: 1.75;
  color: var(--muted);
}


footer {
  background: var(--navy-dark);
  color: #ffffff;
  text-align: center;
  padding: 22px;
  font-size: 14px;
}


@media (max-width: 900px) {

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 20px 0;
  }

  .nav-links li {
    margin: 12px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .contact-card {
    flex-direction: column;
  }

  .page-title {
    font-size: 28px;
  }

  .social-icons {
    justify-content: center;
  }
}



: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;
  }
}

