 .fade-in {
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 1s ease forwards;
    }
    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    /* Toggle Dot Animation */
    input:checked + div .dot {
      transform: translateX(1.5rem);
      background-color: #4f46e5; /* Indigo 600 */
    }

    :root {
      --bg-dark: #0d0d0d;
      --text-light: #f4f4f4;
      --accent: #ff4c60;
      --secondary: #1a1a1a;
    }

    body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background-color: var(--bg-dark);
      color: var(--text-light);
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    header {
      background-color: var(--secondary);
      padding: 1rem 0;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: bold;
    }

    
    .hero {
      padding: 3rem 1rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    .hero-text {
      max-width: 500px;
    }

    .hero-text h1 {
      font-size: 2.5rem;
      margin: 0.5rem 0;
    }

    .hero-text h1 span {
      color: var(--accent);
    }

    .hero-text h2 {
      font-weight: 400;
      margin-bottom: 1.5rem;
    }

    .btn {
      display: inline-block;
      padding: 0.7rem 1.2rem;
      margin-right: 1rem;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
    }

    .btn-primary {
      background-color: var(--accent);
      color: white;
    }

    .btn-secondary {
      border: 2px solid var(--accent);
      color: var(--accent);
    }

    .profile-pic img {
      width: 250px;
      border-radius: 50%;
      border: 4px solid var(--accent);
      margin-top: 1rem;
    }

    .about {
      padding: 3rem 1rem;
      background-color: var(--secondary);
      text-align: center;
    }

    .about h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .about p {
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .stats {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin-top: 2rem;
      flex-wrap: wrap;
    }

    .stats div {
      font-size: 1.2rem;
    }

    footer {
      text-align: center;
      padding: 2rem 0;
      font-size: 0.9rem;
      background: #111;
      color: #aaa;
    }

    @media (max-width: 768px) {
      .hero {
        flex-direction: column;
        text-align: center;
      }

      
      }

      .profile-pic img {
        width: 180px;
      }

      .stats {
        flex-direction: column;
      }


          #navbar {
      background: linear-gradient(to right, #041c32, #064663);
      padding: 1rem;
      color: white;
      position: sticky;
      top: 0;
      z-index: 50;
    }

    .nav-content {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .logo {
      font-weight: 900;
      font-size: 1.5rem;
      cursor: default;
      user-select: none;
      color: #4f46e5; /* Indigo-600 */
      letter-spacing: 0.05em;
    }

    .nav-links {
      display: flex;
      gap: 1.5rem;
    }

    .nav-links a {
      color: white;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: #a5b4fc; /* Indigo-300 */
    }

    /* Mobile menu button */
    #menu-btn {
      display: none;
      font-size: 1.8rem;
      cursor: pointer;
      color: white;
      background: none;
      border: none;
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
        background: #041c32;
        border-radius: 0.5rem;
        padding: 1rem;
      }
      .nav-links.show {
        display: flex;
      }

      #menu-btn {
        display: block;
      }
    }


    
    .services {
      padding: 3rem 1rem;
      text-align: center;
    }
    .services h2 {
      font-size: 2rem;
      margin-bottom: 2rem;
    }
    .service-boxes {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 2rem;
    }
    .box {
      background: #1a1a1a;
      padding: 2rem;
      border-radius: 10px;
      width: 300px;
      box-shadow: 0 0 10px rgba(0,0,0,0.3);
    }
    .box h3 {
      color: #ff4c60;
      margin-bottom: 1rem;
    }
    footer {
      background: #111;
      color: #aaa;
      text-align: center;
      padding: 2rem 0;
      margin-top: 2rem;
    }

    @media (max-width: 768px) {
      .service-boxes {
        flex-direction: column;
        align-items: center;
      }
    }



    footer a:hover,
  footer .social-icons a:hover {
    color: #f3deb0 !important;
    text-decoration: underline;
  }

  