 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', sans-serif;
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 20px;
      background-color: #101820;
      color: white;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .logo img {
      height: 40px;
      width: auto;
      filter: invert()
    }

    nav {
      display: flex;
      gap: 20px;
    }

    nav a {
      color: white;
      text-decoration: none;
      font-size: 1rem;
      transition: color 0.3s ease;
    }

    nav a:hover {
      color: #00ffff;
    }

    .menu-toggle {
      display: none;
      font-size: 1.8rem;
      cursor: pointer;
      color: white;
      
    }

    /* Responsive for all devices */
    @media (max-width: 1024px) {
      .menu-toggle {
        display: block;
      }

      nav {
        position: absolute;
        top: 65px;
        right: 0;
        background-color: #101820;
        width: 100%;
        flex-direction: column;
        align-items: center;
        display: none;
        gap: 15px;
        padding: 20px 0;
      }

      nav.active {
        display: flex;
      }

      nav a {
        font-size: 1.1rem;
      }
    }
    .hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.5);
}

.hero-content {
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #00AEEF;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #008ecc;
}

    .about-section {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 60px 10%;
      flex-wrap: wrap;
      background-color: white;
      border-bottom: 1px solid #ddd;
    }

    .about-section.reverse {
      flex-direction: row-reverse;
    }

    .about-content {
      flex: 1;
      min-width: 300px;
      padding: 0 40px;
    }

    .about-content h2 {
      font-size: 36px;
      margin-bottom: 20px;
      white-space: nowrap;
      overflow: hidden;
      border-right: 2px solid #0078d4;
      width: 0;
      animation: typing 3s steps(30, end) forwards, blink 0.75s step-end infinite;
    }

    @keyframes typing {
      from { width: 0; }
      to { width: 100%; }
    }

    @keyframes blink {
      50% { border-color: transparent; }
    }

    .about-content p {
      font-size: 18px;
      line-height: 1.6;
      margin-bottom: 25px;
      opacity: 0;
      animation: fadeIn 1s ease forwards;
      animation-delay: 3.2s;
    }

    .about-content button {
      padding: 12px 24px;
      font-size: 16px;
      background-color: #0078d4;
      color: white;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      opacity: 0;
      animation: fadeIn 1s ease forwards;
      animation-delay: 3.6s;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .about-image {
      flex: 1;
      min-width: 300px;
      text-align: center;
    }

    .about-image img {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
    }

    @media (max-width: 768px) {
      .about-section,
      .about-section.reverse {
        flex-direction: column;
        text-align: center;
      }

      .about-content {
        padding: 0;
        margin-bottom: 30px;
      }
    }
  .projects-section {
  max-width: 1200px;
  padding: 50px 20px;
  margin: auto;
  text-align: center;
}

.projects-section h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #333;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.project-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-8px);
}

.project-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.project-content {
  padding: 20px;
}

.project-content h3 {
  font-size: 22px;
  color: #222;
  margin-bottom: 10px;
}

.project-content p {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
}

.project-content a {
  display: inline-block;
  padding: 10px 20px;
  background: #007BFF;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.project-content a:hover {
  background: #0056b3;
}

/* 🌐 Responsive Enhancements */
@media (max-width: 768px) {
  .projects-section h2 {
    font-size: 28px;
  }

  .project-content h3 {
    font-size: 20px;
  }

  .project-content p {
    font-size: 14px;
  }

  .project-card img {
    height: 160px;
  }

  .project-content {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .projects-section {
    padding: 40px 15px;
  }

  .project-content a {
    padding: 8px 16px;
    font-size: 14px;
  }

  .project-card img {
    height: 140px;
  }
}

    
    footer {
      background-color: #181A1E;
      color: #fff;
      padding: 60px 10%;
    }

    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 40px;
    }

    .footer-left {
      flex: 1;
      min-width: 260px;
    }

    .footer-left img {
      height: 40px;
      margin-bottom: 20px;
      filter:invert();
    }

    .footer-left p {
      font-size: 15px;
      line-height: 1.6;
      color: #cfcfcf;
    }

    .footer-left a {
      color: #58a6ff;
      text-decoration: none;
      display: block;
      margin-top: 10px;
    }

    .footer-columns {
      display: flex;
      gap: 60px;
      flex-wrap: wrap;
      flex: 2;
      justify-content: space-between;
    }

    .footer-column h4 {
      font-weight: 600;
      margin-bottom: 15px;
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
    }

    .footer-column ul li {
      margin-bottom: 10px;
    }

    .footer-column ul li a {
      text-decoration: none;
      color: #cfcfcf;
      font-size: 15px;
    }

    .footer-column ul li a:hover {
      color: #58a6ff;
    }

    .footer-bottom {
      border-top: 1px solid #333;
      margin-top: 40px;
      padding-top: 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .footer-bottom p {
      font-size: 14px;
      color: #aaa;
    }

    .footer-bottom p a {
      color: #58a6ff;
      text-decoration: underline;
    }

    .social-icons {
      display: flex;
      gap: 12px;
      margin-top: 10px;
    }

    .social-icons a {
      background-color: #24262d;
      color: #fff;
      width: 38px;
      height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 4px;
      text-decoration: none;
      font-size: 16px;
    }

    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
      }

      .footer-columns {
        flex-direction: column;
        gap: 30px;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
      }
    }