:root {
  --primary: #00fff7;
  --secondary: #7000ff;
  --bg-dark: #020202;
  --bg-light: #0a0a0a;
  --text: #e0e0e0;
  --accent: #ff0055;
  --card-bg: rgba(15, 15, 15, 0.8);
  --border-color: rgba(0, 255, 247, 0.2);
  --shadow: 0 0 20px rgba(0, 255, 247, 0.1);
  --font-title: 'Orbitron', sans-serif;
  --font-text: 'Rajdhani', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-text);
  background-color: var(--bg-dark);
  color: var(--text);
  overflow-x: hidden;
  position: relative;
}

/* Background Effects */
.bg-scanline {
  position: fixed;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.1) 50%);
  background-size: 100% 4px;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.1;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0, 255, 247, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 247, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -1;
  transform: perspective(1000px) rotateX(45deg);
  transform-origin: center top;
}

/* Header */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 5%;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
}

.logo .glitch {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

.main-header ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.main-header a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: 0.3s;
}

.main-header a:hover {
  color: var(--primary);
  text-shadow: 0 0 10px var(--primary);
}

/* Sections Global */
section {
  padding: 100px 10%;
}

.section-title {
  font-family: var(--font-title);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 60px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 5px;
  text-shadow: 0 0 15px rgba(0, 255, 247, 0.5);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-family: var(--font-title);
  font-size: clamp(2rem, 8vw, 4.5rem);
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero .highlight {
  color: var(--primary);
  text-shadow: 0 0 30px rgba(0, 255, 247, 0.4);
}

.hero p {
  font-size: 1.5rem;
  color: var(--text);
  max-width: 800px;
  opacity: 0.8;
  margin-bottom: 40px;
}

.btn-main {
  padding: 15px 40px;
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-family: var(--font-title);
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
  position: relative;
  transition: 0.3s;
  overflow: hidden;
}

.btn-main:hover {
  background: var(--primary);
  color: black;
  box-shadow: 0 0 30px var(--primary);
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.member-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: 10px;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

.member-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.member-image-wrapper {
  width: 100%;
  aspect-ratio: 4/5;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  position: relative;
}

.member-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.2);
  transition: 0.5s;
}

.member-card:hover .member-image {
  filter: grayscale(0%) contrast(1);
  transform: scale(1.05);
}

.member-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(0, 255, 247, 0.2));
  opacity: 0.5;
}

.member-info h3 {
  font-family: var(--font-title);
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 5px;
}

.member-info .role {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 15px;
}

.socials {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.social-link:hover {
  transform: translateY(-3px);
  color: white;
}

.social-link.linkedin:hover {
  background: #0077b5;
  border-color: #0077b5;
  box-shadow: 0 0 15px #0077b5;
}

.social-link.whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
  box-shadow: 0 0 15px #25d366;
}

/* Skills Section */
.skills-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.skill-category {
  background: var(--card-bg);
  padding: 30px;
  border-left: 4px solid var(--primary);
  transition: 0.3s;
}

.skill-category:hover {
  background: rgba(0, 255, 247, 0.05);
  transform: translateX(10px);
}

.skill-category h3 {
  font-family: var(--font-title);
  margin-bottom: 20px;
  color: var(--primary);
}

.skill-category ul {
  list-style: none;
}

.skill-category li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 1.1rem;
}

/* Projects Section */
.projects-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.project-item {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  transition: 0.3s;
}

.project-item:hover {
  background: rgba(112, 0, 255, 0.1);
  border-color: var(--secondary);
}

.project-number {
  font-family: var(--font-title);
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.3;
}

.project-content h3 {
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 10px;
}

.project-content p {
  opacity: 0.7;
  font-size: 1.1rem;
}

/* Contact Section */
.contact-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: 10px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form label {
  font-family: var(--font-title);
  font-size: 0.9rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text);
  font-family: var(--font-text);
  font-size: 1.1rem;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(0, 255, 247, 0.05);
  box-shadow: 0 0 10px rgba(0, 255, 247, 0.1);
}

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

.contact-form .btn-main {
  align-self: flex-start;
  cursor: pointer;
}

/* Footer */
footer {
  text-align: center;
  padding: 40px;
  border-top: 1px solid var(--border-color);
  font-size: 0.9rem;
  opacity: 0.5;
}

/* Responsive */
@media (max-width: 768px) {
  .main-header ul {
    display: none;
  }
  .hero h1 {
    font-size: 3rem;
  }
  section {
    padding: 60px 5%;
  }
}
