/* ===============================
   GLOBAL RESET
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  color: #1f2933;
  line-height: 1.6;
  background: #ffffff;
}

/* ===============================
   CONTAINER
================================ */
.container {
  width: 90%;
  max-width: 1150px;
  margin: auto;
}

/* ===============================
   HEADER
================================ */
.header {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}
.logo {
    height: 35px;
    width: 87px;
    object-fit: contain;
    transform: scale(3.0);
    transform-origin: left center;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.08));
    margin-top: 10px;
    margin-left: -51px;
}
/* ===============================
   NAVIGATION
================================ */
nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #0B3C5D;
  font-weight: 600;
  transition: 0.3s;
}

nav a:hover {
  color: #1E88E5;
}

.btn {
  background: #1E88E5;
  color: white;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.btn:hover {
  background: #0B3C5D;
}

.btn.white {
  background: white;
  color: #1E88E5;
}

/* ===============================
   HERO SECTION
================================ */
.hero {
  background: linear-gradient(135deg, #0B3C5D, #1E88E5);
  color: white;
  padding: 100px 0 120px;
}

.hero h1 {
  font-size: 42px;
  font-weight: 700;
  max-width: 850px;
  margin-bottom: 20px;
}

.hero p {
  max-width: 720px;
  font-size: 17px;
  margin-bottom: 30px;
}

/* ===============================
   TRUST BAR
================================ */
.trust {
  background: #f5f8fb;
  padding: 30px 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  font-weight: 600;
}

/* ===============================
   SECTIONS
================================ */
.section {
  padding: 90px 0;
}

.section h2 {
  margin-bottom: 25px;
  color: #0B3C5D;
  font-size: 32px;
}

.light {
  background: #f9fbfd;
}

/* ===============================
   CARDS
================================ */
.card {
  background: white;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-6px);
}

/* ===============================
   FORM
================================ */
.form {
  max-width: 500px;
}

.form input,
.form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
}

.form textarea {
  min-height: 120px;
}

/* ===============================
   FOOTER
================================ */
.footer {
  background: #0B3C5D;
  color: white;
  text-align: center;
  padding: 25px 10px;
  font-size: 14px;
}

/* ===============================
   RESPONSIVE DESIGN
================================ */

/* Tablet */
@media (max-width: 992px) {

  .hero h1 {
    font-size: 34px;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  nav a {
    margin-left: 18px;
  }

}

/* Mobile */
@media (max-width: 768px) {

  .nav {
    flex-direction: column;
    gap: 15px;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav a {
    margin: 8px 12px;
  }

  .hero {
    padding: 70px 0 90px;
    text-align: center;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 15px;
    margin: auto;
    margin-bottom: 25px;
  }
  .section {
    padding: 60px 0;
  }

  .section h2 {
    font-size: 26px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {

  .hero h1 {
    font-size: 24px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

}
@media (max-width: 480px) {
  .logo {
    transform: scale(1.25);
  }
}

