@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');
@import url(home-section.css);
@import url(about-section.css);
@import url(events-section.css);
@import url(speakers.css);
@import url(sponsors-section.css);
@import url(venue-section.css);
@import url(footer.css);
@import url(../events/eventstyles.css);

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  outline: none;
  scroll-behavior: smooth;
  font-family: 'Orbitron', Arial, Poppins;
}

:root {
  --bg-color: #0d0d0d;
  --snd-bf-color: #141414;
  --text-color: #fff;
  --main-color: #59B2F4;
  --text-color-2: hsla(40, 22%, 92%, .6);
  --red: #f31616;
}

/*main starts here*/

html {
  overflow-x: hidden;
}

body {
  background: var(--bg-color);
  color: var(--text-color);
}

section {
  min-height: 100vh;
  padding: 30px;
  padding-top: 50px;
  padding-bottom: 75px;
}

@font-face {
  font-family: 'Zuume Black';
  font-style: normal;
  font-weight: normal;
  src: local('Zuume Black'), url('../fonts/Zuume\ Black.woff') format('woff');
}


.heading {
  background-clip: text;
  -webkit-background-clip: text;
  background-image: url(https://media2.giphy.com/media/HkEDr0jVekaZO/giphy.gif);
  /* Fixed the URL */
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  /* Ensure image covers text area */
  color: transparent;
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1.1;
  /* Ensure enough height for text */
  font-family: 'Zuume Black', sans-serif;
  /* Correct font family */
  text-align: center;
  text-transform: capitalize;
  /* Added padding for better visual spacing */
  width: fit-content;
  /* Adjust width to fit content */
}

.other-sponsers {
  font-family: 'Zuume Black', sans-serif;
}

a {
  text-decoration: none;
}

.des {
  font-size: 17px;
}

/*main ends here*/


/*header starts here*/
.nav-2 {
  display: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: rgba(0, 0, 0, 0.0);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  transition: transform 0.3s ease-in-out;
  /* Smooth transition effect */
  transform: translateY(0);
  /* Start visible */

}

/*
.logo {
    display: flex;
    align-items: center;
    font-size: 2.5rem;
    color: var(--text-color);
    font-weight: 700;
    cursor: default;
}
*/

.logo-img {
  width: 600px;
  height: auto;
}

/*navbar starts here*/
.navbar {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
  gap: 35px;
  padding-right: 20px;
}

.navbar a {
  font-size: 16px;
  color: var(--text-color);
  font-weight: 700;
}

.navbar a:hover,
.navbar a.active {
  color: var(--main-color);
}

#menu-icon {
  font-size: 25px;
  color: var(--text-color);
  display: none;
}


@media (max-width: 900px) {
  .navbar {
    display: none;
  }
}

@media (max-width: 900px) {
  .nav-2 {
    display: block;
    z-index: 999;
  }

  nav {
    height: 6rem;
    width: 100vw;
    background-color: transparent;
    display: none;
    position: fixed;
    z-index: 10;
  }

  .nav-links {
    display: flex;
    list-style: none;
    width: 88vw;
    padding: 0 0.7vw;
    justify-content: space-evenly;
    align-items: center;
    text-transform: uppercase;
    position: fixed;
    background: var(--snd-bf-color);
    height: 100vh;
    width: 100%;
    flex-direction: column;
    clip-path: circle(50px at 90% -10%);
    -webkit-clip-path: circle(50px at 90% -10%);
    transition: all 1s ease-out;
    pointer-events: none;
  }

  .nav-links.open {
    clip-path: circle(1500px at 90% -10%);
    -webkit-clip-path: circle(1500px at 90% -10%);
    pointer-events: all;
  }

  .nav-links li {
    opacity: 0;
  }

  .nav-links li:nth-child(1) {
    transition: all 0.5s ease 0.2s;
  }

  .nav-links li:nth-child(2) {
    transition: all 0.5s ease 0.4s;
  }

  .nav-links li:nth-child(3) {
    transition: all 0.5s ease 0.6s;
  }

  .nav-links li:nth-child(4) {
    transition: all 0.5s ease 0.7s;
  }

  .nav-links li:nth-child(5) {
    transition: all 0.5s ease 0.8s;
  }

  .nav-links li:nth-child(6),
  .nav-links li:nth-child(7) {
    transition: all 0.5s ease 0.9s;
    margin: 0;
  }

  li.fade {
    opacity: 1;
  }

  .hamburger {
    display: block;
    position: absolute;
    cursor: pointer;
    right: 5%;
    top: 35%;
    transform: translate(-5%, -50%);
    z-index: 2;
    transition: all 0.7s ease;
  }

  .hamburger div {
    width: 30px;
    height: 3px;
    background: var(--text-color);
    margin: 5px;
    transition: all 0.3s ease;
  }

  .toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .toggle .line2 {
    width: 0;
  }

  .toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .nav-links a {
    color: var(--text-color);
  }

  .nav-links a:hover {
    color: var(--main-color);
  }

  .nav-links a.active {
    color: var(--main-color);
  }
}

/*header starts here*/

/*countdown section starts here*/
.countdown-section {
  position: relative;
  min-height: 50%;
  width: 100%;
  font-family: "Questrial", sans-serif;
  font-style: normal;
  color: var(--text-color-2);
  padding: 50px;
  padding-top: 150px;
  padding-bottom: 150px;
}

.countdown-section h1 {
  font-family: "Questrial", sans-serif;
  font-size: 70px;
  font-weight: 900;
  color: var(--text-color);
  letter-spacing: 3px;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  /* Reduced space between timer sections */
  font-size: 18px;
  /* Reduced size for the countdown */
  color: #ff0000;
  font-family: "Questrial", sans-serif;
}

.countdown div {
  text-align: center;
}

.label {
  font-size: 25px;
  /* Smaller labels to match the compact design */
  margin-top: 5px;
  font-family: "Questrial", sans-serif;
  color: var(--text-color-2);
  text-transform: uppercase;
}

.timer-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timer-value {
  font-size: 50px;
  /* Smaller font for timer values */
  color: #ff0000;
  margin-bottom: 5px;

}

@media (max-width: 1286px) {
  .countdown-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media (max-width: 768px) {
  .countdown-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .countdown-section h1 {
    font-size: 50px;
  }

  .label {
    font-size: 20px;
  }

  .timer-value {
    font-size: 35px;
  }
}

@media (max-width: 520px) {
  .countdown-section h1 {
    font-size: 35px;
    padding: 0;
  }

  .countdown-section {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .label {
    font-size: 15px;
  }

  .timer-value {
    font-size: 25px;
  }
}

/*countdown section ends here*/

/*alert starts here*/
h1 {
  text-align: center;
  margin-block-end: 2.5rem;
}

.alert-box {
  font-size: 14px;
  padding-block: 8px;
  overflow: hidden;
  user-select: none;
  --gap: 20px;
  display: flex;
  gap: var(--gap);
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999;
}

.alert-box ul {
  font-size: 14px;
  list-style: none;
  flex-shrink: 0;
  min-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--gap);
  animation: scroll 40s linear infinite;
}

.alert-box:hover ul {
  animation-play-state: paused;
}

.alert-box-li .date {
  font-size: 14px;
  font-family: "Questrial", sans-serif;
}

@keyframes scroll {
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

.alert-box .text,
.alert-box .date {
  font-weight: bold;
  font-family: "Questrial", sans-serif;
}

.alert-box .date {
  margin-inline: 4px;
}

.alert-box .alert {
  font-family: "Questrial", sans-serif;
}

.alert-box .alert-box-li::before {
  content: none;
}

.alert-box .alert-box-li::before {
  content: none;
}

.alert-box .alert-box-li .alert,
.alert-box .alert-box-li::before {
  color: #f23645;
}

.alert-box .alert-box-li .alert,
.alert-box .alert-box-li::before {
  color: #f23645;
}

/*alert ends here*/

body {
  margin: 0;
  overflow: hidden;
}

.preloader {
  position: fixed;
  z-index: 9999;
  height: 100vh;
  width: 100%;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader svg {
  position: absolute;
  top: 0;
  width: 100vw;
  height: 110vh;
  fill: #000;
}

.preloader .preloader-heading .load-text {
  font-size: 20px;
  font-weight: 200;
  letter-spacing: 15px;
  text-transform: uppercase;
  z-index: 20;
}

.load-text span {
  animation: loading 1s infinite alternate;
}

.load-text span:nth-child(1) {
  animation-delay: 0s;
}

.load-text span:nth-child(2) {
  animation-delay: 0.1s;
}

.load-text span:nth-child(3) {
  animation-delay: 0.2s;
}

.load-text span:nth-child(4) {
  animation-delay: 0.3s;
}

.load-text span:nth-child(5) {
  animation-delay: 0.4s;
}

.load-text span:nth-child(6) {
  animation-delay: 0.5s;
}

.load-text span:nth-child(7) {
  animation-delay: 0.6s;
}

.load-text span:nth-child(8) {
  animation-delay: 0.7s;
}

@keyframes loading {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* Main Content Hidden by Default */
.hero-section {
  display: none;
  text-align: center;
  margin-top: 50px;
}


@media (max-width: 768px) {
  .preloader .preloader-heading .load-text {
    letter-spacing: 10px;
  }
}

@media (max-width: 520px) {
  .preloader .preloader-heading .load-text {
    letter-spacing: 8px;
  }
}

@media (max-width: 420px) {
  .preloader .preloader-heading .load-text {
    letter-spacing: 6px;
  }
}

@media (max-width: 350px) {
  .preloader .preloader-heading .load-text {
    letter-spacing: 4px;
  }
}



/*---------Popup Window Styles--start-----------------*/
.popup-window {
  position: fixed;
  bottom: -100%;
  right: 20px;
  width: 400px;
  height: 225px;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.8),
  0 -4px 6px rgba(255, 255, 255, 0.05),
  -4px 4px 8px rgba(0, 0, 0, 0.6),
  4px 4px 8px rgba(0, 0, 0, 0.4);     
  font-family: Arial, sans-serif;
  opacity: 0; 
  transform: translateY(100px);
  transition: transform 0.5s ease, opacity 0.5s ease;
  color: var(--text-color); 
  z-index: 500;
}
.popup-window video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.popup-window.show {
  bottom: 20px;
  opacity: 1;
  transform: translateY(0);
}

.close-btn {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  font-size: 32px;
  color: var(--text-color);
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}

.close-btn:hover {
  color: var(--red);
}

.pop-up-btn{
  height: 50px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16px;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.4);
  position: relative;
  margin-top: 150px;
  margin-left: 30px;
  border: 2px solid var(--text-color);
  letter-spacing: 0.1rem;
  font-weight: 600;
  color: var(--text-color);
}
@media(max-width: 520px){
  .popup-window {
    width: 320px;
    height: 180px;
    right: 10px;
  }
  .close-btn {
    right: 10px;
    font-size: 24px;
  }
  .pop-up-btn{
    margin-top: 125px;
    margin-left: 15px;
    height: 45px;
    font-size: 14px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media(max-width: 400px){
  .popup-window {
    width: 240px;
    height: 135px;
    right: 5px;
  }
  .close-btn {
    right: 5px;
    font-size: 20px;
  }
  .pop-up-btn{
    margin-top: 85px;
    margin-left: 10px;
    height: 40px;
    font-size: 12px;
    padding-left: 12px;
    padding-right: 12px;
  }
}

/*---------Popup Window Styles--start-----------------*/

