* {
  font-family: 'Poppins', sans-serif !important;
}

html, body {
  margin: 0;
}

body {
  background-image: url(images/bglandingpage.png);
  background-size: cover;    
  background-position: center;   
  background-repeat: no-repeat; 
  background-attachment: fixed;
  min-height: 100vh;                 
  margin: 0;
}

.hero {
  padding: 4rem 50px;
}


@media (min-width: 992px) {
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
  }
}

.custom-shadow {
    box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.6);
}


.otp-input {
  width: 48px;
  height: 52px;
  font-size: 22px;
  font-weight: 700;
  border-radius: 12px;
  border: 1px solid #d9d9d9;
  background-color: #f6f6f6;
  color: #000435;
  box-shadow: none;
}

.otp-input:focus {
  border-color: #000435;
  box-shadow: 0 0 0 0.15rem rgba(0, 4, 53, 0.15);
  background-color: #fff;
}

.modal-content {
  background-color: #ffffff;
}

.hero {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.form-floating > label {
  font-size: 13px;
}

.form-floating .form-control {
  height: 45px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  
}

.form-floating .form-control:focus {
  border-color: #000435;
  outline: none;        
  box-shadow: none;  
}

button.signup-btn {
  background-color: transparent;
  border: 1px solid #000435;
  color: #000435;
}

button.signup-btn:hover {
  background-color: #000435;
  border-color: #000435;
  color: #ffffff;
}

.btn.back-btn {
  background: transparent;
  border: 1px solid #000435;
  color: #000435;
  font-size: 14px;
  transition: 0.2s ease;
}

.btn.back-btn:hover {
  background-color: #000435;
  border-color: #000435;
  color: #ffffff;
}

footer a:hover {
  opacity: 0.7;
  transition: 0.3s;
}



@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-animate {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}


.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }



:root {
  --primary: #000435;
  --primary-light: #1a1f7a;
  --accent: #4da6ff;
}

p {
  line-height: 1.7;
  letter-spacing: 0.3px;
}

.hero-buttons {
  display: flex;
  gap: 4px;
}


@media (max-width: 576px) {
  .hero-buttons {
    flex-wrap: nowrap; 
  }

  .hero-buttons .btn {
    flex: 1; /* equal width */
    white-space: nowrap;
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
    font-size: 14px;
  }
}

.login-card {
  width: 430px;
  max-width: 100%;
  min-height: 550px;
  padding: 50px;
}

@media (max-width: 768px) {
  .hero {
    padding: 2rem 30px;
  }

  .login-card {
    width: 100%;
    min-height: auto;
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .col-sm-5.d-flex {
    justify-content: center !important;
  }

  .login-card {
    width: 100%;
    max-width: 360px;
    padding: 24px 18px;
    border-radius: 20px !important;
  }

  .login-card h3 {
    font-size: 1.4rem;
  }

  .login-card p,
  .login-card label,
  .login-card input,
  .login-card a,
  .login-card button {
    font-size: 14px;
  }

  .form-floating .form-control {
    height: 44px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 2rem 30px;
  }
}

@media (max-width: 576px) {
  .col-sm-5.d-flex {
    justify-content: center !important;
  }

  .signup-card {
    padding: 24px 18px !important;
    border-radius: 20px !important;
  }

  .signup-card h3 {
    font-size: 1.35rem;
  }

  .signup-card p,
  .signup-card label,
  .signup-card input,
  .signup-card a,
  .signup-card button {
    font-size: 14px;
  }

  .signup-card .row {
    --bs-gutter-x: 0.75rem;
  }

  .signup-card .col-md-6 {
    width: 100%;
  }

  .signup-card .mt-4 {
    margin-top: 1rem !important;
  }

  .form-floating .form-control {
    height: 44px;
  }
}

.contact-card {
  width: 430px;
  min-height: 550px;
  padding: 50px;
}

@media (max-width: 768px) {
  .hero {
    padding: 2rem 30px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 2rem 24px;
  }
}

@media (max-width: 576px) {
  .col-sm-5.d-flex {
    justify-content: center !important;
  }

  .contact-card {
    width: 100%;
    max-width: 360px;
    min-height: auto;
    padding: 24px 18px;
    border-radius: 20px !important;
  }

  .contact-card .form-control,
  .contact-card label,
  .contact-card button {
    font-size: 14px;
  }

  .contact-card textarea.form-control {
    height: 120px !important;
  }

  .contact-card .mt-4 {
    margin-top: 1rem !important;
  }
}

.forgot-card {
  width: 430px;
  min-height: 430px;
  padding: 50px;
}

@media (max-width: 576px) {
  .forgot-card {
    width: 100%;
    max-width: 360px;
    min-height: auto;
    padding: 24px 18px;
    border-radius: 20px !important;
  }

  .forgot-card h3 {
    font-size: 1.3rem;
  }

  .forgot-card p,
  .forgot-card label,
  .forgot-card input,
  .forgot-card button {
    font-size: 14px;
  }

  .forgot-card .form-control {
    height: 44px;
  }

  .forgot-card .mt-5 {
    margin-top: 1rem !important;
  }
}

@media (max-width: 576px) {
  .signup-card form,
  .login-card form,
  .contact-card form,
  .forgot-card form {
    padding-left: 10px;
    padding-right: 10px;
  }
}