.section-header h2 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  color: white;
}


.custom-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.85); /* semi-transparent dark */
  border-bottom: 1px solid rgba(255, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.3); /* red glow */
  z-index: 9999;
  backdrop-filter: blur(0px);
}

.custom-navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links li a {
  color: white;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links li a:hover {
  color: #e63946;
  border-bottom: 2px solid #e63946;
}

.logo img {
  height: 150px;
  filter: drop-shadow(0 0 3px red);
}



.ace-red {
  color: #e63946;
  text-shadow: 0 0 2px #e63946;
}

@keyframes pulse-glow {
  0% {
    filter: drop-shadow(0 0 4px red);
  }
  50% {
    filter: drop-shadow(0 0 12px red);
  }
  100% {
    filter: drop-shadow(0 0 4px red);
  }
}

.logo img {
  animation: pulse-glow 2s infinite ease-in-out;
}


/* Mobile  */






/* Mobile menu toggle button - already included */
.mobile-menu button {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  display: none; /* hidden by default on desktop */
}

/* Mobile dropdown menu styles */
.mobile-dropdown {
  display: none;
  background: rgba(0, 0, 0, 0.95);
  padding: 20px;
  text-align: center;
}

.mobile-dropdown.active {
  display: block;
}

.mobile-dropdown ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-dropdown li {
  margin-bottom: 16px;
}

.mobile-dropdown a {
  color: white;
  font-weight: 500;
  text-decoration: none;
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .custom-navbar .container {
    justify-content: space-between;
  }

  .logo img {
    height: 90px;
  }
}

/* BUTTON  */


.glow-button {
  position: relative;
  display: inline-block;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: transparent;
  border: 2px solid #e63946;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.35s ease-in-out;
  overflow: hidden;
  z-index: 1;
}

.glow-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(230, 57, 70, 0.5), transparent);
  transition: all 0.4s ease;
  z-index: -1;
}

.glow-button:hover::before {
  left: 100%;
}

.glow-button:hover {
  background-color: #e63946;
  color: white;
  box-shadow: 0 0 10px rgba(230, 57, 70, 0.7), 0 0 20px rgba(230, 57, 70, 0.4);
  transform: scale(1.05);
}



/* VIDEO BLUR  */



.video-fullscreen-video {
  position: relative;
  overflow: hidden;
}

.video-fullscreen-video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(0px); /* Adjust intensity */
  background-color: rgba(0, 0, 0, 0.3); /* Optional dark overlay */
  z-index: 2;
  pointer-events: none;
}
.video-fullscreen-video video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 1;
}






/* UBER UNS  */




.about-us-modern {
  background: #000;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease;
}

.section-header h2 {
  color: white;
  font-size: 2.6rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.red-line {
  width: 80px;
  height: 3px;
  background-color: #e63946;
  margin: 12px auto 0;
  animation: fadeInUp 0.8s ease;
}

.about-card {
  background: rgba(30, 30, 30, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  padding: 80px;
  color: #ccc;
  text-align: center;
  font-size: 2rem;
  line-height: 2.1;
  backdrop-filter: blur(15px);
  box-shadow: 0 0 15px rgba(230, 57, 70, 0.3);
  animation: fadeInUp 1s ease;
  transition: box-shadow 0.4s ease;
}
.about-card h4 {
  font-family: 'Inter', sans-serif;
  color: white;
  font-size: 1.1rem;
  line-height: 2rem;
  font-weight: 400;
  text-align: center;
}


.about-card:hover {
  box-shadow: 0 0 25px rgba(230, 57, 70, 0.6);
}

.highlight-red {
  color: #e63946;
  font-weight: 600;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .about-card {
    padding: 30px 20px;
    font-size: 1rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}






.review-button {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid white;
  color: white;
  background: transparent;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.review-button:hover {
  background-color: white;
  color: #000;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}
