@font-face {
  font-family: 'CustomFont'; /* Name of the font */
  src: url('CryptoScamRegular-rgXvA.ttf') format('truetype');
       
  font-weight: normal;
  font-style: normal;
}



.menu {
  display: flex;
  align-items: center; /* Vertically center all items */
  justify-content: space-between; /* Space out left, center, and right sections */
  background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black background */
  padding: 0 40px; /* Add padding on the sides */
  height: 80px; /* Fixed height */
  position: relative;
  color: #fff; /* Text color */
}

.racing-head {
  font-family: 'CustomFont', sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  position: absolute; /* Absolutely position to center */
  left: 50%; /* Center horizontally */
  transform: translateX(-50%); /* Adjust for perfect centering */
  margin: 0; /* Remove any extra margin */
}

.nav-left,
.nav-right {
  display: flex; /* Flexbox for horizontal alignment */
  gap: 20px; /* Add spacing between links */
}

.nav-left a,
.nav-right a {
  text-decoration: none; /* Remove underline */
  color: white; /* Text color */
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: bold;
  transition: color 0.3s; /* Smooth hover effect */
}

.nav-left a:hover,
.nav-right a:hover {
  color: #f1c40f; /* Change color on hover */
}

.nav-left {
  flex: 1; /* Push to the left */
}

.nav-right {
  flex: 1; /* Push to the right */
  justify-content: flex-end; /* Align items to the right */
}


body, html {
    background-color: rgba(20, 4, 4, 0);
   
    
    margin: 0;
    padding: 0;
   
    
}



.neon-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: #000000a3; /* Neon green color */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.597), 0 0 30px rgba(0, 0, 0, 0.597), 0 0 40px rgba(0, 0, 0, 0.597), 0 0 50px rgba(5, 255, 109, 0.597);
    animation: neon-border 1.5s ease-in-out infinite alternate;
}

h1 {
    color: rgb(0, 0, 0);
    font-size: 25px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bolder;
    margin-top: 30px;
}




.content {
  width: 100vw;
    max-width: 100%;
    display: flex;
    align-items: flex-start; /* Align content items to the top */
    justify-content: space-between; /* Space between both elements */
    margin-top: 30px; /* Move the content up */
    color: rgb(249, 249, 249);
    font-family: Arial, Helvetica, sans-serif;
    padding: 0 20px; /* Add some padding for better spacing */
}

.collapse {
  width: 100%;
  max-width: 800px;
  margin: 40px auto;
  background-color: #000;
  border-radius: 10px;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  box-sizing: border-box;
}

.collapse input {
    display: none;
}

.collapse label {
  display: block;
  color: #fff;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
  text-transform: uppercase;
}


.collapse::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #000;
}

.collapse label:after {
    content: "";
    position: absolute;
    right: 10px;
    top: 15px;
    transition: all 0.3s ease;
}

.collapse input:checked + label:after {
    transform: rotate(90deg);
}

.collapstext {
  font-size: 16px;
    white-space: norm;
    max-height: 0;
    overflow: hidden;
    border-radius: 4px;
    line-height: 1.4;
    opacity: 0;
    transition: all 0.3s ease;
    padding-left: 15px;
    padding-right: 15px;
    font-family: 'CustomFont', sans-serif;
    z-index: 1;
}

.collapse input:checked ~ .collapstext {
    max-height: 500px;
    padding-bottom: 15px;
    opacity: 1;
}

.collapstext h2 {
    margin-bottom: 10px;
    padding: 15px 0 0;
}

.collapstext p {
  z-index: 1;
    padding: 10px 0;
    color: rgb(255, 255, 255);
    font-family: 'Impact', 'Arial Black', sans-serif;
    font-size: 14px;
}

.time-left {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px; /* Adjust the gap between elements */
  margin-top: 20px;
}

.time-left div {
  text-align: center;
}

.time-left div p {
  font-size: 40px; /* Adjust the font size as needed */
  font-weight: bold;
  margin: 0;
  line-height: 1;
}

.time-left div span {
  font-size: 16px; /* Adjust the font size as needed */
  text-transform: uppercase;
  display: block;
  margin-top: 5px;
}

.wline {
    content: '';
    position: absolute;
    margin-top: -490px;
    top: 100%;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.585), rgba(0, 0, 0, 0));
    opacity: 0.6;
    z-index: 0; /* Ensure the reflection is below the timer */
    transform: scaleY(-1);
}

.reflection {
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom, rgba(5, 255, 109, 0.597), rgba(149, 214, 0, 0.0));
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0.5;
}

.img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 150px;
}

.suphead {
    color: rgb(255, 255, 255);
    text-align: center;
    margin-top: 100px;
}

.ccline {
    margin-bottom: 694px;
    
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: #00d667a3; /* Neon green color */
    box-shadow: 0 0 20px rgba(5, 255, 109, 0.597), 0 0 30px rgba(5, 255, 109, 0.597), 0 0 40px rgba(5, 255, 109, 0.597), 0 0 50px rgba(5, 255, 109, 0.597);
    animation: neon-border 1.5s ease-in-out infinite alternate;
}

.p{
    color: white;
}

.galleryhd{
    text-align: center;
    margin-top: 70px;
}

.galine{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: #00d667a3; /* Neon green color */
    box-shadow: 0 0 20px rgba(5, 255, 109, 0.597), 0 0 30px rgba(5, 255, 109, 0.597), 0 0 40px rgba(5, 255, 109, 0.597), 0 0 50px rgba(5, 255, 109, 0.597);
    animation: neon-border 1.5s ease-in-out infinite alternate;
    margin-bottom: 630px;

}



@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


.product {
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  margin-top: 60%;
  width: 100%;
  box-sizing: border-box;
  }
  
  .product-category {
    padding: 0 10vw;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 40px;
    text-transform: capitalize;
  }
  
  .product-container {
    margin: 0;
    padding: 0;
    padding-left: 10px; /* Ensures the first image is fully visible */
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    box-sizing: border-box;
    scroll-snap-type: x mandatory;
  }
  
  .product-container::-webkit-scrollbar {
    display: none;
  }
  
  .product-container .product-card {
    flex: 0 0 auto;
    scroll-snap-align: start; /* Ensures each image snaps to start */
    margin-right: 20px;
}
  
  .product-image {
    margin-top: auto;
    position: relative;
    width: 300px;
    height: 300px;
    overflow: hidden;
    cursor: pointer; /* Makes it clear the image is clickable */
    transition: filter 0.3s;
    
  }
  .product-image {
    position: relative;
    z-index: 0; /* Lower than popup */
  }

  .product-image:hover img {
    filter: brightness(50%);
  }
  
  .product-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  
  
  .pre-btn,
  .nxt-btn {
    border: none;
    width: 10vw;
    height: 100%;
    position: absolute;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
    cursor: pointer;
    z-index: 8;
  }
  
  .pre-btn {
    left: 0;
    transform: rotate(180deg);
  }
  
  .nxt-btn {
    right: 0;
  }
  
  .pre-btn img,
  .nxt-btn img {
    opacity: 0.2;
  }
  
  .pre-btn:hover img,
  .nxt-btn:hover img {
    opacity: 1;
  }
  
  .collection-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
  
  .collection {
    position: relative;
  }
  
  .collection img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .collection p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    font-size: 50px;
    text-transform: capitalize;
  }
  
  .collection:nth-child(3) {
    grid-column: span 2;
    margin-bottom: 10px;
  }
  
  
  
  .popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    min-width: 500px;  /* Bigger size */
    min-height: 500px; /* Bigger height */
    text-align: center;
    justify-content: flex-end;
    z-index: 9999; /* Highest layer */
}

/* Close button */
.popup .close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
}

/* Make the image clickable */
.product-image {
    cursor: pointer;
    transition: filter 0.3s;
}

.product-image:hover {
    filter: brightness(70%);
}

.abhikalpan{

  margin-bottom: 150px; /* Increase spacing between this and footer */
  padding-bottom: 50px;
    
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center content vertically */
  align-items: center;
  text-align: center;
  padding: 0; /* Remove extra padding */
  width: 100%;
  margin-bottom: 120px; /* Increase spacing between this and footer */
  padding-bottom: 50px;
  background-image: url('Abhikaplanback.png'); /* Replace with your image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
  z-index: 1;
}

.abhikalpan::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 260px;
  background-image: url('Abhikaplanback.png'); /* Replace with your image */
  
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  filter: brightness(60%);
  
  transition: opacity 0.3s ease-in-out, filter 0.3s ease-in-out;
  z-index: -1;
}


.abhikalpan:hover::before {
   /* Slightly less transparent */
  filter: brightness(20%); /* Dark tint */
}


.abhi_heading{
  font-family: 'CustomFont', sans-serif;
  font-size: 44px;
  color: #fff;
}

.abhi-para{
  font-family:Arial, Helvetica, sans-serif;
  font-size: 24px;
  color: #fff;

}


a {
  text-decoration: none;
}




#video-section {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#container {
  height: auto; /* Extra height to allow scrolling */
  background: transparent; /* Make sure background is transparent */
}

.about-sponsor{
  font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-weight: bold;
  font-size: 20px;
  
}


/* Fullscreen Background Image */
.background {
  background-image: url('dark-industrial-wallpaper-3d-render-600nw-2152018905 (1) (1).jpg');
  position: fixed; /* Keeps it static while scrolling */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(50%); /* Adjust brightness here (100% = normal) */
  z-index: -1; /* Keeps it behind all content */
}

#video-section, .product, .abhikalpan {
  margin: 0;
  padding: 0;
}

.sponsorshead {
  font-family: 'Arial', sans-serif; /* Normal font */
  font-size: 32px;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin: 0;
  background-color: #000; /* Solid black bar */
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}





.register-container {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  background-image: url('racing_background.jpg'); /* Replace with your background image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column; /* Stack items vertically */
  justify-content: center; /* Center items vertically */
  align-items: center; /* Center items horizontally */
  text-align: center;
  padding: 20px; /* Add padding for spacing */
}

.register-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff; /* White text */
  margin-bottom: 20px; /* Space below the title */
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7); /* Shadow for better contrast */
}

.register-subtitle {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 30px; /* Space below the subtitle */
  max-width: 600px;
  line-height: 1.5;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7); /* Shadow for better readability */
}

.register-button {
  background-color: #FFD700; /* Gold color */
  color: #171A21; /* Dark text color */
  text-transform: uppercase;
  font-weight: bold;
  padding: 15px 30px;
  font-size: 18px;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, background-color 0.3s;
}

.register-button:hover {
  background-color: #FF4500; /* Bright orange on hover */
  transform: scale(1.05); /* Slight zoom-in effect */
}

.register-button:active {
  transform: scale(1); /* Reset scale on click */
}

/* Responsive styling */
@media (max-width: 768px) {
  .register-title {
      font-size: 36px;
  }

  .register-subtitle {
      font-size: 16px;
  }

  .register-button {
      font-size: 16px;
      padding: 12px 25px;
  }
}























.footer {
  background-color: #171A21;
  
  color: #ffffff;
  padding-top: 80px; /* Increased top padding */
  font-family: Arial, sans-serif;
  margin-top: 50px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid layout */
  gap: 30px;
  padding-top: 40px;
}

.footer-section {
  padding: 20px; /* Extra padding for a clean look */
  text-align: left;
}

.footer-section h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #FFD700; /* Gold color for headings */
  text-transform: uppercase;
  border-bottom: 2px solid #FFD700; /* Underline style for headings */
  padding-bottom: 5px;
}

.footer-section p,
.footer-section a,
.footer-section ul {
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
  padding: 0;
  color: #ffffff;
  text-decoration: none;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #FFD700; /* Gold color for links */
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #FFD700; /* Bright orange on hover */
}

.social-links li {
  display: inline-block;
  margin-right: 10px;
}

.social-links li a {
  color: #FFD700;
}

.social-links li a:hover {
  color: #FFD700;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 30px;
  font-size: 12px;
  color: #ccc;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-section {
    text-align: center;
  }
}







.about-head{
  font-family: 'CustomFont';
  font-size: 28px;
  color: white;
}




/* Overall container */
.vertical-info {
  padding: 60px 40px;
  font-family: 'Arial', sans-serif; /* Better readability */
  color: #ffffff; /* White text */
}

/* Each section */
.info-item {
  margin-bottom: 60px; /* Increased space between sections */
}

/* Heading styles */
.info-heading {
  font-size: 28px; /* Larger font size for headings */
  font-weight: bold;
  margin-bottom: 20px; /* Space below heading */
  text-transform: uppercase;
  color: #FFD700; /* Gold color for headings */
  font-family: 'Montserrat', sans-serif; /* Stylish font for headings */
}

/* Paragraph styles */
.info-item p {
  font-size: 18px; /* Larger font size for text */
  line-height: 2; /* Increase line height for better readability */
  text-align: justify;
}

/* Responsive Design */
@media (max-width: 768px) {
  .vertical-info {
    padding: 20px;
  }

  .info-heading {
    font-size: 24px; /* Slightly smaller heading on smaller screens */
  }

  .info-item p {
    font-size: 16px;
  }
}

.transition-fade {
  transition: 0.4s;
  opacity: 1;
}

html.is-animating .transition-fade {
  opacity: 0;
}



#swup {
  transition: transform 0.5s ease-in-out;
}

.transition-main {
  transition: opacity 0.4s ease-in-out;
  opacity: 1;
}

html.is-animating .transition-main {
  opacity: 0;
}