/* General Styling */
body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background-color: #000000;
  overflow-x: hidden;
  cursor: none;
}
/* Hero section styling */
#hero {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}



/* Hero image styling */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin-left: 500px;
  scale: 0.8;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
  .hero-image {
    display: none;
  }

  #hero {
    position: relative;
    display: flex;
    flex-direction: none;
    align-items: none;
    justify-content: none;
  }
}



#map {
  height: 100%;
}

/* Add padding or margin to the body */


/* Initial styles for the black box */
.black-box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;  /* You can adjust the height of the box */
  background-color: black;
  z-index: 1000;  /* Ensures the box stays on top */
  display: none;  /* Initially hidden */
  transition: all 0.3s ease;  /* Smooth transition */
}

/* Optional: Add some styles when the box is visible */
.black-box.visible {
  display: block;  /* Show the black box when scrolled */
}

@media (max-width: 768px) {
  .black-box {
      display: none; 
  }
}




.background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Lowest layer */
  object-fit: cover;
  pointer-events: none; /* Prevents interaction with the video */
}

/* Custom Cursor */
#custom-cursor {
  width: 15px;
  height: 15px;
  border: 2px solid #ffff33;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease-out, background-color 0.3s ease;
}

/* Hide Navigation on Mobile */
@media (max-width: 768px) {
  /* Hide main navigation by default on mobile */
  nav {
    display: none; /* Hide the navigation bar by default */
}

  #custom-cursor {
    display: none;
  }



}




/* Navigation */
nav ul {
  list-style: none;
  margin: 0;
  padding: 10px 20px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  position: fixed;
  top: 30px; /* Position from the top */
  left: 50%; /* Start from the middle */
  transform: translateX(-50%); /* Adjust for the width of the element */
  align-items: center; /* Align items vertically */
  z-index: 1000;
  cursor: none;
}




nav ul li {
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 30px;
  background-color: #000000;
  box-shadow: 5px 5px 10px rgba(162, 14, 14, 0.2), -5px -5px 10px rgba(255, 255, 255, 0.3);
  transition: color 0.3s ease, text-shadow 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  cursor: none;
}

/* Hover effect with bubble animation */
nav ul li a:hover {
  color: #ffcc00;
  text-shadow: 0 0 8px rgba(255, 204, 0, 0.7), 0 0 20px rgba(255, 204, 0, 0.5);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3), -5px -5px 15px rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
  animation: bubble 0.6s ease-in-out;
}


/* Highlight the active page */
nav ul li a.active {
  color: #ffcc00;
  text-shadow: 0 0 8px rgba(255, 204, 0, 0.7), 0 0 20px rgba(255, 204, 0, 0.5);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3), -5px -5px 15px rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

/* Remove default visited and active link styles */
nav ul li a:link {
  color: #ffffff; /* Default color for all links */
  text-shadow: none;
  box-shadow: 5px 5px 10px rgba(162, 14, 14, 0.2), -5px -5px 10px rgba(255, 255, 255, 0.3);
  background-color: #000000; /* Keep your existing background */
}

/* Active state is already handled with .active */



/* Register Button in Navigation */
nav ul li.register-btn-container {
  margin-left: 0px; /* Optional: Adds space between other links and register button */


}

nav ul li.register-btn-container a {
  text-decoration: none;
  color: #121212;
  font-size: 1rem; /* Smaller font size */
  font-family: 'Roboto', sans-serif;
  padding: 8px 16px; /* Smaller padding */
  border-radius: 30px;
  background-color: #ffcc00;
  box-shadow: 5px 5px 10px rgba(255, 255, 255, 0.2), -5px -5px 10px rgba(255, 255, 255, 0.3); /* Neumorphic shadow effect */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect for Register Button */
nav ul li.register-btn-container a:hover {
  transform: scale(1.1); /* Slight size increase */
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3), -5px -5px 15px rgba(255, 255, 255, 0.4); /* Hover neumorphism effect */
  background-color: #ffd700; /* Slight color change on hover */
  animation: bubble 0.6s ease-in-out; /* Bubble effect */
}


/* General Scrollbar Styling */
body::-webkit-scrollbar {
  width: 12px; /* Width of the scrollbar */
  background-color: #f0f0f0; /* Background of the scrollbar track */
}

body::-webkit-scrollbar-thumb {
  background-color: #000000; /* Color of the scrollbar thumb */
  border-radius: 10px; /* Rounded corners for the scrollbar thumb */
  border: 3px solid #f0f0f0; /* Adds a border to the scrollbar thumb */
}

body::-webkit-scrollbar-thumb:hover {
  background-color: #ffcc00; /* Darker shade when hovered */
}

/* Scrollbar Track Styling */
body::-webkit-scrollbar-track {
  background-color: #515151; /* Background of the scrollbar track */
  border-radius: 10px;
}





/* Content Sections */
/* Hero Section */
.content-section {
  position: relative;
  padding: 100px 60px;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  overflow: hidden;
  margin-top: -60px; /* Shift the Havana section a bit up */
}



.content-section h2 {
  font-size: 4rem;
  margin-bottom: 15px;
  color:  #ffffff;
  ;
}



.content-section p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #ffffff;
  max-width: 600px;
}

/* Main Content Section */
.content {
  color: #ffffff;
  text-align: left; /* Align text to the left */
  max-width: 600px; /* Optional: Limit the width for better readability */
}
.content h1 {
  font-size: 5rem;

}






/* Paragraph Styling */
.content p {
  font-size: 1.5rem;
  color: #ffffff;
  margin-top: -30px;
  opacity: 0;
  animation: fadeIn 1.5s ease-in-out forwards;
  animation-delay: 2s; /* Starts after typing effect finishes */
}



/* Accessibility for Smaller Screens */
@media (max-width: 768px) {
  .content h1 {
      font-size: 2.3rem;
  }

  .content {
      margin: 0 -20px; /* Add margin to the content */
      margin-top: 20px; /* Adjust the top margin */
  }

  .content p {
      font-size: 1.2rem;
  }

  .register-btn {
      font-size: 1rem;
      padding: 8px 16px;
  }



  nav ul {
      flex-direction: column;

  }
}

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






@keyframes pulse {
  0% {
      transform: scale(1);
      box-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
  }
  50% {
      transform: scale(1.1);
      box-shadow: 0 0 20px rgba(255, 204, 0.7);
  }
  100% {
      transform: scale(1);
      box-shadow: 0 0 10px rgba(255, 204, 0.5);
  }
}

.register-btn-container a {
  animation: pulse 1.5s infinite;
}

#container3D canvas {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: -100px;
  left: 0;
  transition: transform 0.5s ease-in-out; /* Smooth transition */
  transform-style: preserve-3d; /* Ensure children are displayed in 3D space */
  transform-origin: center; /* Set transformation origin at the center */
}




@media only screen and (max-width: 768px) {
  #container3D {
      display: none;
  }
}


/* Content Section (About Section) */
#about {
  opacity: 0; /* Initially hidden */
  transform: translateY(30px) scale(1); /* Start below and slightly smaller */
  transition: transform 3s ease, opacity 3s ease; /* Smooth transition */
}

/* When the About section comes into view */
#about.in-view {
  opacity: 1; /* Make it visible */
  transform: translateY(0) scale(1); /* Slide up and zoom in */
}

/* Timer Style */
#timer-container {
  text-align: center;
  margin: 50px;
}

#timer {
  font-size: 2rem;
  font-weight: bold;
  color: #ffcc00;
  
}

#timer span {
  display: inline-block;
  min-width: 10px;
  padding: 4px;
  border-radius: 5px;
  background-color: #333;
  color: #fff;
  margin: 5px;
}





#event-start-text {
  font-size: 1.5rem;
  color: #ffcc00;
  margin-bottom: 10px;
  margin-top: 200px; /* Increased from 250px to 350px */
  text-align: center;
  font-family: 'Roboto', sans-serif;
  animation: fadeIn 1.5s ease-in-out; /* Optional fade-in effect */
}



/* Hamburger Menu */
.hamburger-menu {
  position: fixed;
  top: 35px;
  left: 20px;
  z-index: 1000;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 25px;
  transition: transform 0.5s ease-out; /* Smooth transition for the whole hamburger */
}

.hamburger-menu .line {
  width: 100%;
  height: 4px;
  background-color: #fff;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, width 0.3s ease-in-out; /* Smooth transformation */
  transform-origin: center; /* Set the origin for rotation to the center of the lines */
}

/* Hamburger Menu Active State (Fluid X Animation) */
.hamburger-menu.active .line1 {
  transform: rotate(45deg) translateY(6px); /* Slightly smaller rotation and position for a fluid feel */
  width: 80%; /* Slightly reduced width for a more fluid, interconnected feel */
}

.hamburger-menu.active .line2 {
  opacity: 0; /* Fade out smoothly */
}

.hamburger-menu.active .line3 {
  transform: rotate(-45deg) translateY(-6px); /* Slightly smaller rotation and position */
  width: 80%; /* Matching width to line1 for a continuous flow effect */
}

/* Dropdown Menu */
.dropdown-menu {
  display: none;
  top: 60px;
  left: 20px;
  border-radius: 15px;
  box-shadow: 5px 5px 5px #000000, -5px -10px 20px #000000;
  z-index: 1000;
  background: #000000;
  position: fixed;
  flex-direction: column;
  padding: 20px;
  opacity: 0; /* Initially invisible */
  transform: translateY(-30px); /* Initial off-screen position */
  transition: opacity 0.5s ease, transform 0.5s ease-out; /* Fluid transition for opacity and sliding */
  cursor: none;
}

/* Show Dropdown Menu with Fluid Animation */
.dropdown-menu.open {
  display: flex;
  transform: translateY(0); /* Smooth slide in */
  opacity: 1; /* Smooth fade-in */
}

/* Dropdown Menu Links */
.dropdown-menu a {
  display: block;
  padding: 10px;
  margin: 10px 0;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  background: #000000;
  border-radius: 10px;
  box-shadow: 10px 10px 20px #000000, -10px -10px 20px #000000;
  transition: all 0.4s ease-in-out; /* Smooth hover transition */
  cursor: none;
  opacity: 0; /* Start with all items invisible */
  transform: translateY(20px); /* Position items slightly below their normal place */
}

/* Flowing Animation for Dropdown Menu Items */
.dropdown-menu.open a {
  animation: flowIn 0.5s ease forwards;
}

.dropdown-menu.open a:nth-child(1) {
  animation-delay: 0.1s; /* Delay for the first item */
}

.dropdown-menu.open a:nth-child(2) {
  animation-delay: 0.2s; /* Delay for the second item */
}

.dropdown-menu.open a:nth-child(3) {
  animation-delay: 0.3s; /* Delay for the third item */
}

.dropdown-menu.open a:nth-child(4) {
  animation-delay: 0.4s; /* Delay for the fourth item */
}

.dropdown-menu.open a:nth-child(5) {
  animation-delay: 0.5s; /* Delay for the fifth item */
}

.dropdown-menu.open a:nth-child(6) {
  animation-delay: 0.6s; /* Delay for the sixth item */
}

.dropdown-menu.open a:nth-child(7) {
  animation-delay: 0.7s; /* Delay for the seventh item */
}

/* Flowing Animation Keyframe */
@keyframes flowIn {
  0% {
    opacity: 0;
    transform: translateY(20px); /* Start from below */
  }
  100% {
    opacity: 1;
    transform: translateY(0); /* Flow to its final position */
  }
}

/* Hover Effect for Dropdown Links */
.dropdown-menu a:hover {
  background-color: #555;
  transform: scale(1.05); /* Slight scaling effect for hover */
}

/* Default Hamburger Menu visibility (hidden on larger screens) */
.hamburger-menu {
  display: none; /* Initially hide the hamburger menu */
}

/* Register Now Button */
.dropdown-menu a.register-btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  color: #000000; /* Text color for the button */
  text-decoration: none;
  background: linear-gradient(135deg, #ffcc00, #ffcc00); /* Gradient background */
  border-radius: 25px;
  box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.3), -6px -6px 10px rgba(255, 255, 255, 0.5);
  margin: 10px auto;
  transition: all 0.4s ease-in-out;
  text-align: center;
  width: 70%; /* Adjust width to fit content */
  z-index: 1001; /* Ensure the button is above other elements */
  opacity: 1; /* Ensure visibility */
  position: relative; /* Fixing its position relative to the dropdown */
}

/* Hover Effect for Register Now Button */
.dropdown-menu a.register-btn:hover {
  background: linear-gradient(135deg, #efd334, #e9d53c); /* Brighter gradient */
  box-shadow: 0 0 20px rgba(222, 229, 92, 0.8), 0 0 40px rgba(227, 249, 90, 0.5); /* Glowing effect */
  transform: scale(1.1); /* Slight scaling effect */
}

/* Active State for Register Now Button */
.dropdown-menu a.register-btn:active {
  box-shadow: inset 6px 6px 10px rgba(0, 0, 0, 0.3), inset -6px -6px 10px rgba(255, 255, 255, 0.5); /* Neumorphic pressed effect */
  transform: scale(0.95); /* Shrink slightly on click */
}

/* Pulsing Effect for Register Now Button (Optional for Attention) */
@keyframes pulse-register {
  0%, 100% {
    box-shadow: 0 0 15px rgba(255, 69, 0, 0.5), 0 0 30px rgba(255, 69, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 69, 0, 0.8), 0 0 50px rgba(255, 69, 0, 0.5);
  }
}

.dropdown-menu a.register-btn {
  animation: pulse-register 2s infinite; /* Pulsing animation */
}

/* Make hamburger menu visible on mobile devices (screen width <= 768px) */
@media (max-width: 1168px) {
  .hamburger-menu {
    display: flex; /* Display hamburger menu on mobile */
  }

  nav {
    display: none; /* Hide the navigation bar by default */
  } 


}







/* Scroll-Up Button */
.scroll-up-btn {
  position: fixed;
  bottom: 20px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.8);
  color: #000;
  border: 2px solid #ffcc00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  cursor: none;
  z-index: 1001;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(100px); /* Hidden by default */
  pointer-events: none;
}

/* Button Visibility */
.scroll-up-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

/* Hover Effect */
.scroll-up-btn:hover {
  background: #ffcc00;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}


/* Logo Styling */
.logo-container {
  position: fixed;
  top: 0px;
  left: 81px;
  z-index: 110; /* To ensure it stays on top of other elements */
}

.logo-container2 {
  position: fixed;
  top: -30px;
  right: 90px;
  z-index: 100; /* To ensure it stays on top of other elements */
  scale: 0.5;
}

/* Logo Container Styling */
.logo-container3 {
  position: absolute;
  top: 257px;
  left: 170px;
  z-index: 110;
  scale: 2.9;
  opacity: 0; /* Initially hidden */
  animation: logoAnimation 1.5s ease-out forwards;
}

/* Keyframes for the logo animation */
@keyframes logoAnimation {
  0% {
    transform: scale(0.5); /* Start smaller */
    opacity: 0;
  }
  60% {
    transform: scale(1.05); /* Slightly larger during the middle */
    opacity: 0.8;
  }
  100% {
    transform: scale(1); /* Final size */
    opacity: 1; /* Fully visible */
  }
}

/* Hover effect for interactive feel */
.logo-container3:hover .logo {
  transform: scale(1.1); /* Slight zoom effect on hover */
  transition: transform 0.3s ease-out; /* Make the hover smooth */
}

/* Logo Styling */
.logo {
  display: block;
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease-out; /* Ensure smooth scaling on hover */
}




.logo-container-mobile {
  display: none;
}

/* On mobile: Show only the mobile logo */
@media only screen and (max-width: 768px) {
    .logo-container,
    .logo-container2 {
        display: none;
    }

    .logo-container-mobile {
      display: flex;
      justify-content: center; /* Center horizontally */
      align-items: center;    /* Center vertically (if needed) */
      position: absolute;     /* Ensure it stays at the top */
      top: -40px;
      left: 28%;
      z-index: 1000;          /* Ensure it stays above other elements */ 
      scale: 1.2;
    }

    .logo-container3 {
      display: flex;
      justify-content: center; /* Center horizontally */
      align-items: center;    /* Center vertically (if needed) */
      width: 100%;            /* Take the full width of the screen */
      position: absolute;     /* Ensure it stays at the top */
      top: 157px;
      left: -12px;
      z-index: 1000;          /* Ensure it stays above other elements */
      padding: 10px; 
      scale: 1.9;
    }

      /* Timer Style */
  #timer-container {
    
    text-align: center;
    margin: 5px;
  }

  #timer {
    margin: 5px;
    margin-left: 20%;
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffcc00;
    max-width: 950px;
  }

  #timer span {
    display: inline-block;
    padding: 4px;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
    margin: 5px;
  }


  #event-start-text {
    font-size: 1.2rem;
    color: #ffcc00;
    margin-bottom: 10px;
    margin-top: 150px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    animation: fadeIn 1.5s ease-in-out; /* Optional fade-in effect */
  }
}

.logo {
  width: 170px;  /* Adjust the width as per your logo size */
  height: auto;
}

/* From Uiverse.io by akshat-patel28 */ 
.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); /* Makes the grid responsive */
  gap: 20px; /* Adds space between the cards */
  padding: 20px;
  justify-items: center;
  margin-top: 100px;
}

.card {
  display: flex;
  flex-direction: column;
  width: 230px;
  height: 280px;
  max-height: 330px;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0px 10px 12px rgba(0, 0, 0, 0.08),
    -4px -4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s;
  cursor: none;
  box-sizing: border-box;
  padding: 10px;
  margin-top: 0px; /* Pushes the card down */
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.1),
    -4px -4px 12px rgba(0, 0, 0, 0.08);
}

.card-image-container {
  width: 100%;
  height: 64%;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  background-color: rgb(165, 165, 165);
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-icon {
  font-size: 40px;
}

.card-title {
  margin: 0;
  font-size: 17px;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  font-weight: 600;
  color:  #ffcc00;
  ;
  cursor: default;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}

.card-des {
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  margin: 0;
  font-size: 13px;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  color: #ffcc00;
  cursor: default;
}

/* From Uiverse.io by Nawsome */ 
.svg-frame {
  position: relative;
  width: 200px;
  height: 200px;
  transform-style: preserve-3d;
  display: flex;
  justify-content: center;
  align-items: center;
}

.svg-frame svg {
  position: absolute;
  transition: .5s;
  z-index: calc(1 - (0.2 * var(--j)));
  transform-origin: center;
  width: 344px;
  height: 344px;
  fill: none;
}

.svg-frame:hover svg {
  transform: rotate(-80deg) skew(30deg) translateX(calc(45px * var(--i))) translateY(calc(-35px * var(--i)));
}

.svg-frame svg #center {
  transition: .5s;
  transform-origin: center;
}

.svg-frame:hover svg #center {
  transform: rotate(-30deg) translateX(45px) translateY(-3px);
}

#out2 {
  animation: rotate16 7s ease-in-out infinite alternate;
  transform-origin: center;
}

#out3 {
  animation: rotate16 3s ease-in-out infinite alternate;
  transform-origin: center;
  stroke: #ff0;
}

#inner3,
#inner1 {
  animation: rotate16 4s ease-in-out infinite alternate;
  transform-origin: center;
}

#center1 {
  fill: #ff0;
  animation: rotate16 2s ease-in-out infinite alternate;
  transform-origin: center;
}

@keyframes rotate16 {
  to {
    transform: rotate(360deg);
  }
}

/* Full-page loader */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Loader animation */
#loader-svg {
  animation: spin 1s linear forwards;
  width: 100px;
  height: 100px;
}

/* Rotate animation */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Content styling */
#content {
  display: none;
  /* Additional styles for your webpage content */
}

/* Show content after the loader */
.loaded #loader {
  display: none;
}
.loaded #content {
  display: block;
}


/* Split Footer Styles */

.split-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between; 
  align-items: stretch; 
  z-index: 1000;
  background-color: transparent;
  height: 50px; /* Adjust height as necessary */
  cursor: none;
  transition: bottom 0.3s ease-in-out; /* Smooth transition for moving footer */
}


/* Equal Width for Footer Boxes */
.footer-left-box,
.footer-right-box {
  border-radius: 20px;
  flex: 1; /* Equal width for both boxes */
  border: 2px solid #ffcc00;
  border-bottom: none; /* Remove visible lower border */
  padding: 10px 20px;
  text-align: center; /* Center-align the content */
  display: flex;
  align-items: center;
  justify-content: center; /* Center the content horizontally */
  background-color:rgba(19, 19, 19, 0.9);
  cursor: none;
}

/* Remove Borders on Edges */
.footer-left-box {
  border-left: none; /* Remove left border */
}

.footer-right-box {
  border-right: none; /* Remove right border */
}

/* Gap Between Footer Boxes */
.footer-gap {
  width: 300px; /* Size of the gap */
  background: transparent; /* Transparent gap background */
}

/* Footer Text and Links */
.footer-left-box p {
  margin: 0;
}

.footer-left-box a,
.footer-right-box a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  cursor: none;
}

.footer-left-box a:hover,
.footer-right-box a:hover {
  cursor: none;
}

/* Social Media Icons */
.footer-right-box .social-icon {
  width: 24px;
  height: 24px;
  flex-wrap: wrap;
  transition: transform 0.3s ease;
  margin: 0 5px;
  cursor: none;
}

.footer-right-box .social-icon:hover {
  transform: scale(1.2);
}

/* Ensures Footer Stays at Bottom */
body {
  margin: 0; /* Remove default margin to prevent page shifting */
  padding-bottom: 60px; /* Match footer height to prevent overlap */
  box-sizing: border-box; /* Ensure padding doesn’t break layout */
}

/* Responsive adjustments */
@media (max-width: 1400px) {

  .footer-left-box,
  .footer-right-box {
    border-radius: 20px;
    flex: 1; /* Equal width for both boxes */
    border: 2px solid #ffcc00;
    border-bottom: none; /* Remove visible lower border */
    padding: 5px 5px;
    text-align: center; /* Center-align the content */
    display: flex;
    align-items: center;
    justify-content: center; /* Center the content horizontally */
    background-color:rgba(19, 19, 19, 0.9);
    cursor: none;
  }

  .split-footer {
      flex-direction: column;
      align-items: center;
  }

  .footer-left-box {
    display: none; /* Hide the left box on mobile */
  }
  .footer-right-box {
      margin-bottom: 0px;
      border-right: 2px solid #ffcc00; /* Add border to the right */
  }
  .footer-gap {
      width: 0; /* Remove gap on mobile */
      height: 0; /* Remove gap height on mobile */
  }
}

/* Navigation for Left Footer Box */
.footer-left-box ul {
  list-style: none;
  margin: 0;
  padding: 10px 20px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  position: relative; /* Adjusted from 'fixed' to 'relative' */
  z-index: 20000;
  cursor: none; /* Enable cursor for links */
}

/* Style for the button inside the list */
.footer-left-box ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 30px;
  box-shadow: 5px 5px 10px rgba(162, 14, 14, 0.2), -5px -5px 10px rgba(255, 255, 255, 0.3);
  transition: color 0.3s ease, text-shadow 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

/* Hover effect with bubble animation */
.footer-left-box ul li a:hover {
  color: #ffcc00;
  text-shadow: 0 0 8px rgba(255, 204, 0, 0.7), 0 0 20px rgba(255, 204, 0, 0.5);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3), -5px -5px 15px rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
  animation: bubble 0.6s ease-in-out;
}



/* Add bubble animation keyframes */
@keyframes bubble {
  0% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.1);
  }
  100% {
      transform: scale(1);
  }
}



/* For Mobile - Vanishing Footer on Scroll */
@media (max-width: 768px) {
  /* Initially, the footer is visible */
  footer {
      transform: translateY(0);
  }

  /* When scrolling down, the footer vanishes */
  .footer-hidden {
      transform: translateY(100%);
  }
}
