
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}


.navbar {
  background: linear-gradient(90deg, #0a1a33, #0d2a4d);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
}

.nav-logo {
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 26px;
}

.nav-links a {
  color: #dbe4f0;
  text-decoration: none;
  font-size: 0.95rem;
}

.nav-links a.active,
.nav-links a:hover {
  color: #4da3ff;
  border-bottom: 2px solid #4da3ff;
}


.projects-wrapper {
  max-width: 1100px;
  margin: 70px auto;
  padding: 0 20px;
}

.page-title {
  font-size: 2.4rem;
  color: #0a2540;
  margin-bottom: 40px;
}


.project-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 32px;
  display: flex;
  gap: 22px;
  border-left: 6px solid #3b82f6;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.1);
}


.project-image img {
  width: 140px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
}


.project-content h2 {
  font-size: 1.25rem;
  color: #0a2540;
}

.project-date {
  display: block;
  font-size: 0.85rem;
  color: #6b7280;
  margin: 6px 0 12px;
}

.project-content p {
  line-height: 1.7;
  color: #374151;
}

.project-content.full {
  width: 100%;
}


.btn-view {
  display: inline-block;
  margin-top: 14px;
  padding: 9px 18px;
  background: #0a2540;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.9rem;
}

.btn-view:hover {
  background: #143d6b;
}


.animate {
  opacity: 0;
  transform: translateY(30px);
}

.animate.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}


.footer {
  text-align: center;
  padding: 25px;
  background: #f3f4f6;
  margin-top: 60px;
}



: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 (max-width: 900px) {
  .nav-container, .navbar-container {
    flex-direction: column !important;
    padding: 15px !important;
  }
  .nav-links {
    flex-wrap: wrap !important;
    justify-content: center !important;
    margin-top: 10px !important;
    gap: 10px !important;
  }
  .page, .content, .container {
    padding: 20px !important;
    margin-top: 150px !important;
  }
  .card, .grid, .cards, .project-card, .supervision-grid, .award-card {
    width: 100% !important;
    grid-template-columns: 1fr !important;
    margin-bottom: 20px !important;
  }
  .company-logo {
    width: 100px !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;
  }
}

