/* Basic styling */

body {
    font-family: 'Poppins', sans-serif;
    color: #003366; /* Dark blue */
    background: lightyellow;
  }

  .carousel-container {
    position: relative;
    width: 90%;
    max-width: 900px;
    margin: 50px auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: #fff;
    padding: 2rem;
  }

  .carousel-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
  }

  .carousel-item {
    min-width: 100%;
    padding: 2rem;
    box-sizing: border-box;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
  }

  .carousel-item p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .carousel-item h3 {
    font-weight: 600;
    margin-bottom: 0.5rem;
  }

  .stars span {
    font-size: 1.5rem;
    color: gold;
  }

  .carousel-buttons {
    text-align: center;
    margin-top: 1rem;
  }

  .carousel-buttons button {
    background: #003366;
    color: #fff;
    font-size: 1rem;
    border: none;
    padding: 10px 15px;
    margin: 0 10px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .carousel-buttons button:hover {
    background: #0055aa;
  }

  .join-caption {
    text-align: center;
    margin-top: 40px;
    font-size: 1.3rem;
    font-weight: 600;
    animation: bounce 2s infinite;
    color: #003366;
  }

  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }


.cta {
    text-align: center;
    margin-top: 40px;
}

.cta-button {
    background-color: #2b3e50;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #1a2632;
}

#feedback-form {
    background-color: #fff;
    padding: 40px;
    margin-top: 40px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

#feedback-form label {
    font-size: 18px;
    margin-bottom: 10px;
}

#feedback-form input,
#feedback-form select,
#feedback-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

#feedback-form button {
    padding: 10px 20px;
    background-color: #2b3e50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#feedback-form button:hover {
    background-color: #1a2632;
}
