:root {
  --black: #0A0A0A;
  --dark-gray: #1E1018;
  --neon-red: #FF003C;
  --neon-orange: #FF5E1A;
  --neon-yellow: #FFD700;
  --neon-pink: #FF1493;
  --text-light: #F0F0F0;
  --text-gray: #C0C0C0;
  --transition: all 0.3s ease;
}

/* === Base Styles === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  color: var(--neon-red);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--neon-orange);
}

/* === Glow Effects === */
.glow-red { text-shadow: 0 0 10px var(--neon-red); }
.glow-orange { text-shadow: 0 0 10px var(--neon-orange); }
.glow-yellow { text-shadow: 0 0 10px var(--neon-yellow); }

/* === Header & Navigation === */
header {
  background: linear-gradient(135deg, #1A0A12, #2E0E1E);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--neon-red);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--neon-red);
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  transition: var(--transition);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
}

.nav-links a:hover {
  color: var(--neon-red);
  text-shadow: 0 0 5px var(--neon-red);
}

.menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--neon-red);
}
.lang-dropdown {
    position: relative;
    display: inline-block;
    margin-left: 20px;
    z-index: 1100;
}
.lang-btn {
    background: linear-gradient(90deg, var(--neon-red), var(--neon-orange));
    color: var(--black);
    border: none;
    padding: 8px 18px;
    border-radius: 4px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 10px var(--neon-red);
    transition: var(--transition);
    outline: none;
    position: relative;
}
.lang-btn:hover, .lang-btn:focus {
    box-shadow: 0 0 18px var(--neon-yellow);
}
.lang-menu {
    display: none;
    position: absolute;
    right: 0;
    background: var(--dark-gray);
    min-width: 120px;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(255,0,60,0.15);
    border: 1px solid var(--neon-red);
    margin-top: 8px;
    overflow: hidden;
}
.lang-option {
    color: var(--text-light);
    padding: 12px 18px;
    display: block;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    transition: var(--transition);
    background: none;
}
.lang-option:hover {
    background: var(--neon-red);
    color: var(--black);
}
.lang-dropdown.open .lang-menu {
    display: block;
}
@media (max-width: 768px) {
    .lang-dropdown {
        margin-left: 0;
        margin-top: 10px;
    }
}
/* === Hero Section === */
.hero {
  padding-top: 150px;
  padding-bottom: 80px;
  text-align: center;
  background: linear-gradient(135deg, #1A0A12, #2E0E1E);
  border-bottom: 1px solid var(--neon-red);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--neon-red);
  text-shadow: 0 0 10px var(--neon-red);
}

.hero p {
  font-size: 1.3rem;
  color: var(--text-gray);
  margin-bottom: 30px;
  font-family: 'Rajdhani', sans-serif;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.cyber-button {
  background: linear-gradient(90deg, var(--neon-red), var(--neon-orange));
  color: var(--black);
  border: none;
  padding: 12px 28px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px var(--neon-red);
  text-decoration: none;
}

.cyber-button:hover {
  box-shadow: 0 0 25px var(--neon-yellow);
  transform: scale(1.05);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--neon-red);
  color: var(--neon-red);
  box-shadow: 0 0 10px rgba(255, 0, 60, 0.5);
}

.btn-secondary:hover {
  background: var(--neon-red);
  color: var(--black);
  box-shadow: 0 0 25px var(--neon-red);
}

/* === About Section === */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-img {
  border-radius: 10px;
  overflow: hidden;
  /*width: 30vw;*/
  box-shadow: 0 10px 30px rgba(255, 0, 60, 0.2);
  border: 1px solid var(--neon-red);
}

.about-img img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(0.3) contrast(1.2);
}

.about-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--neon-orange);
}

.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.skill {
  background: rgba(255, 0, 60, 0.1);
  color: var(--neon-red);
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 0.9rem;
  border: 1px solid var(--neon-red);
}

/* === Projects Section === */
.projects-section {
  background: linear-gradient(135deg, #1A0A12, #0A0A0A);
  border-top: 1px solid var(--neon-pink);
  border-bottom: 1px solid var(--neon-pink);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.project-card {
  background: var(--dark-gray);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  border: 1px solid var(--neon-red);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 0, 60, 0.3);
  border-color: var(--neon-yellow);
}

.project-img {
  height: 200px;
  overflow: hidden;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.project-card:hover .project-img img {
  transform: scale(1.05);
}

.project-info {
  padding: 20px;
}

.project-info h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--neon-orange);
}

.project-info p {
  color: var(--text-gray);
  margin-bottom: 15px;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.tech-tag {
  background: rgba(255, 0, 60, 0.1);
  color: var(--neon-red);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.8rem;
  border: 1px solid var(--neon-red);
}

.project-links {
  display: flex;
  gap: 15px;
}

.project-links a {
  color: var(--neon-red);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}

.project-links a:hover {
  color: var(--neon-yellow);
  text-shadow: 0 0 5px var(--neon-yellow);
}

/* === Skills Section === */
.skills-section {
  background: var(--dark-gray);
  text-align: center;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 2rem auto;
}

.skill-item {
  text-align: center;
  padding: 20px;
  background: rgba(255, 0, 60, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 0, 60, 0.3);
  transition: var(--transition);
}

.skill-item:hover {
  transform: translateY(-5px);
  border-color: var(--neon-orange);
  box-shadow: 0 5px 15px rgba(255, 94, 26, 0.3);
}

.skill-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 5px var(--neon-red));
}

/* === Contact Section === */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--neon-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 1.2rem;
  box-shadow: 0 0 10px var(--neon-red);
}

.contact-text h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--neon-orange);
}

.contact-text p {
  color: var(--text-gray);
}

.contact-form {
  background: var(--dark-gray);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--neon-red);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--neon-orange);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 0, 60, 0.5);
  border-radius: 5px;
  font-size: 1rem;
  transition: var(--transition);
  color: var(--text-light);
}

.form-control:focus {
  border-color: var(--neon-red);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 0, 60, 0.1);
}

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

/* === Footer === */
footer {
  background: var(--dark-gray);
  color: white;
  padding: 50px 0 20px;
  border-top: 1px solid var(--neon-pink);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 30px;
}

.footer-about h3,
.footer-links h3,
.footer-social h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--neon-orange);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-gray);
  text-decoration: none;
  transition: var(--transition);
  font-family: 'Rajdhani', sans-serif;
}

.footer-links a:hover {
  color: var(--neon-red);
  text-shadow: 0 0 5px var(--neon-red);
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid rgba(255, 0, 60, 0.3);
}

.social-icons a:hover {
  background: var(--neon-red);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 0 10px var(--neon-red);
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-gray);
  font-size: 0.9rem;
}

/* === Responsive Design === */
@media (max-width: 992px) {
  .about-content,
  .contact-container,
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .menu-btn {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    background: var(--dark-gray);
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border-top: 1px solid var(--neon-red);
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    margin: 15px 0;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 576px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 120px;
  }

  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}