body {
  margin: 0;
  font-family: 'Segoe UI', 'Arial', sans-serif;
  background: #f5f8fa;
  color: #222;
}

.company-logo {
  width: 180px;
  height: 60px;
  background-image: url('img/company-logo.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  flex-shrink: 0;
  margin-right: 32px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 48px;
  height: 72px;
  background: linear-gradient(90deg, #1a237e 60%, #3949ab 100%);
  box-shadow: 0 2px 12px rgba(30,40,90,0.08);
}

.navbar__menu {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar__menu a {
  color: #e3e9f7;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 24px;
  transition: background 0.2s, color 0.2s;
}

.navbar__menu a:hover {
  background: #536dfe;
  color: #fff;
}

.navbar__menu a.active {
  background: #2979ff;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(41,121,255,0.18);
}

.projects-hero {
  width: 100%;
  min-height: 420px;
  background: linear-gradient(120deg, #232a3d 60%, #3a4a6d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
  box-sizing: border-box;
  position: relative;
  overflow-x: hidden;
}
.projects-hero-img {
  /* width: 100%;
  max-width: 1200px;
  height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(30,40,90,0.18); */
}
.projects-hero-card {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(41,121,255,0.18);
  padding: 40px 56px 32px 56px;
  min-width: 320px;
  max-width: 600px;
  color: #1a237e;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  animation: floatIn 1.2s cubic-bezier(.23,1.02,.32,1) 0.1s both;
}
@keyframes floatIn {
  0% { opacity: 0; transform: translateX(-50%) translateY(40px) scale(0.95); }
  100% { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}
.projects-hero-card h1 {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.projects-hero-card p {
  font-size: 1.15rem;
  color: #3a4a6d;
  margin-bottom: 18px;
}

.projects-content {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 120px auto 0 auto;
  padding: 0 48px;
  align-items: flex-start;
}
.projects-list-area {
  flex: 2;
  min-width: 0;
}
.projects-list-title {
  font-size: 1.5rem;
  color: #1a237e;
  font-weight: 700;
  margin-bottom: 36px;
}
.projects-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.project-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(41,121,255,0.08);
  padding: 32px 28px 28px 28px;
  transition: box-shadow 0.2s, transform 0.2s;
  gap: 32px;
}
.project-card:hover {
  box-shadow: 0 8px 32px rgba(41,121,255,0.18);
  transform: translateY(-6px) scale(1.04);
}
.project-img {
  width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(41,121,255,0.12);
  margin-right: 24px;
}
.project-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.project-title {
  font-size: 1.15rem;
  color: #232a3d;
  font-weight: 600;
  margin-bottom: 6px;
}
.project-desc {
  font-size: 1.05rem;
  color: #3a4a6d;
  margin-bottom: 10px;
}
.project-link {
  display: inline-block;
  background: linear-gradient(90deg, #2979ff 60%, #00e5ff 100%);
  color: #fff;
  font-size: 1.08rem;
  font-weight: 600;
  padding: 10px 32px;
  border-radius: 32px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(41,121,255,0.18);
  transition: background 0.2s, box-shadow 0.2s;
}
.project-link:hover {
  background: linear-gradient(90deg, #00e5ff 60%, #2979ff 100%);
  box-shadow: 0 8px 32px rgba(41,121,255,0.28);
}

.projects-review-area {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.projects-review-title {
  font-size: 1.25rem;
  color: #1a237e;
  font-weight: 700;
  margin-bottom: 28px;
}
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.review-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(41,121,255,0.08);
  padding: 24px 18px;
  gap: 18px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.review-card:hover {
  box-shadow: 0 8px 32px rgba(41,121,255,0.18);
  transform: translateY(-6px) scale(1.04);
}
.review-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  background: #e3e9f7;
}
.review-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.review-text {
  font-size: 1rem;
  color: #3a4a6d;
}
.review-author {
  color: #1a237e;
  font-size: 1.05rem;
  font-weight: 600;
}

.footer {
  background: linear-gradient(90deg, #1a237e 60%, #3949ab 100%);
  color: #fff;
  padding: 0 48px;
  margin-top: 48px;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -2px 12px rgba(30,40,90,0.08);
}
.footer__main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 48px 0 24px 0;
  gap: 32px;
}
.footer__brand {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.footer__info {
  font-size: 1rem;
  color: #b3c0e0;
  margin-bottom: 18px;
  line-height: 1.7;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__nav a {
  color: #e3e9f7;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  border-radius: 18px;
  padding: 6px 16px;
  transition: background 0.2s, color 0.2s;
}
.footer__nav a:hover {
  background: #536dfe;
  color: #fff;
}
.footer__copyright {
  text-align: center;
  font-size: 0.95rem;
  color: #b3c0e0;
  padding-bottom: 18px;
}
.footer-icon {
  padding-top: 10px;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 2px;
  margin-right: 8px;
}
@media (max-width: 1100px) {
  .projects-hero, .projects-content, .footer {
    padding-left: 18px;
    padding-right: 18px;
  }
  .footer__main {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .projects-content {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    height: auto;
    padding: 18px;
    gap: 12px;
  }
  .navbar__menu {
    gap: 18px;
  }
  .projects-hero-img {
    height: 220px;
  }
  .projects-hero-card {
    min-width: 0;
    max-width: 100%;
    padding: 24px 10px 18px 10px;
    border-radius: 18px;
  }
  .projects-content {
    margin-top: 80px;
    padding: 0 2vw;
  }
  .project-card, .review-card {
    min-width: 0;
    max-width: 100%;
    padding: 18px 8px 12px 8px;
    border-radius: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .project-img {
    width: 100%;
    height: 120px;
    margin-right: 0;
    margin-bottom: 10px;
  }
} 