/* General Resets */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* Background Video */
.bg-video {
  position: fixed; 
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover; 
  z-index: -1; 
}

/* Background Image */
.bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  pointer-events: none;
}

/* Radial Gradient Overlay */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0) 50%);
}

/* Container */
.container {
  position: absolute;
  inset: 0;
  height: fit-content;
  margin: auto;
  color: white;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 50px;
  text-align: center;
}

/* Navigation (More Transparent & Blurry) */
.nav {
  display: flex;
  justify-content: center;
  padding: 12px;
  border-radius: 10px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
}

.tab {
  padding: 15px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  transition: 0.3s;
}

.tab.active,
.tab:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.3);
}

/* Card (More Transparency & Blur) */
.card {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: 12px;
  backdrop-filter: blur(20px);
  transition: 0.3s ease-in-out;
}

.card:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 6px rgba(255, 255, 255, 0.2);
}

.card-content {
  padding: 15px;
  text-align: left;
}

.card-content h2 {
  font-size: 24px;
  font-weight: bold;
}

.card-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 8px 0 10px;
}

.card-content span {
  font-size: 12px;
  letter-spacing: 1px;
}

/* Card Image */
.card-image {
  width: 150px;
  object-fit: cover;
}

/* Button (More Glass Effect) */
.button {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  backdrop-filter: blur(20px);
  cursor: pointer;
  transition: 0.3s;
  color: white;
  box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.1);
}

.button:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0px 0px 8px rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
  font-size: 12px;
  text-align: center;
}

.footer a {
  color: white;
  text-decoration: underline;
  transition: 0.3s;
}

.footer a:hover {
  color: lightgray;
}

/* Explore Section (More Glass Effect) */
.explore_now {
  background: rgba(255, 255, 255, 0.05); 
  backdrop-filter: blur(20px); 
  border: 1px solid rgba(255, 255, 255, 0.2); 
  padding: 15px 30px;
  border-radius: 12px; 
  font-weight: bold;
  display: inline-block; 
  text-align: center;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 0px 8px rgba(255, 255, 255, 0.2);
}

.explore_now:hover {
  background: rgba(255, 255, 255, 0.1); 
  box-shadow: 0px 0px 12px rgba(255, 255, 255, 0.3);
  font-size: 18px;
  font-weight: bold;


}

.explore-link {
  color: rgb(216, 195, 5); 
  text-decoration: none; 
  font-weight: bold;
  font-size: 16px;
}

.explore-link:hover {
  font-size: 18px;
  color: darkgreen; 
}
