/* Base */
body {
  font-family: 'Poppins', sans-serif;
  background: #121212;
  color: #f2f2f2;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(20, 20, 20, 0.95);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  z-index: 1000;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.logo img {
  height: 50px;
}

/* Navigation */
nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95em;
  white-space: nowrap;
}

.nav-btn {
  background-color: #3b82f6;
  color: white !important;
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s, transform 0.2s;
  text-decoration: none;
}

.nav-btn:hover {
  background-color: #2563eb;
  transform: translateY(-1px);
}

/* Hero Section */
#hero-banner {
  background: url('../assets/img/cyber_map.png') no-repeat center center/cover;
  height: 45vh;
  padding-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  z-index: 2;
  color: #fff;
  padding: 25px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

.hero-overlay h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.hero-overlay p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.btn {
  padding: 12px 24px;
  background: #3b82f6;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.3s;
}

.btn:hover {
  background: #2563eb;
}

/* Section Styles */
#services,
#contact,
#vendors {
  padding: 100px 20px 60px;
  background: #1e293b;
  text-align: center;
  position: relative;
}

#services h2,
#contact h2,
#vendors h2 {
  font-size: 2.5em;
  margin-bottom: 10px;
  color: #ffffff;
}

#services p,
#contact p,
#vendors p {
  color: #cccccc;
  font-size: 1em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Cards */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.card {
  background: linear-gradient(145deg, #2b3d52, #1f2c3e);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}


.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.card .icon {
  width: 40px;
  margin-bottom: 15px;
  filter: brightness(1.2);
}

.card h3 {
  color: #ffffff;
  margin-bottom: 10px;
}

.card p {
  color: #dddddd;
  font-size: 0.95em;
}

.card-link {
  text-decoration: none;
  color: inherit;
}

.contact-info-only {
  max-width: 600px;
  margin: 40px auto;
  background: linear-gradient(145deg, #2b3d52, #1f2c3e);
  padding: 30px 40px;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.7);
  color: #f5f5f5;
  text-align: left;
  font-size: 1.05em;
  line-height: 1.8;
}

.contact-info-only p {
  margin-bottom: 18px;
  color: #f0f0f0;
}

.contact-info-only strong {
  display: inline-block;
  margin-bottom: 5px;
  color: #ffffff;
  font-weight: 600;
}

.contact-info-only a {
  color: #ff675c;
  text-decoration: none;
  word-break: break-word;
}

.contact-info-only a:hover {
  text-decoration: underline;
}


/* Vendor Section */
.vendor-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.vendor-card {
  background: linear-gradient(145deg, #2b3d52, #1f2c3e);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  transition: transform 0.3s;
}


.vendor-card:hover {
  transform: translateY(-5px);
}

.vendor-logo {
  max-height: 50px;
  margin-bottom: 15px;
  filter: brightness(1.2);
}

.vendor-card.text-only {
  background: linear-gradient(145deg, #2b3d52, #1f2c3e);
  font-size: 1.2em;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}


/* Footer */
footer {
  background: #101010;
  padding: 20px 40px;
  color: #999;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-left {
  font-size: 0.9em;
}

.footer-right img {
  height: 30px;
  margin-left: 15px;
  filter: brightness(1.2);
}

@media (max-width: 600px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
  }

  nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
  }

  .form-row {
    flex-direction: column;
  }

  .vendor-grid {
    grid-template-columns: 1fr !important;
  }
}
