
* {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  #skills,
  #projects,
  #contact {
    min-height: calc(100vh - 60px - 80px); 
  }
  
  
  body {
    background: #121212;
    color: #eee;
    scroll-behavior: smooth;
    padding-top: 60px; 
  }
  
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(18, 18, 18, 0.95);
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.8);
    z-index: 1000;
    display: flex;
    justify-content: center; 
    align-items: center;    
    height: 60px;           
  }
  
  .nav-links {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 2.5rem;
  }
  
  .nav-links a {
    color: #eee;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #f39c12;
    transition: width 0.3s ease;
  }
  
  .nav-links a:hover,
  .nav-links a.active {
    color: #f39c12;
  }
  
  .nav-links a:hover::after,
  .nav-links a.active::after {
    width: 100%;
  }
  
  /* Sections */
  .section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  
    margin: 30px auto 20px;
   
    max-width: 900px;
    padding: 2rem 1rem;
  
   
  }
  
  #skills {
    margin-bottom: -150px;
  }
  
  #projects {
    margin-top: 0;
  }
  
  
  .section.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  
  .home-section {
    height: 100vh; 
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 0 2rem;
    background: transparent; 
    color: #eee; 
    max-width: none; 
  }
  
  .home-content {
    max-width: 50%;
    text-align: left;
  }
  
  /* Hero Title */
  .home-content .hero-title {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: #eee;
    animation: fadeInDown 1.2s ease forwards;
  }
  
  .home-content .hero-title span {
    color: #fff200;
    text-shadow: 0 0 8px #fff200;
  }
  .hero-subtitle
  {
    font-family: 1.5rem;
    margin-bottom: 10%;
  }
  
  /* Subtitle */
  .home-content hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #ccc;
    animation: fadeInUp 1.4s ease forwards;
   
  }
  
  /* Button */
  .btn {
    padding: 0.8rem 2rem;
    background: #fff200;
    border: none;
    border-radius: 30px;
    color: #222;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease;
    animation: fadeInUp 1.6s ease forwards;
  }
  
  .btn:hover {
    background: #d4c500;
  }
  
  /* Circle image container on right */
  .home-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(243, 156, 18, 0.7);
    flex-shrink: 0; 
    background: #222; 
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 200px;
  }
  
  /* Image inside the circle */
  .home-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  /* Section Titles */
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    text-align: center;
    color: #f39c12;
    letter-spacing: 1.5px;
  }
  
  /* About */
  .about-text {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 700px;
  
    color: #ddd;
    text-align: center;
  
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 1.2rem;
    color: #ddd;
    text-align: center;
  }
  
  .web
  {
    color: #333;
  }
  
  /* Skills */
  .skills-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .skill-card {
    background: #f39c12;
    color: #222;
    font-weight: 700;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 8px rgba(243, 156, 18, 0.5);
    cursor: default;
    transition: transform 0.3s ease;
  }
  
  .skill-card:hover {
    transform: scale(1.1);
  }
  
  /* Projects */
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
  }
  
  .project-card {
    background: #292929;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
  }
  
  .project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.7);
  }
  
  .project-image {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    filter: brightness(0.85);
    transition: filter 0.3s ease;
  }
  
  .project-card:hover .project-image {
    filter: brightness(1);
  }
  
  .project-info {
    padding: 1rem 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .project-info h3 {
    margin-bottom: 0.5rem;
    color: #fff200;
  }
  
  .project-info p {
    flex-grow: 1;
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .btn-outline {
    align-self: flex-start;
    padding: 0.5rem 1.2rem;
    border: 2px solid #f39c12;
    border-radius: 30px;
    background: transparent;
    color: #f39c12;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
  }
  
  .btn-outline:hover {
    background: #f39c12;
    color: #222;
  }
  
  /* Contact */
  .contact-text {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #ddd;
  }
  
  .contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    outline: none;
  }
  
  .contact-form input {
    background: #333;
    color: #eee;
  }
  
  .contact-form textarea {
    background: #333;
    color: #eee;
    resize: vertical;
  }
  
  .contact-form button {
    background: #f39c12;
    border: none;
    padding: 0.9rem 1.5rem;
    font-weight: 700;
    color: #222;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .contact-form button:hover {
    background: #d35400;
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 1.2rem 1rem;
    background: #222;
    color: #eee;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
  }
  
  /* Animations */
  @keyframes fadeInDown {
    0% {
      opacity: 0;
      transform: translateY(-20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .nav-links {
      gap: 1.2rem;
    }
  
    .hero-title {
      font-size: 2.5rem;
    }
  
   
    .home-section {
      flex-direction: column;
      justify-content: center;
      height: auto;
      padding: 2rem 1rem;
    }
  
    .home-content {
      max-width: 100%;
      text-align: center;
      margin-bottom: 2rem;
    }
  
    .home-image {
      width: 200px;
      height: 200px;
    }
    
    .section {
      margin: 80px 1rem 40px;
      padding: 1.5rem 1rem;
    }
  }