@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes rotationA {
  0%, 25% {
    transform: rotate(0deg);
  }
  50%, 75% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotationB {
  0%, 25% {
    transform: rotate(90deg);
  }
  50%, 75% {
    transform: rotate(270deg);
  }
  100% {
    transform: rotate(450deg);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #1e293b;
  overflow-x: hidden;
  background: #ffffff;
}

.loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.loader .kinetic {
  position: relative;
  height: 20px;
  width: 20px;
}
.loader .kinetic::after, .loader .kinetic::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  border: 50px solid transparent;
  border-bottom-color: #fff;
  animation: rotationA 2s linear infinite 0.5s;
}
.loader .kinetic::before {
  transform: rotate(90deg);
  animation: rotationB 2s linear infinite;
}

.loading {
  background-color: transparent;
  box-shadow: inset 0px 0px 0px 0.1em #fff;
  border-radius: 50%;
  position: relative;
  display: inline-block;
  width: 5rem;
  height: 5rem;
  color: inherit;
  vertical-align: middle;
  pointer-events: none;
}
.loading:after, .loading:before {
  position: absolute;
  content: "";
  background-color: #fff;
  top: 2.5rem;
  left: 2.5rem;
  height: 0.5rem;
  transform-origin: left center;
}
.loading:after {
  width: 2rem;
  animation: loading-rotate 2s linear infinite;
}
.loading:before {
  width: 1.5rem;
  animation: loading-rotate 8s linear infinite;
}

#gradient {
  width: 100%;
  height: 100%;
  position: fixed;
  display: flex;
  z-index: 999999;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  transition: all 0.5s ease-in-out;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  align-items: center;
  justify-content: center;
}
#gradient div.message {
  width: 500px;
  max-width: 90%;
  height: 200px;
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#gradient div.message h5 {
  font-weight: 700;
  color: #1c4b6d;
  font-size: 0.95rem;
  text-align: center;
  line-height: 2rem;
  margin: 0;
  text-shadow: none;
  animation: none;
}
#gradient div.message a {
  position: relative;
  display: inline-block;
  margin: 15px;
  padding: 10px 10px;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-decoration: none;
  color: #1c4b6d;
  background: transparent;
  cursor: pointer;
  transition: ease-out 0.5s;
  border: 2px solid #1c4b6d;
  border-radius: 10px;
  box-shadow: inset 0 0 0 0 #1c4b6d;
  font-weight: 700;
}
#gradient div.message a:hover {
  color: white;
  box-shadow: inset 0 -100px 0 0 #1c4b6d;
}
#gradient div.message a:active {
  transform: scale(0.9);
}

.map-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.12;
}

.main-back {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: url("../img/back-2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.gradient-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 30% 50%, rgba(59, 130, 246, 0.08), transparent 50%), radial-gradient(ellipse at 70% 50%, rgba(6, 182, 212, 0.08), transparent 50%), linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(248, 250, 252, 0.85) 50%, rgba(241, 245, 249, 0.85) 100%);
  z-index: 2;
}

.grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem;
  z-index: 10;
}
.hero .content {
  position: relative;
  z-index: 10;
  max-width: 1300px;
  width: 100%;
}
.hero .content .header {
  text-align: center;
  margin-bottom: 3rem;
}
.hero .content .logo-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.hero .content .logo-section .org-name {
  font-size: 0.9rem;
  color: #475569;
  padding: 0.5rem 1rem;
}
.hero .content .logo-section .org-name img {
  width: 90%;
  max-width: 250px;
}
@media (max-width: 660px) {
  .hero .content .logo-section .org-name img {
    max-width: 200px;
  }
}
.hero .content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #246588;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.6);
  margin-bottom: 1rem;
  line-height: 1.2;
  animation: fadeInDown 1s ease-out;
}
@media (max-width: 1150px) {
  .hero .content h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 650px) {
  .hero .content h1 {
    font-size: 1.8rem;
  }
}
.hero .content p {
  padding: 0.5rem 0;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
  animation: fadeInDown 1s ease-out;
}
.hero .content .event-details {
  font-size: 1.2rem;
  color: #334155;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
@media (max-width: 650px) {
  .hero .content .event-details {
    font-size: 1rem;
  }
}
.hero .content .sileline {
  font-size: 1.2rem;
  color: #334155;
  margin-bottom: 0.5rem;
  font-weight: 600;
  line-height: 1.6rem;
}
@media (max-width: 650px) {
  .hero .content .sileline {
    font-size: 1rem;
  }
}
.hero .content .location {
  font-size: 1rem;
  color: #334155;
}
@media (max-width: 650px) {
  .hero .content .location {
    font-size: 0.9rem;
  }
}
.hero .info-section p {
  text-shadow: none;
  text-align: justify;
  line-height: 1.8rem;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}
.hero .schedule {
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  border: 1px solid rgba(203, 213, 225, 0.5);
  border-radius: 16px;
  padding: 2rem;
  max-width: 900px;
  margin: 2rem auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.hero .schedule h2 {
  color: #246588;
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}
@media (max-width: 650px) {
  .hero .schedule h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 500px) {
  .hero .schedule h2 {
    font-size: 1.2rem;
  }
}
.hero .schedule .schedule-item {
  display: flex;
  gap: 2rem;
  padding: 1.5rem;
  border-left: 3px solid #246588;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}
@media (max-width: 550px) {
  .hero .schedule .schedule-item {
    flex-direction: column;
    gap: 1rem;
  }
}
.hero .schedule .schedule-item:hover {
  background: rgba(219, 234, 254, 0.6);
  transform: translateX(10px);
}
.hero .schedule .schedule-item .time {
  font-weight: 700;
  color: #246588;
  min-width: 120px;
}
.hero .schedule .schedule-item .activity {
  flex: 1;
}
.hero .schedule .schedule-item .activity .activity-title {
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.3rem;
}
.hero .schedule .schedule-item .activity p {
  color: #64748b;
  margin-top: 0.3rem;
  margin: 0;
}
.hero .register {
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  border: 1px solid rgba(203, 213, 225, 0.5);
  border-radius: 16px;
  padding: 2rem;
  max-width: 900px;
  margin: 2rem auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.hero .register h2 {
  color: #246588;
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}
@media (max-width: 650px) {
  .hero .register h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 500px) {
  .hero .register h2 {
    font-size: 1.2rem;
  }
}
.hero .register .register-container {
  position: relative;
  width: 100%;
}
.hero .register .register-container .rc-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  padding: 2rem 0;
  width: 100%;
}
.hero .register .register-container .rc-grid .rc-card {
  grid-column: span 12;
  padding: 0.5rem 1rem;
  /* For older browsers that may require vendor prefixes */
}
@media (max-width: 700px) {
  .hero .register .register-container .rc-grid .rc-card {
    grid-column: span 12;
  }
}
.hero .register .register-container .rc-grid .rc-card select,
.hero .register .register-container .rc-grid .rc-card input[type=text],
.hero .register .register-container .rc-grid .rc-card input[type=email] {
  -webkit-appearance: none; /* Remove Safari default */
  -moz-appearance: none; /* For Firefox */
  appearance: none;
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #000;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  margin-bottom: 10px;
}
.hero .register .register-container .rc-grid .rc-card select option {
  color: #000;
}
.hero .register .register-container .rc-grid .rc-card input:focus {
  outline: none !important;
  box-shadow: none !important;
}
.hero .register .register-container .rc-grid .rc-card input::-moz-focus-inner {
  outline: none !important;
  box-shadow: none !important;
}
.hero .register .register-container .rc-grid .rc-card input::-moz-placeholder {
  color: #7a7979; /* Sets the placeholder color to red using a hex code */
}
.hero .register .register-container .rc-grid .rc-card input::placeholder {
  color: #7a7979; /* Sets the placeholder color to red using a hex code */
}
.hero .register .register-container .rc-grid .rc-card input::-webkit-input-placeholder { /* Chrome, Safari, Opera */
  color: #7a7979;
}
.hero .register .register-container .rc-grid .rc-card input::-moz-placeholder { /* Firefox 19+ */
  color: #7a7979;
  opacity: 1; /* Ensures full opacity in Firefox, as it defaults to a lower opacity */
}
.hero .register .register-container .rc-grid .rc-card input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #7a7979;
}
.hero .register .register-container .rc-grid .rc-card input::-ms-input-placeholder { /* Microsoft Edge */
  color: #7a7979;
}
.hero .register .register-container .rc-grid .rc-card.rc-full {
  grid-column: span 12;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .register .register-container .rc-grid .rc-card.select {
  flex-direction: column;
  align-items: start;
}
.hero .register .register-container .rc-grid .rc-card.select label {
  text-align: left;
  padding-bottom: 0.5rem;
  color: #e3e2e2;
}
.hero .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #246588, #347aa0);
  color: #fff;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  margin-left: 10px;
  margin-right: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(36, 101, 136, 0.3);
  border: none;
  text-transform: uppercase;
}
.hero .cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(36, 101, 136, 0.5);
  color: #fff;
  text-decoration: none;
}
@media (max-width: 440px) {
  .hero .cta-button {
    font-size: 10px;
  }
}/*# sourceMappingURL=style.css.map */