.navbar {
  background: #fff;
  padding: 1rem 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.navbar .navbar-brand {
  font-weight: 700;
  font-size: 1.3rem;
  color: #111;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.navbar .navbar-brand:hover {
  color: #007bff;
}
.navbar .nav-link {
  color: #333;
  font-weight: 500;
  margin: 0 0.75rem;
  position: relative;
  transition: color 0.2s ease;
}
.navbar .nav-link:hover {
  color: #007bff;
}
.navbar .nav-link.active {
  color: #007bff;
  font-weight: 600;
}
.navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #007bff;
  transition: width 0.25s ease;
}
.navbar .nav-link:hover::after {
  width: 100%;
}
.navbar .btn-signin {
  margin-left: 1rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 25px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}
.navbar .btn-signin:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}
.hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero .hero-content .hero-title {
  font-size: 2.8rem;
  font-weight: 700;
}
.hero .hero-content .hero-title .word {
  opacity: 0;
  display: inline-block;
  margin: 0 0.5rem;
  transform: translateY(30px);
  animation: wordIn 1s forwards;
}
.hero .hero-content .hero-title .word:nth-child(1) {
  animation-delay: 0s;
}
.hero .hero-content .hero-title .word:nth-child(2) {
  animation-delay: 1s;
}
.hero .hero-content .hero-title .word:nth-child(3) {
  animation-delay: 2s;
}
.hero .hero-content p {
  margin: 1rem 0 2rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}
.hero .hero-content .btn-cta {
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
}

@keyframes wordIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.news-resources {
  background: #f9fafb;
}
.news-resources .section-header h2 {
  font-size: 2rem;
  color: #222;
}
.news-resources .section-header p {
  font-size: 1rem;
  color: #555;
}
.news-resources .news-card {
  border-radius: 10px;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.news-resources .news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.news-resources .news-card .news-card-img {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.news-resources .news-card .news-card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-resources .news-card .news-card-img .badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff6600;
  color: #fff;
  font-size: 0.75rem;
  padding: 5px 10px;
  border-radius: 20px;
}
.news-resources .news-card .news-card-body {
  padding: 1.25rem;
}
.news-resources .news-card .news-card-body h5 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: #222;
}
.news-resources .news-card .news-card-body p {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}
.news-resources .news-card .news-card-body a {
  font-weight: 600;
  color: #ff6600;
}
.news-resources .news-card .news-card-body a:hover {
  text-decoration: underline;
}

.contest-section {
  background: #f2f1ff url("/assets/images/contest-bg.svg") no-repeat bottom right;
  background-size: cover;
  position: relative;
}
.contest-section .section-header h2 {
  font-size: 2rem;
  color: #222;
}
.contest-section .section-header p {
  font-size: 1rem;
  color: #555;
}
.contest-section .contest-info h4 {
  font-size: 1.25rem;
  color: #ff6600;
  margin-top: 1rem;
}
.contest-section .contest-info p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1rem;
}
.contest-section .contest-info ul li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: #444;
}
.contest-section .contest-form {
  border: 1px solid #ddd;
}
.contest-section .contest-form .form-label {
  font-size: 0.9rem;
  color: #333;
}
.contest-section .contest-form .form-control {
  border-radius: 6px;
}
.contest-section .contest-form .form-control:focus {
  border-color: #ff6600;
  box-shadow: 0 0 0 0.2rem rgba(255, 102, 0, 0.25);
}
.contest-section .contest-form button {
  background: #ff6600;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.contest-section .contest-form button:hover {
  background: #e05500;
}

.contest-section-overlay .contest-overlay-card {
  display: flex;
  flex-wrap: wrap;
  background-size: cover;
  background-position: center;
  border-radius: 1rem;
  overflow: hidden;
  min-height: 500px;
}
.contest-section-overlay .contest-overlay-left {
  flex: 1 1 50%;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}
.contest-section-overlay .contest-overlay-form {
  flex: 1 1 50%;
  background: rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-left: 2px solid rgba(255, 255, 255, 0.2);
}
.contest-section-overlay .form-control,
.contest-section-overlay .form-select {
  border-radius: 8px;
}
.contest-section-overlay button {
  font-weight: bold;
}

.contest-hero-section {
  position: relative;
}
.contest-hero-section .contest-hero-bg {
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.contest-hero-section .contest-hero-bg .form-hero-container {
  z-index: 10;
}
.contest-hero-section .contest-hero-bg .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}
.contest-hero-section .contest-hero-form {
  max-width: 700px;
  width: 100%;
  border-radius: 1rem;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}/*# sourceMappingURL=landing.css.map */