/* General Styles */
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  color: #ffffff;
  background: url('6385146.jpg') no-repeat center center fixed;
  background-size: cover;
  overflow-x: hidden;
}

.anton-regular {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 0 20px;
}

.hero h1 {
  font-size: 3em; /* Reduced for better responsiveness */
  margin: 0;
}

.hero p {
  font-size: 1.2em; /* Reduced for better responsiveness */
  margin: 20px 0;
}

.cta-button {
  background-color: #ffcc00;
  color: #000000;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 1.2em;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

.cta-button:hover {
  background-color: #e6b800;
  color: #ffffff;
}

/* Featured Roadmaps Section */
.featured-roadmaps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 50px 20px;
}

.card {
  background: rgba(0, 0, 0, 0.8);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  width: 100%; /* Adjusted for responsiveness */
  max-width: 300px; /* Added max-width for better control */
  transition: transform 0.3s;
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.card h3 {
  margin: 10px 0;
}

.learn-more {
  background-color: #ffcc00;
  color: #000000;
  padding: 10px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  transition: background-color 0.3s, color 0.3s;
}

.learn-more:hover {
  background-color: #e6b800;
  color: #ffffff;
}

/* Footer Styles */
footer {
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 20px;
  text-align: center;
}

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

footer ul li {
  display: inline;
  margin: 0 10px;
}

footer ul li a {
  color: white;
  text-decoration: none;
  font-size: 1em;
  transition: color 0.3s;
}

footer ul li a:hover {
  color: #ffcc00;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  color: black;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  width: 90%; /* Adjusted for better responsiveness */
  max-width: 600px;
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 20px;
}

.payment-options {
  display: flex;
  flex-wrap: wrap; /* Added for better responsiveness */
  gap: 20px;
}

.payment-method {
  text-align: center;
}

.payment-method img {
  width: 100px;
  height: auto;
}

/* Form Styles */
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

form input, form textarea, form button {
  padding: 10px;
  border: none;
  border-radius: 5px;
}

form button {
  background-color: #ffcc00;
  color: black;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

form button:hover {
  background-color: #e6b800;
  color: #ffffff;
}

/* Header and Navigation Styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: url('path-to-your-background-image.jpg') no-repeat center center;
  background-size: cover;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

header .logo a {
  text-decoration: none;
  color: white;
  font-size: 24px;
  font-weight: bold;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #58a6ff; /* Neon Blue on hover */
}

/* Burger Menu */
.burger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  height: 25px;
}

.burger div {
  width: 30px;
  height: 3px;
  background-color: white;
  border-radius: 5px;
  transition: background-color 0.3s;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5em; /* Further reduction for smaller screens */
  }

  .hero p {
    font-size: 1em; /* Further reduction for smaller screens */
  }

  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: url('6005990.jpg') no-repeat center center;
    background-size: cover;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1;
    padding: 20px;
  }

  nav ul.active {
    display: flex;
  }

  nav ul li {
    margin: 15px 0;
    text-align: center;
  }

  nav ul li a {
    font-size: 20px;
    transition: color 0.3s;
  }

  nav ul li a:hover {
    color: #58a6ff; /* Neon Blue on hover */
  }

  .burger {
    display: flex;
  }

  .burger div {
    background-color: white;
  }

  .burger.active div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger.active div:nth-child(2) {
    opacity: 0;
  }

  .burger.active div:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .featured-roadmaps {
    flex-direction: column; /* Stack cards vertically on smaller screens */
    padding: 30px 10px; /* Adjusted padding */
  }

  .card {
    width: 90%; /* Adjusted width for better display on small screens */
    max-width: 350px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2em; /* Further reduction for small screens */
  }

  .hero p {
    font-size: 0.9em; /* Further reduction for small screens */
  }

  .cta-button {
    padding: 10px 20px; /* Adjust padding */
    font-size: 1em;
  }

  header .logo a {
    font-size: 20px; /* Reduced logo font size */
  }

  nav ul li a {
    font-size: 16px; /* Reduced font size for nav items */
  }
}


.bebas-neue-regular {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}





.oswald-uniquifier {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}


/* Bottom Navigation Bar with Glassmorphism */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.2); /* Semi-transparent white background */
  backdrop-filter: blur(10px); /* Blur effect */
  -webkit-backdrop-filter: blur(10px); /* For Safari support */
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
  border-radius: 15px 15px 0 0; /* Rounded top corners */
  display: none; /* Initially hide the bottom nav */
}

/* Bottom Navigation Items */
.bottom-nav-item {
  color: white;
  text-decoration: none;
  text-align: center;
  font-size: 14px;
  flex-grow: 1;
}

.bottom-nav-item i {
  font-size: 24px;
  display: block;
  margin-bottom: 5px;
}

.bottom-nav-item span {
  display: block;
  font-size: 12px;
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
}

.bottom-nav-item:hover {
  color: #ffcc00;
}

/* Show bottom navigation only on screens smaller than 769px */
@media (max-width: 768px) {
  .bottom-nav {
      display: flex;
  }
}

/* Hide bottom nav on larger screens */
@media (min-width: 769px) {
  .bottom-nav {
      display: none;
  }
}

