

body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  background: #f5f7fa;
}


/* ========================= */
/* NAVBAR */
/* ========================= */

.navbar {
background: linear-gradient(
  90deg,
  #0f1c2e,
  #1e3a5f,
  #2b6cb0,
  #3b82f6
)!important;
  transition: 0.3s ease;
}

/* On scroll (slightly stronger) */
.navbar.scrolled {

  backdrop-filter: blur(10px);
}

/* Text */
.navbar .nav-link {
  color: rgba(255,255,255,0.85) !important;
}

.navbar .nav-link:hover {
  color: #fff !important;
}
header.navbar {
  border-bottom: none !important;
  box-shadow: none !important;
}
/* ========================= */
/* HERO */
/* ========================= */

.hero-section {
  padding-top: 120px;
  min-height: auto;
  padding-bottom: 80px;

 background: linear-gradient(
  90deg,
  #0f1c2e,
  #1e3a5f,
  #2b6cb0,
  #3b82f6
);
  color: white;

  position: relative;
  overflow: hidden;
  z-index: 1; /* FIX */
}



/* Glow */
.hero-section::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(43,127,255,0.4), transparent);
  filter: blur(100px);
  z-index: 0; /* FIX */
}

/* ========================= */
/* HERO WRAPPER FIX */
/* ========================= */

.hero-section .container-xl {
  position: relative;
  z-index: 2; /* FIX */
}

/* ========================= */
/* HERO LAYOUT FIX (VERY IMPORTANT) */
/* ========================= */

.hero-section .row {
  align-items: center;
  padding-top: 20px;
}


/* ========================= */
/* HERO IMAGE WRAPPER */
/* ========================= */

.hero-image-wrapper {
  position: relative;
  z-index: 3;
  max-width: 420px;   /* FIX */
  width: 100%;        /* FIX */
  margin: 0 auto;     /* FIX */
}

/* ========================= */
/* HERO CARDS */
/* ========================= */

.custom-hero-card {
  position: relative;
  z-index: 5;
  border-radius: 12px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  margin-bottom: 15px; /* FIX */
}

/* Hover animation */
.custom-hero-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* ========================= */
/* FLOATING ANIMATION */
/* ========================= */

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

.hero-card-1 {
  animation: float 6s ease-in-out infinite;
}

.hero-card-2 {
  animation: float 6s ease-in-out infinite 1s;
}

.hero-card-3 {
  animation: float 6s ease-in-out infinite 2s;
}
/* ========================= */
/* LOGIN PAGE (PREMIUM UI) */
/* ========================= */

.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(
    90deg,
    #0f1c2e,
    #1e3a5f,
    #2b6cb0,
    #3b82f6
  );

  position: relative;
  overflow: hidden;
}

/* subtle glow effect */
.login-page::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59,130,246,0.25), transparent);
  filter: blur(120px);
}

/* ========================= */
/* CONTAINER */
/* ========================= */

.login-container {
  display: flex;
  max-width: 1100px;
  width: 100%;
  gap: 60px;
  align-items: center;
  z-index: 2;
}

/* ========================= */
/* LEFT SIDE */
/* ========================= */

.login-left {
  flex: 1;
  color: white;
}

.login-left h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.login-left p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
}

/* checklist */
.login-features div {
  margin-bottom: 10px;
  font-size: 16px;
  color: rgba(255,255,255,0.85);
}

/* gradient highlight */
.gradient-text {
  background: linear-gradient(90deg, #3b82f6, #6f42c1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ========================= */
/* RIGHT CARD (GLASS EFFECT) */
/* ========================= */

.login-card {
  flex: 1;
  padding: 45px;
  border-radius: 20px;

  background: #ffffff; /* ✅ WHITE */
  color: #1f2937;

  box-shadow: 0 25px 70px rgba(0,0,0,0.15);
  border: 1px solid rgba(0,0,0,0.05);
}

/* ========================= */
/* FORM */
/* ========================= */

.form-label {
  color: #374151;
  font-weight: 500;
}

.form-control {
  border-radius: 12px;
  padding: 12px 14px;

  background: #f9fafb;
  border: 1px solid #e5e7eb;
  color: #111827;

  transition: all 0.3s ease;
}

.form-control::placeholder {
  color: #9ca3af;
}

/* focus */
.form-control:focus {
border-color: #3b82f6;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.2);
}

/* ========================= */
/* BUTTON */
/* ========================= */

.btn-primary {
  background: linear-gradient(90deg, #3b82f6, #2b6cb0);
  border: none;
  border-radius: 12px;

  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(59,130,246,0.4);
}

/* ========================= */
/* LINKS */
/* ========================= */

a {
  color: #93c5fd;
  transition: 0.3s;
}

a:hover {
  color: #ffffff;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 768px) {
  .login-container {
    flex-direction: column;
    text-align: center;
  }

  .login-left {
    margin-bottom: 30px;
  }
}
/* ========================= */
/* ABOUT CARDS HOVER FIX */
/* ========================= */

#about .rounded-4 {
  transition: all 0.3s ease;
}

#about .rounded-4:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* ========================= */
/* ANIMATION */
/* ========================= */

.animate {
  opacity: 0;
  transform: translateY(30px);
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 768px) {
  .login-container {
    flex-direction: column;
    text-align: center;
  }
}

/* ========================= */
/* HOW WE WORK  */
/* ========================= */

.hover-lift-subtle {
  transition: all 0.3s ease;
  border-radius: 12px;
}

/* Hover effect */
.hover-lift-subtle:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  background: #ffffff;
}

/* Circle animation */
.hover-lift-subtle:hover .rounded-circle {
  transform: scale(1.1);
  transition: 0.3s ease;
}

/* Accent line on hover */
.hover-lift-subtle {
  position: relative;
}

.hover-lift-subtle::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 10px;
  height: 0%;
  width: 4px;
  background: #3b82f6;
  transition: 0.3s ease;
  border-radius: 10px;
}

.hover-lift-subtle:hover::before {
  height: 80%;
}