/* Hero */
#registration-hero {
  position: relative;
  padding: 120px 20px;
  text-align: center;
  color: #fff;
   background: url('../assets/images/breadcrumb.jpg') center/cover no-repeat;
}
#registration-hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
}
#registration-hero .container {
  position: relative;
  z-index: 1;
}
#registration-hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  font-weight: 700;
}
#registration-hero p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
}
/* Force section title to center in Registration */
#registration .section-title {
  text-align: center !important;
  display: inline-block;
  margin: 0 auto 20px auto; /* centers the title */
  border-bottom: 3px solid #FFD700;
  padding-bottom: 5px;
}

/* Form */
.registration-form {
  background: #fff;
  border-radius: 12px;
}
.registration-form .form-label {
  font-weight: 600;
  font-family: 'Orbitron', sans-serif;
}
.registration-form .form-control,
.registration-form .form-select {
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 12px;
  font-family: 'Poppins', sans-serif;
}
.registration-form .form-control:focus,
.registration-form .form-select:focus {
  border-color: #FFD700;
  box-shadow: 0 0 6px rgba(255, 215, 0, 0.5);
}
.registration-form button {
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.3s ease;
}
.registration-form button:hover {
  transform: scale(1.05);
}

#awards .award-box {
            transition: all 0.4s ease;
        }

        #awards .award-box:hover {
            background: linear-gradient(135deg, #FFD700, #000);
            color: #fff !important;
            transform: translateY(-8px);
        }

        #awards .award-box:hover h5,
        #awards .award-box:hover h3,
        #awards .award-box:hover p {
            color: #fff !important;
        }
/* =====================
   Responsive - Registration Page
===================== */

/* Tablets (max-width: 991px) */
@media (max-width: 991px) {
  /* Hero */
  #registration-hero {
    padding: 80px 15px;
  }
  #registration-hero h1 {
    font-size: 2.2rem;
  }
  #registration-hero p {
    font-size: 1rem;
  }

  /* Form */
  .registration-form {
    padding: 20px;
  }
  .registration-form .form-control,
  .registration-form .form-select {
    padding: 10px;
  }
}

/* Mobiles (max-width: 767px) */
@media (max-width: 767px) {
  /* Hero */
  #registration-hero {
    padding: 60px 15px;
    min-height: 250px;
  }
  #registration-hero h1 {
    font-size: 1.8rem;
  }
  #registration-hero p {
    font-size: 0.9rem;
  }

  /* Section Title */
  #registration .section-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  /* Form */
  .registration-form {
    padding: 15px;
  }
  .registration-form .form-control,
  .registration-form .form-select {
    font-size: 0.9rem;
    padding: 8px 10px;
  }
  .registration-form button {
    font-size: 0.9rem;
    padding: 10px 18px;
  }
}

/* Small Mobiles (max-width: 480px) */
@media (max-width: 480px) {
  #registration-hero h1 {
    font-size: 1.5rem;
  }
  #registration-hero p {
    font-size: 0.85rem;
  }

  .registration-form {
    padding: 12px;
  }
  .registration-form .form-control,
  .registration-form .form-select {
    font-size: 0.85rem;
    padding: 8px;
  }
  .registration-form button {
    width: 100%; /* full width button */
    font-size: 0.85rem;
    padding: 12px;
  }
}



 /* --- Responsive Adjustments --- */
  @media (max-width: 991px) {
    #awards h2 {
      font-size: 1.8rem;
    }
    #important-dates h3 {
      font-size: 1.4rem;
    }
  }

  @media (max-width: 767px) {
    #important-dates .col-md-6 {
      text-align: center !important;
      margin-bottom: 1.5rem;
    }

    #awards .award-box {
      padding: 1.5rem;
    }

    #awards h5 {
      font-size: 1.1rem;
    }

    #awards h3 {
      font-size: 1.4rem;
    }
  }

  @media (max-width: 575px) {
    #awards .col-10 {
      width: 100%;
    }

    #awards h2 {
      font-size: 1.6rem;
    }

    #important-dates h3 {
      font-size: 1.3rem;
    }
  }