@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body,
html {
  width: 100%;
  max-width: 1640px;
  height: 100%;
  margin: auto;
  overflow-x: hidden;
  font-family: "Lato", sans-serif;
  background-color: #262626;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #2c2c2c;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.headerContainer {
  width: 100%;
  height: 100vh;
  position: relative;
}

.headerContainer video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.headerContainer .headerbox {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.671);
  display: flex;
  flex-direction: column;
  gap: 2em;
  align-items: center;
}

.headerContainer .headerbox header {
  width: 90%;
  height: 90px;
  background-color: rgba(14, 13, 15, 0.7);
  margin-top: 0.5em;
  border-radius: 16px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}

.headerContainer .headerbox header .logobox {
  width: 220px;
}

.headerContainer .headerbox header .logobox img {
  width: 100%;
}

.headerContainer .headerbox header ul {
  display: flex;
  align-items: center;
  gap: 1em;
}

.headerContainer .headerbox header ul a {
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  font-weight: 600;
}
.headerContainer .headerbox header ul a:hover {
  color: linear-gradient(90deg, #6c2bd9, #ff3366);
  background: linear-gradient(90deg, #6c2bd9, #ff3366);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.headerContainer .headerbox h1 {
  font-size: 5em;
  color: #fff;
  letter-spacing: 1px;
}

.headerContainer .headerbox h1 span {
  background: linear-gradient(90deg, #6c2bd9, #ff3366);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.headerContainer .headerbox p {
  font-size: 1.6em;
  width: 70%;
  line-height: 34px;
  text-align: center;
  text-transform: capitalize;
  color: #fff;
}

.headerContainer .headerbox div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
}

.headerContainer .headerbox div .btn1 {
  width: 220px;
  height: 56px;
  border: none;
  color: #fff;
  background: transparent;
  border: 2px solid #fff;
  font-size: 1.1rem;
  letter-spacing: 1px;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  cursor: pointer;
}

.headerContainer .headerbox div .btn1:hover {
  background: linear-gradient(45deg, #6c2bd9, #ff3366);
  border-radius: 40px;
}

.event-button {
  border-radius: 40px;
  background: transparent;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: all 0.4s ease;
}

.event-button:hover {
  background: linear-gradient(45deg, #ff3366, #6c2bd9); /* reverse gradient */
  transform: scale(1.05); /* subtle zoom */
  box-shadow: 0 4px 15px rgba(255, 51, 102, 0.5);
}

.headerContainer .headerbox div .btn2 {
  width: 240px;
  height: 56px;
  border: none;
  color: #fff;
  letter-spacing: 1px;
  font-size: 1.1rem;
  cursor: pointer;
  border: 2px solid #fff;
  background: transparent;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
}

.headerContainer .headerbox div .btn2:hover {
  background: linear-gradient(45deg, #6c2bd9, #ff3366);
  border-radius: 40px;
}

.headerContainer .headerbox .updownarrow {
  margin-top: 1em;
  animation: arrow 1.5s infinite;
  -webkit-animation: arrow 1.5s infinite;
}

@keyframes arrow {
  0% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }

  40% {
    transform: translateY(19px);
    -webkit-transform: translateY(19px);
    -moz-transform: translateY(19px);
    -ms-transform: translateY(19px);
    -o-transform: translateY(19px);
  }

  60% {
    transform: translateY(7px);
    -webkit-transform: translateY(7px);
    -moz-transform: translateY(7px);
    -ms-transform: translateY(7px);
    -o-transform: translateY(7px);
  }
}

/* pages2 */
.pages2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 550px;
  padding: 2em 1em;
}

.pages2 .leftbox {
  width: 49%;
  height: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.pages2 .leftbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;

  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

.pages2 .leftbox img:hover {
  transform: scale(1.08);
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
  -webkit-transform: scale(1.08);
  -moz-transform: scale(1.08);
  -ms-transform: scale(1.08);
  -o-transform: scale(1.08);
}

.pages2 .leftbox .featurename {
  position: absolute;
  bottom: 5%;
  left: 5%;
  background-color: #ff3366;
  padding: 0.3em 1em;
  color: #fff;
  border-radius: 20px;
  font-weight: 600;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.pages2 .rightbox {
  width: 49%;
  height: 90%;
  display: flex;
  flex-direction: column;
  padding: 1em 1em;
  gap: 1em;
}

.pages2 .rightbox h3 {
  font-size: 2em;
  color: #fff;
  font-weight: 800;
  letter-spacing: 2px;
}

.pages2 .rightbox h3 span {
  background: linear-gradient(90deg, #6c2bd9, #ff3366);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.pages2 .rightbox .datebox {
  display: flex;
  align-items: center;
  gap: 1em;
}

.pages2 .rightbox .datebox p {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  font-size: 0.9em;
  gap: 0.3em;
  letter-spacing: 1px;
}

.pages2 .rightbox > p {
  color: #fff;
  line-height: 24px;
  width: 90%;
  letter-spacing: 1px;
  word-spacing: 1px;
  font-size: 0.9em;
}

.pages2 .rightbox h4 {
  font-size: 1.3em;
  margin-top: 1em;
  color: #fff;
}

.pages2 .rightbox .contentlist {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1em;
  flex-wrap: wrap;
  align-content: flex-start;
}

.pages2 .rightbox .contentlist span {
  color: #fff;
  background-color: #121212;
  border: 1px solid #2d1a4e;
  padding: 0.6em 1em;
  font-size: 0.9em;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.pages2 .rightbox .viewdetailsbox {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-top: 1em;
}

.pages2 .rightbox .viewdetailsbox a:nth-child(1) {
  padding: 1em 2.2em;
  font-weight: 700;
  border: none;
  color: #fff;
  text-decoration: none;
  transition: all 0.4s ease;
  font-size: 0.9rem;
  letter-spacing: 1px;
  background: linear-gradient(45deg, #6c2bd9, #ff3366);
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

.pages2 .rightbox .viewdetailsbox a:nth-child(1):hover {
  background: linear-gradient(360deg, #6c2bd9, #ff3366);
}

.pages2 .rightbox .viewdetailsbox a:nth-child(2) {
  padding: 1em 2.2em;
  font-weight: 700;
  text-decoration: none;
  border: none;
  color: #fff;
  letter-spacing: 1px;
  font-size: 0.9rem;
  cursor: pointer;
  border: 1px solid #fff;
  background: transparent;
  transition: all 0.4s ease;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

.pages2 .rightbox .viewdetailsbox a:nth-child(2):hover {
  background-color: #121212;
}

.eventHeadingbox {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1em 1em;
  padding-top: 4em;
}

.eventHeadingbox h2 {
  color: #fff;
  font-size: 3em;
  font-weight: 800;
  letter-spacing: 1px;
}

.eventHeadingbox h2 span {
  background: linear-gradient(180deg, #6c2bd9, #ff3366);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.eventHeadingbox p {
  width: 50%;
  text-align: center;
  color: #9299a4;
  line-height: 24px;
  margin-top: 0.4em;
}

/* pages3 */
.pages3 {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1em;
  padding: 2em;
}

.gradient-button {
  position: absolute;
  padding: 12px 30px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: transparent;
  border: 2px solid white;
  border-radius: 50px;
  transition: all 0.4s ease;
  z-index: 10;
}

.gradient-button:hover {
  background: linear-gradient(90deg, #ff3366, #6c2bd9);
  border-color: transparent;
  color: white;
  box-shadow: 0 0 15px rgba(255, 51, 102, 0.5);
}

.pages3 .cardlistbox {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2em;
  align-content: flex-start;
}

.pages3 .cardlistbox .small-cards {
  width: 29%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.pages3 .cardlistbox .small-cards .box1:nth-child(1) {
  position: relative;
  width: 100%;
  height: 240px;
  border: 1px solid #ffffff1d;
}

.pages3 .cardlistbox .small-cards .box1 .contentbox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  border-radius: 10px;
  flex-direction: column;
  z-index: 10;
  padding: 1em;
  justify-content: space-between;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: all 0.4s ease;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
}

.pages3 .cardlistbox .small-cards .box1 img {
  width: 100%;
  height: 100%;
  position: relative;
  object-fit: cover;
  transition: all 0.4s ease;

  z-index: 9;
}
.pages3 .cardlistbox .small-cards .box1 video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* why its not working */
.pages3 .cardlistbox .small-cards .box1:hover img {
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
}

.pages3 .cardlistbox .small-cards .box1 .div1 {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.pages3 .cardlistbox .small-cards .box1 .div1 span {
  background-color: #000000e0;
  color: #fff;
  font-size: 0.7em;
  padding: 0.4em 1em;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.pages3 .cardlistbox .small-cards .box1 .div2 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pages3 .cardlistbox .small-cards .box1 .div2 a {
  text-decoration: none;
  background-color: #fff;
  display: none;
  padding: 0.6em 1.6em;
  border-radius: 20px;
  transition: all 0.2s ease;
  color: #6c2bd9;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}

.pages3 .cardlistbox .small-cards .box1 .div2 a:hover {
  transition: all 0.2s ease;
  text-decoration: underline;
}
.pages3 .cardlistbox .small-cards .box1:hover .div2 a {
  display: flex;
}

.pages3 .cardlistbox .small-cards .box1 .div3 {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.pages3 .cardlistbox .small-cards .box1 .div3 p {
  background-color: #6c2bd9;
  color: #fff;
  font-size: 0.7em;
  padding: 0.4em 1em;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.pages3 .cardlistbox .small-cards .box2 {
  width: 100%;
  padding: 1.5em 1em;
  display: flex;
  flex-direction: column;
  height: 240px;
  gap: 1em;
  background-color: #090909;
}

.pages3 .cardlistbox .small-cards .box2 h5 {
  font-size: 1.2em;
  color: #fff;
}

.pages3 .cardlistbox .small-cards .box2 > span {
  font-size: 0.9em;
  color: #878d97;
  display: flex;
  align-items: center;
  gap: 0.3em;
  word-spacing: 1px;
}

.pages3 .cardlistbox .small-cards .box2 p {
  color: #c5c9cf;
  font-size: 0.9rem;
  line-height: 20px;
}

.pages3 .cardlistbox .small-cards .box2 div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pages3 .cardlistbox .small-cards .box2 div span {
  color: #fff;
  font-weight: 800;
}

.pages3 .cardlistbox .small-cards .box2 div a {
  padding: 0.6em 1.2em;
  font-size: 0.8em;
  text-decoration: none;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(45deg, #6c2bd9, #ff3366);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.pages3 .cardlistbox .small-cards .box2 div button {
  padding: 0.8em 1.4em;
  font-size: 0.8em;
  border: 1px solid white;
  background-color: transparent;
  color: #fff;
  cursor: pointer;
  transition: all 0.4s ease;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

.pages3 .cardlistbox .small-cards .box2 div button:hover {
  background-color: #292929;
}

.pages3 > a {
  font-size: 1em;
  letter-spacing: 1px;
  text-decoration: none;
  color: #6c2bd9;
  border: 1px solid #6c2bd9;
  margin-top: 1em;
  margin-bottom: 2em;
  padding: 0.7em 1.6em;
  transition: all 0.4s ease;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

.pages3 > a:hover {
  background-color: #0b0416;
}

/* FOR PAST EVENT HAPPENED */

.small-cards.past-event {
  background-color: #e0e0e0;
  opacity: 0.5;
  position: relative;
  pointer-events: none;
}

.expired-badge {
  display: none;
  position: absolute;
  top: 10px;
  right: 10px;
  background: #c0392b;
  color: white;
  padding: 15px 25px;
  font-size: 15px;
  border-radius: 4px;
  z-index: 10;
  opacity: 1;
}

.small-cards.past-event .expired-badge {
  display: inline-block;
}


/* page3-upcoming responsive */


/* pages4 */
/* .span {
    background: linear-gradient(180deg, #6C2BD9, #FF3366);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
} */

.pages4 {
  width: 100%;
  padding: 2em 4em;
  margin-bottom: 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pages4 .aboutleftbox {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1em;
  height: auto;
}

.pages4 .aboutleftbox h2 {
  font-size: 3em;
  color: #fff;
  width: 70%;
  font-weight: 800;
}

.pages4 .aboutleftbox > p {
  color: #d1d5db;
  line-height: 24px;
  width: 90%;
  text-align: justify;
}

.pages4 .aboutleftbox .aboutsm-box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pages4 .aboutleftbox .aboutsm-box div {
  background-color: #0e0e0e;
  width: 47%;
  padding: 1em;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 0.7em;
  justify-content: center;
  height: 180px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.pages4 .aboutleftbox .aboutsm-box div h5 {
  color: #fff;
  font-size: 1.2em;
  font-weight: 700;
}

.pages4 .aboutleftbox .aboutsm-box div p {
  color: #9298a3;
}

.pages4 .aboutrightbox {
  width: 46%;
  height: 100%;
}

.pages4 .aboutleftbox > a {
  background: linear-gradient(180deg, #6c2bd9, #ff3366);
  width: 120px;
  height: 40px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.pages4 .aboutrightbox {
  width: 46%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  align-content: flex-start;
  align-items: center;
  justify-content: space-between;
}

.pages4 .aboutrightbox .box11 {
  width: 48%;
  height: 240px;
  background-color: #0e0e0e;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  overflow: hidden;
}

.pages4 .aboutrightbox .box11 img {
  width: 100%;
  height: 100%;
  cursor: pointer;
  object-fit: cover;
  transition: all 0.4s ease;

  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

.pages4 .aboutrightbox .box11 img:hover {
  transform: scale(1.07);
  filter: grayscale(0);
  -webkit-filter: grayscale(0);
  -webkit-transform: scale(1.07);
  -moz-transform: scale(1.07);
  -ms-transform: scale(1.07);
  -o-transform: scale(1.07);
}


/* responsive about-us */
/* Existing styles remain unchanged... */

/* RESPONSIVE STYLES */
@media (max-width: 1024px) {
  .eventHeadingbox p {
    width: 80%;
  }

  .pages4 {
    flex-direction: column;
    padding: 2em;
    gap: 2em;
  }

  .pages4 .aboutleftbox,
  .pages4 .aboutrightbox {
    width: 100%;
  }

  .pages4 .aboutleftbox h2 {
    font-size: 2.4em;
    width: 100%;
  }

  .pages4 .aboutleftbox > p {
    width: 100%;
  }

  .pages4 .aboutrightbox .box11 {
    width: 48%;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .eventHeadingbox h2 {
    font-size: 2.4em;
  }

  .eventHeadingbox p {
    width: 90%;
    font-size: 0.95em;
  }

  .pages4 {
    padding: 1.5em 1em;
  }

  .pages4 .aboutleftbox h2 {
    font-size: 2em;
  }

  .pages4 .aboutleftbox .aboutsm-box {
    flex-direction: column;
    gap: 1em;
  }

  .pages4 .aboutleftbox .aboutsm-box div {
    width: 100%;
    height: auto;
  }

  .pages4 .aboutrightbox {
    gap: 1em;
    justify-content: center;
  }

  .pages4 .aboutrightbox .box11 {
    width: 100%;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .eventHeadingbox h2 {
    font-size: 2em;
  }

  .pages4 .aboutleftbox h2 {
    font-size: 1.8em;
  }

  .pages4 .aboutleftbox .aboutsm-box div h5 {
    font-size: 1.1em;
  }

  .pages4 .aboutleftbox .aboutsm-box div p {
    font-size: 0.9em;
  }

  .pages4 .aboutrightbox .box11 {
    height: 180px;
  }
}


/*  reviewcontainer*/

.pages6 {
  padding: 1em 1em;
  padding-bottom: 2em;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.pages6 > a {
  font-size: 1em;
  letter-spacing: 1px;
  text-decoration: none;
  color: #6c2bd9;
  border: 1px solid #6c2bd9;
  margin-top: 1em;
  margin-bottom: 2em;
  padding: 0.7em 1.6em;
  transition: all 0.4s ease;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.pages6 > a:hover {
  background-color: #0b0416;
}

.reviewcontainer {
  width: 100%;
  height: auto;
  padding: 2em 3em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  flex-wrap: wrap;
}

.reviewcontainer .reviewbox {
  width: 30%;
  height: 100%;
  padding: 2em;
  display: flex;
  flex-direction: column;
  gap: 1em;
  background-color: #121212;
  border: 1px solid #6b2bd942;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.reviewcontainer .reviewbox .rw-name {
  display: flex;
  align-items: center;
  gap: 1em;
}

.reviewcontainer .reviewbox .rw-name div {
  display: flex;
  flex-direction: column;
}

.reviewcontainer .reviewbox .rw-name .f-name {
  background: linear-gradient(180deg, #6c2bd9, #ff3366);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.reviewcontainer .reviewbox .rw-name .f-name span {
  color: #fff;
}

.reviewcontainer .reviewbox .rw-name div h4 {
  font-size: 1em;
  letter-spacing: 1px;
  font-weight: 600;
  color: #fff;
}

.reviewcontainer .reviewbox .rw-name div span {
  font-size: 1em;
  font-weight: 500;
  color: #979da9;
}

.reviewcontainer .reviewbox > p {
  color: #fff;
  line-height: 24px;
}

.eventgallarybox {
  width: 100%;
  padding: 3em 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 1em;
}

.eventgallarybox .boxx {
  width: 260px;
  height: 260px;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #fff;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.eventgallarybox .boxx img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;

  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

.eventgallarybox .boxx img:hover {
  transform: scale(1.08);
  -webkit-transform: scale(1.08);
  -moz-transform: scale(1.08);
  -ms-transform: scale(1.08);
  -o-transform: scale(1.08);
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
}
footer {
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.03); /* subtle background for visibility */
  color: white;
  padding: 40px 24px;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.05); /* slight depth */
}

footer div h4 {
  font-size: 1em;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}

footer ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.2em;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

footer ul li {
  list-style: none;
  width: 100%;
}

footer ul li a {
  color: #fff;
  text-transform: capitalize;
  text-decoration: none;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1), 0 4px 6px rgba(0, 0, 0, 0.2);
  transform-style: preserve-3d;
  transition: all 0.3s ease;
  display: block;
  text-align: center;
  font-size: 0.95em;
  font-weight: 500;
}

footer ul li a:hover {
  transform: translateY(-4px) scale(1.05);
  background: linear-gradient(45deg, #ff3366, #6c2bd9);
  box-shadow: 0 10px 25px rgba(108, 43, 217, 0.4),
              0 0 15px rgba(255, 51, 102, 0.4),
              0 0 30px rgba(108, 43, 217, 0.2);
  border-color: transparent;
}

/* Media query still needed for bigger screens */
@media (min-width: 768px) {
  footer ul {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Copyright Section Enhancement */
.copyright {
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  padding: 1em 0;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(4px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.copyright p {
  color: #ccc;
  font-size: 0.85em;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* form */
.formbox {
  width: 100%;
  height: auto;
  padding: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* show full images */

.showfullimages {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000000f7;
  position: fixed;
  scale: 0;
  z-index: 999;
  top: 0;
  left: 0;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.showfullimages .closebox {
  position: absolute;
  position: absolute;
  top: 9%;
  right: 10%;
  background-color: #fff;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.showfullimages div {
  width: 70%;
  height: 80%;
  background-color: #fff;
}
.showfullimages div #showfullimages {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.opennav {
  display: none;
}
/* mobileheader */
.mobileheader {
  width: 100%;
  height: 100vh;
  background: rgb(241, 241, 241);

  /* opacity: 1; */
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  justify-content: center;
  align-items: center;
}

/* Navigation List */
.mobileheader ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2em;
  overflow: hidden;
}

/* Navigation Links */
.mobileheader ul a {
  white-space: nowrap;
  text-decoration: none;
  opacity: 1;
  color: linear-gradient(180deg, #6c2bd9, #ff3366);
  font-size: 2.2em;
  transition: all 0.4s ease;
  display: inline-block;
  background: none;
}

/* Gradient Hover Effect for Links */
.mobileheader ul a:hover {
  background: #ff3366;
  color: #fff;
  padding: 0.2em 0.5em;
  border-radius: 4px;
  transition: all 0.4s ease;
  text-shadow: 1px 1px 2px rgba(208, 25, 25, 0.1);
}

/* Close Button Positioning */
.mobileheader .closenav {
  position: absolute;
  right: 5%;
  top: 5%;
}

/* Close Icon Style */
.mobileheader .closenav svg {
  fill: #000000a9 !important;
}

/* contact form */
.contact-info {
  width: 100%;
  height: auto;
}
.map-div{
  padding:  0px 40px 40px 40px;
}

  .form-contai {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            /* border: 1px solid red; */
        }

        .con-form-container {
            display: flex;
            gap: 80px;
            max-width: 1200px;
            width: 100%;
            align-items: flex-start;
            /* border: 1px solid blue; */
            align-items: center;
            justify-content: center;
        }

        .con-form-section {
            flex: 1;
            max-width: 760px;
        }

        .con-form-contact-info {
            flex: 0 0 300px;
            color: #fff;
        }

        .con-form-group {
            margin-bottom: 20px;
        }

        .con-form-row {
            display: flex;
            gap: 20px;
        }

        .con-form-row .con-form-group {
            flex: 1;
        }

        input, textarea {
            width: 100%;
            padding: 16px 20px;
            background: transparent;
            border: 2px solid #444;
            border-radius: 8px;
            color: #fff;
            font-size: 16px;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        input::placeholder, textarea::placeholder {
            color: #888;
        }

        input:focus, textarea:focus {
            outline: none;
            border-color: #007bff;
            box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
        }

        textarea {
            min-height: 150px;
            resize: vertical;
        }

        .con-form-send-btn {
            background: white;
            color:  #007bff;
            border: none;
            padding: 16px 32px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .con-form-send-btn:hover {
            background: #0056b3;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
        }

        .con-form-contact-info h2 {
            font-size: 24px;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .con-form-contact-info p {
            color: #ccc;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .con-form-contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
            gap: 15px;
        }

        .con-form-contact-icon {
            width: 20px;
            height: 20px;
            /* background: #007bff; */
            border-radius: 3px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .con-form-contact-details h3 {
            font-size: 18px;
            margin-bottom: 5px;
            font-weight: 600;
            color: white;
        }

        .con-form-contact-details p {
            color: #ccc;
            margin: 0;
            line-height: 1.5;
        }

        @media (max-width: 768px) {
            .con-form-container {
                flex-direction: column;
                gap: 40px;
            }

            .con-form-row {
                flex-direction: column;
                gap: 20px;
            }

            .con-form-contact-info {
                flex: none;
                order: -1;
            }
        }
    footer,
    .copyright {
      opacity: 0;
      animation: fadeInFooter 1.5s ease-in-out forwards;
    }

    @keyframes fadeInFooter {
      to {
        opacity: 1;
      }
    }


    /* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  display: block;
  margin: auto;
  max-width: 80%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 0 20px #fff;
}

.close {
  position: absolute;
  top: 25px;
  right: 40px;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
}
   

/*///////////////////////////// A  B  O  U  T       U  S       P  A  G  E //////////////////////////////////*/

 .abt-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .abt-section {
            padding: 80px 0;
            border-bottom: 1px solid #333;
            font-family: 'Arial', sans-serif;
            background: #0a0a0a;
            color: #ffffff;
            line-height: 1.6;
        }

        .abt-section:last-child {
            border-bottom: none;
        }

        .abt-section-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
            background: white;
            color: white;
            /* background: linear-gradient(180deg, #6c2bd9, #ff3366); */
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .abt-section-title-span{
          background: linear-gradient(180deg, #6c2bd9, #ff3366);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .abt-section-subtitle {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: #ffffff;
        }

        .abt-section-text {
            font-size: 1.1rem;
            color: #cccccc;
            margin-bottom: 2rem;
            max-width: 800px;
        }

        .abt-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .abt-card {
            background: #1a1a1a;
            border-radius: 12px;
            padding: 2rem;
            border: 1px solid #333;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .abt-card:hover {
            transform: translateY(-5px);
            border-color: #ff3366;
            box-shadow: 0 10px 30px rgba(255, 51, 102, 0.2);
        }

        .abt-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(180deg, #6c2bd9, #ff3366);
        }

        .abt-card-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            /* background: linear-gradient(180deg, #6c2bd9, #ff3366); */
            /* -webkit-background-clip: text; */
            /* -webkit-text-fill-color: transparent; */
            /* background-clip: text; */
        }

        .abt-card-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .abt-card-text {
            color: #cccccc;
            font-size: 1rem;
        }

        .abt-stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .abt-stat-card {
            text-align: center;
            padding: 2rem;
            background: #1a1a1a;
            border-radius: 12px;
            border: 1px solid #333;
        }

        .abt-stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: white;
            background: linear-gradient(180deg, #6c2bd9, #ff3366);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .abt-stat-label {
            color: #cccccc;
            font-size: 1.1rem;
            font-weight: 500;
        }

        .abt-team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .abt-team-card {
            background: #1a1a1a;
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
            border: 1px solid #333;
            transition: all 0.3s ease;
        }

        .abt-team-card:hover {
            transform: translateY(-5px);
            border-color: #ff3366;
        }

        .abt-team-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(180deg, #6c2bd9, #ff3366);
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 600;
            color: white;
        }

        .abt-team-name {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #ffffff;
        }

        .abt-team-role {
            color: #cccccc;
            font-size: 1rem;
            margin-bottom: 1rem;
        }

        .abt-timeline {
            position: relative;
            margin-top: 3rem;
        }

        .abt-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background: linear-gradient(180deg, #6c2bd9, #ff3366);
        }

        .abt-timeline-item {
            display: flex;
            align-items: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .abt-timeline-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .abt-timeline-content {
            width: 45%;
            padding: 2rem;
            background: #1a1a1a;
            border-radius: 12px;
            border: 1px solid #333;
        }

        .abt-timeline-date {
            font-size: 1.2rem;
            font-weight: 600;
            color: #ff3366;
            margin-bottom: 1rem;
        }

        .abt-timeline-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #ffffff;
        }

        .abt-timeline-text {
            color: #cccccc;
        }

        .abt-timeline-dot {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 16px;
            height: 16px;
            background: linear-gradient(180deg, #6c2bd9, #ff3366);
            border-radius: 50%;
            border: 4px solid #0a0a0a;
        }

        @media (max-width: 768px) {
            .abt-section-title {
                font-size: 2.5rem;
            }
            
            .abt-timeline::before {
                left: 20px;
            }
            
            .abt-timeline-item {
                flex-direction: column;
                align-items: flex-start;
                margin-left: 40px;
            }
            
            .abt-timeline-content {
                width: 100%;
            }
            
            .abt-timeline-dot {
                left: 20px;
            }
        }

        /* for upcoming filter buttons */

  .filter-controls {
    text-align: right;
    margin: 10px 0;
  }

  .filter-btn {
    padding: 6px 12px;
    margin-left: 5px;
    border: none;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    border-radius: 4px;
  }

  .filter-btn:hover {
    background-color: #0056b3;
  }

  .past-event {
    opacity: 0.5;
    position: relative;
  }

  .past-event .expired-badge {
    display: inline-block;
  }

  /* .expired-badge {
    display: none;
    background-color: red;
    color: white;
    font-size: 12px;
    padding: 3px 6px;
    border-radius: 4px;
    position: absolute;
    top: 10px;
    right: 10px;
  } */
