/*

TemplateMo 583 Festava Live

https://templatemo.com/tm-583-festava-live

*/

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color: #ffffff;
  --primary-color: #f8cb2e;
  --secondary-color: #ee5007;
  --section-bg-color: #f0f8ff;
  --custom-btn-bg-color: #ee5007;
  --custom-btn-bg-hover-color: #c01f27;
  --dark-color: #000000;
  --p-color: #717275;
  --border-color: #7fffd4;
  --link-hover-color: #b22727;

  --body-font-family: "Outfit", sans-serif;

  --h1-font-size: 74px;
  --h2-font-size: 46px;
  --h3-font-size: 32px;
  --h4-font-size: 28px;
  --h5-font-size: 24px;
  --h6-font-size: 22px;
  --p-font-size: 18px;
  --btn-font-size: 14px;
  --copyright-font-size: 16px;

  --border-radius-large: 100px;
  --border-radius-medium: 20px;
  --border-radius-small: 10px;

  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-bold: 700;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family);
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}

h1 {
  font-size: var(--h1-font-size);
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.link-fx-1 {
  color: var(--white-color);
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 6px;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.link-fx-1:hover {
  color: var(--link-hover-color);
}

.link-fx-1:hover::before {
  transform: translateX(17px) scaleX(0);
  transition: transform 0.2s;
}

.link-fx-1:hover .icon circle {
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 0.2s 0.1s;
}

.link-fx-1:hover .icon line {
  transform: rotate(-180deg);
}

.link-fx-1:hover .icon line:last-child {
  transform: rotate(180deg);
}

.link-fx-1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform-origin: right center;
  transition: transform 0.2s 0.1s;
}

.link-fx-1 .icon {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateX(100%) rotate(90deg);
  font-size: 32px;
}

.icon {
  --size: 1em;
  height: var(--size);
  width: var(--size);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

.link-fx-1 .icon circle {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 0.2s;
}

.link-fx-1 .icon line {
  transition: transform 0.4s;
  transform-origin: 13px 15px;
}

.link-fx-1 .icon line:last-child {
  transform-origin: 19px 15px;
}

/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background-color: var(--dark-color);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.section-overlay + .container {
  position: relative;
}

.tab-content {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 45px;
}

.nav-tabs {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-large);
  border-bottom: 0;
  padding: 15px;
}

.nav-tabs .nav-link {
  border-radius: var(--border-radius-large);
  border: 0;
  padding: 15px 25px;
  transition: all 0.3s;
}

.nav-tabs .nav-link:first-child {
  margin-right: 15px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  color: var(--primary-color);
}

.nav-tabs h5 {
  color: var(--p-color);
  margin-bottom: 0;
}

.nav-tabs .nav-link.active h5,
.nav-tabs .nav-link:focus h5,
.nav-tabs .nav-link:hover h5 {
  color: var(--primary-color);
}

/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}

/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.custom-border-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}

/*---------------------------------------
  VIDEO              
-----------------------------------------*/
.video-wrap {
  z-index: -100;
}

.custom-video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.slideshow-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -100; /* Keeps it in the background */
  overflow: hidden;
}

.custom-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1s ease-in-out;
}

/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background-color: var(--primary-color);
  padding-top: 25px;
  padding-bottom: 12px;
}

/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin-top: 0px;
}

.sticky-wrapper.is-sticky .navbar {
  background-color: var(--dark-color);
}

.navbar {
  background: transparent;
  z-index: 9;
}

.navbar-brand,
.navbar-brand:hover {
  color: var(--white-color);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 10px;
  padding: 10px 20px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--secondary-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease,
    -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease,
    -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: "";
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  height: calc(100vh - 51px);
}

.hero-section small {
  color: var(--white-color);
  text-transform: uppercase;
}

.hero-section .section-overlay {
  z-index: 2;
  opacity: 0.45;
}

.hero-section .container {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-bottom: 50px;
}

.hero-section .container .row {
  height: 100%;
}

/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about-section {
  /* background-image: url('../images/edward-unsplash-blur.jpg'); */
  background-color: #000000;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.about-image {
  border-radius: var(--border-radius-medium);
  display: block;
}

.about-text-wrap {
  position: relative;
}

.about-text-icon {
  background: var(--primary-color);
  border-radius: 100%;
  font-size: var(--h3-font-size);
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
}

.about-text-info {
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: var(--border-radius-medium);
  border: 1px solid rgba(209, 213, 219, 0.3);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 20px;
  padding: 35px;
}

/*---------------------------------------
  ARTISTS              
-----------------------------------------*/
.artists-thumb {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.artists-image {
  border-radius: var(--border-radius-medium);
  display: block;
  width: 100%;
}

.artists-hover {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9),
    rgba(18, 40, 81, 0.9)
  );
  border-radius: var(--border-radius-medium);
  padding: 40px 20px;
  transition: all 0.8s ease-in-out;
  transform: translateY(100%);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  opacity: 0;
  box-shadow: 0px -10px 20px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.artists-thumb:hover .artists-hover {
  transform: translateY(0);
  opacity: 1;
}

.artists-hover p {
  margin: 0;
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: 18px;
  background: none; /* Ensure text has no background */
  z-index: 2; /* Bring text above the gradient */
  position: relative; /* Ensure it stays above */
}

.artists-section {
  position: relative;
  background: linear-gradient(45deg, #050505, #000000, #10242f, #01030b);
  background-size: 400% 400%;
  animation: gradientAnimation 10s ease infinite;
  overflow: hidden;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 50% 25%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/*---------------------------------------
  SCHEDULE              
-----------------------------------------*/
.schedule-section {
  background-image: url("../images/nainoa-shizuru-unsplash-blur.jpg");
  background-color: #242424;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.table-responsive {
  filter: drop-shadow(2px 2px 4px #606060);
}

.schedule-table {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.schedule-table .bg-warning {
  background: #f0a5a5 !important;
}

.schedule-table thead th {
  background-color: var(--secondary-color);
}

.schedule-table th,
.schedule-table tr,
.schedule-table td {
  border-bottom-color: #363a3e;
  padding: 30px;
}

.schedule-table tr:last-child th,
.schedule-table tr:last-child td {
  border-bottom-color: transparent;
}

.schedule-table thead th {
  border-right: 1px solid #c7460a;
  border-bottom-color: transparent;
}

.schedule-table th + td {
  border-bottom: 0;
}

.schedule-table thead th:last-child {
  border-right-color: transparent;
}

.schedule-table .pop-background-image {
  background-image: url("../images/artists/joecalih-UmTZqmMvQcw-unsplash.jpg");
}

.schedule-table .rock-background-image {
  background-image: url("../images/artists/abstral-official-bdlMO9z5yco-unsplash.jpg");
}

.schedule-table .country-background-image {
  background-image: url("../images/artists/soundtrap-rAT6FJ6wltE-unsplash.jpg");
}

.table-background-image-wrap {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: none;
  position: relative;
}

.schedule-table h3,
.schedule-table p {
  color: var(--white-color);
  position: relative;
  z-index: 2;
}

/*---------------------------------------
  PRICING              
-----------------------------------------*/
.pricing-thumb {
  border: 5px dotted var(--dark-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  padding: 50px;
}

.pricing-thumb h3 small {
  display: inline-block;
  font-size: var(--p-font-size);
  margin-right: 15px;
}

.pricing-list {
  column-count: 2;
  padding-left: 20px;
}

.pricing-list-item {
  line-height: normal;
  margin-right: 10px;
  margin-bottom: 10px;
}

.pricing-tag {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  position: absolute;
  top: 0;
  right: 0;
  margin: 20px;
}

.pricing-tag span {
  font-size: 180%;
  line-height: normal;
}

.pricing-thumb .link-fx-1 {
  color: var(--primary-color);
}

.pricing-thumb .link-fx-1:hover {
  color: var(--link-hover-color);
}

@keyframes bgAnimation {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 70%;
  }
}

.ticket-section {
  background: linear-gradient(-45deg, #000000, #000000, #0d1d7b, #000000);
  background-size: 300% 300%;
  animation: bgAnimation 10s infinite alternate ease-in-out;
  background-repeat: no-repeat;
  background-position: center;
}

/* events */
.hex-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  position: relative;
  width: fit-content;
}

.hexagon-wrapper {
  width: 200px;
  height: 200px;
  position: relative;
  perspective: 1000px;
}

.hexagon {
  width: 120%;
  height: 120%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s ease-in-out, box-shadow 0.3s;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: glow 2s infinite alternate;
}

.hex-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform-style: preserve-3d;
  transition: transform 0.6s ease-in-out;
}

.hex-front,
.hex-back {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  backface-visibility: hidden;
  clip-path: inherit;
}

.hex-back a {
  font-family: "Rajdhani", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hex-back a:hover {
  color: #000;
  background: rgba(255, 140, 0, 0.9);
}

.hex-front {
  background-size: cover;
  background-position: center;
  animation: glitch 1s ease-in-out forwards;
}

/* Glitch effect on load */
@keyframes glitch {
  0% {
    transform: translate(0, 0);
    opacity: 0.8;
  }
  20% {
    transform: translate(-2px, 2px);
    opacity: 0.6;
  }
  40% {
    transform: translate(2px, -2px);
    opacity: 0.8;
  }
  60% {
    transform: translate(-2px, 2px);
    opacity: 0.6;
  }
  80% {
    transform: translate(2px, -2px);
    opacity: 0.9;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

/* Back: Displays event name */
.hex-back {
  background: rgba(255, 165, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotateY(180deg);
}
/* Flip on hover */
.hexagon-wrapper:hover .hex-inner {
  transform: rotateY(180deg);
}

/* Optional: Adjust honeycomb arrangement */
.hexagon-wrapper:nth-child(1) {
  transform: translate(-250px, -5px);
}
.hexagon-wrapper:nth-child(2) {
  transform: translate(-340px, 200px);
}
.hexagon-wrapper:nth-child(3) {
  transform: translate(-410px, 0px);
}
.hexagon-wrapper:nth-child(4) {
  transform: translate(-485px, 200px);
}
.hexagon-wrapper:nth-child(5) {
  transform: translate(280px, -205px);
}
.hexagon-wrapper:nth-child(6) {
  transform: translate(200px, -9px);
}
.hexagon-wrapper:nth-child(7) {
  transform: translate(120px, -200px);
}
.hexagon-wrapper:nth-child(8) {
  transform: translate(45px, -5px);
}
.hexagon-wrapper1:nth-child(8) {
  transform: translate(45px, -5px);
}

/* fun techs */

/* events */
.hex-grid-alt-one {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  position: relative;
  width: fit-content;
}

.hexagon-wrapper-alt-one {
  width: 200px;
  height: 200px;
  position: relative;
  perspective: 1000px;
}

.hexagon-alt-one {
  width: 120%;
  height: 120%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s ease-in-out, box-shadow 0.3s;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: glow 2s infinite alternate;
}

.hex-inner-alt-one {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform-style: preserve-3d;
  transition: transform 0.6s ease-in-out;
}

.hex-front-alt-one,
.hex-back-alt-one {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  backface-visibility: hidden;
  clip-path: inherit;
}

.hex-back-alt-one a {
  font-family: "Rajdhani", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Fine-tuning with media queries */
@media (max-width: 768px) {
  .hex-back-alt-one a {
    font-size: clamp(12px, 4vw, 16px);
  }
}

@media (max-width: 480px) {
  .hex-back-alt-one a {
    font-size: clamp(10px, 5vw, 14px);
  }
}



.hex-back-alt-one a:hover {
  color: #000;
  background: rgba(255, 140, 0, 0.9);
}

.hex-front-alt-one {
  background-size: cover;
  background-position: center;
  animation: glitch 1s ease-in-out forwards;
}

/* Glitch effect on load */
@keyframes glitch {
  0% {
    transform: translate(0, 0);
    opacity: 0.8;
  }
  20% {
    transform: translate(-2px, 2px);
    opacity: 0.6;
  }
  40% {
    transform: translate(2px, -2px);
    opacity: 0.8;
  }
  60% {
    transform: translate(-2px, 2px);
    opacity: 0.6;
  }
  80% {
    transform: translate(2px, -2px);
    opacity: 0.9;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

/* Back: Displays event name */
.hex-back-alt-one {
  background: rgba(255, 165, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotateY(180deg);
}
/* Flip on hover */
.hexagon-wrapper-alt-one:hover .hex-inner-alt-one {
  transform: rotateY(180deg);
}

/* Optional: Adjust honeycomb arrangement */
.hexagon-wrapper-alt-one:nth-child(1) {
  transform: translate(10px, -5px);
}
.hexagon-wrapper-alt-one:nth-child(2) {
  transform: translate(-60px, 200px);
}
.hexagon-wrapper-alt-one:nth-child(3) {
  transform: translate(-130px, -5px);
}
.hexagon-wrapper-alt-one:nth-child(4) {
  transform: translate(-210px, 200px);
}
.hexagon-wrapper-alt-one:nth-child(5) {
  transform: translate(250px, -215px);
}

/* General Modal Styles */
/* General Modal Styles */

/* Fade-in Animation */
@keyframes fadeIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .modal-content {
    width: 90%;
    max-width: 100%;
    padding: 20px;
  }

  .modal-content h2 {
    font-size: 20px;
  }

  .modal-content p,
  .modal-content ul li {
    font-size: 14px;
  }

  .modal-content button {
    font-size: 14px;
    padding: 8px 15px;
  }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  /* Large tablets & smaller desktops */
  .hex-grid {
    width: 90%;
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  /* iPads (both portrait & landscape) */
  .hex-grid {
    width: 100%;
    justify-content: center;
  }
  .hexagon-wrapper {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 912px) {
  /* Larger Android & iOS devices (Surface Duo, Galaxy Fold, etc.) */
  .hex-grid {
    width: 100%;
    justify-content: center;
  }
  .hexagon-wrapper {
    width: 170px;
    height: 170px;
  }
}

@media (max-width: 820px) {
  /* iPad Mini & older iPads */
  .hex-grid {
    flex-wrap: wrap;
    justify-content: center;
  }
  .hexagon-wrapper {
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 768px) {
  /* Standard tablets & smaller screens */
  .hex-grid {
    flex-direction: column;
    align-items: center;
  }
  .hexagon-wrapper {
    transform: none !important;
    width: 150px;
    height: 150px;
    margin: 20px 0;
  }
}

@media (max-width: 600px) {
  /* Larger mobile phones */
  .hexagon-wrapper {
    width: 140px;
    height: 140px;
    margin: 25px 0;
  }
}

@media (max-width: 480px) {
  /* Most smartphones (iPhone SE, Galaxy S series, etc.) */
  .hexagon-wrapper {
    width: 130px;
    height: 130px;
    margin: 30px 0;
  }
}

@media (max-width: 360px) {
  /* Smaller Android devices */
  .hexagon-wrapper {
    width: 120px;
    height: 120px;
    margin: 35px 0;
  }
}

/* General Adjustments for Large Screens */
@media (max-width: 1399px) {
  .hex-grid {
    width: 90%;
    justify-content: center;
  }
}

/* Fix for 1200x608 & 1199x608 (Larger Tablets & Small Desktops) */
@media (max-width: 1200px) {
  .hex-grid {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  .hexagon-wrapper {
    width: 180px;
    height: 180px;
  }
}

/* Fix for 1024x608 (iPads & Some Tablets) */

/* Fix for 1024 × 608 (Tablets & Small Laptops) */
@media (max-width: 1024px) and (max-height: 608px) {
  .hex-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Adds spacing */
  }

  .hexagon-wrapper {
    transform: none !important; /* Removes manual offsets */
    width: 185px; /* Adjusted to prevent overlap */
    height: 185px;
    margin: 15px; /* Ensures space between event cards */
  }

  .hexagon {
    width: 100%;
    padding-bottom: 100%;
  }
}
/* Fix for 1199 × 608 (Large Tablets & Small Laptops) */
@media (max-width: 1199px) and (max-height: 608px) {
  .hex-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Adds spacing */
  }

  .hexagon-wrapper {
    transform: none !important; /* Resets any offset issues */
    width: 190px; /* Adjusted to ensure proper fit */
    height: 190px;
    margin: 15px; /* Adds space between event cards */
  }

  .hexagon {
    width: 100%;
    padding-bottom: 100%;
  }
}

/* Fix for 991x608 (Older Tablets & Small Laptops) */
@media (max-width: 991px) {
  .hex-grid {
    flex-wrap: wrap;
    justify-content: center;
  }
  .hexagon-wrapper {
    width: 165px;
    height: 165px;
  }
}

/* Fix for 912x608 (Foldable Devices & Larger Phones) */
/* Fix for 912x608 (Foldable Devices & Some Android Tablets) */
@media (max-width: 912px) and (max-height: 608px) {
  .hex-grid {
    flex-wrap: wrap;
    justify-content: center;
  }
  .hexagon-wrapper {
    width: 170px; /* Slightly increased for better proportion */
    height: 170px;
    margin: 15px; /* Adds space between event cards */
  }
}
/* Fix for 992 × 608 (Wider Tablets & Small Screens) */
@media (max-width: 992px) and (max-height: 608px) {
  .hex-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; /* Adds proper spacing */
  }

  .hexagon-wrapper {
    transform: none !important; /* Resets any manual offsets */
    width: 180px; /* Adjusted for better fit */
    height: 180px;
    margin: 15px 0; /* Ensures space between event cards */
  }

  .hexagon {
    width: 100%;
    padding-bottom: 100%;
  }
}

/* Fix for 820x608 (iPad Mini & Older iPads) */
@media (max-width: 820px) {
  .hex-grid {
    flex-wrap: wrap;
    justify-content: center;
  }
  .hexagon-wrapper {
    width: 155px;
    height: 155px;
  }
}

/* Fix for 608px height screens (Phones in Landscape Mode) */
@media (max-height: 608px) {
  .hex-grid {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  .hexagon-wrapper {
    width: 140px;
    height: 140px;
    margin: 15px;
  }
}

/* Fix for 600px width & below (Phones in Portrait Mode) */
@media (max-width: 600px) {
  .hex-grid {
    flex-direction: column;
    align-items: center;
  }
  .hexagon-wrapper {
    width: 135px;
    height: 135px;
    margin: 20px 0;
  }
}

/* Fix for 480px width & below (iPhone SE, Smaller Devices) */
@media (max-width: 480px) {
  .hexagon-wrapper {
    width: 130px;
    height: 130px;
    margin: 25px 0;
  }
}

/* Fix for 360px width & below (Older Android Phones) */
@media (max-width: 360px) {
  .hexagon-wrapper {
    width: 120px;
    height: 120px;
    margin: 30px 0;
  }
}
/* Fix for 1199 × 608 (Large Tablets & Small Laptops) */
@media (max-width: 1199px) and (max-height: 608px) {
  .hex-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .hexagon-wrapper {
    transform: none !important;
    width: 190px;
    height: 190px;
    margin: 15px;
  }

  .hexagon {
    width: 100%;
    padding-bottom: 100%;
  }
}

/* Fix for 1399 × 608 (Wide Screens & Small Laptops) */
@media (max-width: 1399px) and (max-height: 608px) {
  .hex-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .hexagon-wrapper {
    transform: none !important;
    width: 200px;
    height: 200px;
    margin: 15px;
  }

  .hexagon {
    width: 100%;
    padding-bottom: 100%;
  }
}

/* Fix for 1200 × 608 (Large Tablets & Small Desktops) */
@media (max-width: 1200px) and (max-height: 608px) {
  .hex-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .hexagon-wrapper {
    transform: none !important;
    width: 185px;
    height: 185px;
    margin: 15px;
  }

  .hexagon {
    width: 100%;
    padding-bottom: 100%;
  }
}

/* Fix for 1400 × 608 (Larger Screens & Small Laptops) */
@media (max-width: 1400px) and (max-height: 608px) {
  .hex-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .hexagon-wrapper {
    transform: none !important;
    width: 205px;
    height: 205px;
    margin: 15px;
  }

  .hexagon {
    width: 100%;
    padding-bottom: 100%;
  }
}
/* fun tech responsive and modal */

/* Fade-in Animation */
@keyframes fadeIn-alt-one {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  /* Large tablets & smaller desktops */
  .hex-grid-alt-one {
    width: 90%;
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  /* iPads (both portrait & landscape) */
  .hex-grid-alt-one {
    width: 100%;
    justify-content: center;
  }
  .hexagon-wrapper-alt-one {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 912px) {
  /* Larger Android & iOS devices (Surface Duo, Galaxy Fold, etc.) */
  .hex-grid-alt-one {
    width: 100%;
    justify-content: center;
  }
  .hexagon-wrapper-alt-one {
    width: 170px;
    height: 170px;
  }
}

@media (max-width: 820px) {
  /* iPad Mini & older iPads */
  .hex-grid-alt-one {
    flex-wrap: wrap;
    justify-content: center;
  }
  .hexagon-wrapper-alt-one {
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 768px) {
  /* Standard tablets & smaller screens */
  .hex-grid-alt-one {
    flex-direction: column;
    align-items: center;
  }
  .hexagon-wrapper-alt-one {
    transform: none !important;
    width: 150px;
    height: 150px;
    margin: 20px 0;
  }
}

@media (max-width: 600px) {
  /* Larger mobile phones */
  .hexagon-wrapper-alt-one {
    width: 140px;
    height: 140px;
    margin: 25px 0;
  }
}

@media (max-width: 480px) {
  /* Most smartphones (iPhone SE, Galaxy S series, etc.) */
  .hexagon-wrapper-alt-one {
    width: 130px;
    height: 130px;
    margin: 30px 0;
  }
}

@media (max-width: 360px) {
  /* Smaller Android devices */
  .hexagon-wrapper-alt-one {
    width: 120px;
    height: 120px;
    margin: 35px 0;
  }
}

/* General Adjustments for Large Screens */
@media (max-width: 1399px) {
  .hex-grid-alt-one {
    width: 90%;
    justify-content: center;
  }
}

/* Fix for 1200x608 & 1199x608 (Larger Tablets & Small Desktops) */
@media (max-width: 1200px) {
  .hex-grid-alt-one {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  .hexagon-wrapper-alt-one {
    width: 180px;
    height: 180px;
  }
}

/* Fix for 1024x608 (iPads & Some Tablets) */

/* Fix for 1024 × 608 (Tablets & Small Laptops) */
@media (max-width: 1024px) and (max-height: 608px) {
  .hex-grid-alt-one {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Adds spacing */
  }

  .hexagon-wrapper-alt-one {
    transform: none !important; /* Removes manual offsets */
    width: 185px; /* Adjusted to prevent overlap */
    height: 185px;
    margin: 15px; /* Ensures space between event cards */
  }

  .hexagon-alt-one {
    width: 100%;
    padding-bottom: 100%;
  }
}

/* Fix for 1199 × 608 (Large Tablets & Small Laptops) */
@media (max-width: 1199px) and (max-height: 608px) {
  .hex-grid-alt-one {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Adds spacing */
  }

  .hexagon-wrapper-alt-one {
    transform: none !important; /* Resets any offset issues */
    width: 190px; /* Adjusted to ensure proper fit */
    height: 190px;
    margin: 15px; /* Adds space between event cards */
  }

  .hexagon-alt-one {
    width: 100%;
    padding-bottom: 100%;
  }
}

/* Fix for 991x608 (Older Tablets & Small Laptops) */
@media (max-width: 991px) {
  .hex-grid-alt-one {
    flex-wrap: wrap;
    justify-content: center;
  }
  .hexagon-wrapper-alt-one {
    width: 165px;
    height: 165px;
  }
}

/* Fix for 912x608 (Foldable Devices & Larger Phones) */
/* Fix for 912x608 (Foldable Devices & Some Android Tablets) */
@media (max-width: 912px) and (max-height: 608px) {
  .hex-grid-alt-one {
    flex-wrap: wrap;
    justify-content: center;
  }
  .hexagon-wrapper-alt-one {
    width: 170px; /* Slightly increased for better proportion */
    height: 170px;
    margin: 15px; /* Adds space between event cards */
  }
}

/* Fix for 992 × 608 (Wider Tablets & Small Screens) */
@media (max-width: 992px) and (max-height: 608px) {
  .hex-grid-alt-one {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; /* Adds proper spacing */
  }

  .hexagon-wrapper-alt-one {
    transform: none !important; /* Resets any manual offsets */
    width: 180px; /* Adjusted for better fit */
    height: 180px;
    margin: 15px 0; /* Ensures space between event cards */
  }

  .hexagon-alt-one {
    width: 100%;
    padding-bottom: 100%;
  }
}

/* Fix for 820x608 (iPad Mini & Older iPads) */
@media (max-width: 820px) {
  .hex-grid-alt-one {
    flex-wrap: wrap;
    justify-content: center;
  }
  .hexagon-wrapper-alt-one {
    width: 155px;
    height: 155px;
  }
}

/* Fix for 608px height screens (Phones in Landscape Mode) */
@media (max-height: 608px) {
  .hex-grid-alt-one {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  .hexagon-wrapper-alt-one {
    width: 140px;
    height: 140px;
    margin: 15px;
  }
}

/* Fix for 600px width & below (Phones in Portrait Mode) */
@media (max-width: 600px) {
  .hex-grid-alt-one {
    flex-direction: column;
    align-items: center;
  }
  .hexagon-wrapper-alt-one {
    width: 135px;
    height: 135px;
    margin: 20px 0;
  }
}

/* Fix for 480px width & below (iPhone SE, Smaller Devices) */
@media (max-width: 480px) {
  .hexagon-wrapper-alt-one {
    width: 130px;
    height: 130px;
    margin: 25px 0;
  }
}

/* Fix for 360px width & below (Older Android Phones) */
@media (max-width: 360px) {
  .hexagon-wrapper-alt-one {
    width: 120px;
    height: 120px;
    margin: 30px 0;
  }
}

/* Fix for 1199 × 608 (Large Tablets & Small Laptops) */
@media (max-width: 1199px) and (max-height: 608px) {
  .hex-grid-alt-one {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .hexagon-wrapper-alt-one {
    transform: none !important;
    width: 190px;
    height: 190px;
    margin: 15px;
  }

  .hexagon-alt-one {
    width: 100%;
    padding-bottom: 100%;
  }
}

/* Fix for 1399 × 608 (Wide Screens & Small Laptops) */
@media (max-width: 1399px) and (max-height: 608px) {
  .hex-grid-alt-one {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .hexagon-wrapper-alt-one {
    transform: none !important;
    width: 200px;
    height: 200px;
    margin: 15px;
  }

  .hexagon-alt-one {
    width: 100%;
    padding-bottom: 100%;
  }
}

/* Fix for 1200 × 608 (Large Tablets & Small Desktops) */
@media (max-width: 1200px) and (max-height: 608px) {
  .hex-grid-alt-one {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .hexagon-wrapper-alt-one {
    transform: none !important;
    width: 185px;
    height: 185px;
    margin: 15px;
  }

  .hexagon-alt-one {
    width: 100%;
    padding-bottom: 100%;
  }
}

/* Fix for 1400 × 608 (Larger Screens & Small Laptops) */
@media (max-width: 1400px) and (max-height: 608px) {
  .hex-grid-alt-one {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .hexagon-wrapper-alt-one {
    transform: none !important;
    width: 205px;
    height: 205px;
    margin: 15px;
  }

  .hexagon-alt-one {
    width: 100%;
    padding-bottom: 100%;
  }
}
/* non tech  */



.hex-grid-alt-three {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  position: relative;
  width: fit-content;
}

.hexagon-wrapper-alt-three {
  width: 200px;
  height: 200px;
  position: relative;
  perspective: 1000px;
}

.hexagon-alt-three {
  width: 120%;
  height: 120%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s ease-in-out, box-shadow 0.3s;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: glow 2s infinite alternate;
}

.hex-inner-alt-three {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform-style: preserve-3d;
  transition: transform 0.6s ease-in-out;
}

.hex-front-alt-three,
.hex-back-alt-three {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  backface-visibility: hidden;
  clip-path: inherit;
}

.hex-back-alt-three a {
  font-family: "Rajdhani", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Fine-tuning with media queries */
@media (max-width: 768px) {
  .hex-back-alt-three a {
    font-size: clamp(12px, 4vw, 16px);
  }
}

@media (max-width: 480px) {
  .hex-back-alt-three a {
    font-size: clamp(10px, 5vw, 14px);
  }
}



.hex-back-alt-three a:hover {
  color: #000;
  background: rgba(255, 140, 0, 0.9);
}

.hex-front-alt-three {
  background-size: cover;
  background-position: center;
  animation: glitch 1s ease-in-out forwards;
}

/* Glitch effect on load */
@keyframes glitch {
  0% {
    transform: translate(0, 0);
    opacity: 0.8;
  }
  20% {
    transform: translate(-2px, 2px);
    opacity: 0.6;
  }
  40% {
    transform: translate(2px, -2px);
    opacity: 0.8;
  }
  60% {
    transform: translate(-2px, 2px);
    opacity: 0.6;
  }
  80% {
    transform: translate(2px, -2px);
    opacity: 0.9;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

/* Back: Displays event name */
.hex-back-alt-three {
  background: rgba(255, 165, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotateY(180deg);
}
/* Flip on hover */
.hexagon-wrapper-alt-three:hover .hex-inner-alt-three {
  transform: rotateY(180deg);
}


.hexagon-wrapper-alt-three:nth-child(2) {
  transform: translate(80px, 250px);
}

.hexagon-wrapper-alt-three:nth-child(4) {
  transform: translate(-200px, 40px);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  /* Large tablets & smaller desktops */
  .hex-grid-alt-three {
    width: 90%;
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  /* iPads (both portrait & landscape) */
  .hex-grid-alt-three {
    width: 100%;
    justify-content: center;
  }
  .hexagon-wrapper-alt-three {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 912px) {
  /* Larger Android & iOS devices (Surface Duo, Galaxy Fold, etc.) */
  .hex-grid-alt-three {
    width: 100%;
    justify-content: center;
  }
  .hexagon-wrapper-alt-three {
    width: 170px;
    height: 170px;
  }
}

@media (max-width: 820px) {
  /* iPad Mini & older iPads */
  .hex-grid-alt-three {
    flex-wrap: wrap;
    justify-content: center;
  }
  .hexagon-wrapper-alt-three {
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 768px) {
  /* Standard tablets & smaller screens */
  .hex-grid-alt-three {
    flex-direction: column;
    align-items: center;
  }
  .hexagon-wrapper-alt-three {
    transform: none !important;
    width: 150px;
    height: 150px;
    margin: 20px 0;
  }
}

@media (max-width: 600px) {
  /* Larger mobile phones */
  .hexagon-wrapper-alt-three {
    width: 140px;
    height: 140px;
    margin: 25px 0;
  }
}

@media (max-width: 480px) {
  /* Most smartphones (iPhone SE, Galaxy S series, etc.) */
  .hexagon-wrapper-alt-three {
    width: 130px;
    height: 130px;
    margin: 30px 0;
  }
}

@media (max-width: 360px) {
  /* Smaller Android devices */
  .hexagon-wrapper-alt-three {
    width: 120px;
    height: 120px;
    margin: 35px 0;
  }
}

/* General Adjustments for Large Screens */
@media (max-width: 1399px) {
  .hex-grid-alt-three {
    width: 90%;
    justify-content: center;
  }
}

/* Fix for 1200x608 & 1199x608 (Larger Tablets & Small Desktops) */
@media (max-width: 1200px) {
  .hex-grid-alt-three {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  .hexagon-wrapper-alt-three {
    width: 180px;
    height: 180px;
  }
}

/* Fix for 1024x608 (iPads & Some Tablets) */

/* Fix for 1024 × 608 (Tablets & Small Laptops) */
@media (max-width: 1024px) and (max-height: 608px) {
  .hex-grid-alt-three {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Adds spacing */
  }

  .hexagon-wrapper-alt-three {
    transform: none !important; /* Removes manual offsets */
    width: 185px; /* Adjusted to prevent overlap */
    height: 185px;
    margin: 15px; /* Ensures space between event cards */
  }

  .hexagon-alt-three {
    width: 100%;
    padding-bottom: 100%;
  }
}

/* Fix for 1199 × 608 (Large Tablets & Small Laptops) */
@media (max-width: 1199px) and (max-height: 608px) {
  .hex-grid-alt-three {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Adds spacing */
  }

  .hexagon-wrapper-alt-three {
    transform: none !important; /* Resets any offset issues */
    width: 190px; /* Adjusted to ensure proper fit */
    height: 190px;
    margin: 15px; /* Adds space between event cards */
  }

  .hexagon-alt-three {
    width: 100%;
    padding-bottom: 100%;
  }
}

/* Fix for 991x608 (Older Tablets & Small Laptops) */
@media (max-width: 991px) {
  .hex-grid-alt-three {
    flex-wrap: wrap;
    justify-content: center;
  }
  .hexagon-wrapper-alt-three {
    width: 165px;
    height: 165px;
  }
}

/* Fix for 912x608 (Foldable Devices & Larger Phones) */
/* Fix for 912x608 (Foldable Devices & Some Android Tablets) */
@media (max-width: 912px) and (max-height: 608px) {
  .hex-grid-alt-three {
    flex-wrap: wrap;
    justify-content: center;
  }
  .hexagon-wrapper-alt-three {
    width: 170px; /* Slightly increased for better proportion */
    height: 170px;
    margin: 15px; /* Adds space between event cards */
  }
}

/* Fix for 992 × 608 (Wider Tablets & Small Screens) */
@media (max-width: 992px) and (max-height: 608px) {
  .hex-grid-alt-three {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; /* Adds proper spacing */
  }

  .hexagon-wrapper-alt-three {
    transform: none !important; /* Resets any manual offsets */
    width: 180px; /* Adjusted for better fit */
    height: 180px;
    margin: 15px 0; /* Ensures space between event cards */
  }

  .hexagon-alt-three {
    width: 100%;
    padding-bottom: 100%;
  }
}

/* Fix for 820x608 (iPad Mini & Older iPads) */
@media (max-width: 820px) {
  .hex-grid-alt-three {
    flex-wrap: wrap;
    justify-content: center;
  }
  .hexagon-wrapper-alt-three {
    width: 155px;
    height: 155px;
  }
}

/* Fix for 608px height screens (Phones in Landscape Mode) */
@media (max-height: 608px) {
  .hex-grid-alt-three {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  .hexagon-wrapper-alt-three {
    width: 140px;
    height: 140px;
    margin: 15px;
  }
}

/* Fix for 600px width & below (Phones in Portrait Mode) */
@media (max-width: 600px) {
  .hex-grid-alt-three {
    flex-direction: column;
    align-items: center;
  }
  .hexagon-wrapper-alt-three {
    width: 135px;
    height: 135px;
    margin: 20px 0;
  }
}

/* Fix for 480px width & below (iPhone SE, Smaller Devices) */
@media (max-width: 480px) {
  .hexagon-wrapper-alt-three {
    width: 130px;
    height: 130px;
    margin: 25px 0;
  }
}

/* Fix for 360px width & below (Older Android Phones) */
@media (max-width: 360px) {
  .hexagon-wrapper-alt-three {
    width: 120px;
    height: 120px;
    margin: 30px 0;
  }
}

/* Fix for 1199 × 608 (Large Tablets & Small Laptops) */
@media (max-width: 1199px) and (max-height: 608px) {
  .hex-grid-alt-three {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .hexagon-wrapper-alt-three {
    transform: none !important;
    width: 190px;
    height: 190px;
    margin: 15px;
  }

  .hexagon-alt-three {
    width: 100%;
    padding-bottom: 100%;
  }
}

/* Fix for 1399 × 608 (Wide Screens & Small Laptops) */
@media (max-width: 1399px) and (max-height: 608px) {
  .hex-grid-alt-three {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .hexagon-wrapper-alt-three {
    transform: none !important;
    width: 200px;
    height: 200px;
    margin: 15px;
  }

  .hexagon-alt-three {
    width: 100%;
    padding-bottom: 100%;
  }
}

/* Fix for 1200 × 608 (Large Tablets & Small Desktops) */
@media (max-width: 1200px) and (max-height: 608px) {
  .hex-grid-alt-three {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .hexagon-wrapper-alt-three {
    transform: none !important;
    width: 185px;
    height: 185px;
    margin: 15px;
  }

  .hexagon-alt-three {
    width: 100%;
    padding-bottom: 100%;
  }
}

/* Fix for 1400 × 608 (Larger Screens & Small Laptops) */
@media (max-width: 1400px) and (max-height: 608px) {
  .hex-grid-alt-three {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .hexagon-wrapper-alt-three {
    transform: none !important;
    width: 205px;
    height: 205px;
    margin: 15px;
  }

  .hexagon-alt-three {
    width: 100%;
    padding-bottom: 100%;
  }
}

/* main events */
/* fun techs */

/* events */
.hex-grid-alt-two {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh; /* Adjust height as needed */
}

.hexagon-wrapper-alt-two {
  width: 200px;
  height: 200px;
  position: relative;
  perspective: 1000px;
}

.hexagon-alt-two {
  width: 200%;
  height: 200%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s ease-in-out, box-shadow 0.3s;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: glow 2s infinite alternate;
}

.hex-inner-alt-two {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform-style: preserve-3d;
  transition: transform 0.6s ease-in-out;
}

.hex-front-alt-two,
.hex-back-alt-two {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  backface-visibility: hidden;
  clip-path: inherit;
}

.hex-back-alt-two a {
  font-family: "Rajdhani", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hex-back-alt-two a:hover {
  color: #000;
  background: rgba(255, 140, 0, 0.9);
}

.hex-front-alt-two {
  background-size: cover;
  background-position: center;
  animation: glitch 1s ease-in-out forwards;
}

/* Glitch effect on load */
@keyframes glitch {
  0% {
    transform: translate(0, 0);
    opacity: 0.8;
  }
  20% {
    transform: translate(-2px, 2px);
    opacity: 0.6;
  }
  40% {
    transform: translate(2px, -2px);
    opacity: 0.8;
  }
  60% {
    transform: translate(-2px, 2px);
    opacity: 0.6;
  }
  80% {
    transform: translate(2px, -2px);
    opacity: 0.9;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

.hex-back-alt-two {
  background: rgba(255, 165, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotateY(180deg);
}

.hexagon-wrapper-alt-two:hover .hex-inner-alt-two {
  transform: rotateY(180deg);
}

.hexagon-wrapper-alt-two:nth-child(1) {
  transform: translate(210px, -100px);
}

.modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Darker background */
  backdrop-filter: blur(5px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

#event-modal {
  display: none;
}

/* Modal Content Box */
.modal-content {
  background: #0d0d0d; /* Pure black background */
  padding: 25px;
  width: 50%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0px 10px 30px rgba(255, 255, 255, 0.2); /* Slight glow */
  text-align: center;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Ensure ALL text inside the modal is white */
.modal-content h2,
.modal-content p,
.modal-content span,
.modal-content strong {
  color: #ffffff !important; /* Force bright white text */
}

/* Paragraph Styling */
.modal-content p {
  font-size: 18px; /* Slightly increased size */
  color: #f0f0f0; /* Bright white for better readability */
  margin-bottom: 10px;
}

/* Round Details List */
.modal-content ul {
  list-style-type: none;
  padding: 0;
}

.modal-content ul li {
  background: #1a1a1a; /* Slightly lighter black */
  padding: 12px;
  margin: 8px 0;
  border-radius: 6px;
  font-size: 16px; /* Increased size */
  color: #ffffff; /* Bright white */
  font-weight: 600; /* Bolder text */
}

/* Close Button */
.modal-content button {
  background-color: #ff4444; /* Red for contrast */
  color: #ffffff; /* Pure white text */
  border: none;
  padding: 12px 20px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
  margin-top: 15px;
}

.modal-content button:hover {
  background-color: #cc0000; /* Darker red on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
  .modal-content {
    width: 90%;
    max-width: 100%;
    padding: 20px;
  }

  .modal-content h2 {
    font-size: 20px;
  }

  .modal-content p,
  .modal-content ul li {
    font-size: 14px;
  }

  .modal-content button {
    font-size: 14px;
    padding: 8px 15px;
  }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  /* Large tablets & smaller desktops */
  .hex-grid {
    width: 90%;
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  /* iPads (both portrait & landscape) */
  .hex-grid {
    width: 100%;
    justify-content: center;
  }
  .hexagon-wrapper {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 912px) {
  /* Larger Android & iOS devices (Surface Duo, Galaxy Fold, etc.) */
  .hex-grid {
    width: 100%;
    justify-content: center;
  }
  .hexagon-wrapper {
    width: 170px;
    height: 170px;
  }
}

@media (max-width: 820px) {
  /* iPad Mini & older iPads */
  .hex-grid {
    flex-wrap: wrap;
    justify-content: center;
  }
  .hexagon-wrapper {
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 768px) {
  /* Standard tablets & smaller screens */
  .hex-grid {
    flex-direction: column;
    align-items: center;
  }
  .hexagon-wrapper {
    transform: none !important;
    width: 150px;
    height: 150px;
    margin: 20px 0;
  }
}

@media (max-width: 600px) {
  /* Larger mobile phones */
  .hexagon-wrapper {
    width: 140px;
    height: 140px;
    margin: 25px 0;
  }
}

@media (max-width: 480px) {
  /* Most smartphones (iPhone SE, Galaxy S series, etc.) */
  .hexagon-wrapper {
    width: 130px;
    height: 130px;
    margin: 30px 0;
  }
}

@media (max-width: 360px) {
  /* Smaller Android devices */
  .hexagon-wrapper {
    width: 120px;
    height: 120px;
    margin: 35px 0;
  }
}

/* General Adjustments for Large Screens */
@media (max-width: 1399px) {
  .hex-grid {
    width: 90%;
    justify-content: center;
  }
}

/* Fix for 1200x608 & 1199x608 (Larger Tablets & Small Desktops) */
@media (max-width: 1200px) {
  .hex-grid {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  .hexagon-wrapper {
    width: 180px;
    height: 180px;
  }
}

/* Fix for 1024x608 (iPads & Some Tablets) */

/* Fix for 1024 × 608 (Tablets & Small Laptops) */
@media (max-width: 1024px) and (max-height: 608px) {
  .hex-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Adds spacing */
  }

  .hexagon-wrapper {
    transform: none !important; /* Removes manual offsets */
    width: 185px; /* Adjusted to prevent overlap */
    height: 185px;
    margin: 15px; /* Ensures space between event cards */
  }

  .hexagon {
    width: 100%;
    padding-bottom: 100%;
  }
}
/* Fix for 1199 × 608 (Large Tablets & Small Laptops) */
@media (max-width: 1199px) and (max-height: 608px) {
  .hex-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Adds spacing */
  }

  .hexagon-wrapper {
    transform: none !important; /* Resets any offset issues */
    width: 190px; /* Adjusted to ensure proper fit */
    height: 190px;
    margin: 15px; /* Adds space between event cards */
  }

  .hexagon {
    width: 100%;
    padding-bottom: 100%;
  }
}

/* Fix for 991x608 (Older Tablets & Small Laptops) */
@media (max-width: 991px) {
  .hex-grid {
    flex-wrap: wrap;
    justify-content: center;
  }
  .hexagon-wrapper {
    width: 165px;
    height: 165px;
  }
}

/* Fix for 912x608 (Foldable Devices & Larger Phones) */
/* Fix for 912x608 (Foldable Devices & Some Android Tablets) */
@media (max-width: 912px) and (max-height: 608px) {
  .hex-grid {
    flex-wrap: wrap;
    justify-content: center;
  }
  .hexagon-wrapper {
    width: 170px; /* Slightly increased for better proportion */
    height: 170px;
    margin: 15px; /* Adds space between event cards */
  }
}
/* Fix for 992 × 608 (Wider Tablets & Small Screens) */
@media (max-width: 992px) and (max-height: 608px) {
  .hex-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; /* Adds proper spacing */
  }

  .hexagon-wrapper {
    transform: none !important; /* Resets any manual offsets */
    width: 180px; /* Adjusted for better fit */
    height: 180px;
    margin: 15px 0; /* Ensures space between event cards */
  }

  .hexagon {
    width: 100%;
    padding-bottom: 100%;
  }
}

/* Fix for 820x608 (iPad Mini & Older iPads) */
@media (max-width: 820px) {
  .hex-grid {
    flex-wrap: wrap;
    justify-content: center;
  }
  .hexagon-wrapper {
    width: 155px;
    height: 155px;
  }
}

/* Fix for 608px height screens (Phones in Landscape Mode) */
@media (max-height: 608px) {
  .hex-grid {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  .hexagon-wrapper {
    width: 140px;
    height: 140px;
    margin: 15px;
  }
}

/* Fix for 600px width & below (Phones in Portrait Mode) */
@media (max-width: 600px) {
  .hex-grid {
    flex-direction: column;
    align-items: center;
  }
  .hexagon-wrapper {
    width: 135px;
    height: 135px;
    margin: 20px 0;
  }
}

/* Fix for 480px width & below (iPhone SE, Smaller Devices) */
@media (max-width: 480px) {
  .hexagon-wrapper {
    width: 130px;
    height: 130px;
    margin: 25px 0;
  }
}

/* Fix for 360px width & below (Older Android Phones) */
@media (max-width: 360px) {
  .hexagon-wrapper {
    width: 120px;
    height: 120px;
    margin: 30px 0;
  }
}
/* Fix for 1199 × 608 (Large Tablets & Small Laptops) */
@media (max-width: 1199px) and (max-height: 608px) {
  .hex-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .hexagon-wrapper {
    transform: none !important;
    width: 190px;
    height: 190px;
    margin: 15px;
  }

  .hexagon {
    width: 100%;
    padding-bottom: 100%;
  }
}

/* Fix for 1399 × 608 (Wide Screens & Small Laptops) */
@media (max-width: 1399px) and (max-height: 608px) {
  .hex-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .hexagon-wrapper {
    transform: none !important;
    width: 200px;
    height: 200px;
    margin: 15px;
  }

  .hexagon {
    width: 100%;
    padding-bottom: 100%;
  }
}

/* Fix for 1200 × 608 (Large Tablets & Small Desktops) */
@media (max-width: 1200px) and (max-height: 608px) {
  .hex-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .hexagon-wrapper {
    transform: none !important;
    width: 185px;
    height: 185px;
    margin: 15px;
  }

  .hexagon {
    width: 100%;
    padding-bottom: 100%;
  }
}

/* Fix for 1400 × 608 (Larger Screens & Small Laptops) */
@media (max-width: 1400px) and (max-height: 608px) {
  .hex-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .hexagon-wrapper {
    transform: none !important;
    width: 205px;
    height: 205px;
    margin: 15px;
  }

  .hexagon {
    width: 100%;
    padding-bottom: 100%;
  }
}
/* fun tech responsive and modal */

/* Fade-in Animation */
@keyframes fadeIn-alt-two {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .modal-content-alt-two {
    width: 90%;
    max-width: 100%;
    padding: 20px;
  }

  .modal-content-alt-two h2 {
    font-size: 20px;
  }

  .modal-content-alt-two p,
  .modal-content-alt-two ul li {
    font-size: 14px;
  }

  .modal-content-alt-two button {
    font-size: 14px;
    padding: 8px 15px;
  }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  /* Large tablets & smaller desktops */
  .hex-grid-alt-two {
    width: 90%;
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  /* iPads (both portrait & landscape) */
  .hex-grid-alt-two {
    width: 100%;
    justify-content: center;
  }
  .hexagon-wrapper-alt-two {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 912px) {
  /* Larger Android & iOS devices (Surface Duo, Galaxy Fold, etc.) */
  .hex-grid-alt-two {
    width: 100%;
    justify-content: center;
  }
  .hexagon-wrapper-alt-two {
    width: 170px;
    height: 170px;
  }
}

@media (max-width: 820px) {
  /* iPad Mini & older iPads */
  .hex-grid-alt-two {
    flex-wrap: wrap;
    justify-content: center;
  }
  .hexagon-wrapper-alt-two {
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 768px) {
  /* Standard tablets & smaller screens */
  .hex-grid-alt-two {
    flex-direction: column;
    align-items: center;
  }
  .hexagon-wrapper-alt-two {
    transform: none !important;
    width: 150px;
    height: 150px;
    margin: 20px 0;
  }
}

@media (max-width: 600px) {
  /* Larger mobile phones */
  .hexagon-wrapper-alt-two {
    width: 140px;
    height: 140px;
    margin: 25px 0;
  }
}

@media (max-width: 480px) {
  /* Most smartphones (iPhone SE, Galaxy S series, etc.) */
  .hexagon-wrapper-alt-two {
    width: 130px;
    height: 130px;
    margin: 30px 0;
  }
}

@media (max-width: 360px) {
  /* Smaller Android devices */
  .hexagon-wrapper-alt-two {
    width: 120px;
    height: 120px;
    margin: 35px 0;
  }
}

/* General Adjustments for Large Screens */
@media (max-width: 1399px) {
  .hex-grid-alt-two {
    width: 90%;
    justify-content: center;
  }
}

/* Fix for 1200x608 & 1199x608 (Larger Tablets & Small Desktops) */
@media (max-width: 1200px) {
  .hex-grid-alt-two {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  .hexagon-wrapper-alt-two {
    width: 180px;
    height: 180px;
  }
}

/* Fix for 1024x608 (iPads & Some Tablets) */

/* Fix for 1024 × 608 (Tablets & Small Laptops) */
@media (max-width: 1024px) and (max-height: 608px) {
  .hex-grid-alt-two {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Adds spacing */
  }

  .hexagon-wrapper-alt-two {
    transform: none !important; /* Removes manual offsets */
    width: 185px; /* Adjusted to prevent overlap */
    height: 185px;
    margin: 15px; /* Ensures space between event cards */
  }

  .hexagon-alt-two {
    width: 100%;
    height: 120%;
    padding-bottom: 100%;
  }
}
@media (max-width: 1400px) and (max-height: 608px) {
  .hex-grid-alt-two {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Adds spacing */
  }

  .hexagon-wrapper-alt-two {
    transform: none !important; /* Removes manual offsets */
    width: 185px; /* Adjusted to prevent overlap */
    height: 185px;
    margin: 15px; /* Ensures space between event cards */
  }

  .hexagon-alt-two {
    width: 100%;
    height: 120%;
    padding-bottom: 100%;
  }
}
/* Fix for 1199 × 608 (Large Tablets & Small Laptops) */
@media (max-width: 1199px) and (max-height: 608px) {
  .hex-grid-alt-two {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Adds spacing */
  }

  .hexagon-wrapper-alt-two {
    transform: none !important; /* Resets any offset issues */
    width: 190px; /* Adjusted to ensure proper fit */
    height: 190px;
    margin: 15px; /* Adds space between event cards */
  }

  .hexagon-alt-two {
    width: 100%;
    padding-bottom: 100%;
  }
}

/* Fix for 991x608 (Older Tablets & Small Laptops) */
@media (max-width: 991px) {
  .hex-grid-alt-two {
    flex-wrap: wrap;
    justify-content: center;
  }
  .hexagon-wrapper-alt-two {
    width: 165px;
    height: 165px;
  }
}

/* Fix for 912x608 (Foldable Devices & Larger Phones) */
/* Fix for 912x608 (Foldable Devices & Some Android Tablets) */
@media (max-width: 912px) and (max-height: 608px) {
  .hex-grid-alt-two {
    flex-wrap: wrap;
    justify-content: center;
  }
  .hexagon-wrapper-alt-two {
    width: 170px; /* Slightly increased for better proportion */
    height: 170px;
    margin: 15px; /* Adds space between event cards */
  }
}

/* Fix for 992 × 608 (Wider Tablets & Small Screens) */
@media (max-width: 992px) and (max-height: 608px) {
  .hex-grid-alt-two {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; /* Adds proper spacing */
  }

  .hexagon-wrapper-alt-two {
    transform: none !important; /* Resets any manual offsets */
    width: 180px; /* Adjusted for better fit */
    height: 180px;
    margin: 15px 0; /* Ensures space between event cards */
  }

  .hexagon-alt-two {
    width: 100%;
    padding-bottom: 100%;
  }
}

/* Fix for 820x608 (iPad Mini & Older iPads) */
@media (max-width: 820px) {
  .hex-grid-alt-two {
    flex-wrap: wrap;
    justify-content: center;
  }
  .hexagon-wrapper-alt-two {
    width: 155px;
    height: 155px;
  }
}

/* Fix for 608px height screens (Phones in Landscape Mode) */
@media (max-height: 608px) {
  .hex-grid-alt-two {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  .hexagon-wrapper-alt-two {
    width: 140px;
    height: 140px;
    margin: 15px;
  }
}

/* Fix for 600px width & below (Phones in Portrait Mode) */
@media (max-width: 600px) {
  .hex-grid-alt-two {
    flex-direction: column;
    align-items: center;
  }
  .hexagon-wrapper-alt-two {
    width: 135px;
    height: 135px;
    margin: 20px 0;
  }
}

/* Fix for 480px width & below (iPhone SE, Smaller Devices) */
@media (max-width: 480px) {
  .hexagon-wrapper-alt-two {
    width: 130px;
    height: 130px;
    margin: 25px 0;
  }
}

/* Fix for 360px width & below (Older Android Phones) */
@media (max-width: 360px) {
  .hexagon-wrapper-alt-two {
    width: 120px;
    height: 120px;
    margin: 30px 0;
  }
}

/* Fix for 1199 × 608 (Large Tablets & Small Laptops) */
@media (max-width: 1199px) and (max-height: 608px) {
  .hex-grid-alt-two {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .hexagon-wrapper-alt-two {
    transform: none !important;
    width: 190px;
    height: 190px;
    margin: 15px;
  }

  .hexagon-alt-two {
    width: 100%;
    padding-bottom: 100%;
  }
}

/* Fix for 1399 × 608 (Wide Screens & Small Laptops) */
@media (max-width: 1399px) and (max-height: 608px) {
  .hex-grid-alt-two {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .hexagon-wrapper-alt-two {
    transform: none !important;
    width: 200px;
    height: 200px;
    margin: 15px;
  }

  .hexagon-alt-two {
    width: 100%;
    padding-bottom: 100%;
  }
}

/* Fix for 1200 × 608 (Large Tablets & Small Desktops) */
@media (max-width: 1200px) and (max-height: 608px) {
  .hex-grid-alt-two {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .hexagon-wrapper-alt-two {
    transform: none !important;
    width: 185px;
    height: 185px;
    margin: 15px;
  }

  .hexagon-alt-two {
    width: 100%;
    padding-bottom: 100%;
  }
}

/* Fix for 1400 × 608 (Larger Screens & Small Laptops) */
@media (max-width: 1400px) and (max-height: 608px) {
  .hex-grid-alt-two {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .hexagon-wrapper-alt-two {
    transform: none !important;
    width: 205px;
    height: 205px;
    margin: 15px;
  }

  .hexagon-alt-two {
    width: 100%;
    padding-bottom: 100%;
  }
}

/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.google-map {
  border-radius: var(--border-radius-medium);
}

/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  outline: none;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-medium);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}

/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  background-color: var(--dark-color);
  position: relative;
  overflow: hidden;
  padding-bottom: 30px;
}

.site-footer-top {
  background-color: var(--secondary-color);
  background-repeat: no-repeat;
  margin-bottom: 70px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.site-footer-bottom {
  border-top: 1px solid #1f1c1c;
  margin-top: 60px;
}

.site-footer-title {
  color: var(--primary-color);
}

.site-footer-link,
.copyright-text {
  color: var(--white-color);
}

.site-footer-links {
  padding-left: 0;
}

.site-footer-link-item {
  list-style: none;
  display: inline-block;
  margin-right: 15px;
}

.copyright-text {
  font-size: var(--copyright-font-size);
}

/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 10px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.social-icon-link span {
  display: block;
}

.social-icon-link span:hover::before {
  animation: spinAround 2s linear infinite;
}

@keyframes spinAround {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 991px) {
  h1 {
    font-size: 62px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .navbar {
    background-color: var(--dark-color);
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 30px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
  }

  .hero-section {
    padding-top: 150px;
  }

  .pricing-thumb {
    padding: 35px;
  }

  .schedule-table h3 {
    font-size: 22px;
  }

  .schedule-table th {
    padding: 20px;
  }

  .schedule-table tr,
  .schedule-table td {
    padding: 25px;
  }

  .ticket-section {
    padding-top: 130px;
  }

  .ticket-form {
    padding: 30px;
  }
}

@media screen and (max-width: 767px) {
  .custom-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }
}

/* Background Styling */
.pricing-section {
  position: relative;
  background: linear-gradient(to bottom, #070707, #122851);
  overflow: hidden;
}

/* Subtle Starry Background */
.pricing-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("https://www.transparenttextures.com/patterns/stardust.png"); /* Subtle Stars */
  opacity: 0.2;
  z-index: 0;
}

/* Floating Glow Effects */
.pricing-section::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 10%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  opacity: 0.3;
  filter: blur(150px);
}

/* Card Styling */
.pricing-thumb {
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
}

.pricing-thumb:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Heading */
h2.text-center {
  color: #000000;
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 0 0 10px rgb(0, 0, 0);
}

/* Links */
.link-fx-1 {
  color: #ffcc00;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.link-fx-1:hover {
  color: #ffffff;
}

/* SVG Icon Effects */
.icon {
  stroke: #ffcc00;
  transition: stroke 0.3s ease;
}

.link-fx-1:hover .icon {
  stroke: #ffffff;
}

/* spons  */

.pricing-section-spons {
  position: relative;
  background: linear-gradient(to bottom, #122851, #070707);
  overflow: hidden;
}

/* Subtle Starry Background */
.pricing-section-spons::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("https://www.transparenttextures.com/patterns/stardust.png"); /* Subtle Stars */
  opacity: 0.2;
  z-index: 0;
}

/* Floating Glow Effects */
.pricing-sectio-spons::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 10%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  opacity: 0.3;
  filter: blur(150px);
  rotate: 180deg;
}

/* footer */

.falling-stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1; /* Ensure it's above other elements */
}

.star {
  position: absolute;
  width: 4px;
  height: 4px;
  background: white;
  border-radius: 50%;
  opacity: 0.8;
  animation: fall linear infinite;
}

@keyframes fall {
  from {
    transform: translate(100vw, -10vh);
    opacity: 1;
  }
  to {
    transform: translate(-10vw, 100vh);
    opacity: 0;
  }
}
