/* Reset and base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #121212;
  color: #f1f1f1;
  line-height: 1.6;
}

a {
  color: #66caff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header */
header {
  background: linear-gradient(90deg, #1e1e1e 60%, #232a34 100%);
  padding: 28px 0 18px 0;
  text-align: center;
  border-bottom: 2px solid #444;
  box-shadow: 0 2px 12px #0006;
}

header h1 {
  font-size: 2.4rem;
  margin-bottom: 8px;
  letter-spacing: 2px;
  color: #66caff;
  text-shadow: 0 2px 8px #0008;
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  font-size: 1.15rem;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  color: #e0e0e0;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.nav-links li a:hover,
.dropdown-content li a:hover {
  background: #232a34;
  color: #66caff;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #222;
  min-width: 160px;
  box-shadow: 0 8px 16px #0004;
  z-index: 1;
  top: 100%;
  left: 0;
  border-radius: 0 0 8px 8px;
  padding: 0;
  margin-top: 6px;
  overflow: hidden;
}

.dropdown-content li {
  display: block;
  text-align: left;
  padding: 0;
}

.dropdown-content li a {
  color: #ddd;
  padding: 12px 16px;
  display: block;
  border-bottom: 1px solid #333;
}

.dropdown-content li a:hover {
  background: #181818;
  color: #66caff;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Hero Section */
.hero {
  background: linear-gradient(120deg, #232a34 60%, #1e1e1e 100%);
  border-radius: 16px;
  padding: 40px 30px 32px 30px;
  margin-bottom: 40px;
  box-shadow: 0 4px 24px #0003;
  text-align: center;
}

.hero h2, .branch-title {
  font-size: 2.2rem;
  color: #66caff;
  margin-bottom: 18px;
  margin-top: 10px;
  text-shadow: 0 2px 8px #0008;
  letter-spacing: 1px;
}

.hero p, .branch-subtitle {
  font-size: 1.15rem;
  margin-bottom: 32px;
  color: #aad8ff;
}

.hero p:last-child {
  color: #f1f1f1;
  margin-bottom: 0;
}

/* Admins Section */
.admins-section {
  background: linear-gradient(120deg, #232a34 60%, #1e1e1e 100%);
  border-radius: 16px;
  padding: 40px 30px 32px 30px;
  margin-bottom: 40px;
  box-shadow: 0 4px 24px #0003;
  text-align: center;
  margin-top: 0; /* <-- changed from 48px to 0 */
}
.admins-title {
  font-size: 2rem;
  color: #66caff;
  margin-bottom: 36px;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px #0008;
}

.admins {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  justify-content: center;
  align-items: stretch;
  margin-top: 0;
}

.admin {
  background: #181818;
  border-radius: 14px;
  padding: 28px 18px 22px 18px;
  text-align: center;
  box-shadow: 0 2px 12px #0003;
  transition: transform 0.18s, box-shadow 0.18s;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 340px;
}

.admin:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px #0005;
}

.admin-photo {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 14px;
  border: 3px solid #66caff;
  background: #222;
  transition: transform 0.18s;
}

.admin:hover .admin-photo {
  transform: scale(1.08) rotate(-2deg);
}

.admin h4 {
  margin: 10px 0 6px 0;
  color: #66caff;
  font-size: 1.18rem;
  letter-spacing: 1px;
}

.admin em {
  color: #aad8ff;
  font-size: 0.98rem;
}

.admin blockquote {
  margin-top: 12px;
  color: #b6eaff;
  font-style: italic;
  font-size: 0.98rem;
  opacity: 0.85;
}

/* Footer */
footer {
  text-align: center;
  padding: 24px 0 18px 0;
  background: #1a1a1a;
  font-size: 1rem;
  color: #88a;
  border-top: 1px solid #333;
  margin-top: 48px;
  border-radius: 0 0 12px 12px;
}

/* Responsive */
@media (max-width: 700px) {
  .hero {
    padding: 24px 8px 18px 8px;
  }
  .admins {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
.about {
  background: linear-gradient(120deg, #232a34 60%, #1e1e1e 100%);
  border-radius: 16px;
  padding: 32px 24px;
  margin: 0 auto 36px auto;
  max-width: 900px;
  text-align: center;
  box-shadow: 0 2px 12px #0003;
}

.about h3 {
  color: #66caff;
  font-size: 1.6rem;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.about-features {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  color: #aad8ff;
  font-size: 1.12rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 32px;
}

.featured-projects {
  background: linear-gradient(120deg, #232a34 60%, #1e1e1e 100%);
  border-radius: 16px;
  padding: 32px 24px;
  margin: 0 auto 36px auto;
  max-width: 1100px;
  text-align: center;
  box-shadow: 0 2px 12px #0003;
}

.featured-projects h3 {
  color: #66caff;
  font-size: 1.6rem;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.featured-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-bottom: 18px;
}

.featured-card {
  background: #181818;
  border-radius: 12px;
  padding: 16px 12px 10px 12px;
  width: 180px;
  box-shadow: 0 2px 8px #0002;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.15s, box-shadow 0.15s;
}

.featured-card:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 8px 24px #0004;
}

.featured-card img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #66caff;
  margin-bottom: 10px;
  background: #222;
}

.featured-card h4 {
  color: #66caff;
  font-size: 1.08rem;
  margin: 0;
}

.see-more {
  display: inline-block;
  margin-top: 8px;
  color: #aad8ff;
  font-weight: 600;
  font-size: 1.08rem;
  transition: color 0.15s;
}

.see-more:hover {
  color: #66caff;
  text-decoration: underline;
}