:root {
  --bg: #0f172a;
  --text: #f1f5f9;
  --card: #1e293b;
}

/* Light mode default */
body {
  background: #ffffff;
  color: #111;
  transition: all 0.4s ease;
   font-family: "Poppins", sans-serif;
}

/* Dark mode */
body.dark-mode {
  background: var(--bg);
  color: var(--text);
}

body.dark-mode .card,
body.dark-mode .form-box {
  background: var(--card);
  color: var(--text);
}

.hero-section {
    /* background: linear-gradient(135deg, #170047, #003d5c); */
    color: white;
    position: relative;
    min-height: 600px;
}

.Ai-hand {
    position: absolute;
    bottom: 0;
    left: -30px;
}
.BannerTextArea {
    min-height: 600px;
    display: flex;
    align-items: center;
    z-index: 1;
}
img.img-fluid.AiBot {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 685px;
}
.bg-grid {
  background: linear-gradient(135deg, #031b34, #00101f);
  color: white;
}

.form-box {
  background: white;
}

/* Floating button */
.theme-toggle {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  font-size: 20px;
  z-index: 999;
}

/* Scroll animations */
.scroll-animate,
.scroll-left,
.scroll-right,
.scroll-zoom {
  opacity: 0;
  transition: all 0.9s ease;
}

.scroll-animate {
  transform: translateY(50px);
}

.scroll-left {
  transform: translateX(-60px);
}

.scroll-right {
  transform: translateX(60px);
}

.scroll-zoom {
  transform: scale(0.85);
}

.show {
  opacity: 1;
  transform: none;
}
.btn.btn-success{
    background: #007f32;
    border-color: #007f32;
}
.hero-section p.text-success.fw-semibold {
    font-size: 20px;
    color: #007f32 !important;
}
.text-success{
    color: #007f32;
}
section#form{position: relative;}
section#form:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}
footer.py-4.bg-success.text-white {
    background: #007f32 !important;
}
.form-box:before {
    content: "";
    position: absolute;
    background: rgba(255, 255, 255, .3);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 15px;
}
section#how-it-works .card {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 767px) {
    .BannerTextArea{
        align-items: self-start;
        margin-top: 15px;
    }
    .Ai-hand{
        display: none;
    }
}