* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #ffffff;
  justify-content: center;
  align-items: center;
}

.container {
    max-width: 400px;
    margin: auto;
  text-align: center;
}

.header {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 10px;
}

.logo {
  font-weight: bold;
  color: #008080;
}

.tag {
  font-weight: bold;
  color: #333;
}

.banner .highlight {
  display: inline-block;
  background: #ffb84d;
  color: #fff;
  padding: 5px 15px;
  border-radius: 5px;
  font-weight: bold;
  margin-bottom: 8px;
}

.banner h1 {
  font-size: 28px;
  color: #0080ff;
  margin: 10px 0;
}

.subtext {
  font-size: 16px;
  margin-bottom: 15px;
}

.teacher-img {
  width: 60%;
  margin: 0px 0;
}

.teacher-name {
  font-size: 20px;
  font-weight: bold;
  color: #0080ff;
}

.teacher-info {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.join-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.join-form input {
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.75rem;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 1rem;
    padding-right: 1rem;
    --tw-border-opacity: 1;
    border-color: rgb(100 116 139 / var(--tw-border-opacity));
    border-width: 1px;
    border-radius: 11px;
    width: 100%;
}

.phone-field {
  display: flex;
  align-items: center;
}

.phone-field .country-code {
  background: #f5f5f5;
  border: 1px solid #ccc;
  padding: 12px;
  border-radius: 8px 0 0 8px;
}

.join-form button {
    animation: shake-animation 3.72s ease infinite;
    transform-origin: 50% 50%;
    position: relative;
    border-width: 0px;
    overflow: hidden;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
    font-weight: 600;
    font-size: 18px;
    border-radius: 9999px;
    align-items: center;
    cursor: pointer;
    -webkit-appearance: button;
    margin-top: 1.5rem;
    gap: .5rem;
    width: 100%;
    padding-top: .75rem;
    padding-bottom: .75rem;
    justify-content: center;
    padding-left: .75rem;
    padding-right: .75rem;
    --tw-gradient-to: #561167;
    text-align: center;
    --tw-gradient-from: #561167;
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.join-form button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: skewX(-25deg);
}

/* Animate shine on hover */
.join-form button:hover::before {
  animation: shine 1s forwards;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

.footer-text {
  margin-top: 15px;
  font-size: 14px;
  color: #008080;
  font-weight: bold;
}
/* Benefits Section */
.benefits {
 display: flex;
    justify-content: space-around;
    margin: 60px auto;
    max-width: 400px;
    text-align: center;
}

.benefit img {
  width: 50px;
  margin-bottom: 10px;
}

.benefit p {
 
  font-size: 14px;
}

/* Batches Section */
.batches {
  background: #f5fbff;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
    margin: auto;
    max-width: 400px;
}

.batches h2 {
  font-size: 20px;
  margin-bottom: 5px;
}

.batches p {
  font-size: 14px;
  color: #000;
  margin-bottom: 15px;
}

.batch-cards {
  display: flex;
  justify-content: space-around;
  gap: 15px;
  flex-wrap: wrap;
}

.batch {
  background: #e6f4ff;
  border-radius: 10px;
  padding: 15px;
  flex: 1;
  min-width: 150px;
}

.batch h3 {
  margin-bottom: 10px;
  font-size: 16px;
  color: #0080ff;
}

.batch ul {
  list-style: none;
  padding: 0;
}

.batch li {
  margin: 6px 0;
  font-size: 14px;
}

/* About Section */
.about {
  text-align: center;
    margin: 50px auto;
    max-width: 400px;
}

.about .welcome {
  color: #ff6600;
  font-weight: bold;
  margin-bottom: 5px;
}

.about h2 {
 font-size: 28px;
    margin-bottom: 10px;
    letter-spacing: 1px;
    color: #000;
    font-weight: 500;
}

.about .desc {
  font-size: 14px;
  color: #444;
  margin-bottom: 20px;
  padding: 0 15px;
  font-weight: 300;
    letter-spacing: 1px;
}

.community-img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
}

