:root {
  --primary: #1E3A8A;
  --primary-accent: #2563EB;
  --background: #f9fafb;
  --text-dark: #111827;
  --text-muted: #4b5563;
  --white: #ffffff;
  --border-light: rgba(0,0,0,0.06);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--background);
  color: var(--text-dark);
  line-height: 1.6;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

section {
  padding: 120px 0;
}

@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }
}

/* NAVBAR */

.navbar {
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.75);
  border-bottom: 1px solid var(--border-light);
  padding: 15px 0;
  transition: all 0.3s ease;
  z-index: 1000;
}

.navbar.scrolled {
  padding: 12px 0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-name {
  font-weight: 600;
  color: var(--text-dark);
}

.logo {
  height: 38px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
}


.btn-primary {
  background: var(--primary);
  color: var(--white);
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s ease;
}

.nav-links .btn-primary {
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37,99,235,0.25);
}

.btn-secondary {
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  padding: 12px 26px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-secondary:hover {
  background: var(--white);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.btn-large {
  font-size: 18px;
}

h2{
  font-size: 2em;
  padding-bottom: 20px;
}

.hero {
  text-align: center;
  background: linear-gradient(-45deg, #eef2ff, #dbeafe, #ffffff, #e0f2fe);
  background-size: 400% 400%;
  animation: gradientMove 14s ease infinite;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero h1 {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero-subtext {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

@media (max-width: 768px) {
  .hero h1 { font-size: 38px; }
  .hero-buttons { flex-direction: column; }
}


.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
}

.steps {
  display: flex;
  gap: 40px;
  justify-content: center;
}

.step {
  flex: 1;
  background: var(--white);
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
  .steps { flex-direction: column; }
}

.logo2{
  height: 20px;
  width: 20px;
  display:flex;
  float: right;
}


.cta {
  text-align: center;
  background: var(--primary-accent);
  color: var(--white);
  border-radius: 20px;
  margin: 0 20px;
  padding: 100px 0;
}


footer {
  margin-top: 100px;
  padding: 40px 0;
  border-top: 1px solid var(--border-light);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links a {
  margin-left: 20px;
  text-decoration: none;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 15px;
  }
}
.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease;
}

.animate.show {
  opacity: 1;
  transform: translateY(0);
}