
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f9fafb;
  color: #1f2937;
}
.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}
.header {
  background: #111827;
  color: white;
  padding: 1rem 0;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.5rem;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}
.nav-links a {
  color: white;
  text-decoration: none;
}
.section {
  padding: 3rem 0;
}
.section.alt {
  background: #f3f4f6;
}
.grid-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 10px;
  padding: 0;
  list-style: none;
}
.grid-list li {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
}
.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.client-grid a {
  display: block;
  background: #fff;
  padding: 0.75rem;
  text-align: center;
  border-radius: 6px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  color: #1f2937;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}
.client-grid a:hover {
  transform: scale(1.03);
  background: #e0f2fe;
}
.dropdown {
  position: relative;
}
.dropbtn {
  background: none;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.dropdown-content {
  display: none;
  position: absolute;
  background: white;
  color: #111827;
  min-width: 120px;
  right: 0;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  z-index: 1;
}
.dropdown-content a {
  padding: 10px;
  display: block;
  text-decoration: none;
  color: #111827;
}
.dropdown:hover .dropdown-content {
  display: block;
}
.hero {
  background: linear-gradient(120deg, #1e3a8a, #2563eb);
  color: white;
  padding: 4rem 1rem;
  text-align: center;
}
.footer {
  background: #111827;
  color: white;
  text-align: center;
  padding: 1rem 0;
}


/* Brutal Modern UI Enhancements */
body {
  background: #f4f4f4;
  color: #1a1a1a;
  font-family: 'Inter', sans-serif;
}
.section, .hero {
  animation: fadeInUp 0.8s ease;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
a:hover, .dropbtn:hover {
  color: #3b82f6;
}
.hero {
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  color: #f8fafc;
  box-shadow: inset 0 -5px 12px rgba(0,0,0,0.3);
}
.grid-list li, .client-grid a {
  transition: all 0.3s ease;
  border-left: 5px solid transparent;
}
.grid-list li:hover {
  border-left: 5px solid #3b82f6;
  background-color: #f0f9ff;
}
.client-grid a:hover {
  border-left: 5px solid #3b82f6;
  background: #e0f2fe;
}

.section.alt {
  background-color: #e0f2fe !important;
}
.section h3 {
  font-size: 1.6em;
  margin-bottom: 0.5em;
  color: #0f172a;
}
.section p {
  font-size: 1.05em;
  line-height: 1.7;
  color: #1e293b;
}
