/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #000; /* black background */
  color: #e0f7ff; /* soft neon blue text */
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: blur(5px) brightness(0.4); /* Blur + darken */
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.highlight {
  color: #ff007f; /* Neon pink highlight */
}


.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.project-card {
  background: #0a0a0a;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
}

/* Neon outline without glow */
.project-image {
  width: 100%;
  height: 200px; /* Keeps all cards the same height */
  object-fit: cover; /* Crops without distortion */
  border: 3px solid #00f0ff; /* Neon blue outline */
  border-radius: 10px;
  display: block;
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.highlight {
  color: #00f0ff; /* neon blue */
  text-shadow: 0 0 8px #00f0ff;
}
.hero p {
  font-size: 1.2rem;
  color: #b0eaff;
  max-width: 600px;
  margin: 0 auto 30px;
}
.btn {
  background: #00f0ff;
  color: #000;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn:hover {
  background: #0ff;
  box-shadow: 0 0 15px #00f0ff;
}

/* Projects Section */
.projects {
  padding: 60px 20px;
}
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.project-card {
  background: #111;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}
.project-card:hover {
  box-shadow: 0 0 20px #00f0ff;
  transform: translateY(-5px);
}
.project-card h3 {
  color: #00f0ff;
  margin: 15px 0 10px;
}
.project-card p {
  color: #b0eaff;
}

/* Ensure all images stay uniform inside cards */
.project-image {
  background-color: #000;
  border: 3px solid #00f0ff;
  border-radius: 8px;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* Contact Section */
.contact-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #0d0d0d, #0a1f2e);
  color: white;
}

.contact-container {
  display: flex;
  gap: 40px;
  max-width: 1000px;
  margin: auto;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 280px;
}

.contact-info h2 {
  color: #4cc9f0;
  margin-bottom: 15px;
}

.email-display {
  margin-top: 20px;
  font-weight: bold;
  color: #a6e1fa;
}

.contact-form {
  flex: 1;
  min-width: 280px;
  background: rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 10px;
  border: 2px solid #4cc9f0;
}

.contact-form label {
  display: block;
  margin-bottom: 15px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  background: #0d1b2a;
  border: none;
  color: white;
  border-radius: 5px;
}

.contact-form textarea {
  resize: none;
  height: 120px;
}

.contact-form button {
  background: #4cc9f0;
  color: black;
  border: none;
  padding: 12px 20px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #00b4d8;
}

/* Mobile: Stack neatly */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}


.services {
  padding: 80px 20px;
  text-align: center;
  background: #111;
  color: white;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #aaa;
  margin-bottom: 50px;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #ff007f;
}

.service-card p {
  color: #ccc;
  line-height: 1.6;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(255, 0, 127, 0.2);
}
