@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

:root{
  --blue-1: #0b63b1;     /* primary blue from logo */
  --blue-2: #0b4ea0;
  --yellow-1: #ffd43b;   /* logo yellow */
  --muted: #5b6770;
  --bg-gradient: linear-gradient(180deg,#e6f4ff 0%, #fff9e6 100%);
  --card-gradient: linear-gradient(145deg,#ffffff 0%,#f3f8ff 50%,#fff8da 100%);
  --radius: 12px;
  --max-width: 1100px;
  color-scheme: light;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* Reset & layout */
*{box-sizing:border-box}
html,body{height:100%;margin:0;font-family:Inter, Arial, sans-serif;background:var(--bg-gradient);color:#0b1420}
.container{max-width:var(--max-width);margin:0 auto;padding:56px 64px}

/* Header */
.header{display:flex;justify-content:space-between;align-items:center;gap:16px;padding:8px 0;position:relative}
.header-inner{display:flex;align-items:center;gap:14px}
.brand{display:flex;align-items:center;gap:12px}
.brand img{height:64px;width:auto;display:block}
.brand .site-title{font-weight:700;color:var(--blue-1);font-size:18px;margin-left:8px}
.small{font-size:13px;color:var(--muted)}

/* Navigation */
.nav{display:flex;gap:14px;align-items:center;margin-left:auto}
.nav a{color:var(--muted);text-decoration:none;font-weight:600;padding:8px 12px;border-radius:8px}
.nav a:hover{color:var(--blue-1);background:rgba(11,99,177,0.06)}

/* primary CTA button (single blue color) */
.btn{
  display:inline-block;
  background:var(--blue-1);
  color:#ffffff;
  padding:10px 16px;border-radius:12px;text-decoration:none;font-weight:700;
  box-shadow:0 8px 24px rgba(11,99,177,0.12);
  transition:transform .18s ease,box-shadow .18s ease;
}
.btn:hover{transform:translateY(-3px);box-shadow:0 18px 34px rgba(11,99,177,0.18)}

/* Hero */
.hero{
  display:grid;
  grid-template-columns:1fr 420px;
  gap:28px;
  align-items:center;
  margin-top:36px;
  padding:28px;
  border-radius:16px;
  background:linear-gradient(135deg,var(--blue-1) 0%, #6fb1ff 40%, #fff9e6 100%);
  color:white;
}
.hero h1{
  font-family:"Libre Baskerville", Georgia, serif;
  font-size:44px;
  margin:0;
  line-height:1.05;
  color:#ffffff;
  text-shadow:0 6px 24px rgba(3,18,37,0.25);
}
.lead{color:rgba(255,255,255,0.92);margin-top:12px;font-size:16px;max-width:56ch}

/* Hero illustration */
.hero-illustration{width:100%;height:auto;border-radius:12px;box-shadow:0 18px 40px rgba(3,18,37,0.18)}

/* Cards & services */
.card{
  background:var(--card-gradient);
  border-radius:var(--radius);
  padding:20px;
  box-shadow:0 10px 30px rgba(11,20,32,0.06);
}
.services{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:26px}
.service{
  padding:18px;
  border-radius:10px;
  background:linear-gradient(180deg,#fff,#fbfffb);
  border:1px solid rgba(11,99,177,0.06);
  transition:transform .18s ease,box-shadow .18s ease,filter .18s ease;
}
.service h4{margin:0 0 8px 0;color:var(--blue-2)}

/* Subtle hover transitions for service cards (glow + lift) */
.service:hover{
  transform:translateY(-8px);
  box-shadow:0 26px 52px rgba(11,99,177,0.12);
  filter:brightness(1.02);
}

/* subtle drop shadow for service images */
.services .service img {
  display: block;
  border-radius: 8px;
  transition: transform 220ms ease, filter 220ms ease;
  /* drop-shadow places shadow beneath the image shape — no surrounding box shadow */
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.1));
}

/* stronger under-shadow + lift on hover/focus */
.services .service img:hover,
.services .service img:focus {
  transform: translateY(-6px);
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.14));
}

/* reduce shadow intensity on small screens */
@media (max-width:760px) {
  .services .service img {
    box-shadow: 0 6px 14px rgba(11,99,177,0.08), 0 2px 6px rgba(4,36,65,0.05);
    transform: none;
  }
}

/* Form styles */
input,textarea,select,button{font-family:inherit}
input,textarea,select{
  width:100%;
  padding:10px;
  border-radius:8px;
  border:1px solid #e6eef6;
  background:linear-gradient(#fff,#fbfdff);
}
button{cursor:pointer}

/* Footer */
footer{margin-top:48px;padding:28px 0;color:var(--muted);display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px}

/* "What we do" section background */
#services{
  background: linear-gradient(180deg, #eef8ff 0%, #dfefff 60%, #f8fbff 100%);
  padding: 44px 32px;
  border-radius: 14px;
  margin: 22px 0;
  border: 1px solid rgba(11,99,177,0.06);
  border-top: 6px solid var(--blue-1); /* cool accent */
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
}
#services h2, #services .service h4{
  color: var(--blue-1);
}

/* Contact section (warmer, clearly different) */
.contact-section{
  background: linear-gradient(180deg, #fff8f2 0%, #fff0e0 50%, #ffe4cc 100%);
  padding: 46px 20px;
  border-radius: 14px;
  margin: 28px 50px;
  text-align: center;
  border: 1px solid rgba(255,160,60,0.08);
  border-top: 6px solid var(--yellow-1); /* warm accent */
  box-shadow: 0 18px 48px rgba(11,99,177,0.06);
}
.contact-section .card{
  max-width:560px;
  margin: 0 auto;
  background: linear-gradient(180deg,#ffffff,#fff7ee);
  padding:22px;
  border-radius:10px;
  box-shadow:0 10px 28px rgba(11,20,32,0.06);
}

/* Responsiveness */
@media (max-width:920px){
  .hero{grid-template-columns:1fr}
  .services{grid-template-columns:repeat(2,1fr)}
  .container{padding:40px 32px}
  .contact-section{ margin:24px 28px; padding:36px 16px; }
  #services{ padding:28px 18px; margin:16px 0; }
}
@media (max-width:760px) {
  .services {
    grid-template-columns: 1fr;
  }
}
@media (max-width:520px){
  .services{grid-template-columns:1fr}
  .nav{display:none}
  .brand img{height:48px}
  .container{padding:20px}
  .contact-section{ margin:18px 16px; padding:28px 12px; }
  #services{ padding:20px 12px; }
}

.trusted-section { /* background and spacing handled inline in HTML but keep fallback here */ padding:36px 12px; text-align:center; background:linear-gradient(180deg,#eaf5fb,#f7fbff); }
.trusted-number .count { display:inline-block; font-variant-numeric:tabular-nums; }
.trusted-number .plus { margin-left:6px; color:#0b63b1; }
@media (max-width:600px){
  .trusted-number { font-size:2.2rem !important; }
  .trusted-section { padding:28px 10px; }
}