* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Satoshi', sans-serif;
  --primary-color: #0061AC;
}

body {
  background-color: #F9F9FE;
  color: #000;
  height: 100%;
  overflow-y: scroll;
  scroll-behavior: smooth;
  overflow-x: hidden;
  padding-bottom: 100px;
}

::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
}

::-webkit-scrollbar-thumb:hover {
  background: #00508C;
}

.main-container {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.background-gradient {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50vw;
  height: 50vh;
  border-radius: 50%;
  background: linear-gradient(90deg, #0061AC 0%, #00A8C5 100%);
  filter: blur(250px);
  z-index: -10;
  border: none;
}

.coming-soon {
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
}

navbar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 60%;
  padding: 17px 24px;
  border-radius: 13.333px;
  background: rgba(255, 255, 255, 0.30);
  box-shadow: 0px 0.889px 6.222px 0px rgba(0, 0, 0, 0.09);
  backdrop-filter: blur(14px);
  position: fixed;
  top: 20px;
  z-index: 1000;
}

navbar .left-navbar,
navbar .right-navbar {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  flex-grow: 1;
}

navbar .right-navbar {
  justify-content: flex-end;
}

navbar .center-navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 0;
}

navbar .center-navbar img {
  width: 50px;
  height: 50px;
}

navbar .left-navbar a {
  text-decoration: none;
  color: #000;
  font-size: 1rem;
  font-weight: 500;
}

navbar .right-navbar a {
  text-decoration: none;
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  padding: 15px;
  border-radius: 8.8px;
  background: var(--primary-color);
  color: #FFF;
  font-weight: 700;
}

.hero-section {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 100px 0;
  min-height: 100vh;
  width: 100%;
  position: relative;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.hero-tagline {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary-color);
}

h1 {
  font-size: 5rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.hero-descriptors {
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 0px;
  width: 100%;
}

.hero-divider {
  margin: 0 15px;
  background: var(--primary-color);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.hero-buttons a {
  text-decoration: none;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 8.8px;
  background: var(--primary-color);
  color: #FFF;
  font-weight: 600;
}

.brochure-download {
  background: transparent !important;
  border: 2px solid var(--primary-color);
  color: #000 !important;
  padding: 15px 30px;
  border-radius: 8.8px;
  font-weight: 600;
  text-decoration: none;
}

.why-attend {
  text-align: center;
  padding: 80px 0px;
  width: 80%;
}

.why-attend h2 {
  font-size: 3rem;
  margin-bottom: 50px;
  font-weight: 900;
  text-transform: uppercase;
}

.why-attend-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.why-attend-card {
  border-radius: 15px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  width: 350px;
  height: 450px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 20px;
  color: #FFF;
}

.why-attend-card.one {
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .8) 60%, rgba(0, 0, 0, 1) 100%),
    url('/static/assets/why-attend-1.jpg') no-repeat center center;
  background-size: cover;
  background-position: center;
}

.why-attend-card.two {
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .8) 60%, rgba(0, 0, 0, 1) 100%),
    url('/static/assets/why-attend-2.jpg') no-repeat center center;
  background-size: cover;
  background-position: center;
}

.why-attend-card.three {
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .8) 60%, rgba(0, 0, 0, 1) 100%),
    url('/static/assets/why-attend-3.jpg') no-repeat center center;
  background-size: cover;
  background-position: center;
}

.why-attend-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  width: 80%;
  animation: fadeIn 0.5s ease;
  font-weight: 900;
}

.why-attend-card h3 span {
  color: var(--primary-color);
}

.why-attend-card-popup-card {
  display: none;
  animation: fadeIn 0.5s ease;
  overflow: hidden;
}

.why-attend-card.one:hover .why-attend-card-popup-card,
.why-attend-card.two:hover .why-attend-card-popup-card,
.why-attend-card.three:hover .why-attend-card-popup-card {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #003D6B 0%, #004F73 100%);
  opacity: 0.8;
  z-index: 100;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.why-attend-card.one:hover h3,
.why-attend-card.two:hover h3,
.why-attend-card.three:hover h3 {
  display: none;
}

.why-attend-card:hover .why-attend-card-popup-card h3 {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: #FFF;
}

.why-attend-card:hover .why-attend-card-popup-card p {
  display: block;
  font-size: 1rem;
  color: #FFF;
  font-weight: 500;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 0.8;
  }
}


.why-attend-card p {
  font-size: 1rem;
}

.event-details {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  width: 80%;
  border-radius: 15px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  padding: 80px;
  height: 90vh;
  overflow:hidden;
  margin-top: 50px;
}

.left-event-details {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  width: 45%;
  /* Adjust width as needed */
  position: sticky;
  top: 0;
  height: 90vh;
  /* Full height for left column */
  overflow-y: auto;
  /* Enable vertical scrolling */
}

.left-event-details h2 {
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  width: 100%;
  color: var(--primary-color);
}

.left-event-details p {
  font-size: 1rem;
  font-weight: 500;
  width: 80%;
}

.right-event-details {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 50px;
  width: 55%;
  /* Adjust width as needed */
  height: 100%;
  /* Full height for right column */
  overflow-y: auto;
  /* Allow vertical scrolling */
}

.right-event-details::-webkit-scrollbar {
  display: none;
  /* Hide the scrollbar for the right column */
}

.event-details-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}

.event-details-card h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary-color);
  width: 100%;
}

.event-details-card p {
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  width: 100%;
}

.event-details-card p a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 700;
  display: block;
  margin-top: 20px;
  padding: 10px;
  border-radius: 8.8px;
  border: 1px solid var(--primary-color);
  background: #FFF; 
  width: max-content;
}

.event-details-card-code {
  width: 100% !important;
  font-size: 1rem !important;
  font-weight: 900 !important;
  color: var(--primary-color);
}

.event-details-card-divider {
  width: 80%;
  height: 1px;
  background: var(--primary-color);
}

.apply-now {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 80px 0;
  width: 100%;
  margin-top: 50px;
}

.apply-now h2 {
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 50px;
}

.apply-now-buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 80%;
}

.apply-now-webweave, .apply-now-applabs, .apply-now-playcraft {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  width: 350px;
  height: 450px;
}

.apply-now-webweave {
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .8) 60%, rgba(0, 0, 0, 1) 100%),
        url('/static/assets/webweave.svg') no-repeat center center;
      background-size: cover;
      background-position: center;
}

.apply-now-applabs {
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .8) 60%, rgba(0, 0, 0, 1) 100%),
        url('/static/assets/applabs.svg') no-repeat center center;
      background-size: cover;
      background-position: center;
}

.apply-now-playcraft {
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .8) 60%, rgba(0, 0, 0, 1) 100%),
        url('/static/assets/playcraft.svg') no-repeat center center;
      background-size: cover;
      background-position: center;
}

.apply-now-webweave h3, .apply-now-applabs h3, .apply-now-playcraft h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: #FFF;
  margin-bottom: 10px;
}

.apply-now-webweave p, .apply-now-applabs p, .apply-now-playcraft p {
  font-size: 1rem;
  font-weight: 500;
  color: #FFF;
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

.apply-now-webweave .register-now, .apply-now-applabs .register-now, .apply-now-playcraft .register-now {
  text-decoration: none;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 8.8px;
  background: var(--primary-color);
  color: #FFF;
  font-weight: 600;
}

.apply-now-webweave .register-now:hover, .apply-now-applabs .register-now:hover, .apply-now-playcraft .register-now:hover {
  background: #00508C;
}


@media screen and (max-width: 1024px) {
  .background-gradient {
    width: 50vw;
    height: 50vh;
  }

  navbar {
    width: 80%;
    padding: 10px 20px;
  }

  navbar .left-navbar {
    display: none;
  }

  navbar .center-navbar img {
    width: 40px;
    height: 40px;
  }

  navbar .right-navbar a {
    padding: 10px;
    font-size: 0.8rem;
  }

  .main-container {
    padding: 0 10px;
    padding-bottom: 100px;
  }

  h1 {
    font-size: 2.5rem;
  }

  .hero-tagline {
    font-size: 1.2rem;
  }

  .hero-descriptors {
    font-size: 0.6rem;
  }

  .hero-divider {
    width: 5px;
    height: 5px;
    margin: 0 5px;
  }

  .hero-buttons {
    gap: 10px;
    flex-direction: column;
  }

  .hero-buttons a {
    font-size: 0.9rem;
    text-align: center;
  }

  .why-attend {
    padding: 50px 20px;
  }

  .why-attend-cards {
    flex-direction: column;
    gap: 30px;
  }

  .why-attend-card {
    width: 90%;
  }

  .why-attend-card.one,
  .why-attend-card.two,
  .why-attend-card.three {
    height: 300px;
  }

  .why-attend-card h3 {
    font-size: 1.2rem;
  }

  .why-attend-card p {
    font-size: 0.9rem;
  }

  .why-attend-card-popup-card h3 {
    font-size: 1rem;
  }

  .why-attend-card-popup-card p {
    font-size: 0.8rem;
    text-align: center;
  }

  .why-attend h2 {
    font-size: 2rem;
  }

  .why-attend-card-popup-card {
    padding: 10px;
  }

  .event-details {
    padding: 50px;
    flex-direction: column;
    height: max-content;
  }

  .left-event-details {
    width: 100%;
    height: max-content;
    padding: 20px;
  }

  .left-event-details h2 {
    font-size: 2rem;
  }

  .left-event-details p {
    font-size: 0.8rem;
  }

  .right-event-details {
    width: 100%;
    padding: 20px;
  }

  .event-details-card h3 {
    font-size: 1.2rem;
  }

  .event-details-card p {
    font-size: 0.8rem;
  }

  .event-details-card-code {
    font-size: 0.8rem !important;
  }

  .event-details-card-divider {
    width: 100%;
  }
  
  
  
}