* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", serif;
  overflow-y: hidden;
  overflow-x: hidden;
}

@media (max-width: 1024px) {
  * {
    font-family: "Roboto", sans-serif;
  }
}

@media (max-width: 1024px) {
  * {
    font-family: "Roboto", sans-serif;
  }
}

html {
  overflow-y: scroll !important;
  overflow-x: hidden;
}

/* Scrollbar */

::-webkit-scrollbar {
  width: 0.5vw;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb {
  background: black;
  border: 0.125vw solid rgba(0, 0, 0, 0.2) !important;
  border-radius: 0.625vw;
}

::-webkit-scrollbar-thumb:hover {
  background: #fff;
  cursor: pointer;
}

/* header */
header,
header .navbar,
header .navbar ul,
header .navbar ul li {
  overflow: visible !important;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  width: 100vw;
  height: 10vh;
  box-shadow: 0 0.3vw 0.6vw rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease-in-out;
}

.hidden {
  transform: translateY(-100%);
}

nav {
  height: 100%;
}

header .navbar .nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4vw;
  list-style-type: none;
  height: 100%;
  margin: 0;
  padding: 0;
}

header .navbar .nav-menu li {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

header .navbar .nav-menu li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 1vw;
}

header .navbar .nav-menu li a:hover {
  color: darkred;
}

/* Dropdown Styles */
header .dropdown {
  position: relative;
  overflow: visible;
}

header .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  border-radius: 0 0 0.3vw 0.3vw;
  display: none;
  width: 10vw;
  z-index: 1000;
  margin: 0;
  padding: 0;
}

header .dropdown-menu li {
  width: 100%;
  list-style: none;
  padding: 0.5vw;
  white-space: nowrap;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

header .dropdown-menu li a {
  width: 100%;
  text-align: center;
  text-decoration: none;
  color: black;
  font-size: 1vw;
  display: block;
  padding: 1vh 0;
  transition: color 0.3s ease-in-out;
}

header .dropdown-menu li a:hover {
  color: darkred;
}

header .dropdown a {
  display: flex;
  align-items: center;
}

header .dropdown a div {
  margin-left: 0.5vw;
  transition: transform 0.3s ease-in-out;
}

@media (min-width: 1024px) {
  header .dropdown:hover .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    gap: 0;
    height: auto !important;
  }

  header .dropdown:hover a div {
    transform: rotate(180deg);
  }
}

.aboutToggle {
  display: flex !important;
  flex-direction: column;
  gap: 0;
  height: auto !important;
}

.rotateArrow {
  transform: rotate(180deg);
}

/* Logos */
header .acmLogo {
  height: 7vh;
  width: 7vh;
  margin-left: 3vw;
  cursor: pointer;
}

header .tiuLogo {
  height: 7vh;
  width: 7vh;
  margin-left: 1vw;
  cursor: pointer;
}

header .technoLogo {
  height: 5vh;
  width: 35vh;
  margin-right: auto;
  margin-left: 1vw;
  cursor: pointer;
}

/* Register Button */
header nav .reg {
  font-size: 1.1vw;
  font-weight: 700 !important;
  color: #fff !important;
  background-color: rgb(255, 35, 35) !important;
  padding: 1.55vh 2.25vw;
  margin-right: 4vw;
  border-radius: 0.25vw;
  transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out,
    box-shadow 0.5s ease-in-out;
}

header nav .reg:hover {
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}

header nav .active {
  color: rgb(255, 35, 35) !important;
}

/* Hamburger Menu Styles */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-right: 1vw;
}

.hamburger span {
  height: 2px;
  width: 20px;
  background: #000;
  margin: 2px 5px;
  transition: all 0.3s;
}

/* Tablet styles: Devices between 769px and 1024px */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  header {
    height: 10vh;
    padding: 0 4vw;
  }

  header .acmLogo,
  header .tiuLogo {
    height: 6vh;
    width: 6vh;
    margin-left: 2vw;
  }

  header .technoLogo {
    height: 4.5vh;
    width: auto;
  }

  header .navbar .nav-menu {
    gap: 2vw;
  }

  header .navbar .nav-menu li a {
    font-size: 1.5vw;
  }

  header nav .reg {
    font-size: 1.5vw;
    padding: 1vh 2vw;
  }

  header .dropdown-menu {
    width: 20vw;
  }
}

/* Mobile styles: Devices up to 1024px */
@media screen and (max-width: 1024px) {
  header {
    flex-direction: row;
    height: auto;
    padding: 1vh 2vw;
  }

  /* Show hamburger and hide nav-menu initially */
  .hamburger {
    display: flex;
  }

  header .navbar .nav-menu {
    display: none;
    position: absolute;
    top: 6.5vh;
    /* Adjust based on header height */
    right: 0;
    flex-direction: column;
    gap: 2vw;
    width: 40%;
    height: auto;
    background-color: #ffffff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
    z-index: 999;
  }

  .navbar .nav-menu.active {
    display: flex;
  }

  /* Adjust logos for mobile */
  header .acmLogo,
  header .tiuLogo {
    height: 4vh;
    width: 4vh;
    margin-left: 2vw;
  }

  header .acmLogo {
    margin-right: -5vw;
  }

  header .tiuLogo {
    margin-left: auto;
  }

  header .technoLogo {
    height: 2.5vh;
    width: auto;
    margin: 1vh auto;
    margin-left: 2vw;
    display: block;
  }

  /* Center nav items and adjust spacing */
  header .navbar .nav-menu li {
    width: 100%;
    text-align: center;
    padding: 1vh 0;
  }

  header .navbar .nav-menu li a {
    font-size: 3vw;
    font-weight: 400;
  }

  /* Adjust register button for mobile */
  header nav .reg {
    font-size: 3vw;
    padding: 0.8vh 6vw;
    border-radius: 0.5vw;
    margin: 1vh auto;
  }

  /* Dropdown adjustments */
  header .dropdown-menu {
    width: 40vw;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Base Styles */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90vh;
  margin: 0;
  width: 100vw;
  padding: 0 5vw;
  padding-bottom: 10vh;
  position: relative;
}

.hero .leftSection {
  position: relative;
  z-index: 10;
  height: 100%;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.hero .leftSection .p1 {
  font-size: 1.6vw;
  font-weight: 600;
  margin-top: 16vh;
  margin-bottom: 0;
  color: white;
}

.hero .leftSection .p2 {
  font-size: 3.1vw;
  font-weight: 700;
  line-height: 1.25;
  margin-top: 1vh;
  margin-bottom: 1vh;
  position: relative;
  height: 28vh;
  width: 100%;
  color: white;
}

.hero .leftSection .p2 #parentSpan {
  display: flex;
  flex-direction: column;
  height: 13vw;
  overflow: hidden;
  position: relative;
  left: 15.75vw;
  bottom: 3.8vw;
}

.hero .leftSection .p2 #parentSpan .span {
  display: block;
  width: 100%;
  position: absolute;
  opacity: 0;
  transform: translateY(100%);
  animation: text-slide 10s infinite;
  color: red;
}

.hero .leftSection .p2 #parentSpan .span:nth-child(1) {
  animation-delay: 0s;
}

.hero .leftSection .p2 #parentSpan .span:nth-child(2) {
  animation-delay: 2s;
}

.hero .leftSection .p2 #parentSpan .span:nth-child(3) {
  animation-delay: 4s;
}

.hero .leftSection .p2 #parentSpan .span:nth-child(4) {
  animation-delay: 6s;
}

.hero .leftSection .p2 #parentSpan .span:nth-child(5) {
  animation-delay: 8s;
}

@keyframes text-slide {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }

  5% {
    opacity: 1;
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    transform: translateY(0);
  }

  25% {
    opacity: 0;
    transform: translateY(-100%);
  }

  100% {
    opacity: 0;
    transform: translateY(-100%);
  }
}

.hero .leftSection .p3 {
  font-size: 1.35vw;
  font-weight: 600;
  margin-top: 1vh;
  margin-bottom: 2vh;
  color: white;
}

.hero .leftSection .regLearn {
  height: 10vh;
  display: flex;
  align-items: center;
}

.hero .leftSection .reg {
  color: #fff !important;
  background-color: rgb(255, 35, 35) !important;
  padding: 1.55vh 2.25vw;
  margin-right: 4vw;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  border-radius: 0.25vw;
}

.hero .leftSection .reg:hover {
  box-shadow: 2px 2px 5px white;
}

.hero .leftSection .learnMore {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  border: 1px solid white;
  padding: 1.5vh 1.25vw;
  border-radius: 0.3vw;
  margin-right: 1vw;
  transition: all 0.25s ease-in-out;
}

.hero .leftSection .learnMore:hover {
  border: 1px solid red;
}

.hero .learnMoreContent {
  position: fixed;
  top: 12vh;
  left: 20vw;
  z-index: 1000;
  width: 60vw;
  height: max-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: white;
  border-radius: 0.5vw;
  padding: 4vh 2.5vw;
  /* transform: translateY(100%); */
  transition: transform 0.3s ease-in-out;
  display: none;
}

.overlay-learn-more {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.learn-more-close {
  position: absolute;
  top: 2vh;
  right: 1vh;
  width: 3vh;
  height: 3vh;
  cursor: pointer;
}

.display {
  display: flex;
}

.hero .learnMoreContent h1 {
  font-size: 2.5vw;
  font-weight: bold;
  margin-bottom: 2vh;
  text-align: center;
}

.hero .learnMoreContent p {
  font-size: 1.15vw;
  line-height: 2;
  margin-bottom: 2vh;
}

.hero .background-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero .bg-img {
  position: absolute;
  top: 10vh;
  width: 100vw;
  height: 80vh;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero .bgActive {
  opacity: 1;
}

.hero .overlay {
  position: absolute;
  top: 10vh;
  left: 0;
  width: 100vw;
  height: 80vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 5;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    height: auto;
    padding-top: 5vh;
    padding-bottom: 5vh;
  }

  .hero .leftSection {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .hero .leftSection .p1 {
    font-size: 2vw;
    margin-top: 10vh;
  }

  .hero .leftSection .p2 {
    font-size: 4vw;
    height: auto;
    margin: 2vh 0;
  }

  .hero .leftSection .p2 #parentSpan {
    left: 0;
    bottom: 0;
    height: auto;
  }

  .hero .leftSection .p3 {
    font-size: 1.75vw;
  }

  .hero .leftSection .regLearn {
    flex-direction: column;
    gap: 1vh;
    height: auto;
  }

  .hero .leftSection .reg,
  .hero .leftSection .learnMore {
    margin: 0;
    text-align: center;
    padding: 1.5vh;
  }

  .hero .learnMoreContent {
    /* top: 5vh; */
    left: 10%;
    width: 80%;
    padding: 3vh 2vw;
    border-radius: 1vw;
  }

  .hero .learnMoreContent h1 {
    font-size: 3vw;
  }

  .hero .learnMoreContent p {
    font-size: 1.5vw;
  }

  .hero .bg-img {
    top: 0;
    height: 60vh;
  }

  .hero .overlay {
    top: 0;
    height: 60vh;
  }
}

/* Mobile Styles */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    height: auto;
    padding-bottom: 5vh;
  }

  .hero .leftSection {
    width: 100%;
    align-items: flex-start;
    text-align: left;
    padding: 2vh;
  }

  .hero .leftSection .p1 {
    font-size: 4vw;
    margin-top: 8vh;
    color: red;
    text-align: left;
  }

  .hero .leftSection .p2 {
    font-size: 6vw;
    margin: 2vh 0;
    height: auto;
    font-weight: 400;
    text-align: left;
  }

  .hero .leftSection .p2 br {
    display: none;
  }

  .hero .leftSection .p2 #parentSpan {
    left: 0;
    bottom: 0;
    height: 4vh;
    margin-top: 2px;
    font-weight: 600;
  }

  .hero .leftSection .p3 {
    font-size: 3.5vw;
    width: 80%;
    font-weight: 400;
    text-align: left;
  }

  .hero .leftSection .regLearn {
    flex-direction: row;
    gap: 2vw;
  }

  .hero .leftSection .reg,
  .hero .leftSection .learnMore {
    height: 4.5vh;
    width: 25vw;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3.5vw;
    font-weight: 600;
    border-radius: 0.5vw;
    margin: 1vh 0;
  }

  .hero .leftSection .learnMore {
    font-size: 2.7vw;
    font-weight: 400;
  }

  .hero .learnMoreContent {
    /* top: -62vh; */
    left: 5%;
    width: 90%;
    padding: 3vh 2vw;
    border-radius: 1vw;
  }

  .hero .learnMoreContent h1 {
    font-size: 6vw;
  }

  .hero .learnMoreContent p {
    font-size: 3.5vw;
  }

  .hero .bg-img {
    top: 0;
    height: 100%;
  }

  .hero .overlay {
    top: 0;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
  }
}

/* ESP Event Countdown Section */
.esp-countdown-section {
    width: 95%;
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    /* transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); */
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); */
    margin: 20px auto;
    /* border: 1px solid rgba(0, 0, 0, 0.1); */
}

.esp-countdown-section:hover {
    transform: translateY(0px);
    /* box-shadow: 0 10px 30px rgba(255, 35, 35, 0.2); */
}

/* Decorative overlay */
.esp-countdown-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 35, 35, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 35, 35, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

/* Container Layout */
.countdown-container {
    position: relative;
    display: grid;
    grid-template-columns: 580px 1fr;
    gap: 50px;
    padding: 50px;
    align-items: center;
    z-index: 1;
}

/* Poster Section */
.poster-section {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.esp-countdown-section:hover .poster-section {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.poster-section img {
    width: 100%;
    height: auto;
    display: block;
}

/* Event Badge */
.event-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgb(255, 35, 35);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 35, 35, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: pulse-badge 2.5s ease-in-out infinite;
}

.event-badge i {
    color: #ffffff;
}

@keyframes pulse-badge {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 4px 15px rgba(255, 35, 35, 0.4);
    }
    50% { 
        transform: scale(1.08); 
        box-shadow: 0 6px 20px rgba(255, 35, 35, 0.6);
    }
}

/* Content Section */
.content-section {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

/* Event Info */
.event-info {
    text-align: center;
}

.event-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.event-subtitle {
    font-size: 1.2rem;
    color: #666666;
    font-weight: 500;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
}

/* Countdown Wrapper */
.countdown-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Header */
.header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.calendar-icon i {
    font-size: 2.5rem;
    color: rgb(255, 35, 35);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.header-text {
    font-size: 2rem;
    color: #000000;
    font-weight: 700;
}

/* Countdown Timer */
.countdown {
  padding: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.time {
    background: #ffffff;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 25px 30px;
    min-width: 110px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.time::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 35, 35, 0.1), transparent);
    transition: left 0.6s;
}

.time:hover::before {
    left: 100%;
}

.time:hover {
    background: #ffffff;
    transform: translateY(-6px) scale(1.05);
    border-color: rgb(255, 35, 35);
    box-shadow: 0 8px 20px rgba(255, 35, 35, 0.2);
}

.time span {
    display: block;
}

#days, #hours, #minutes, #seconds {
    font-size: 2.8rem;
    font-weight: 800;
    color: rgb(255, 35, 35);
    margin-bottom: 8px;
    font-variant-numeric: tabular-nums;
}

.label {
    font-size: 1rem;
    color: #666666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Event Details */
.event-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #000000;
    font-size: 1.1rem;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.detail-item:hover {
    transform: translateY(-3px);
}

.detail-item i {
    font-size: 1.5rem;
    color: rgb(255, 35, 35);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .countdown-container {
        grid-template-columns: 350px 1fr;
        gap: 40px;
        padding: 40px;
    }

    .event-title {
        font-size: 2.2rem;
    }

    #days, #hours, #minutes, #seconds {
        font-size: 2.5rem;
    }
}

@media (max-width: 1024px) {
    .countdown-container {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 35px;
    }

    .poster-section {
        max-width: 450px;
        margin: 0 auto;
    }

    .event-title {
        font-size: 2rem;
    }

    .header-text {
        font-size: 1.8rem;
    }

    .calendar-icon i {
        font-size: 2.2rem;
    }

    .event-details {
        gap: 30px;
    }

    #days, #hours, #minutes, #seconds {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .countdown-container {
        padding: 30px 20px;
        gap: 30px;
    }

    .poster-section {
        max-width: 100%;
    }

    .event-title {
        font-size: 1.7rem;
    }

    .event-subtitle {
        font-size: 1.05rem;
    }

    .calendar-icon i {
        font-size: 2rem;
    }

    .header-text {
        font-size: 1.6rem;
    }

    .countdown {
        gap: 15px;
    }

    .time {
        padding: 20px 25px;
        min-width: 95px;
    }

    #days, #hours, #minutes, #seconds {
        font-size: 2rem;
    }

    .label {
        font-size: 0.9rem;
    }

    .event-details {
        gap: 25px;
        flex-direction: column;
        align-items: center;
    }

    .detail-item {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .countdown-container {
        padding: 25px 15px;
    }

    .event-title {
        font-size: 1.4rem;
    }

    .event-subtitle {
        font-size: 0.95rem;
    }

    .calendar-icon i {
        font-size: 1.5rem;
        display: none;
    }

    .header-text {
        font-size: 1.5rem;
    }

    .countdown {
        gap: 12px;
    }

    .time {
        padding: 15px 20px;
        min-width: 75px;
    }

    #days, #hours, #minutes, #seconds {
        font-size: 1.5rem;
    }

    .label {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .detail-item {
        font-size: 0.95rem;
    }

    .detail-item i {
        font-size: 1.3rem;
    }

    .event-badge {
        font-size: 0.75rem;
        padding: 8px 15px;
        top: 15px;
        right: 15px;
    }
}

/* Why Section */

.Why {
  text-align: left;
  padding: 2vh 5vw;
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-top: 3vh;
  padding-bottom: 12vh;
}

.Why .content {
  width: 50%;
}

.Why .content h2 {
  font-size: 3vw;
  font-weight: bold;
  margin-bottom: 5vh;
  text-align: center;
}

.Why .content p {
  font-size: 1.15vw;
  line-height: 2;
  margin-bottom: 2vh;
  color: black;
}

.Why .cards {
  width: 50%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 1.75vw;
  padding: 2vh 2.5vw;
  transform: translateY(11vh);
}

.Why .card {
  width: 17.5vw;
  height: 16vw;
  background: white;
  padding: 2vh 1vw;
  border-radius: 0.5vw;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.Why .card:hover {
  transform: translateY(-5px);
}

.Why .icon img {
  width: 7vw;
  height: 7vw;
  margin-bottom: 1vh;
  object-fit: cover;
}

.Why .content u {
  text-decoration: none;
}

.Why h3 {
  font-size: 1vw;
  margin-bottom: 1vh;
}

.Why p {
  font-size: 0.8vw;
  color: #666;
}

.our-vision {
  flex-direction: row-reverse;
  margin-top: 2vh;
}

.our-vision .cards {
  justify-content: center;
  align-items: center;
  gap: 2vw;
}

.our-vision .cards .card:nth-of-type(1),
.our-vision .cards .card:nth-of-type(4) {
  width: 18vw;
  height: 17.5vw;
  box-shadow: -4px 8px 10px rgba(0, 0, 0, 0.2);
}

.our-vision .cards .card:nth-of-type(2),
.our-vision .cards .card:nth-of-type(3) {
  width: 12vw;
  height: 20vh;
  margin: 0 1vw;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.25);
  padding: 0;
}

.our-vision .cards .card:nth-of-type(2)>img,
.our-vision .cards .card:nth-of-type(3)>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.previous-events .card {
  width: 12.5vw;
  height: 12.5vw;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  border-radius: 0.5vw;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.previous-events .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5vw;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .Why {
    flex-direction: column;
    align-items: center;
    padding: 2vh 5vw;
    margin-top: 10vh;
  }

  .Why .content {
    width: 100%;
    text-align: center;
  }

  .Why .content h2 {
    font-size: 4vw;
    margin-bottom: 2vh;
  }

  .Why .content p {
    font-size: 2vw;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 3vh;
  }

  .Why .cards {
    width: 100%;
    gap: 2vw;
    transform: translateY(0);
  }

  .Why .card {
    width: 20%;
    height: auto;
    padding: 2vh 1vw;
    margin-bottom: 2vh;
  }

  .Why .card img {
    width: 100%;
    height: 50%;
    object-fit: cover;
  }

  .Why h3 {
    font-size: 1.75vw;
    margin-bottom: 1vh;
  }

  .Why p {
    font-size: 1.25vw;
    color: #666;
  }

  .previous-events .card {
    width: 20vw;
    height: 20vw;
  }

  .previous-events .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5vw;
  }
}

/* Mobile styles */
@media (max-width: 1024px) {
  .Why {
    flex-direction: column;
    align-items: center;
    padding: 2vh 7vw;
    margin-top: 5vh;
  }

  .Why .content {
    width: 100%;
    text-align: center;
  }

  .Why .content h2 {
    font-size: 7vw;
    margin-bottom: 2vh;
    text-align: left;
  }

  .Why .content p {
    font-size: 3.5vw;
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 4vh;
    text-align: left;
  }

  .Why .cards {
    width: 100%;
    justify-content: space-between;
    align-items: center;
    transform: translateY(0);
  }

  .Why .card {
    width: 47%;
    height: 65vw;
    padding: 2vh 2vw;
    margin-bottom: 2vh;
  }

  .our-vision .cards .card:nth-of-type(1),
  .our-vision .cards .card:nth-of-type(4) {
    width: 39vw;
    height: 70vw;
    box-shadow: -2px 4px 5px rgba(0, 0, 0, 0.2);
  }

  .our-vision .cards .card:nth-of-type(2),
  .our-vision .cards .card:nth-of-type(3) {
    display: none;
    width: 35vw;
    height: 35vw;
    margin: 0 1vw;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.25);
    padding: 0;
    border-radius: 10px;
  }

  .Why h3 {
    font-size: 2.75vw;
    margin-bottom: 1.5vh;
  }

  .Why p {
    font-size: 2.35vw;
    color: #464646;
  }

  .previous-events .card {
    width: 45vw;
    height: 45vw;
  }

  .previous-events .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5vw;
  }
}

/* Limited Time */

.bannerLimitedTime {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  text-align: center;
  margin: 20vh 0;
  height: 30vh !important;
  width: 100vw;
  background-color: #0d1128;
  color: #fff;
}

.bannerLimitedTime h1 {
  font-size: 2.5vw;
  font-weight: 600;
  margin-bottom: 3.5vh;
  color: #fff;
}

.bannerLimitedTime .reg {
  color: #fff !important;
  background-color: rgb(255, 35, 35) !important;
  padding: 1.55vh 2.25vw;
  text-decoration: none;
  margin-bottom: 7vh;
  font-weight: 600;
  border-radius: 0.25vw;
  transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out,
    box-shadow 0.5s ease-in-out;
}

.bannerLimitedTime .reg:hover {
  box-shadow: 5px 5px 10px rgba(255, 255, 255, 0.5);
}

/*Tablet Style */
@media (max-width: 1024px) {
  .bannerLimitedTime {
    height: 50vh !important;
    padding: 0 5vw;
  }

  .bannerLimitedTime h1 {
    font-size: 4vw;
    margin-bottom: 2vh;
  }

  .bannerLimitedTime .reg {
    height: 4.5vh;
    width: 25vw;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3.5vw;
    font-weight: 600;
    border-radius: 0.5vw;
    margin: 1vh 0;
  }
}

/* Mobile Style */
@media (max-width: 1024px) {
  .bannerLimitedTime {
    height: 20vh !important;
    padding: 0 5vw;
    margin: 3vh 0;
  }

  .bannerLimitedTime h1 {
    font-size: 5vw;
    margin-bottom: 2vh;
  }

  .bannerLimitedTime .reg {
    font-size: 4vw;
    padding: 2vh 4vw;
    margin-bottom: 5vh;
  }
}

/* gallery */

.gallery {
  overflow: hidden;
  /* Hide images outside the container */
  padding: 0;
  background-color: #f2f2f2;
  padding-top: 10vh;
  margin-top: 10vh;
}

.gallery h2 {
  font-size: 3vw;
  font-weight: 700;
  margin-bottom: 2vh;
}

.gallery .row {
  overflow: hidden;
  padding-bottom: 1vh;
  background-color: #0d1128;
}

.gallery .row .track {
  width: max-content;
  display: flex;
  flex-wrap: wrap;
  /* Set a long duration for a slow, smooth scroll */
  animation: slide 60s linear infinite;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }

  to {
    /* Moves left by 50% of the total track width, which equals the width of the original set */
    transform: translateX(-50%);
  }
}

.gallery .row img {
  width: 30vw !important;
  height: 30vh !important;
  object-fit: cover;
  /* Optional: add spacing between images */
  margin-right: 0.5vw;
}

/* mobile style */
@media (max-width: 1024px) {
  .gallery {
    padding-top: 6vh;
    margin-top: 0vh;
  }

  .gallery .row img {
    width: 45vh !important;
    height: 45vw !important;
    object-fit: cover;
    margin-right: 0.5vw;
  }

  .gallery .row .track {
    animation: slide 50s linear infinite;
  }
}

/* Team Members */
/* Base Styles */
.team-members-sidebar {
  padding: 10vh 2vw;
  text-align: center;
  margin-bottom: 2vh;
}

.team-members-sidebar .heading-wrapper {
  margin-bottom: 2vh;
}

.team-members-sidebar .heading {
  font-size: 3vw;
  font-weight: 700;
  color: #000;
}

.team-members-sidebar .carousel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 90vw;
  height: 50vh;
  margin: auto;
}

.team-members-sidebar .carousel {
  display: flex;
  gap: 1vw;
  overflow: hidden;
  /* Hides the scrollbar */
  scroll-behavior: smooth;
  width: 95%;
  /* Ensures proper sizing */
  height: 85%;
  align-items: center;
}

.team-members-sidebar .card {
  height: 38vh;
  width: 33vw;
  display: flex;
  align-items: end;
  position: relative;
  /* For positioning child elements */
  flex-shrink: 0;
  /* Prevents shrinking */
  overflow: hidden;
  /* Ensures no content overflows */
}

.team-members-sidebar .card img {
  width: 10vw;
  height: 10vw;
  border-radius: 50%;
  position: absolute;
  top: 7vh;
  right: 1.5vw;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  object-fit: cover;
  z-index: 1000;
  transform: translateY(27.5%);
}

.team-members-sidebar .card .des {
  background-color: #fff;
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.2);
  height: max-content;
  width: 32vw;
  padding: 0 2.5vw 5vw;
  margin-bottom: 1.5vh;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transition: all 0.2s ease-in-out;
}

.team-members-sidebar .card:hover .des {
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}

.team-members-sidebar .card-title {
  font-size: 1.5vw;
  font-weight: bold;
  margin-top: 10vh;
}

.team-members-sidebar .card-description {
  font-size: 1vw;
  margin-top: 1vh;
  /* Space between title and description */
  text-align: left;
  line-height: 1.5;
}

.team-members-sidebar .carousel-btn {
  background-color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 10000;
  margin-top: 5vh;
}

.team-members-sidebar .carousel-btn.prev {
  position: absolute;
  left: 1vw;
}

.team-members-sidebar .carousel-btn.next {
  position: absolute;
  right: 1vw;
}

.team-members-sidebar .carousel-btn:hover {
  background-color: #ccc;
}

.team-members-sidebar .members-btn {
  margin-top: 20vh !important;
  color: #000;
  font-size: 1.25vw;
  padding: 0.8vw 1.5vw;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
}

.team-members-sidebar .members-btn:hover {
  border: 1px solid red;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .team-members-sidebar {
    padding: 4vh 1vw;
  }

  .team-members-sidebar .heading {
    font-size: 4vw;
  }

  .team-members-sidebar .carousel-container {
    width: 95vw;
    height: 450px;
  }

  .team-members-sidebar .carousel {
    gap: 2vw;
    height: 80%;
  }

  .team-members-sidebar .card {
    height: 90%;
    width: 40vw;
    padding: 5px;
  }

  .team-members-sidebar .card img {
    width: 12vw;
    height: 12vw;
    top: 6vh;
    right: 2vw;
    transform: translateY(20%);
  }

  .team-members-sidebar .card .des {
    width: 38vw;
    height: 90%;
    padding: 0 3vw 4vw;
  }

  .team-members-sidebar .card-title {
    font-size: 2.5vw;
    margin-top: 8vh;
  }

  .team-members-sidebar .card-description {
    font-size: 1.5vw;
  }

  .team-members-sidebar .carousel-btn {
    width: 35px;
    height: 35px;
  }

  .team-members-sidebar .members-btn {
    margin-top: 15vh;
    font-size: 2vw;
    padding: 1vw 2vw;
  }
}

/* Mobile Styles */
@media (max-width: 1024px) {
  .team-members-sidebar {
    padding: 6vh 4vw;
  }

  .team-members-sidebar .heading {
    font-size: 5vw;
  }

  .team-members-sidebar .carousel-container {
    width: 100vw;
    height: 180px;
  }

  .team-members-sidebar .carousel {
    margin-top: 2vh;
    gap: 3vw;
    height: 100%;
    padding: 0 4vw;
  }

  .team-members-sidebar .card {
    height: 90%;
    width: 70vw;
  }

  .team-members-sidebar .card img {
    width: 18vw;
    height: 18vw;
    top: 2.5vh;
    right: 3vw;
    transform: translateY(15%);
  }

  .team-members-sidebar .card .des {
    width: 68vw;
    padding: 0 4vw 4vw;
  }

  .team-members-sidebar .card-title {
    font-size: 4vw;
    margin-top: 5vh;
  }

  .team-members-sidebar .card-description {
    font-size: 2.5vw;
  }

  .team-members-sidebar .carousel-btn {
    width: 30px;
    height: 30px;
    margin-top: 0;
  }

  .team-members-sidebar .members-btn {
    margin-top: 10vh;
    font-size: 3vw;
    font-weight: 600;
    padding: 2.5vw 3.5vw;
    border: 1px solid rgba(0, 0, 0, 0.5);
  }

  .team-members-sidebar .carousel-btn.next {
    right: 8vw;
  }

  .team-members-sidebar .carousel-btn {
    display: none;
  }
}

/* Footer */
/* Base Footer Styles */
.footer {
  background-color: #0d1128;
  color: #fff;
  padding: 15vh 10vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: auto;
  flex-wrap: wrap;
}

.footer-column {
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: center;
  width: max-content;
  margin-bottom: 2vh;
}

.footer-column:nth-last-of-type(1) {
  align-items: flex-end;
}

.footer-column:nth-last-of-type(1)>div {
  width: 100%;
  display: flex;
  justify-content: center !important;
}

.footer-column .title {
  font-size: 1.5vw;
  font-weight: 500;
  margin-bottom: 1.5vh;
  margin-top: 5vh;
  color: #fff;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer-column a {
  text-decoration: none;
  color: #fff;
  margin-bottom: 1vh;
  font-size: 1vw;
  font-weight: 400;
  transition: color 0.3s ease;
}

.footer-column:nth-of-type(1) .title {
  font-size: 2vw;
}

.footer-column:nth-of-type(1) a {
  font-size: 1.5vw;
}

.footer-column .social-icons {
  display: flex;
  gap: 10px;
  margin-top: 0;
  color: #fff;
}

.footer-column .social-icons img {
  width: 28px;
  height: 28px;
  cursor: pointer;
  transition: transform 0.3s ease;
  filter: invert(1);
}

.footer-column .social-icons img:hover {
  transform: scale(1.1);
}

.footer-column .title .svg {
  width: 100%;
  height: auto;
  margin-right: 0.5vw;
  margin-bottom: 1vh;
}

.footer-column .title .logo,
.footer-column .title .acmlogo {
  width: 5vw;
  margin-right: 0.5vw;
}

.footer-column .title .name {
  filter: invert(1);
}

.footer-column .email,
.footer-column .address {
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  color: #fff;
  margin: 0.5vh 0.25vw;
}

.footer-column .email i,
.footer-column .address i {
  font-size: 1.5vw;
  margin-right: 0.5vw;
  margin-top: 0.5vh;
  color: #fff;
}

#map {
  width: 90%;
  height: 40vh;
  margin-top: 4vh;
}

#map * {
  overflow: visible !important;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .footer {
    padding: 12vh 8vw;
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    width: 100%;
    align-items: center;
  }

  .footer-column:nth-last-of-type(1) {
    align-items: center;
  }

  .footer-column .title {
    font-size: 2.5vw;
    margin-top: 4vh;
    justify-content: center;
  }

  .footer-column a {
    font-size: 1.75vw;
  }

  .footer-column:nth-of-type(1) .title {
    font-size: 3vw;
  }

  .footer-column:nth-of-type(1) a {
    font-size: 2vw;
  }

  .footer-column .social-icons img {
    width: 32px;
    height: 32px;
  }

  .footer-column .title .logo,
  .footer-column .title .acmlogo {
    width: 7vw;
  }

  .footer-column .email i,
  .footer-column .address i {
    font-size: 2vw;
  }

  #map {
    width: 95%;
    height: 35vh;
    margin-top: 3vh;
  }
}

/* Mobile Styles */
@media (max-width: 1024px) {
  .footer {
    padding: 8vh 4vw;
    flex-direction: column-reverse;
    align-items: center;
    text-align: start;
  }

  .footer-column {
    width: 90%;
    align-items: center;
  }

  .footer-column .title {
    font-size: 5vw;
    margin-top: 3vh;
    justify-content: center;
  }

  .footer-column a {
    font-size: 3vw;
    font-weight: 300;
  }

  .footer-column:nth-of-type(1) .title {
    font-size: 5vw;
  }

  .footer-column:nth-of-type(1) a {
    font-size: 4vw;
  }

  .footer-column .social-icons {
    justify-content: center;
  }

  .footer-column .social-icons img {
    width: 24px;
    height: 24px;
  }

  .footer-column .title .logo,
  .footer-column .title .acmlogo {
    width: 15vw;
  }

  .footer-column .email i,
  .footer-column .address i {
    font-size: 4vw;
  }

  #map {
    width: 80%;
    height: 25vh;
    margin-top: 3vh;
  }
}

.openInPC {
  display: none;
}

@media (max-width: 1024px) {
  .openInPC {
    display: block;
    color: #000;
    font-size: 1.5vw;
    font-weight: 600;
    text-align: center;
    background-color: #cfff41;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000000;
  }
}