:root {
  --primary-color: #65737e;
  --primary-hover: #4f5b66;
  --secondary-color: #343d46;
  --text-color: #2e3440;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition-speed: 0.3s;
}

body {
  line-height: 1.5;
  color: var(--text-color);
  margin: 0;
  padding: 0;
  background: linear-gradient(to bottom, #f0f2f5, #f0f2f5);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
}
p,
span,
a,
li {
  font-family: "Lora", sans-serif;
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  height: 100px;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  clip-path: polygon(0 0, 100% 0, 100% 20%, 50% 100%, 50% 100%, 0 20%);
}

.nav {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 2.5rem;
  z-index: 11;
  justify-content: center;
  align-items: center;
}

.nav a {
  position: relative;
  text-decoration: none;
  color: white;
  font-size: 1.125rem;
  font-weight: bold;
  font-family: "Lora", serif;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

/* Underline (center-out grow animation) */
.nav a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 2.5px;
  background-color: white;
  transition: transform 0.4s ease;
}

/* Hover glow + underline */
.nav a:hover {
  color: #ffffff;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.5),
    0 0 10px rgba(255, 255, 255, 0.4), 0 0 18px rgba(255, 255, 255, 0.3);
}

.nav a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* Active link (persistent underline and glow) */
.nav a.active {
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.5),
    0 0 10px rgba(255, 255, 255, 0.4), 0 0 18px rgba(255, 255, 255, 0.3);
}

.nav a.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* Temporarily hide active underline when hovering another */
.nav:hover a.active:not(:hover) {
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.nav:hover a.active:not(:hover)::after {
  transform: translateX(-50%) scaleX(0);
}

/* Hamburger (Hidden by default) */
.hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: white;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.hamburger:hover {
  color: #ffffff;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.5),
    0 0 10px rgba(255, 255, 255, 0.4), 0 0 18px rgba(255, 255, 255, 0.3);
}

/* Modal base styles */
.customMenuModal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  z-index: 999;
  justify-content: center;
  align-items: center;
  animation: fadeOut 0.3s forwards;
}

.customMenuModal.show {
  display: flex;
  animation: fadeIn 0.3s forwards;
}

/* Modal content box */
.menuContent {
  background: rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  position: relative;
  width: 90%;
  max-width: 320px;
  animation: slideUp 0.3s ease-out;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2), 0 10px 30px rgba(0, 0, 0, 0.4);
  border-radius: 12px;
}

/* Logo */
.menu-logo {
  width: 100px;
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.6));
}

/* Links */
.menuContent a {
  display: block;
  color: white;
  text-decoration: none;
  font-size: 1.3rem;
  margin: 1rem 0;
}

/* Close button */
.close-button {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive - Hide nav links, show hamburger */
@media (max-width: 768px) {
  .nav a {
    display: none;
  }

  .hamburger {
    display: block;
  }
}
/* Video Banner */
.video-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#video-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  z-index: 1;
  border-bottom: 1px solid var(--primary-color);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25); /* Shadow at bottom */
}

.text-container {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  z-index: 3;
}

.text-container h1,
.text-container p {
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.video-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6),
    rgba(20, 20, 20, 0.4)
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
}

.video-overlay h1,
.video-overlay p {
  z-index: 3;
}

.feature-group {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 100%;
}

.feature-circle {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid white;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}

.feature-circle:hover {
  width: 220px;
  height: 140px;
  border-radius: 20px;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
}

.feature-circle a {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.3rem;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.feature-circle i {
  font-size: 1.6rem;
  color: white;
  margin-bottom: 5px;
}

.feature-text {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  text-align: center;
  padding: 0 10px;
}

.feature-circle:hover .feature-text {
  opacity: 1;
  max-height: 100px;
  margin-top: 10px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 1s ease-out forwards;
  opacity: 0;
}

/* Guide Section Main */
.guide-section {
  color: #333;
  animation: fadeIn 1.5s ease;
}

/* Heading & Subtitles */
.steps-container h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #343d46;
}

.subtitle {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #555;
}

.text-shadow {
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.icon-glow:hover {
  text-shadow: 1px 1px 6px rgba(255, 255, 255, 0.7);
  transform: scale(1.1);
  transition: 0.3s ease;
}

.bg-custom-dark {
  background-color: #343d46 !important;
  color: #fff;
}

.border-custom-dark {
  border-color: #343d46 !important;
}

.social-icon {
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icon i {
  color: #ffffff; /* White icons */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  transition: text-shadow 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

.developer-list a {
  transition: text-shadow 0.3s ease, transform 0.3s ease;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
}

.developer-list a:hover {
  text-shadow: 2px 2px 6px rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

.developer-title {
  background: #343d46;
  padding: 8px 16px;
  border-radius: 8px;
  display: inline-block;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  width: 100%;
}

.info-link:hover {
  text-shadow: 2px 2px 6px rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: text-shadow 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.rotating {
  animation: rotate 2s linear infinite;
}

.menu-link {
  display: block;
  padding: 12px 20px;
  color: #343d46;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 8px;
  opacity: 1;
  position: relative;
  z-index: 1;
}

.menu-link:hover {
  background-color: rgba(238, 244, 255, 0.6);
  color: #2c3e50;
  transform: translateX(5px);
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.menu-link.active {
  background-color: rgba(238, 244, 255, 0.6);
  color: #2c3e50;
  transform: translateX(5px);
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.contact-section {
  padding: 60px 20px;
}

.section-title {
  text-align: center;
  font-weight: 600;
  color: #343d46;
  margin-bottom: 20px;
  border-bottom: 2px solid #65737e;
  padding-bottom: 5px;
  font-size: 24px;
}

.contact-section p {
  color: #444;
  line-height: 1.6;
}

.contact-section a {
  color: #3366cc;
  text-decoration: none;
}

.contact-section a:hover {
  text-decoration: underline;
}

#contactForm .form-control {
  padding: 12px 15px;
  border-radius: 8px;
  background: #f9f9f9;
  border: 1px solid #ccc;
  font-size: 16px;
}

#contactForm .form-control:focus {
  outline: none;
  border-color: #65737e;
  background: #fff;
  box-shadow: none;
}

#contactForm button {
  border-radius: 8px;
  padding: 12px;
  font-size: 16px;
  background: var(--secondary-color);
  color: white;
  transition: background 0.3s ease;
}

#contactForm button:hover {
  background: var(--primary-hover);
}
.g-recaptcha {
  display: flex;
  align-items: center;
  justify-content: center;
}

.disclaimer-box {
  background-color: #fef7dc;
  border-left: 6px solid #ffc107;
  padding: 24px;
  margin: 50px auto;
  border-radius: 10px;
  max-width: 800px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.disclaimer-title {
  font-size: 24px;
  color: #343d46;
  margin-bottom: 12px;
  font-weight: 600;
}

.disclaimer-text {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
}

.btn {
  font-family: "Playfair Display", sans-serif;
}
