body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: #0a192f;
    color: #ccd6f6;
  }
  
  header {
    background: #112240;
    padding: 15px 40px;
  }
  
  .logo {
    font-weight: 700;
    color: #64ffda;
  }
  
  .logo span {
    color: white;
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .nav-links a {
    color: #ccd6f6;
    text-decoration: none;
    transition: 0.3s;
  }
  
  .nav-links a:hover,
  .nav-links a.active {
    color: #64ffda;
  }
  
  .hero {
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #0a192f 0%, #112240 100%);
    text-align: center;
  }
  
  .hero-content {
    max-width: 700px;
  }
  
  .hero-content h2 {
    font-size: 2.5rem;
  }
  
  .hero-content span {
    color: #64ffda;
  }
  
  .btn {
    background: #64ffda;
    color: #0a192f;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: 0.3s;
  }
  
  .btn:hover {
    background: #52d1b8;
  }
  
  section {
    padding: 60px 20px;
  }
  
  .about-section, .projects-section, .contact-section {
    text-align: center;
  }
  
  .skills {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
  
  .skills li {
    background: #233554;
    padding: 10px 15px;
    border-radius: 5px;
    list-style: none;
  }
  
  .project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
  }
  
  .project-card {
    background: #112240;
    padding: 20px;
    border-radius: 8px;
    transition: 0.3s;
  }
  
  .project-card:hover {
    transform: translateY(-5px);
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 300px;
    margin: 20px auto;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 10px;
    border: none;
    border-radius: 5px;
    outline: none;
  }
  
  .contact-form button {
    background: #64ffda;
    border: none;
    color: #0a192f;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .contact-form button:hover {
    background: #52d1b8;
  }
  
  footer {
    text-align: center;
    padding: 20px;
    background: #112240;
    margin-top: 40px;
  }
  
  /* --- About Page Styling --- */
  .about-container {
    padding: 20px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #0a192f 0%, #112240 100%);
    min-height: 90vh;
  }
  
  .about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1100px;
    gap: 50px;
    text-align: left;
    color: #ccd6f6;
    animation: fadeInUp 1.2s ease;
  }
  
  .about-image {
    flex: 1 1 250px;
    display: flex;
    justify-content: center;
  }
  
  .about-image img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 4px solid #64ffda;
    box-shadow: 0 0 25px rgba(100, 255, 218, 0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  
  .about-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(100, 255, 218, 0.6);
  }
  
  .about-text {
    flex: 2;
  }
  
  .about-text h2 {
    font-size: 2rem;
    color: #64ffda;
    margin-bottom: 15px;
  }
  
  .about-text p {
    margin-bottom: 15px;
    line-height: 1.8;
  }
  
  .skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 30px;
  }
  
  .skills-grid span {
    background: #233554;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #ccd6f6;
    transition: 0.3s;
  }
  
  .skills-grid span:hover {
    background: #64ffda;
    color: #0a192f;
    transform: translateY(-3px);
  }
  
  /* Fade-in Animation */
  @keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  /* Major Project Layout */
.major-project {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  justify-content: center;
  text-align: left;
}

.major-project-image img {
  width: 350px;
  height: auto;
  border-radius: 10px;
  border: 3px solid #64ffda;
  box-shadow: 0 0 25px rgba(100, 255, 218, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.major-project-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(100, 255, 218, 0.6);
}

.major-project-text {
  max-width: 500px;
}

.major-project-text h3 {
  color: #64ffda;
  margin-bottom: 10px;
}

/* Image layout for mini projects */
.project-card img {
  width: 100%;
  height: 160px;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.project-card img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(100, 255, 218, 0.4);
}

/* Headings and layout spacing */
.projects-section h2 {
  color: #64ffda;
  font-size: 2rem;
  margin-bottom: 15px;
}

.projects-section p {
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.6;
  color: #ccd6f6;
  text-align: center;
}
