
/* Reset some styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    background: #ffffff;
    color: #333;
  }

  /* Hero Section */
  .hero {
    position: relative;
    width: 100%;
    /* height: 95vh; */
    overflow: hidden;
  }

  .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px 40px;
    border-radius: 8px;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  /* Introduction */
  .intro {
    padding: 40px 20px;
    text-align: center;
    background: #f9f9f9;
  }

  .intro h2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .intro p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
  }

  /* Sign-Up Section */
  .signup {
    padding: 40px 20px;
    background: #fff;
    text-align: center;
  }

  .signup h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .signup form {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .signup input,
  .signup textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
  }

  .signup button {
    padding: 12px;
    background: #007BFF;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
  }

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

  /* Footer */
  footer {
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
    background: #f1f1f1;
  }

  /* Project Links Section */
.projectLinks {
    padding: 40px 20px;
    background: #f0f4f8;
    text-align: center;
  }

  .projectLinks h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
  }

  /* Stylish Buttons */
  .projectLinks a {
    display: inline-block;
    margin: 10px 15px;
    padding: 12px 24px;
    background: linear-gradient(to right, #007BFF, #00C6FF);
    color: white;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 30px;
    transition: transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
  }

  .projectLinks a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
    background: linear-gradient(to right, #0056b3, #0096c7);
  }



  h2,h3 {
    font-size: 2.5rem;
    font-family: "Pacifico", cursive;
    font-weight: 400;
    font-style: normal;
}