
    body {
      margin: 0;
      font-family: 'Arial', sans-serif;
      background-color: #121212;
      color: #ffffff;
      overflow-x: hidden;
      animation: bgAnimate 5s infinite alternate;
    }

    @keyframes bgAnimate {
      0% {
        background-color: #121212;
      }
      100% {
        background-color: #000000;
      }
    }

    /* Navbar */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 20px;
      position: fixed;
      top: 0;
      right:2px;
      width: 100%;
      z-index: 1000;
      background: rgba(30, 30, 30, 0.9);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, background 0.3s ease;
    }

    .navbar.scrolled {
      background: #1e1e1e;
      transform: translateY(-100%);
    }

    .navbar.show {
      transform: translateY(0);
    }

    .navbar-brand {
      font-size: 1.5em;
      font-weight: bold;
      left: 50px;
      color: white;
      text-decoration: none;
    }

    .nav-links {
      display: flex;
    }

    .nav-links a {
      text-decoration: none;
      color: white;
      margin: 0 15px;
      font-size: 1.1em;
      position: relative;
      transition: color 0.3s ease;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: white;
      transition: width 0.3s ease;
    }

    .nav-links a:hover {
      color: #e0e0e0;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    /* Container */
    .container {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      text-align: center;
      flex-direction: column;
      margin-top: 80px; /* Space for navbar */
    }

    h1 {
      font-size: 4em;
      margin: 0;
      opacity: 0;
      animation: fadeInUp 2s ease-in-out forwards;
      animation-delay: 1s;
    }

    p {
      font-size: 1.5em;
      margin: 0;
      opacity: 0;
      animation: fadeInUp 2s ease-in-out forwards;
      animation-delay: 2.5s;
    }

    a {
      text-decoration: none;
      color: #ffffff;
      padding: 10px 20px;
      border-radius: 5px;
      font-size: 1.2em;
      margin-top: 20px;
      position: relative;
      overflow: hidden;
      transition: color 0.3s ease;
      background: none;
      border: 2px solid #007bff;
    }

    a::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      background: #007bff;
      transform: translate(-50%, -50%);
      transition: width 0.3s ease, height 0.3s ease;
      z-index: -1;
    }

    a:hover {
      color: #121212;
    }

    a:hover::before {
      width: 100%;
      height: 100%;
    }

    @keyframes fadeInUp {
      0% {
        opacity: 0;
        transform: translateY(20px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Projects Section */
    .projects {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      padding: 20px;
    }

    .project-card {
      width: 300px;
      height: 300px;
      perspective: 1000px;
      margin: 20px;
      opacity: 0;
      transform: scale(0.9) translateY(20px);
      transition: all 0.6s ease;
    }

    .project-card.active {
      opacity: 1;
      transform: scale(1) translateY(0);
    }

    .project-card-inner {
      position: relative;
      width: 100%;
      height: 100%;
      text-align: center;
      transition: transform 0.8s;
      transform-style: preserve-3d;
    }

    .project-card:hover .project-card-inner {
      transform: rotateY(180deg);
    }

    .project-card-front,
    .project-card-back {
      position: absolute;
      width: 100%;
      height: 100%;
      backface-visibility: hidden;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      padding: 20px;
      box-sizing: border-box;
    }

    .project-card-front {
      background-color: #1e1e1e;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      border: 2px solid #007bff;
      animation: borderPulse 2s infinite;
    }

    .project-card-back {
      background-color: #007bff;
      color: white;
      transform: rotateY(180deg);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .project-card h2 {
      font-size: 1.5em;
      margin: 0 0 10px 0;
    }
   
    .project-card p {
      font-size: 1em;
      margin: 0;
    }

    @keyframes borderPulse {
      0% {
        border-color: #007bff;
      }
      50% {
        border-color: #0056b3;
      }
      100% {
        border-color: #007bff;
      }
    }

    /* Services Section */
    .services {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 40px 20px;
    }

    .service-card {
      background: linear-gradient(135deg, #007bff, #0056b3);
      border-radius: 15px;
      padding: 20px;
      margin: 20px 0;
      width: 100%;
      max-width: 400px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      opacity: 0;
      transform: scale(0.9) translateY(20px);
      transition: all 0.6s ease;
    }

    .service-card.active {
      opacity: 1;
      transform: scale(1) translateY(0);
    }

    .service-card h3 {
      font-size: 1.5em;
      margin: 0 0 10px 0;
      color: #ffffff;
    }

    .service-card p {
      font-size: 1em;
      margin: 0;
      color: #e0e0e0;
    }

    /* Contact Form */
    .contact {
      padding: 40px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .contact form {
      display: flex;
      flex-direction: column;
      width: 100%;
      max-width: 400px;
    }

    .contact input,
    .contact textarea {
      background: #1e1e1e;
      color: white;
      border: none;
      border-bottom: 2px solid #007bff;
      margin: 10px 0;
      padding: 10px;
      font-size: 1em;
    }

    .contact button {
      background: linear-gradient(135deg, #007bff, #0056b3);
      color: white;
      border: none;
      padding: 10px 20px;
      font-size: 1em;
      cursor: pointer;
      border-radius: 5px;
      transition: background 0.3s ease;
    }

    .contact button:hover {
      background: #0056b3;
    }

    /* Footer */
    footer {
      background: linear-gradient(135deg, #007bff, #0056b3);
      color: white;
      text-align: center;
      padding: 20px;
      font-size: 1em;
    }

    footer a {
      color: white;
      text-decoration: none;
      margin: 0 10px;
    }

    footer a:hover {
      text-decoration: underline;
    }
 