body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #222;
  background: #f9fafb;
}

/* Top strip */
.top-strip {
  /* full-bleed background across the screen */
  background: radial-gradient(1200px 120px at 10% 0%, rgba(255,255,255,0.15), transparent),
              linear-gradient(90deg, #0f172a, #1e293b 45%, #0f172a);
  color: #fff;
  position: sticky; /* stays visible when scrolling */
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Inner layout that can grow to near-full width on mobile */
.top-strip__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  /* padding tuned for touch; increases on bigger screens */
  padding: 10px 14px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero / Banner */
header {
  position: relative;
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  color: white;
  text-align: center;
  padding: 100px 20px 120px; /* extra bottom padding for the shape */
  overflow: hidden;
}

header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #f9fafb; /* matches site background */
  clip-path: polygon(0 100%, 100% 0, 100% 100%); /* diagonal edge */
}


header h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}
header p {
  font-size: 1.2rem;
}

.btn {
  display: inline-block;
  background: #fff;
  color: #1e3a8a;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  margin-top: 20px;
  text-decoration: none;
  transition: 0.3s;
}
.btn:hover {
  background: #f1f5f9;
}

section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.thumb {
  background: #e2e8f0;
  padding: 60px 0;
  border-radius: 8px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: auto;
}
input, textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: inherit;
}
button {
  background: #1e3a8a;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}
button:hover {
  background: #2563eb;
}

footer {
  background: #1e293b;
  color: #fff;
  text-align: center;
  padding: 20px;
}

#services {
  background: #fff;
  padding: 80px 20px;
}

.service-block {
  background: #f1f5f9;
  margin: 20px auto;
  padding: 30px;
  max-width: 700px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}
.service-block:hover {
  transform: translateY(-5px);
}

.service-block .icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.service-block h3 {
  margin-bottom: 15px;
  color: #1e3a8a;
}

.service-block ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.service-block ul li {
  margin: 8px 0;
  color: #444;
}

.btn-small {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 6px;
  background: #1e3a8a;
  color: #fff;
  font-size: 0.9rem;
  text-decoration: none;
  transition: 0.3s;
}
.btn-small:hover {
  background: #2563eb;
}

/* Brand block */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
  font-size: 1.05rem;
  text-transform: none;
  position: relative;
  isolation: isolate;
}

/* Small glow underline */
.brand::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #60a5fa, #93c5fd, transparent);
  opacity: 0.6;
}

/* Icon */
.brand__icon {
  width: 20px;
  height: 20px;
  color: #93c5fd; /* soft blue accent */
  filter: drop-shadow(0 0 6px rgba(147,197,253,0.35));
}

/* Text */
.brand__text {
  color: #ffffff;
}

/* Nav */
.top-nav {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
}
.top-nav a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 8px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.top-nav a:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
}
.top-nav .cta {
  background: #2563eb;
  color: #fff;
  padding: 6px 12px;
  border-radius: 10px;
  font-weight: 600;
}
.top-nav .cta:hover {
  background: #3b82f6;
}

/* Mobile-first: near full-width feel with generous padding */
/* Already full bleed; this increases tap targets and visual weight */
@media (min-width: 480px) {
  .top-strip__inner { padding: 12px 18px; }
}
@media (min-width: 768px) {
  .top-strip__inner { padding: 14px 24px; }
  .brand { font-size: 1.1rem; }
}
@media (min-width: 1024px) {
  .brand { font-size: 1.15rem; }
}

/* Prefer reduced motion */
@media (prefers-reduced-motion: reduce

/* Smooth scroll for anchor links */
html {
  scroll-behavior: smooth;
}