@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
/* ===== Reset & Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1A1A1A;
  background-color: #ffffff;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #1A1A1A;
  line-height: 1.2;
}

p {
  font-size: 16px;
  color: #555;
}

/* ===== Color Variables ===== */
:root {
  --primary: #2459BF;
  --secondary: #5715A4;
  --dark: #1E1E2F;
  --light: #F5F7FA;
  --text: #1A1A1A;
  --muted: #555;
  --success: #22C55E;
  --error: #EF4444;
  --gradient: linear-gradient(90deg, #2459BF, #5715A4);
}

/* ===== Container ===== */
.container {
  max-width: 1280px;
  padding: 0 24px;
  margin: 0 auto;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease-in-out;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: #1d4db4;
  box-shadow: 0 4px 10px rgba(36, 89, 191, 0.2);
}

.btn-gradient {
  background: var(--gradient);
  color: #fff;
  border: none;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(87, 21, 164, 0.3);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* ===== Cards ===== */
.card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.02);
}

.card-img-top {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ===== Section Padding ===== */
section {
  padding: 0 0;
}

@media (max-width: 768px) {
  section {
    padding: 48px 0;
  }
}

/* ===== Forms ===== */
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  margin-bottom: 16px;
  transition: border-color 0.3s ease;
}

input:focus,
textarea:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 89, 191, 0.1);
}

/* ===== Footer ===== */
footer {
  background-color: var(--dark);
  color: #fff;
  padding: 40px 0;
}

footer h5, footer h6, footer p {
  color: #fff;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
