/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* Full Page Background */
body {
  background: linear-gradient(-45deg, #0d1b2a, #1b263b, #415a77, #778da9);
  background-size: 400% 400%;
  animation: animateBackground 5s infinite ease-in-out;
  color: white;
  overflow-x: hidden;
  position: relative;
}

/* Background Animation */
@keyframes animateBackground {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Animated Floating Blobs */
.blob {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(173, 216, 230, 0.2);
  filter: blur(80px);
  border-radius: 50%;
  animation: floatBlob 2s infinite alternate ease-in-out;
}

@keyframes floatBlob {
  0% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-30px) translateX(20px); }
  100% { transform: translateY(0) translateX(0); }
}

.blob:nth-child(1) { top: 10%; left: 10%; width: 200px; height: 200px; animation-duration: 12s; }
.blob:nth-child(2) { top: 50%; right: 15%; animation-duration: 10s; }
.blob:nth-child(3) { bottom: 10%; left: 50%; animation-duration: 14s; }

/* Header */
header {
  background-color: #bed1df;
  padding: 20px;
  display: flex;
 justify-content: space-around;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 2;
  border-radius: 0 0 30px 30px;
}

.logo-container {
  display: flex;
  justify-content:space-between;
  gap:400px;

  
}
@media (max-width: 768px) {
  .logo-container {
      display: flex;
      justify-content:space-between;  
      gap:2px;      
  }
}

.logo {
  height: 100px;
  width: auto;
}
.logo1 {
  height: 200px;
  width: auto;
}

/* Footer */
footer {
  background-color: #0f1a2b;
  color: #ffffff;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  margin-top: 30px;
  border-radius: 30px 30px 0 0;
}

.main > .inp {
  display: none;
}
.main {
  font-weight: 800;
  color: white;
  background-color: black;
  padding: 3px 15px;
  border-radius: 10px;

  display: flex;
  align-items: center;
  height: 2.5rem;
  width: 9rem;
  position: relative;
  cursor: pointer;
  justify-content: space-between;
}

.arrow {
  height: 34%;
  aspect-ratio: 1;
  margin-block: auto;
  position: relative;
  display: flex;
  justify-content: center;
  transition: all 0.3s;
}

.arrow::after,
.arrow::before {
  content: "";
  position: absolute;
  background-color: white;
  height: 100%;
  width: 2.5px;
  border-radius: 500px;
  transform-origin: bottom;
}

.arrow::after {
  transform: rotate(35deg) translateX(-0.5px);
}
.arrow::before {
  transform: rotate(-35deg) translateX(0.5px);
}

.main > .inp:checked + .arrow {
  transform: rotateX(180deg);
}

.menu-container {
  background-color: white;
  color:#00a8ff;
  border-radius: 10px;
  position: absolute;
  width: 100%;
  left: 0;
  top: 130%;
  overflow: hidden;
  clip-path: inset(0% 0% 0% 0% round 10px);
  transition: all 0.4s;
}

.a{
  padding:10px;
  margin-bottom: 15px;
}

.menu-list {
  --delay: 0.4s;
  --trdelay: 0.15s;
  padding: 8px 10px;
  border-radius: inherit;
  transition: background-color 0.2s 0s;
  position: relative;
  transform: translateY(30px);
  opacity: 0;
}

.menu-list::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  background-color: rgba(0, 0, 0, 0.3);
  width: 95%;
}

.menu-list:hover {
  background-color: rgb(223, 223, 223);
}

.inp:checked ~ .menu-container {
  clip-path: inset(10% 50% 90% 50% round 10px);
}

.inp:not(:checked) ~ .menu-container .menu-list {
  transform: translateY(0);
  opacity: 1;
}

.inp:not(:checked) ~ .menu-container .menu-list:nth-child(1) {
  transition:
    transform 0.4s var(--delay),
    opacity 0.4s var(--delay);
}

.inp:not(:checked) ~ .menu-container .menu-list:nth-child(2) {
  transition:
    transform 0.4s calc(var(--delay) + (var(--trdelay) * 1)),
    opacity 0.4s calc(var(--delay) + (var(--trdelay) * 1));
}

.inp:not(:checked) ~ .menu-container .menu-list:nth-child(3) {
  transition:
    transform 0.4s calc(var(--delay) + (var(--trdelay) * 2)),
    opacity 0.4s calc(var(--delay) + (var(--trdelay) * 2));
}

.inp:not(:checked) ~ .menu-container .menu-list:nth-child(4) {
  transition:
    transform 0.4s calc(var(--delay) + (var(--trdelay) * 3)),
    opacity 0.4s calc(var(--delay) + (var(--trdelay) * 3));
}

.bar-inp {
  -webkit-appearance: none;
  display: none;
  visibility: hidden;
}

.bar {
  display: flex;
  height: 50%;
  width: 20px;
  flex-direction: column;
  gap: 3px;
}

.bar-list {
  --transform: -25%;
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 50px;
  background-color: white;
  transition: all 0.4s;
  position: relative;
}

.inp:not(:checked) ~ .bar > .top {
  transform-origin: top right;
  transform: translateY(var(--transform)) rotate(-45deg);
}

.inp:not(:checked) ~ .bar > .middle {
  transform: translateX(-50%);
  opacity: 0;
}

.inp:not(:checked) ~ .bar > .bottom {
  transform-origin: bottom right;
  transform: translateY(calc(var(--transform) * -1)) rotate(45deg);
}


.menu-list {
  color: rgb(0, 0, 0);
  text-decoration: none;
  padding: 10px;
  display: block;
  transition: background 0.3s ease-in-out;
}

.menu-list:hover {
  background: #444;
}




.heading{
  text-align: center;
  color:black;
  text-shadow: white;
  text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #00bfff, 
  0 0 20px #00bfff, 0 0 25px #00bfff, 0 0 30px #00bfff, 0 0 35px #00bfff;
  margin-top:20px;
}


.event
{
  max-width: 900px;
  margin: 30px auto;
  padding: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.15);
  text-align: center;
}
.eventh{
  text-align: center;
  color:#00a8ff;
  
}

.eventp{
  text-align: justify;
  margin-top:10px;
}

.eventpics{
  margin-top: 5px;
  gap:5px;
  display: flex;
  justify-content: center;
}
.eventpic{
  height:250px;
}


@media (max-width: 768px) {
  .logo {
      height: 60px;
  }
  .eventpic{
      height: 130px;
  }
}