/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  z-index: 999;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* HERO */
.networking-hero {
  height: 65vh;
  background:
    linear-gradient(rgba(2,6,23,0.85), rgba(2,6,23,0.95)),
    url("assets/netwrok.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 80px;
}

.networking-content {
  max-width: 700px;
}

.networking-content h1 {
  font-size: 50px;
  color: #ffffff;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 18px;
  color: #cbd5e1;
  margin-bottom: 25px;
}

/* BUTTON */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #38bdf8;
  color: #020617;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #0ea5e9;
}

/* SERVICES */
.networking-services {
  background: #020617;
  padding: 80px;
  color: #e5e7eb;
}

.networking-services h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.section-desc {
  max-width: 800px;
  color: #9ca3af;
  margin-bottom: 50px;
  font-size: 16px;
}

/* GRID */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background: #020617;
  border: 1px solid #1e293b;
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(56,189,248,0.15);
}

.service-card .icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(56,189,248,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.service-card .icon i {
  color: #38bdf8;
  font-size: 24px;
}

.service-card h3 {
  font-size: 20px;
  color: #38bdf8;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 15px;
  color: #cbd5e1;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .networking-hero {
    padding: 0 30px;
    height: 55vh;
  }

  .networking-content h1 {
    font-size: 36px;
  }

  .networking-services {
    padding: 50px 30px;
  }
}
