/* CSS */
/* Google Fonts (Optional for futuristic look) */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&styledisplay=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

body {
  background: #0f0f1a;
  color: #fff;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Header */
header {
  position: sticky;
  top: 0;
  background: rgba(15, 15, 26, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 2rem;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00e6ff;
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #00e6ff;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: #00e6ff;
  left: 0;
  bottom: -4px;
  transition: 0.3s;
}

.nav-links li a:hover::after {
  width: 100%;
}
/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #00e6ff;
  text-shadow: 0 0 10px #00e6ff, 0 0 20px #00e6ff;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #ccc;
}

.hero-buttons .btn {
  padding: 0.8rem 2rem;
  margin: 0 0.5rem;
  border: 1px solid #00e6ff;
  border-radius: 25px;
  color: #00e6ff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.4s;
  backdrop-filter: blur(5px);
}

.hero-buttons .btn:hover {
  background: #00e6ff;
  color: #0f0f1a;
  box-shadow: 0 0 15px #00e6ff, 0 0 30px #00e6ff;
}

/* Hero Slider */
.hero-slider {
  display: flex;
  margin-top: 3rem;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.hero-slider .slide {
  min-width: 300px;
  height: 200px;
  background: rgba(0, 230, 255, 0.1);
  border: 1px solid #00e6ff;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  color: #00e6ff;
  scroll-snap-align: start;
  transition: transform 0.3s ease;
}

.hero-slider .slide:hover {
  transform: scale(1.05);
}
/* About Section */
section#about {
  padding: 6rem 2rem;
  text-align: center;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  align-items: center;
  margin-top: 2rem;
}

.about-image img {
  width: 250px;
  border-radius: 50%;
  border: 3px solid #00e6ff;
  box-shadow: 0 0 15px #00e6ff, 0 0 30px #00e6ff;
}

.about-text {
  max-width: 600px;
  color: #ccc;
}

/* Skills Section */
section#skills {
  padding: 6rem 2rem;
  text-align: center;
}

.skills-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
  margin: 2rem auto 0 auto;
}

.skill h3 {
  margin-bottom: 0.5rem;
  color: #00e6ff;
}

.skill-bar {
  width: 100%;
  height: 10px;
  background: rgba(255,255,255,0.1);
  border-radius: 25px;
  overflow: hidden;
}

.skill-bar span {
  display: block;
  height: 100%;
  background: #00e6ff;
  border-radius: 25px;
}

/* Projects Section */
#projects {
  padding: 6rem 2rem;
  text-align: center;
}

.projects-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.project-card {
  background: rgba(0, 230, 255, 0.12);
  border: 1px solid #00e6ff;
  border-radius: 18px;
  padding: 1.5rem;
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow:
    0 0 15px #00e6ff,
    0 0 30px rgba(0, 230, 255, 0.6);
}
.project-card h3 {
  margin: 0.8rem 0;
  color: #00e6ff;
  font-size: 1.2rem;
}

.project-card p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.5;
}

.project-card .btn {
  display: inline-block;
  margin: 0.6rem 0.3rem;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  border: 1px solid #00e6ff;
  color: #00e6ff;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.project-card .btn:hover {
  background: #00e6ff;
  color: #0f0f1a;
  box-shadow: 0 0 10px #00e6ff;
}

/* Contact Section */
section#contact {
  padding: 6rem 2rem;
  text-align: center;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-container form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
}

.contact-container input,
.contact-container textarea {
  padding: 0.8rem;
  border-radius: 10px;
  border: 1px solid #00e6ff;
  background: rgba(0,0,0,0.3);
  color: #fff;
  outline: none;
  transition: 0.3s;
}

.contact-container input:focus,
.contact-container textarea:focus {
  border-color: #00e6ff;
  box-shadow: 0 0 10px #00e6ff;
}

.contact-container button {
  padding: 0.8rem;
  border-radius: 25px;
  border: 1px solid #00e6ff;
  background: transparent;
  color: #00e6ff;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

.contact-container button:hover {
  background: #00e6ff;
  color: #0f0f1a;
  box-shadow: 0 0 15px #00e6ff, 0 0 30px #00e6ff;
}

.contact-info {
  color: #ccc;
  max-width: 300px;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background: rgba(15, 15, 26, 0.95);
  border-top: 1px solid #00e6ff;
}

footer .social-links a {
  color: #00e6ff;
}