:root {
  --neon-blue: #0ff0fc;
  --neon-purple: #bc13fe;
  --dark-bg: #0a0a0a;
  --darker-bg: #050505;
  --text-primary: #e0e0e0;
  --text-secondary: #b0b0b0;
  --accent: #ff5555;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', 'Roboto', 'Oxygen', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

header {
  background: linear-gradient(135deg, var(--darker-bg) 0%, #111 100%);
  padding: 1.5rem;
  border-bottom: 1px solid rgba(11, 255, 252, 0.1);
  box-shadow: 0 0 15px rgba(11, 255, 252, 0.2);
  position: relative;
  z-index: 10;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 5px rgba(11, 255, 252, 0.3);
  font-weight: 800;
  letter-spacing: 1px;
}

.tagline {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

nav a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 0;
  position: relative;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

nav a:hover {
  color: var(--neon-blue);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

main {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1.5rem;
  min-height: 70vh;
}

.hero {
  text-align: center;
  padding: 3rem 1rem;
  margin-bottom: 3rem;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(11, 22, 33, 0.7) 0%, rgba(0, 0, 0, 0.9) 100%);
  z-index: -1;
}

.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  background: linear-gradient(
    to bottom right,
    rgba(11, 255, 252, 0.1) 0%,
    rgba(188, 19, 254, 0.1) 100%
  );
  animation: gradientBG 15s ease infinite;
  z-index: -2;
}

@keyframes gradientBG {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); }
  100% { transform: rotate(360deg); }
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--neon-blue);
  font-weight: 700;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-primary);
}

.cta-button {
  display: inline-block;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
  color: black;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  margin-top: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(11, 255, 252, 0.5);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(11, 255, 252, 0.8);
}

/* About Page Styles */
.about-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 3rem 0;
}

.about-card {
  background: rgba(20, 20, 20, 0.7);
  border: 1px solid rgba(11, 255, 252, 0.1);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  border-color: rgba(11, 255, 252, 0.3);
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
}

.team-members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-member {
  text-align: center;
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--neon-purple);
  margin-bottom: 1rem;
  box-shadow: 0 0 15px rgba(188, 19, 254, 0.3);
}

.team-member h3 {
  color: var(--neon-blue);
  margin-bottom: 0.5rem;
}

.team-member p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Contact Page Styles */
.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin: 3rem 0;
}

.contact-info {
  background: rgba(20, 20, 20, 0.7);
  border: 1px solid rgba(11, 255, 252, 0.1);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
}

.contact-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--neon-purple), var(--neon-blue));
}

.contact-info h3 {
  color: var(--neon-blue);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.contact-details {
  margin-top: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.contact-item i {
  color: var(--neon-purple);
  font-size: 1.2rem;
  margin-right: 1rem;
  width: 30px;
  text-align: center;
}

.contact-form {
  background: rgba(20, 20, 20, 0.7);
  border: 1px solid rgba(11, 255, 252, 0.1);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem;
  background: var(--darker-bg);
  border: 1px solid rgba(11, 255, 252, 0.3);
  border-radius: 4px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--neon-blue);
  box-shadow: 0 0 10px rgba(11, 255, 252, 0.3);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
  color: black;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(11, 255, 252, 0.5);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(11, 255, 252, 0.8);
}

/* Footer Styles */
footer {
  background: var(--darker-bg);
  padding: 2rem 1rem;
  text-align: center;
  border-top: 1px solid rgba(11, 255, 252, 0.1);
  margin-top: 3rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.social-links a {
  color: var(--text-secondary);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: var(--neon-blue);
  transform: translateY(-3px);
}

.copyright {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero {
    padding: 2rem 1rem;
  }
  
  .header-content {
    align-items: center;
    text-align: center;
  }
  
  nav {
    justify-content: center;
  }
  
  .team-members {
    grid-template-columns: 1fr;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
}
/* Dropdown styles */
    .dropdown {
      position: relative;
      display: inline-block;
      height: 100%;
    }

    .dropbtn {
      background: none;
      border: none;
      color: var(--text-primary);
      font-weight: 600;
      padding: 0.5rem 0;
      font-family: inherit;
      font-size: inherit;
      cursor: pointer;
      position: relative;
      letter-spacing: 0.5px;
      height: 100%;
      display: flex;
      align-items: center;
      gap: 0.3rem;
    }

    .dropbtn::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
      transition: width 0.3s ease;
    }

    .dropbtn:hover::after {
      width: 100%;
    }

    .dropdown-content {
      display: none;
      position: absolute;
      background-color: var(--darker-bg);
      min-width: 160px;
      box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
      z-index: 1;
      border: 1px solid rgba(11, 255, 252, 0.1);
      border-radius: 0 0 8px 8px;
      top: 100%;
    }

    .dropdown-content a {
      color: var(--text-primary);
      padding: 12px 16px;
      text-decoration: none;
      display: block;
      text-align: left;
    }

    .dropdown-content a:hover {
      background-color: rgba(11, 255, 252, 0.1);
    }

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

    .dropdown:hover .dropbtn {
      color: var(--neon-blue);
    }

    @media (max-width: 768px) {
      .dropdown {
        display: block;
        width: 100%;
        text-align: center;
      }
      
      .dropdown-content {
        position: static;
        display: none;
        width: 100%;
      }
      
      .dropdown:hover .dropdown-content {
        display: block;
      }
    }