/* ============================================================
   DB SIGNS — IMPROVED STYLESHEET
   Senior redesign: same structure, elevated aesthetics
   ============================================================ */

/* === CSS CUSTOM PROPERTIES === */
:root {
  --primary: #0082CA;
  --primary-light: #29a3e8;
  --primary-dark: #005a8e;
  --navy: #071539;
  --navy-deep: #030b24;
  --ink: #0f172a;
  --ink-soft: #334155;
  --muted: #64748b;
  --soft: #f8fafc;
  --white: #ffffff;
  --border: rgba(0,130,202,.12);
  --border-light: rgba(0,0,0,.06);
  --radius: 8px;
  --radius-sm: 6px;
  --radius-xl: 12px;
  --shadow-sm: 0 2px 8px rgba(15,23,42,.06);
  --shadow: 0 8px 24px rgba(15,23,42,.09);
  --shadow-lg: 0 20px 48px rgba(15,23,42,.13);
  --shadow-blue: 0 12px 32px rgba(0,130,202,.22);
  --ring: 0 0 0 3px rgba(0,130,202,.2);
  --container: 1280px;
  --t: all .22s cubic-bezier(.4,0,.2,1);
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--soft);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; }
img { display: block; max-width: 100%; }

h1, h2, h3, h4 {
  font-family: 'Montserrat', system-ui, sans-serif;
  line-height: 1.15;
  letter-spacing: -.02em;
}
h1 { font-weight: 800; font-size: clamp(34px, 5.2vw, 64px); }
h2 { font-weight: 800; font-size: clamp(26px, 3.2vw, 46px); }
h3 { font-weight: 800; font-size: clamp(19px, 2vw, 32px); }
h4 { font-weight: 500; font-size: 1.05rem; }

p.lead {
  font-size: 1.0rem;
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 70ch;
}





.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* === TOPBAR === */
.topbar {
  background: var(--navy-deep);
  color: rgba(255,255,255,.85);

  position: fixed;
  top: 0;
  width: 100%;
  z-index: 200;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  gap: 1rem;
}
.topbar a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
  margin-right: 1.2rem;
  font-weight: 500;
  transition: color .2s;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.topbar a:hover { color: #fff; }
.topbar i { color: var(--primary-light);}
.topbar-right a { margin-right: .7rem; font-size: .95rem; color: rgba(255,255,255,.7); }
.topbar-right a:hover { color: var(--primary-light); }
@media (max-width: 768px) {
  .topbar-wrap { flex-direction: column; gap: .2rem; font-size: .82rem; text-align: center; padding: 6px 0; }
  .topbar-right { display: none; }
}

/* === HEADER & NAV === */
.site-header {
  position: sticky;
  top: 36px;
  z-index: 150;
  background: rgba(7,21,57,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 1.5rem;
}
.brand { display: inline-flex; align-items: center; }
.brand img { height: 32px; width: auto; }
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.4rem;
  align-items: center;
}
.main-nav a {
  color: rgba(255,255,255,.82);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .01em;
  transition: color .2s;
  padding: .2rem 0;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover {
  color: #fff;
  border-bottom-color: var(--primary-light);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  cursor: pointer;
  padding: .65rem 1.3rem;
  border-radius: 8px;
  border: 1.5px solid transparent;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .01em;
  transition: var(--t);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(0,130,202,.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,130,202,.4);
}
.btn-ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.25);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.45);
  transform: translateY(-1px);
}

/* Mobile nav */
.nav-close { display:none; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  padding: .2rem;
}
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .main-nav ul {
    position: absolute;
    right: 16px;
    top: 62px;
    flex-direction: column;
    gap: .5rem;
    background: #0d1627;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 16px;
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    display: none;
  }
  .main-nav ul.open { display: flex; }
  .site-header { top: 20px; }
  .nav-wrap { padding: 12px 16px; }
}

/* === HERO === */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
  /* Full-size background image set via inline style in HTML */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
/* Dark overlay on top of the background photo */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(3,11,36,.82) 0%, rgba(0,80,130,.65) 55%, rgba(0,50,90,.75) 100%);
  z-index: 1;
}
/* Animated mesh overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(0,130,202,.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(41,163,232,.12) 0%, transparent 50%);
  z-index: 1;
  animation: heroShimmer 8s ease-in-out infinite alternate;
}
@keyframes heroShimmer {
  from { opacity: .7; }
  to   { opacity: 1; }
}
.hero-inner {
  padding: 160px 0 100px;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero .content { max-width: 760px; }
.hero .kicker {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 1.2rem;
  font-size: .82rem;
}
.hero .kicker::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--primary-light);
  border-radius: 2px;
}
.hero h1 {
  margin-bottom: 1.2rem;
  color: #fff;
}
.hero .lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,.88);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 640px;
}
.hero .lead strong { color: #fff; font-weight: 700; }
.hero .cta { display: flex; gap: 1rem; flex-wrap: wrap; }

@media (max-width: 1000px) {
  .hero-inner { padding: 120px 0 80px; }
}
@media (max-width: 640px) {
  .hero-inner { padding: 80px 0 60px; }
  .hero .content { padding: 0 4px; }
}

/* Glow text effect */
.glow {
  color: #fff;
  animation: glowPulse 3s ease-in-out infinite alternate;
}
@keyframes glowPulse {
  from { text-shadow: 0 0 12px rgba(41,163,232,.4); }
  to   { text-shadow: 0 0 28px rgba(41,163,232,.85); }
}

/* === SECTION FOUNDATIONS === */
.section { padding: 60px 0; }
.section.alt { background: var(--soft); }
.whitebg { background: #fff !important; }

.services-kicker {
  display: inline-block;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  font-size: .78rem;
  margin-bottom: .6rem;
}
.section-title {
  margin-bottom: .8rem;
}

/* === SERVICES SECTION === */
.services-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 8px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 2.5rem;
}

/* === CARDS === */
.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow);
  transition: transform .28s cubic-bezier(.4,0,.2,1), box-shadow .28s cubic-bezier(.4,0,.2,1);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card-link { text-decoration: none; color: inherit; display: block; }
.card .img {
  margin: 0;
  height: 220px;
  overflow: hidden;
  background: #f0f6ff;
  position: relative;
  transition: 0.3s all;
  filter: grayscale(50%);
  
}
.card .img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.2) 0%, transparent 55%);
  transition: opacity .3s;
}
.card:hover .img::after { opacity: .5; }
.card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
}
.card:hover .img  { transform: scale(1.08); filter: grayscale(0%)!important;}
.card h3 {
  margin: 1.1rem 1.4rem .3rem;
  font-size: 1.1rem;
  color: var(--ink);
}
.card .bar {
  width: 36px;
  height: 3px;
  background: var(--primary);
  margin: .3rem 1.4rem .85rem;
  border-radius: 2px;
  transition: width .3s ease;
}
.card:hover .bar { width: 56px; }
.card p {
  color: var(--ink-soft);
  font-size: .85rem;
  padding: 0 1.4rem 1.6rem;
  line-height: 1.4;
}
.card.featured { border: 2px solid var(--primary); }
.badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--primary);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 3;
  letter-spacing: .03em;
  box-shadow: 0 3px 10px rgba(0,130,202,.35);
}

/* Subtle hover arrow */
.card::after {
  content: ">";
  position: absolute;
  right: 18px;
  bottom: 18px;
  font-weight: 800;
  color: #c0d4e8;
  font-size: 1.1rem;
  transition: transform .22s ease, color .22s ease;
}
.card:hover::after { transform: translateX(4px); color: var(--primary); }

@media (max-width: 640px) {
  .services-head { flex-direction: column; align-items: flex-start; }
}

/* === BANNER SPLIT === */
.banner-split {
  background: linear-gradient(120deg, var(--navy-deep) 0%, #005a8e 60%, var(--primary) 100%)!important;
  color: #fff;
  text-align: center;
  padding: 90px 20px;
  position: relative;
  overflow: hidden;
}
.banner-split::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.banner-split h2 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  margin-bottom: .7rem;
  position: relative;
}
.banner-split p {
  font-size: 1.1rem;
  opacity: .88;
  max-width: 620px;
  margin: 0 auto;
  position: relative;
}

/* === ABOUT SECTION === */
.about-section {
  background: var(--soft);
  position: relative;
}
.about-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  align-items: center;
  gap: 56px;
}
.about-content h2 { margin-bottom: 1rem; }
.about-content p { margin-bottom: 1.1rem; color: var(--ink-soft); }
.about-points { display: grid; gap: .9rem; margin: 1.6rem 0; }
.point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(7,21,57,.97);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.point:hover { transform: translateY(-3px); box-shadow: var(--shadow-blue); }
.point span {
  font-family: 'Material Symbols Rounded';
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,130,202,.28);
}
.point p { margin: 0; color: var(--soft); font-size: .97rem; }
.about-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.4rem; }
.pill {
  display: inline-block;
  background: #e7f4ff;
  color: #024d7a;
  border-radius: 999px;
  padding: .3rem .85rem;
  font-size: .82rem;
  font-weight: 700;
  border: 1px solid rgba(0,130,202,.15);
}
.about-media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-media img { width: 100%; height: auto; display: block; transition: transform .8s ease; }
.about-media:hover img { transform: scale(1.04); }
.about-media figcaption {
  font-size: .85rem;
  color: #555;
  background: rgba(255,255,255,.92);
  padding: .6rem .9rem;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  backdrop-filter: blur(6px);
}

/* === CORE COMPETENCIES === */
.core-section { background: #fff; position: relative; }
.core-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 5px;
  margin-top: 2.5rem;
}
.core-grid ul { list-style: none; }
.core-grid li {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
margin-bottom: 5px;
  color: var(--ink-soft);
  transition: 0.3s all;
  background: var(--soft);
    padding: 15px;
    font-weight: 600;
}
.core-grid .check {
  background: linear-gradient(135deg, #e0f1ff, #f0f8ff);
  color: var(--primary);
  border-radius: 50%;
  font-style: normal;
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-weight: 700;
  font-size: .88rem;
  border: 1.5px solid rgba(0,130,202,.15);
  transition: background .25s, color .25s, transform .25s;
}
.core-grid li:hover {
  transform: scale(1.01);

}
.core-grid li i{
    width:30px;
    color:var(--primary);
    margin-top:4px;
    flex-shrink:0;
    font-size: 20px;
    text-align:center;
}
/* === GALLERY === */
.gallery-section { background: var(--soft); overflow: hidden; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 2.5rem;
}
.gallery-item {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow);
  transition: transform .28s cubic-bezier(.4,0,.2,1), box-shadow .28s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
}
.gallery-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.gallery-item img { width: 100%; height: 240px; object-fit: cover; display: block; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item figcaption { padding: 16px 18px 20px; }
.gallery-item h3 { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin: 0; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.pagination a {
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: .9rem;
  border: 1px solid var(--border-light);
  transition: var(--t);
}
.pagination a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.pagination a.active { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: var(--shadow-blue); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(3,11,36,.94);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  backdrop-filter: blur(4px);
}
.lightbox[aria-hidden="false"] { opacity: 1; pointer-events: auto; }
.lightbox-inner { position: relative; max-width: 920px; width: 90%; text-align: center; color: #fff; }
.lightbox-body img {
  max-width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.lightbox-info { margin-top: 20px; }
.lightbox-info h3 { font-size: 1.35rem; margin-bottom: 6px; font-weight: 700; }
.lightbox-info p { color: rgba(255,255,255,.75); font-size: .98rem; line-height: 1.6; max-width: 680px; margin: 0 auto; }
.lightbox .close {
  position: absolute;
  top: -48px; right: 0;
  font-size: 32px;
  color: rgba(255,255,255,.75);
  cursor: pointer;
  transition: color .2s;
}
.lightbox .close:hover { color: #fff; }
.lightbox .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-size: 36px;
  padding: .35rem .85rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background .2s;
}
.lightbox .nav:hover { background: rgba(255,255,255,.24); }
.lightbox .prev { left: -70px; }
.lightbox .next { right: -70px; }
@media (max-width: 768px) {
  .gallery-item img { height: 200px; }
  .lightbox .prev { left: 8px; }
  .lightbox .next { right: 8px; }
  .lightbox .close { top: 8px; right: 8px; }
}

/* === CLIENTS === */
.clients-section.section.alt { background: var(--soft); }
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
  margin-top: 2.5rem;
  list-style: none;
  padding: 0;
}
.clients-grid li {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  color: var(--ink);
  min-height: 110px;
  padding: 1.4rem 1.2rem;
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
  transition: var(--t);
}
.clients-grid li::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent);
  opacity: 0;
  transition: opacity .25s;
}
.clients-grid li:hover::before { opacity: 1; }
.clients-grid li:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-blue);
  border-color: rgba(0,130,202,.2);
}
.clients-grid li small {
  display: block;
  font-size: .83rem;
  color: var(--muted);
  margin-top: 5px;
  font-weight: 500;
}
.clients-grid li.featured-client { border: 1.5px solid rgba(0,130,202,.3); }

/* === TESTIMONIALS === */
.testimonials-section { background: #fff; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
  margin-top: 2.5rem;
}
.testimonial {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 2.2rem 2rem;
  text-align: left;
  position: relative;
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 16px; left: 18px;
  font-size: 6rem;
  line-height: 1;
  color: rgba(0,130,202,.06);
  font-family: Georgia, serif;
  font-weight: 700;
}
.testimonial.featured { border: 1.5px solid rgba(0,130,202,.25); }
.testimonial blockquote {
  position: relative;
  z-index: 2;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.82;
  font-size: .98rem;
  margin-bottom: 1.6rem;
  padding-top: 1rem;
}
.testimonial h4 { font-size: 1rem; font-weight: 800; margin-bottom: .15rem; color: var(--ink); }
.testimonial .company { color: var(--primary); font-weight: 600; font-size: .92rem; }
.testimonial:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

/* === CONTACT SECTION === */
.contact-section {
  background: linear-gradient(160deg, #f0f7ff 0%, #f8fafc 50%, #ecf5ff 100%);
  position: relative;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
  align-items: start;
}
.contact-panel, .info-panel {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 36px 32px;
  border: 1px solid var(--border-light);
  transition: transform .3s ease, box-shadow .3s ease;
}
.contact-panel:hover, .info-panel:hover { transform: translateY(-4px); box-shadow: 0 24px 56px rgba(15,23,42,.12); }
.section-head { display: flex; align-items: center; gap: .7rem; margin-bottom: .9rem; flex-direction: column; align-items: flex-start; }
.section-head h2 { font-size: 1.55rem; font-weight: 800; display: flex; align-items: center; gap: .5rem; }
.section-head .material-symbols-rounded {
  background: var(--primary);
  color: #fff;
  border-radius: 9px;
  padding: .4rem;
  font-size: 1.4rem;
  box-shadow: 0 4px 12px rgba(0,130,202,.3);
}
.accent-line { height: 3px; background: var(--primary); width: 52px; border-radius: 2px; margin-bottom: 10px; }

/* Form */
form { margin-top: .6rem; }
.form-row { margin-bottom: 1.1rem; }
label { display: block; font-weight: 700; font-size: .9rem; margin-bottom: .4rem; color: var(--ink); }
label i { color: var(--primary); margin-right: .4rem; }
input, textarea, select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #dde6ef;
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: .95rem;
  color: var(--ink);
  background: #fafcfe;
  transition: border .22s, box-shadow .22s, background .22s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: var(--ring);
  background: #fff;
}
textarea { resize: vertical; }
.actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.2rem; }
.info-panel p { margin: .55rem 0; color: var(--ink-soft); line-height: 1.6; }
.info-panel a { color: var(--primary); font-weight: 600; }
.info-panel a:hover { text-decoration: underline; }
@media (max-width: 768px) {
  .contact-grid { gap: 24px; }
  .contact-panel, .info-panel { padding: 26px 22px; }
}

/* Share Widget */
.share-widget {
  text-align: center;
  margin-top: 1.8rem;
  background: var(--soft);
  border-radius: var(--radius-sm);
  padding: 1.4rem;
  border: 1px solid var(--border-light);
}
.share-widget h3 { font-family: 'Montserrat', sans-serif; font-size: 1rem; margin-bottom: .9rem; color: var(--ink); }
.share-buttons { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.share-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: #fff!important;
  font-size: 1rem;
  transition: var(--t);
  border: none;
  cursor: pointer;
}
.share-btn a {
  color: #FFF!Important;
}
.share-btn.fb { background: #1877f2; }
.share-btn.tw { background: #000; }
.share-btn.li { background: #0a66c2; }
.share-btn.em { background: #ea4335; }
.share-btn.copy { background: #fff; color: #444!important; border: 1.5px solid rgba(0,130,202,.25); }
.share-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 18px rgba(0,0,0,.2); filter: brightness(1.1); }

/* === FAQ === */
.faq { max-width: 880px; }
details {
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  padding: 16px 20px;
  margin-bottom: 10px;
  border: 1px solid var(--border-light);
  transition: box-shadow .22s;
}
details[open] { box-shadow: var(--shadow); border-color: rgba(0,130,202,.15); }
summary {
  cursor: pointer;
  font-weight: 700;
  font-size: .97rem;
  list-style: none;
  display: flex;
  align-items: center;
  gap: .7rem;
  color: var(--ink);
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; margin-left: auto; font-weight: 800; color: var(--primary); font-size: 1.2rem; transition: transform .22s; }
details[open] summary::after { content: "–"; }
details p { margin-top: 1rem; color: var(--ink-soft); line-height: 1.75; font-size: .96rem; }

.cta2 {
  display: inline-block;
  margin-top: 2rem;
  padding: .75rem 1.6rem;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .95rem;
  transition: var(--t);
  box-shadow: var(--shadow-blue);
}
.cta2:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* === CAPABILITIES STRIP === */
.capabilities-section { width: 100%; background: #fff; }
.capabilities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); }
.capability {
  color: #fff;
  padding: 3.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease;
}
.capability::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255,255,255,.15), transparent 60%);
}
.capability::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,.15);
}
.capability span { font-size: 40px; margin-bottom: 1rem; position: relative; z-index: 1; }
.capability h3 { font-size: 1rem; font-weight: 700; margin: 0; position: relative; z-index: 1; font-family: 'Montserrat', sans-serif; }
.c1 { background: linear-gradient(145deg, #8B0038, #A51144); }
.c2 { background: linear-gradient(145deg, #A8154F, #C2185B); }
.c3 { background: linear-gradient(145deg, #C82222, #E53935); }
.c4 { background: linear-gradient(145deg, #D83D18, #F4511E); }
.c5 { background: linear-gradient(145deg, #D97706, #FB8C00); }
@media (hover:hover) { .capability:hover { transform: translateY(-4px); } }

/* === FOOTER === */
.site-footer {
  background: linear-gradient(180deg, #0b1120 0%, #070d19 100%);
  color: #c8d6e4;
  font-size: .95rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 48px;
  padding: 64px 0 44px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand { display: flex; gap: 1rem; align-items: flex-start; }
.footer-brand img { width: 68px; }
.footer-brand p { opacity: .8; margin: .3rem 0 1rem; font-size: .92rem; line-height: 1.65; }
.socials { display: flex; gap: .75rem; }
.socials a {
  color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.07);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.08);
  transition: all .22s ease;
}
.socials a:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-2px); }
.footer-links h4, .footer-contact h4 { color: #fff; margin: 0 0 .9rem; font-size: 1rem; letter-spacing: .04em; text-transform: uppercase; font-size: .82rem; }
.footer-links ul { list-style: none; display: grid; gap: .5rem; }
footer ul li { border-left: 3px solid var(--primary); padding-left: 10px; }
.footer-links a { color: #c8d6e4; transition: color .2s; font-size: .93rem; }
.footer-links a:hover { color: var(--primary-light); }
.footer-contact p { margin: .45rem 0; line-height: 1.6; font-size: .93rem; }
.footer-contact i { color: var(--primary-light); margin-right: .45rem; }
.footer-contact a { color: #c8d6e4; }
.footer-contact a:hover { color: var(--primary-light); }
.footer-contact .abn { margin-top: .8rem; font-size: .82rem; opacity: .7; color: var(--primary-light); }
.legal {
  text-align: center;
  color: #657894;
  font-size: .75rem;
  padding: 18px 0;
}

/* === SERVICE PAGE === */
.service-hero-bg {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  padding: 110px 0 46px;
  overflow: hidden;
  isolation: isolate;
}
.service-hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.02);
  z-index: 0;
}
.service-hero-fallback {
  background: radial-gradient(circle at 20% 20%, rgba(0,130,202,.35), transparent 55%),
              radial-gradient(circle at 80% 40%, rgba(0,130,202,.25), transparent 60%),
              linear-gradient(135deg, #0f1b24, #101010);
}
.service-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(8,10,12,.82) 0%, rgba(8,10,12,.45) 45%, rgba(8,10,12,.12) 100%),
    radial-gradient(circle at 15% 85%, rgba(0,130,202,.25), transparent 55%);
}
.service-hero-inner { position: relative; z-index: 2; padding-bottom: 6px; color: #fff; }
.service-back { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.8); font-weight: 600; font-size: .92rem; margin-bottom: 12px; }
.service-back:hover { color: #fff; }
.service-title { font-family: "Montserrat", sans-serif; font-weight: 800; letter-spacing: -.02em; line-height: 1.05; margin: 0 0 10px; font-size: clamp(2rem, 3.2vw, 3.2rem); }
.service-sub { max-width: 70ch; margin: 0 0 18px; font-size: 1.05rem; line-height: 1.55; color: rgba(255,255,255,.85); }
.service-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; padding-top: 4px; }
.service-body .service-content {
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  padding: clamp(18px, 2.4vw, 32px);
  box-shadow: var(--shadow);
}
.service-content h2 {
    font-size: 2.2rem;
    margin: 0 0 16px;
    color: var(--ink);
    position: relative;
    padding-bottom: 10px;
    font-weight: 800;
}

.service-content h2::after,
.service-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30%;      /* fixed width */
    height: 4px;     /* border thickness */
    background: var(--primary);
}
.service-content h3 { font-size: 1.4rem; margin: 15px 0 8px; color: var(--ink); font-weight: 800;position: relative;padding-bottom: 10px;}
.service-content p { margin: 0 0 12px; color: var(--ink-soft); line-height: 1.72; }
.service-content ul, .service-content ol { padding-left: 1.2rem; margin: 10px 0 16px; color: var(--ink-soft); }
.service-content li { margin: 6px 0; }
.service-content a { color: var(--primary); font-weight: 700; border-bottom: 2px solid rgba(0,130,202,.22); }
.service-content a:hover { border-bottom-color: rgba(0,130,202,.55); }
.service-content img { max-width: 100%; height: auto; border-radius: var(--radius); margin: 16px 0; box-shadow: var(--shadow); }
.service-cta-row { display: flex; justify-content: flex-start; margin-top: 18px; }
.service-crumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: .88rem; color: rgba(255,255,255,.8); margin-bottom: 14px; }
.service-crumbs a { color: #fff; font-weight: 700; border-bottom: 2px solid rgba(255,255,255,.2); }
.service-crumbs a:hover { border-bottom-color: rgba(255,255,255,.4); }
.service-crumbs span { color: rgba(255,255,255,.6); }

@media (max-width: 700px) {
  .service-hero-bg { min-height: 54vh; padding: 96px 0 34px; }
  .service-sub { font-size: 1rem; }
  .service-hero-actions .btn { width: 100%; justify-content: center; }
}

/* === PATTERN UTILITY (subtle dot grid) === */
.pattern {
  background-image: radial-gradient(circle, rgba(0,130,202,.06) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* === GLOBAL MEDIA QUERIES === */
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .about-wrap { gap: 32px; }
  .core-grid { gap: 16px; }
  .testimonial { padding: 1.8rem 1.4rem; }
  .clients-grid li { min-height: 100px; }
  .card .img { height: 200px; }
}

/* ============================================================
   CLIENTS TICKER / MARQUEE
   ============================================================ */
.clients-section { overflow: hidden; }
.clients-section .container { padding-bottom: 0; }

.clients-ticker-wrap {
  position: relative;
  width: 100%;
  margin-top: 3rem;
  padding: 2px 0;
  overflow: hidden;
  /* Fade edges */
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.clients-ticker {
  display: flex;
  gap: 0;
  width: max-content;
  animation: ticker-scroll 40s linear infinite;
}

.clients-ticker-wrap:hover .clients-ticker {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 2rem;
  margin: 0 .5rem;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, border-color .25s;
  cursor: default;
  user-select: none;
}

.ticker-item:hover {
  border-color: rgba(0,130,202,.28);
}

.ticker-featured {
  border-color: rgba(0,130,202,.25);
  background: linear-gradient(to right, #f0f8ff, #fff);
}

.ticker-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  opacity: .7;
}

.ticker-featured .ticker-dot {
  background: var(--primary);
  opacity: 1;
  box-shadow: 0 0 0 2px rgba(0,130,202,.2);
}

.ticker-name {
  font-weight: 700;
  font-size: .95rem;
  color: var(--ink);
  letter-spacing: -.01em;
}

.ticker-cat {
  font-size: .78rem;
  font-weight: 500;
  color: var(--muted);
  padding: .15rem .6rem;
  background: var(--soft);
  border-radius: 999px;
  border: 1px solid var(--border-light);
}

/* ============================================================
   GALLERY CARDS — IMPROVED
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 26px;
  margin-top: 2.5rem;
}

.gallery-item {
  background: #fff;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 16px rgba(15,23,42,.07);
  transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
  position: relative;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1.5px rgba(0,130,202,0);
  transition: box-shadow .3s;
  pointer-events: none;
}



.gallery-item:hover {
  transform: translateY(-7px);

}

.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item figcaption {
  padding: 18px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gallery-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  line-height: 1.3;
}

.gallery-item figcaption::after {
  content: '→';
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .25s, transform .25s;
  flex-shrink: 0;
}

.gallery-item:hover figcaption::after {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   PAGINATION — SHARED (gallery + testimonials)
   ============================================================ */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 44px;
}

.pag-btn {
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: .9rem;
  border: 1.5px solid var(--border-light);
  cursor: pointer;
  transition: var(--t);
  font-family: inherit;
  min-width: 42px;
}

.pag-btn:hover {
  background: #e8f4ff;
  border-color: rgba(0,130,202,.3);
  color: var(--primary);
}

.pag-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(0,130,202,.32);
}

/* Testimonials pagination sits below section */
.tpag { margin-top: 32px; }

/* ============================================================
   TESTIMONIALS — TRANSITION READY
   ============================================================ */
.testimonials-grid {
  transition: opacity .22s, transform .22s;
}

@media (max-width: 768px) {
  .gallery-item img { height: 200px; }
  .ticker-item { padding: .7rem 1.4rem; }
}

/* ============================================================
   MOBILE NAV — SLIDE-IN DRAWER
   ============================================================ */

/* Overlay backdrop */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(3,11,36,.55);
  backdrop-filter: blur(3px);
  z-index: 140;
  opacity: 0;
  transition: opacity .28s ease;
}
.nav-overlay.open {
  display: block;
  opacity: 1;
}

@media (max-width: 900px) {

  /* Hamburger */
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: background .2s;
    flex-shrink: 0;
    padding: 0;
  }
  .nav-toggle:hover { background: rgba(255,255,255,.14); }
  .nav-toggle.is-open { background: rgba(0,130,202,.25); border-color: rgba(0,130,202,.4); }

  /* Drawer panel */
  .main-nav ul {
    position: absolute;
    top: 0;
    right: -110%!important;
    bottom: 0;
    width: min(300px, 82vw);
    flex-direction: column;
    gap: 0;
    background: #071539;
    border-left: 1px solid rgba(255,255,255,.08);
    padding: 0;
    box-shadow: -12px 0 48px rgba(0,0,0,.5);
    z-index: 160;
    display: flex !important;
    overflow-y: auto;
  }

  .main-nav ul.open {
    right:0!important;
  }

  /* Drawer header */
  .main-nav ul::before {
    content: 'Menu';
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: .75rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    padding: 1.4rem 1.5rem .9rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
    flex-shrink: 0;
  }

  /* Nav items */
  .main-nav ul li {
    border-bottom: 1px solid rgba(255,255,255,.05);
  }

  .main-nav ul li:last-child {
    border-bottom: none;
  }

  .main-nav a {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    font-size: .95rem;
    font-weight: 600;
    color: rgba(255,255,255,.75);
    border-bottom: none;
    transition: background .18s, color .18s, padding-left .18s;
  }

  .main-nav a::after {
    content: '→';
    margin-left: auto;
    opacity: 0;
    font-size: .9rem;
    color: var(--primary-light);
    transition: opacity .18s, transform .18s;
    transform: translateX(-4px);
  }

  .main-nav a:hover {
    background: rgba(255,255,255,.05);
    color: #fff;
    padding-left: 1.75rem;
    border-bottom: none;
  }

  .main-nav a:hover::after {
    opacity: 1;
    transform: translateX(0);
  }

  /* Close button inside drawer */
  .nav-close {
    display: flex;
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    color: rgba(255,255,255,.7);
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
    z-index: 1;
  }

  .nav-close:hover {
    background: rgba(255,255,255,.15);
    color: #fff;
  }

  /* Header sticks under topbar */
  .site-header { top: 23px; }
  .nav-wrap { padding: 10px 16px; }

}

/* ============================================================
   HERO — MOBILE IMPROVEMENTS
   ============================================================ */

/* Tighten the topbar on mobile so it's one compact line */
@media (max-width: 768px) {
  .topbar-wrap {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    gap: 0;
    flex-wrap: nowrap;
  }
  .topbar-left a {
    margin-right: .65rem;
    font-size: .78rem;
  }
  .topbar-right { display: flex; }
  .topbar-right a { margin-right: .5rem; font-size: .88rem; }
}

@media (max-width: 480px) {
  /* Hide email on tiny screens, keep phone */
  .topbar-left a:last-child { display: none; }
}

/* Hero mobile padding + sizing */
@media (max-width: 900px) {
  .hero {
    min-height: 85vh;
    align-items: flex-end;
  }
  .hero-inner {
    padding: 120px 0 64px;
  }
  .hero .content {
    padding: 0;
  }
  .hero h1 {
    font-size: clamp(28px, 7vw, 46px);
  }
  .hero .lead {
    font-size: 1rem;
  }
  .hero .cta {
    gap: .75rem;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 100svh;
    align-items: center;
  }
  .hero-inner {
    padding: 100px 0 56px;
  }
  .hero .content {
    padding: 0 4px;
  }
  .hero h1 {
    font-size: clamp(26px, 8vw, 38px);
    margin-bottom: 1rem;
  }
  .hero .kicker {
    font-size: .75rem;
    margin-bottom: .9rem;
  }
  .hero .lead {
    font-size: .95rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
  }
  /* Stack CTA buttons full-width on small screens */
  .hero .cta {
    flex-direction: column;
    gap: .65rem;
  }
  .hero .cta .btn {
    width: 100%;
    justify-content: center;
    padding: .8rem 1.2rem;
  }
}

@media (max-width: 380px) {
  .hero-inner {
    padding: 90px 0 48px;
  }
  .hero h1 {
    font-size: clamp(23px, 8.5vw, 32px);
  }
}

/* === FINAL MOBILE NAV FIX === */
@media (max-width: 900px){
  .site-header,
  .nav-wrap,
  .main-nav{
    overflow: visible !important;
  }

  .main-nav ul{
    position: fixed !important;
    top: 72px !important;
    width: min(320px, 88vw) !important;
    height: calc(100vh - 72px) !important;
    max-height: calc(100vh - 72px) !important;
    border-radius: 18px 0 0 18px !important;
    padding-bottom: 40px !important;
    z-index: 9999 !important;
  }

  .nav-close{
    display:flex !important;
  }

  body.menu-open{
    overflow:hidden;
  }
}

@media (min-width: 901px){
  .nav-close,
  .nav-toggle,
  .nav-overlay{
    display:none !important;
  }

  .main-nav ul{
    transform:none !important;
    position:relative !important;
    height:auto !important;
    width:auto !important;
    background:transparent !important;
    box-shadow:none !important;
    border:none !important;
    top:auto !important;

  }
}


/* Interactive Service Form */
.interactive-quote-form .form-intro {
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.08);
  margin-bottom: 18px;
}

.interactive-quote-form .mini-badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
}

.primary-trigger input {
  transition: all .3s ease;
}

.primary-trigger input:focus {
  transform: translateY(-1px);
}

.nested-fields {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(12px);
  transition: max-height .55s ease, opacity .4s ease, transform .4s ease;
}

.nested-fields.open {
  max-height: 1000px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 12px;
}


/* === 2026 UI POLISH REFINEMENTS === */
body{
  background: linear-gradient(to bottom,#f7f9fc 0%,#f5f7fb 100%);
  color:#132238;
}

section{
  position:relative;
}

.container{
  width:min(100%,1280px);
}

.site-header{
  background:rgba(7,21,57,.92);
  box-shadow:0 10px 30px rgba(3,11,36,.12);
}

.main-nav a{
  font-size:.92rem;
  position:relative;
}

.main-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:100%;
  height:2px;
  background:var(--primary-light);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .22s ease;
}

.main-nav a:hover::after{
  transform:scaleX(1);
}

.hero{
  overflow:hidden;
}

.card,
.service-card,
.quote-card,
.client-card,
.testimonial-card{
  border:1px solid rgba(15,23,42,.06);
  box-shadow:0 10px 30px rgba(15,23,42,.06);
}

.service-card{
  border-radius:22px;
  overflow:hidden;
  background:#fff;
  transition:transform .25s ease, box-shadow .25s ease;
}

.service-card:hover{
  transform:translateY(-5px);
  box-shadow:0 20px 40px rgba(15,23,42,.12);
}

.service-card img{
  aspect-ratio:16/10;
  object-fit:cover;
}

.service-card-content{
  padding:1.4rem;
}

section:nth-of-type(even){
  background:rgba(255,255,255,.55);
  backdrop-filter:blur(2px);
}

.btn{
  border-radius:12px;
}

input,textarea,select{
  transition:border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

footer{
  border-top:1px solid rgba(255,255,255,.08);
}

@media (max-width:768px){
  h1{
    line-height:1.02;
  }

  .container{
    padding:0 18px;
  }
}


#scrollTopBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: #111;
  color: #fff;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 9999;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#scrollTopBtn:hover {
  transform: translateY(-3px);
  background: #333;
}