/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #fefefe, #eef8c7);
    color: #333;
    transition: background 0.5s ease, color 0.3s ease;
  }
  
  /* Dark Mode */
  body.dark {
    background: #121212;
    color: #ddd;
  }
  
  body.dark header,
  body.dark footer {
    background: #1e1e1e;
  }
  
  body.dark .project {
    background: #1e1e1e;
    color: #eee;
    border-left: 4px solid #444;
  }
  
  body.dark .contact {
    background: #1b1b1b;
  }
  
  body.dark .btn {
    background: #333;
    color: #fff;
    border: 1px solid #555;
  }
  
  /* Theme Toggle */
  .theme-toggle {
    text-align: right;
    padding: 10px 20px;
    background: transparent;
  }
  
  #toggleBtn {
    padding: 8px 14px;
    font-size: 14px;
    border: none;
    background: #444;
    color: white;
    border-radius: 20px;
    cursor: pointer;
  }
  
  #toggleBtn:hover {
    background: #000;
  }
  
  /* Container */
  .container {
    width: 90%;
    max-width: 1000px;
    margin: auto;
    padding: 60px 0;
  }
  
  /* Header */
  header {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 100px 0;
    animation: fadeIn 1s ease forwards;
  }
  
  /* Headings */
  h1 {
    font-size: 2.8em;
    margin-bottom: 10px;
  }
  
  h2 {
    margin-bottom: 20px;
    font-size: 2em;
  }
  
  /* About */
  .about-content {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  
  .about-content img {
    width: 220px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.3);
  }

  .about-content p{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  }
  
  /* Services */
  .services ul {
    list-style: disc;
    padding-left: 20px;
    line-height: 2;
    font-size: 1.1em;
  }
  
  /* Projects */
  .project-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
  
  .project {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .project:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .btn {
    display: inline-block;
    margin-top: 10px;
    background: #222;
    color: #fff;
    padding: 8px 14px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s ease;
  }
  
  .btn:hover {
    background: #444;
  }
  .btn:active{
    background-color: blue;
  }
  
  /* Contact */
  .contact {
    text-align: center;
    padding: 60px 0;
    background: #f1f1f1;
    border-top: 1px solid #ddd;
  }
  
  footer {
    text-align: center;
    background: #222;
    color: #fff;
    padding: 15px 0;
  }
  
  /* Animations */
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 2s ease forwards;
  }
  
  .delay {
    animation-delay: 0.4s;
  }
  
  .delay-more {
    animation-delay: 0.6s;
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 2;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .about-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .about-content img {
      width: 100%;
      max-width: 300px;
    }
  
    .project {
      text-align: left;
    }
  }
  