/* ------------------------------
   COLOR THEME
------------------------------ */
:root {
  --blue-dark: #3674B5;
  --blue-medium: #578FCA;
  --blue-light: #A1E3F9;
  --mint: #D1F8EF;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-light: #666;
  --shadow: rgba(0, 0, 0, 0.08);
  --radius: 14px;
}

/* ------------------------------
   GLOBAL RESET
------------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f9fbff;
  color: var(--text-dark);
}

.container {
  width: 90%;
  max-width: 1250px;
  margin: auto;
}

/* ------------------------------
   NAVBAR
------------------------------ */
.nav-wrap {
  width: 100%;
  background: var(--blue-dark);
  padding: 12px 0;
  box-shadow: 0 4px 12px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
}

.logo {
  height: 45px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 26px;
}

.nav-links li a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  padding-bottom: 4px;
  transition: 0.3s;
}

.nav-links li a.active,
.nav-links li a:hover {
  border-bottom: 2px solid var(--mint);
}

.btn.ghost {
  padding: 8px 18px;
  border: 2px solid var(--blue-light);
  color: var(--white);
  border-radius: var(--radius);
  transition: 0.3s;
  text-decoration: none;
}

.btn.ghost:hover {
  background: var(--blue-light);
  color: var(--blue-dark);
}

/* ------------------------------
   HERO SECTION
------------------------------ */
.services-hero {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-medium));
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}

.services-hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

.services-hero .lead {
  margin-top: 12px;
  font-size: 1.15rem;
  opacity: 0.9;
}

/* ------------------------------
   SERVICE CARDS GRID
------------------------------ */
.services-grid {
  margin: 70px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding-bottom: 20px;
  box-shadow: 0 8px 20px var(--shadow);
  cursor: pointer;
  transition: 0.3s;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}

.service-card h3 {
  font-size: 1.35rem;
  padding: 16px 18px 0;
  color: var(--blue-dark);
  font-weight: 600;
}

.service-card p {
  padding: 6px 18px 20px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 12px 30px var(--shadow);
}

/* ------------------------------
   FOOTER
------------------------------ */
.footer {
  background: var(--blue-dark);
  color: var(--white);
  padding: 60px 0 20px;
  margin-top: 60px;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 35px;
}

.footer-brand img {
  height: 50px;
}

.footer h3 {
  margin-bottom: 15px;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--mint);
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 8px;
  color: var(--mint);
  cursor: pointer;
}

.footer ul li a {
  color: var(--mint);
  text-decoration: none;
}

.social a {
  color: var(--white);
  font-size: 1.3rem;
  margin-right: 15px;
  transition: 0.3s;
}

.social a:hover {
  color: var(--blue-light);
}

.copy {
  text-align: center;
  margin-top: 25px;
  font-size: 0.9rem;
  opacity: 0.7;
}

