/* Network Infrastructure & Design Page Styles */
body {
  font-family: 'Mulish', 'Poppins', Arial, sans-serif;
  background: #f7fafd;
  color: #1a2236;
  margin: 0;
  padding: 0;
}
.hero-section {
  position: relative;
  min-height: 48vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #1a2236;
}
.hero-section .bg-video {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.hero-section .hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(120deg,rgba(26,34,54,0.92) 60%,rgba(0,255,231,0.18) 100%);
  z-index: 1;
}
.hero-section .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 4rem 1.5rem 3rem 1.5rem;
}
.hero-title {
  font-size: 2.7rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  margin-bottom: 1.1rem;
  color: #00ffe7;
  display: inline-block;
}
.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: #fff;
}
.cta-btn {
  display: inline-block;
  background: linear-gradient(90deg,#00ffe7,#1a2236);
  color: #1a2236;
  font-weight: 700;
  padding: 1rem 2.2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  text-decoration: none;
  margin-top: 1.2rem;
  box-shadow: 0 2px 16px rgba(0,255,231,0.10);
  transition: background 0.3s, color 0.3s, transform 0.2s;
}
.cta-btn:hover {
  background: #00ffe7;
  color: #1a2236;
  transform: translateY(-2px) scale(1.04);
}
.services-section {
  max-width: 1200px;
  margin: 3rem auto 2rem auto;
  padding: 0 1.5rem;
}
.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: #1a2236;
  margin-bottom: 2.5rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}
.service-card {
  background: rgba(255,255,255,0.92);
  border-radius: 1.5rem;
  box-shadow: 0 8px 36px rgba(30,40,60,0.10), 0 2px 12px rgba(0,255,231,0.08);
  padding: 2.2rem 1.5rem 1.7rem 1.5rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  z-index: 1;
  border: 1.5px solid #00ffe7;
  animation: fadeInUp 1s cubic-bezier(.23,1.01,.32,1) both;
}
.service-card:hover {
  transform: translateY(-10px) scale(1.035);
  box-shadow: 0 16px 48px rgba(0,255,231,0.13), 0 2px 12px rgba(0,0,0,0.10);
  border-color: #ffb400;
}
.service-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 16px rgba(0,255,231,0.10);
  border: 3px solid #ffb400;
  transition: border-color 0.3s;
}
.service-card:hover .service-img {
  border-color: #00ffe7;
}
.service-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #1a2236;
  margin-bottom: 0.5rem;
}
.service-card p {
  color: #2d3a5a;
  font-size: 1.08rem;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}
.cta-section {
  text-align: center;
  margin: 3rem 0 2rem 0;
}
.footer-section {
  background: #1a2236;
  color: #fff;
  padding: 0;
  position: relative;
}
.footer-wave {
  width: 100%;
  height: 80px;
  overflow: hidden;
  position: absolute;
  top: -80px;
  left: 0;
  z-index: 1;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem 1rem 1.5rem;
  position: relative;
  z-index: 2;
}
.footer-logo img {
  height: 48px;
  border-radius: 8px;
}
.footer-social ul {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-social img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  border-radius: 4px;
  background: #fff;
  padding: 2px;
}
.footer-copy {
  color: #b0b8d1;
  font-size: 0.95rem;
  margin-top: 1rem;
}
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
} 