/* ====== FONT & RESET ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background: #f9fafb;
    color: #333;
    line-height: 1.6;
  }
  
  /* ====== NAVBAR ====== */
  .navbar {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 6%;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
  }
  
  .logo span {
    color: #00aaff;
  }
  
  .nav-links a {
    margin-left: 25px;
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  .nav-links a:hover,
  .nav-links .active {
    color: #00aaff;
  }
  
  /* ====== HERO ====== */
  .hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5rem 8%;
    background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
  }
  
  .hero-content {
    flex: 1;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
    color: #111;
    margin-bottom: 1rem;
  }
  
  .hero-content h1 span {
    color: #00aaff;
  }
  
  .hero-content p {
    max-width: 550px;
    margin-bottom: 2rem;
    color: #555;
  }
  
  .btn-primary {
    display: inline-block;
    padding: 12px 25px;
    background: #00aaff;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
  }
  
  .btn-primary:hover {
    background: #0088cc;
  }
  
  .hero-image img {
    width: 320px;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }
  
  /* ====== PROJECTS PAGE ====== */
  .projects-page {
    text-align: center;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
  }
  
  .project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
  }
  
  .project-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  .project-card:hover {
    transform: translateY(-5px);
  }
  
  .project-img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 2px solid #eee;
  }
  
  
  .project-info {
    padding: 15px 20px;
  }
  
  .project-info h3 {
    margin: 10px 0 8px;
    font-size: 18px;
    color: #333;
  }
  
  .project-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
  }
  
  
  /* ====== CONTACT PAGE ====== */
  .contact-page {
    text-align: center;
    padding: 4rem 8%;
    background: linear-gradient(135deg, #f0f9ff, #ffffff);
  }
  
  .contact-page h2 {
    font-size: 2rem;
    color: #111;
    margin-bottom: 1rem;
  }
  
  .contact-page p {
    color: #666;
    margin-bottom: 2.5rem;
  }
  
  .contact-form {
    max-width: 550px;
    margin: 0 auto;
    text-align: left;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    border-color: #00aaff;
  }
  
  .contact-form .btn-primary {
    width: 100%;
    text-align: center;
    font-size: 1rem;
  }
  
  /* ====== FOOTER ====== */
  footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 1.2rem 0;
    font-size: 0.9rem;
    margin-top: 3rem;
  }
  
  /* ====== RESPONSIVE ====== */
  @media (max-width: 900px) {
    .hero {
      flex-direction: column;
      text-align: center;
    }
  
    .hero-image {
      margin-top: 2rem;
    }
  
    .nav-links a {
      margin-left: 15px;
    }
  }
  
  @media (max-width: 600px) {
    .project-grid {
      grid-template-columns: 1fr;
    }
  
    .contact-form {
      padding: 1.5rem;
    }
  }

  /* ====== SKILLS SECTION ====== */
.skills-section {
    text-align: center;
    padding: 4rem 8%;
    background: #f7fbff;
  }
  
  .skills-section h2 {
    font-size: 2rem;
    color: #111;
    margin-bottom: 1rem;
  }
  
  .skills-section p {
    color: #666;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
  }
  
  .skill-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .skill-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  }
  
  .skill-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
  
  .skill-card h3 {
    color: #111;
    margin-bottom: 0.5rem;
  }
  
  .skill-card p {
    color: #555;
    font-size: 0.95rem;
  }
  