/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
  }
  
  body {
    background: #0d0d0d;
    color: #fff;
    overflow-x: hidden;
  }
  
  /* Navbar */
  header {
    width: 100%;
    padding: 20px 60px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(8px);
    box-shadow: 0 3px 15px rgba(0, 224, 255, 0.2);
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
  }
  .logo span {
    color: #00e0ff;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
  }
  .nav-links li {
    margin: 0 18px;
  }
  .nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    position: relative;
  }
  .nav-links a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #00e0ff;
    transition: width 0.3s ease;
  }
  .nav-links a:hover::after,
  .nav-links .active::after {
    width: 100%;
  }
  .nav-links a:hover,
  .nav-links .active {
    color: #00e0ff;
  }
  
  /* About Section */
  .about {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 100px;
    gap: 60px;
  }
  
  .about-img img {
    width: 350px;
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(0, 224, 255, 0.7);
    animation: float 3s ease-in-out infinite;
  }
  
  .about-text {
    max-width: 600px;
  }
  
  .about-text h1 {
    font-size: 45px;
    margin-bottom: 15px;
  }
  .about-text h1 span {
    color: #00e0ff;
    text-shadow: 0 0 10px #00e0ff;
  }
  
  .about-text h2 {
    font-size: 32px;
    margin-bottom: 10px;
  }
  
  .about-text h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #00e0ff;
  }
  
  .about-text p {
    margin-bottom: 15px;
    color: #bbb;
    line-height: 1.6;
  }
  
  /* Button */
  .btn {
    display: inline-block;
    padding: 12px 28px;
    margin-top: 20px;
    background: linear-gradient(90deg, #00e0ff, #00ffa3);
    color: #000;
    font-weight: bold;
    border-radius: 25px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px #00e0ff;
  }
  
  /* Animations */
  @keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
  }
  footer {
    text-align: center;
    padding: 15px;
    background: rgba(0,0,0,0.8);
    color: #a3a3a3;
  }