body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #1e3a8a, #6b21a8, #000);
    color: white;
  }
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
  }
  .logo {
    display: flex;
    align-items: center;
  }
  .logo img {
    max-height: 60px;
    margin-right: 20px;
  }
  .navbar {
    display: flex;
    justify-content: left;
    flex: 1;
  }
  nav ul {
    display: flex;
    list-style: none;
    gap: 1rem;
  }
  nav ul li a {
    text-decoration: none;
    color: white;
    padding: 10px 22px;
    border-radius: 4px;
    transition: color 0.3s;
  }
  nav ul li a:hover {
    color: #d8b4fe;
    border-radius: 4px;
  }
  .btn {
    padding: 0.75rem 2rem;
    background: #6b21a8;
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: 0.3s;
  }
  .btn:hover {
    background: #4c1d95;
  }
  .hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100vh;
    padding: 2rem;
    margin-top: 3rem;
  }
  .hero img {
    max-width: 50%;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  }
  .hero-content {
    max-width: 45%;
  }
  .hero-content h1 {
    font-size: 3rem;
  }
  .hero-content p {
    margin: 1rem 0;
    font-size: 1.2rem;
  }
  .section {
    padding: 5rem 2rem;
    text-align: center;
  }
  .bg-gray {
    background: #1f2937;
  }
  .grid {
    display: grid;
    gap: 2rem;
  }
  .grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .card {
    background: linear-gradient(to right, #6b21a8, #1e3a8a);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .form {
    max-width: 600px;
    margin: auto;
  }
  .form input, .form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 0.5rem;
  }
  .carousel-container {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
    height: 100%;
  }
  .carousel-image {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  }
  .carousel-tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
  }
  .carousel-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
  }
  footer {
    background: black;
    text-align: center;
    padding: 1rem;
  }