.gold365-login-banner {
  min-height: 100vh;
  background: linear-gradient(135deg, #4a0e4e 0%, #2d1b69 50%, #9c27b0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  font-family: 'Arial', sans-serif;
}

.gold365-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
  max-width: 400px;
}

/* Logo Section */
.gold365-logo {
  margin-bottom: 1rem;
}

.gold365-logo h1 {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(45deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
  margin: 0;
  text-align: center;
}

/* Login Form Container */
.login-form-container {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.login-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.login-header h2 {
  color: #333;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
}

.login-icon {
  font-size: 1.2rem;
}

/* Form Inputs */
.input-group {
  position: relative;
  margin-bottom: 1rem;
}

.form-input {
  width: 100%;
  padding: 0.8rem 3rem 0.8rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
  box-sizing: border-box;
}

.form-input:focus {
  outline: none;
  border-color: #333;
}

.input-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: #333;
}

/* Login Buttons */
.login-btn {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s;
}

.login-btn.primary {
  background: #000;
  color: white;
}

.login-btn.primary:hover {
  background: #333;
}

.login-btn.demo {
  background: #000;
  color: white;
}

.login-btn.demo:hover {
  background: #333;
}

.btn-arrow {
  font-size: 1.2rem;
}

/* reCAPTCHA Notice */
.recaptcha-notice {
  font-size: 0.8rem;
  color: #666;
  text-align: center;
  margin: 1rem 0;
  line-height: 1.4;
}

.recaptcha-notice a {
  color: #007bff;
  text-decoration: none;
}

.recaptcha-notice a:hover {
  text-decoration: underline;
}

/* Contact Email */
.contact-email {
  text-align: center;
  margin: 1rem 0;
}

.contact-email a {
  color: #007bff;
  text-decoration: none;
  font-size: 0.9rem;
}

.contact-email a:hover {
  text-decoration: underline;
}

/* Divider Line */
.divider-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, #ccc, transparent);
  margin: 1.5rem 0;
  position: relative;
}

.divider-line::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    transparent,
    transparent 5px,
    #ccc 5px,
    #ccc 10px
  );
}

/* WhatsApp Button */
.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem;
  background: #25d366;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s;
  text-align: center;
}

.whatsapp-btn:hover {
  background: #20c45a;
}

.whatsapp-icon {
  font-size: 1.2rem;
}

.whatsapp-text {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 480px) {
  .gold365-login-banner {
    padding: 1rem;
  }
  
  .gold365-logo h1 {
    font-size: 2.5rem;
  }
  
  .login-form-container {
    padding: 1.5rem;
  }
  
  .whatsapp-text {
    font-size: 0.8rem;
  }
}

/* Animation */
.gold365-logo h1 {
  animation: goldGlow 3s ease-in-out infinite alternate;
}

@keyframes goldGlow {
  from {
    text-shadow: 2px 2px 4px rgba(255, 215, 0, 0.3);
  }
  to {
    text-shadow: 2px 2px 20px rgba(255, 215, 0, 0.6);
  }
}


/* color changes */

section {
  background-color: #3b1d72 !important;
}

/* If sections have inner wrappers, ensure full coverage */
section > .container,
section > .header-container,
section > .elementor-container {
  background-color: transparent !important;
}

/* Optional: Adjust text color inside sections for readability */
section,
section h1,
section h2,
section h3,
section p,
section a,
section li {
  color: #ffffff !important;
}

/* Ensure buttons and links still stand out */
section .btn,
section .btn-primary,
section .btn-secondary,
section .nav-link {
  border-color: #f5d16f !important;
  background-color: #f5d16f !important;
  color: #3b1d72 !important;
}


.ready-header {
  background-color: #3b1d72 !important; /* Dark blue */
}

/* Optional: Change text and link colors if needed */
.ready-header .nav-link,
.ready-header h1,
.ready-header h2,
.ready-header h3 {
  color: #ffffff; /* Keep text white for contrast */
}



footer.footer {
  background-color: #3b1d72 !important; /* Dark blue */
  color: #ffffff; /* Text color */
}

/* Optional: Style footer links */
footer.footer a {
  color: #f5d16f; /* Gold or light color for contrast */
}

.header {
  background: linear-gradient(to right, #004575, #81249f);
  transition: background 0.3s ease;
}

.header.sticky, /* or .scrolled, .fixed, whatever your script adds */
.header.scrolled {
  background: linear-gradient(to right, #3b1d72, #81249f) !important;
}


.footer {
  background: linear-gradient(to right, #3b1d72, #81249f);
  transition: background 0.3s ease;
}

.footer.sticky, /* or .scrolled, .fixed, whatever your script adds */
.footer.scrolled {
  background: linear-gradient(to right, #3b1d72, #81249f) !important;
}