/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #4b6cb7;
  --secondary: #182848;
  --accent: #f4b41a;
  --light-bg: #f8f9fa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--light-bg);
  animation: fadeIn 0.25s ease-in;
  padding-top: 88px;
}


/* Buttons (Global) */
button,
.btn {
  transition: all 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: none;
}

.btn-primary:hover {
  opacity: 0.9;
}

/* Cards */
.card {
  border-radius: 15px;
  border: none;
}

/* Utility */
.section-title {
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}

/* mobile ke liye */
@media (max-width: 768px) {
  body {
    padding-top: 88px;
  }
}
/* Page transition animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
