body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #121212;
  color: #F5F5F5;
  margin: 0;
  padding: 0;
}

.bg-black {
  background-color: #121212;
}

.bg-gold {
  background-color: #FFD700;
}

.text-gold {
  color: #FFD700;
}

.text-white {
  color: #F5F5F5;
}

.btn-gold {
  background-color: #FFD700;
  color: #121212;
  font-weight: 600;
  border: none;
  box-shadow: 0 2px 6px rgba(255, 215, 0, 0.3);
}

.btn-gold:hover {
  background-color: #e6c200;
  transform: scale(1.03);
}

.navbar {
  background-color: #000000;
  box-shadow: 0 2px 6px rgba(255, 215, 0, 0.2);
}

.hero {
  background: linear-gradient(to bottom right, #000000, #FFD700);
  height: 60vh;
  padding: 2rem;
  color: #F5F5F5;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glossy-card {
  background: linear-gradient(to bottom, #1E1E1E, #2A2A2A);
  border-radius: 12px;
  border: 1px solid #FFD700;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #F5F5F5;
}

.glossy-card:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 16px rgba(255, 215, 0, 0.2);
}

.form-control, .form-select {
  border-radius: 8px;
  border: 1px solid #FFD700;
  padding: 10px;
  background-color: #1E1E1E;
  color: #F5F5F5;
}

footer {
  background-color: #000000;
  color: #FFD700;
  padding: 1rem;
  text-align: center;
}
h4 {
  color: #FFD700;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
  letter-spacing: 0.5px;
}

/* Highlighted heading */
.highlighted-heading {
  color: #FFA500; /* Orange */
  font-weight: 700;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}

/* Role buttons */
.role-button {
  background-color: #FFD700;
  color: #121212;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}

.role-button:hover {
  background-color: #e6c200;
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(255, 215, 0, 0.3);
}
.apply-btn {
  background-color: #ff7b00; /* Orange background */
  color: #fff;              /* White text */
  border: 1px solid #ffcf00; /* Yellowish border for consistency */
  border-radius: 5px;        /* Rounded corners (adjust if needed) */
  font-weight: 600;          /* Bold text */
  transition: 0.3s ease;
}

.apply-btn:hover {
  background-color: #ff9900; /* Slightly lighter orange on hover */
  border-color: #ffcf00;
  color: #fff;
}
.form-control {
  background-color: #fff !important;  /* White background */
  color: #000 !important;             /* Black text */
  border: 1px solid #ffcf00;          /* Optional: yellow border to match brand */
  border-radius: 8px;                 /* Rounded corners */
}

.form-control::placeholder {
  color: #888 !important;  /* Grey placeholder text */
  opacity: 1;
}
.animated-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFD700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
  height: 60px;
  overflow: hidden;
  position: relative;
}

.text-sequence {
  display: block;
  animation: fadeWords 9s infinite;
  position: absolute;
  width: 100%;
  opacity: 0;
  text-align: center;
}

.text-sequence:nth-child(1) {
  animation-delay: 0s;
}
.text-sequence:nth-child(2) {
  animation-delay: 3s;
}
.text-sequence:nth-child(3) {
  animation-delay: 6s;
}

@keyframes fadeWords {
  0% { opacity: 0; transform: translateY(20px); }
  10% { opacity: 1; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(0); }
  40% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 0; }
}
.glow-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000000;
  text-align: center;
  animation: glowPulse 2s infinite alternate;
}

@keyframes glowPulse {
  from {
    text-shadow: 0 0 10px #FFD700, 0 0 20px #FFD700;
  }
  to {
    text-shadow: 0 0 20px #FFEA00, 0 0 30px #FFEA00;
  }
}
body {
  background-color: #000;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.text-gold {
  color: #FFD700;
}

.btn-gold {
  background-color: #FFD700;
  color: #000;
  font-weight: bold;
  border: none;
}

.btn-gold:hover {
  background-color: #e6c200;
  color: #000;
}

.glossy-card {
  background-color: #111;
  border: 1px solid #FFD700;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeIn 0.6s ease-in-out;
}

.glossy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.floating-contact {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #FFD700;
  color: #000;
  padding: 12px 16px;
  border-radius: 50px;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  text-decoration: none;
  transition: background 0.3s ease;
  z-index: 999;
}

.floating-contact:hover {
  background-color: #e6c200;
  color: #000;
}
.card {
  background-color: #1c1c1c;
  border-radius: 8px;
  border: 1px solid #FFD700;
  color: #fff;
}
.card.bg-black {
  background-color: #1a1a1a;
  border: 1px solid #FFD700;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
}
.card-header {
  background-color: #222;
  font-weight: bold;
  border-bottom: 1px solid #FFD700;
}

.crm-lead {
  background-color: #2c2c2c;
  border-left: 4px solid #FFD700;
  border-radius: 6px;
  padding: 10px;
  margin-bottom: 10px;
  transition: transform 0.2s ease;
}
.crm-lead:hover {
  transform: scale(1.02);
  background-color: #333;
}
