/* ==========================================================================
   CORDEX Pvt Ltd — Engineering Consultancy
   style.css  ·  custom layer over Bootstrap 5.3
   --------------------------------------------------------------------------
   Palette: white and blue. The blue is a clean medium blue drawn from the
   logo's steel tone, brightened so nothing reads as navy. Plenty of white,
   light-blue tints for alternating sections, one crisp accent blue for calls
   to action, and WhatsApp green reserved for the booking button.
   ========================================================================== */

:root {
  /* Blues — light to medium, never navy */
  --blue:        #1B72BC;   /* primary (AA as text on white) */
  --blue-dark:   #1667AB;   /* hover / stronger text on white */
  --blue-deep:   #12507F;   /* deepest value used — still a true blue */
  --blue-bright: #2E9BE0;   /* highlights, gradients */
  --sky:         #EAF4FC;   /* light section wash */
  --sky-2:       #DCEDF9;   /* card tint / borders */
  --sky-3:       #F4F9FD;   /* faintest wash */
  --steel:       #537A9B;   /* logo tone, for muted marks */

  /* Neutrals */
  --white:       #FFFFFF;
  --ink:         #1D2A38;   /* body headings — dark slate, not black */
  --body:        #4C5A68;   /* body text */
  --muted:       #667380;   /* secondary text (AA on white & sky) */
  --line:        #E4EBF1;   /* hairlines */

  /* WhatsApp */
  --wa:          #25D366;   /* WhatsApp brand green (fill) */
  --wa-dark:     #1DA851;   /* hover fill */
  --wa-ink:      #0A3D2A;   /* dark green for text/icon — AA on the fill */

  /* Type */
  --f-head: "Poppins", "Segoe UI", system-ui, sans-serif;
  --f-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --radius: 10px;
  --radius-sm: 7px;
  --shadow: 0 10px 30px -12px rgba(29,42,56,.16);
  --shadow-lg: 0 24px 60px -20px rgba(18,80,127,.28);
  --ease: cubic-bezier(.22,.61,.36,1);
  --sec: clamp(58px, 7vw, 104px);
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */
* { -webkit-font-smoothing: antialiased; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--f-body);
  color: var(--body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--f-head); color: var(--ink); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); font-weight: 800; letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3.3vw, 2.5rem); letter-spacing: -.015em; }
h3 { font-size: clamp(1.15rem, 1.7vw, 1.4rem); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
a { color: var(--blue); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--blue-dark); }
img { max-width: 100%; height: auto; }
::selection { background: var(--blue); color: #fff; }
:focus-visible { outline: 3px solid var(--blue-bright); outline-offset: 2px; border-radius: 4px; }
.container { max-width: 1200px; padding-left: 1.5rem; padding-right: 1.5rem; }

/* --------------------------------------------------------------------------
   Helpers
   -------------------------------------------------------------------------- */
.sec { padding-block: var(--sec); position: relative; }
.bg-sky { background: var(--sky); }
.bg-sky-soft { background: var(--sky-3); }
.bg-blue { background: var(--blue); }
.text-blue { color: var(--blue) !important; }
.lead-p { font-size: 1.08rem; color: var(--body); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--f-head); font-weight: 600; font-size: .78rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--blue);
  margin-bottom: .9rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--blue); border-radius: 2px; }
.eyebrow.center { justify-content: center; }

.section-head { max-width: 720px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--muted); margin-top: .5rem; }

/* Buttons */
.btn { font-family: var(--f-head); font-weight: 600; font-size: .92rem; letter-spacing: .01em;
  padding: .8rem 1.6rem; border-radius: 50px; transition: all .25s var(--ease);
  display: inline-flex; align-items: center; gap: .5rem; border: 2px solid transparent; }
.btn i { font-size: 1.05rem; }
.btn-primary { background: var(--blue); border-color: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); color: #fff;
  transform: translateY(-2px); box-shadow: 0 12px 26px -10px rgba(30,122,196,.55); }
.btn-outline { background: transparent; border-color: var(--blue); color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }
.btn-white { background: #fff; border-color: #fff; color: var(--blue); }
.btn-white:hover { background: var(--sky); border-color: var(--sky); color: var(--blue-dark); transform: translateY(-2px); }
.btn-ghost-white { background: transparent; border-color: rgba(255,255,255,.6); color: #fff; }
.btn-ghost-white:hover { background: #fff; border-color: #fff; color: var(--blue); transform: translateY(-2px); }
.btn-wa { background: var(--wa); border-color: var(--wa); color: var(--wa-ink); }
.btn-wa:hover { background: var(--wa-dark); border-color: var(--wa-dark); color: var(--wa-ink); transform: translateY(-2px);
  box-shadow: 0 12px 26px -10px rgba(37,211,102,.6); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-sm { padding: .6rem 1.2rem; font-size: .85rem; }

/* --------------------------------------------------------------------------
   Top bar
   -------------------------------------------------------------------------- */
.topbar { background: var(--blue-deep); color: #fff; font-size: .84rem; }
.topbar a { color: rgba(255,255,255,.92); }
.topbar a:hover { color: #fff; }
.topbar .tb-inner { display: flex; justify-content: space-between; align-items: center; padding: .5rem 0; gap: .6rem 1.4rem; flex-wrap: wrap; }
.topbar .tb-left { display: flex; align-items: center; gap: .4rem 1.4rem; flex-wrap: wrap; }
.topbar .tb-right { display: flex; align-items: center; gap: 1rem; }
.topbar .tb-item { display: inline-flex; align-items: center; gap: .45rem; white-space: nowrap; }
.topbar .tb-item i { color: var(--blue-bright); }
.topbar .tb-book { font-weight: 600; }
.topbar .tb-book i { font-size: 1rem; }
.topbar .tb-social { display: flex; gap: .3rem; }
.topbar .tb-social a { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%;
  background: rgba(255,255,255,.14); transition: background .2s; }
.topbar .tb-social a:hover { background: var(--blue-bright); }

/* Tablet & down: keep the bar (and the call number) visible, trimmed to fit.
   The "Book a Consultation" label collapses to its icon; location and the
   book-label hide first; the phone always stays. */
@media (max-width: 991.98px){
  .topbar { font-size: .82rem; }
  .topbar .tb-inner { justify-content: center; gap: .3rem 1.1rem; }
  .topbar .tb-loc { display: none; }
  .topbar .tb-book span { display: none; }
  .topbar .tb-book { width: 30px; height: 30px; justify-content: center; border-radius: 50%; background: rgba(255,255,255,.14); }
  .topbar .tb-book i { font-size: 1.05rem; }
}
@media (max-width: 767.98px){
  .topbar { font-size: .8rem; }
  .topbar .tb-inner { padding: .45rem 0; gap: .2rem .9rem; flex-wrap: nowrap; }
  .topbar .tb-email { display: none; }              /* email drops; tap-to-call phone stays */
  .topbar .tb-social { display: none; }             /* WhatsApp still reachable via the book icon + floating button */
  .topbar .tb-phone { font-weight: 600; font-size: .88rem; }
  .topbar .tb-phone i { font-size: .95rem; }
}
/* Very narrow phones: show the phone on its own, centred and tappable. */
@media (max-width: 359.98px){
  .topbar .tb-book { display: none; }
}

/* --------------------------------------------------------------------------
   Navbar
   -------------------------------------------------------------------------- */
.navbar { background: #fff; box-shadow: 0 2px 20px -8px rgba(29,42,56,.14); padding: .5rem 0; transition: box-shadow .3s; }
.navbar.stuck { position: fixed; top: 0; left: 0; right: 0; z-index: 1030; box-shadow: 0 6px 26px -10px rgba(29,42,56,.24);
  animation: slideDown .35s var(--ease); }
@keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }
.navbar-brand img { height: 46px; width: auto; }
.navbar .nav-link { font-family: var(--f-head); font-weight: 600; font-size: .86rem; letter-spacing: .02em;
  text-transform: uppercase; color: var(--ink) !important; padding: .6rem .85rem !important; position: relative; }
.navbar .nav-link::after { content: ""; position: absolute; left: .85rem; right: .85rem; bottom: .35rem; height: 2px;
  background: var(--blue); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.navbar .nav-link:hover::after, .navbar .nav-item.active > .nav-link::after { transform: scaleX(1); }
.navbar .nav-link:hover, .navbar .nav-item.active > .nav-link { color: var(--blue) !important; }
.navbar .dropdown-toggle::after { border: 0; content: "\F282"; font-family: bootstrap-icons; font-size: .62rem; vertical-align: middle; margin-left: .3rem; }
.navbar .dropdown-menu { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .4rem; margin-top: .4rem;
  box-shadow: var(--shadow); }
.navbar .dropdown-item { font-family: var(--f-head); font-weight: 500; font-size: .82rem; color: var(--body);
  padding: .55rem .8rem; border-radius: 6px; white-space: nowrap; }
.navbar .dropdown-item:hover, .navbar .dropdown-item.active { background: var(--sky); color: var(--blue-dark); }
.navbar .navbar-toggler { border: 1px solid var(--line); padding: .4rem .55rem; }
.navbar .navbar-toggler:focus { box-shadow: none; }
.nav-cta { margin-left: .5rem; }

.dd-mega { min-width: 560px; }
.dd-mega .row { --bs-gutter-x: .2rem; --bs-gutter-y: 0; }
@media (max-width: 1199.98px){ .dd-mega { min-width: auto; } }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero { position: relative; background: linear-gradient(120deg, var(--sky) 0%, #fff 45%, var(--sky-3) 100%); overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(30,122,196,.10) 1px, transparent 0); background-size: 26px 26px;
  mask-image: linear-gradient(120deg, #000, transparent 70%); pointer-events: none; }
.hero-blob { position: absolute; top: -12%; right: -10%; width: 55%; max-width: 720px; opacity: .9; pointer-events: none; z-index: 0; }
.hero .container { position: relative; z-index: 2; }
.hero-inner { padding-block: clamp(56px, 8vw, 15px); }
.hero .badge-soft { display: inline-flex; align-items: center; gap: .5rem; background: #fff; border: 1px solid var(--sky-2);
  color: var(--blue-dark); font-weight: 600; font-size: .8rem; padding: .45rem 1rem; border-radius: 50px; box-shadow: var(--shadow); margin-bottom: 1.4rem; }
.hero .badge-soft .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--wa); box-shadow: 0 0 0 4px rgba(37,211,102,.18); }
.hero h1 { color: var(--ink); margin-bottom: 1.2rem; }
.hero h1 .hl { color: var(--blue); position: relative; }
.hero-sub { font-size: 1.12rem; color: var(--body); max-width: 60ch; margin-bottom: 2rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.6rem; margin-top: 2.5rem; padding-top: 1.6rem; border-top: 1px solid var(--sky-2); }
.hero-trust .ht { display: flex; flex-direction: column; }
.hero-trust .ht b { font-family: var(--f-head); font-size: 1.5rem; color: var(--blue-dark); line-height: 1; }
.hero-trust .ht span { font-size: .8rem; color: var(--muted); margin-top: .25rem; }

.hero-visual { position: relative; }
.hero-visual .hv-card { position: absolute; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: .9rem 1.1rem; display: flex; align-items: center; gap: .7rem; font-size: .85rem; font-weight: 600; color: var(--ink); }
.hero-visual .hv-card i { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 8px; background: var(--sky); color: var(--blue); font-size: 1.1rem; }
.hv-card.c1 { top: 12%; left: -6%; } .hv-card.c2 { bottom: 14%; right: -4%; }
@media (max-width: 991.98px){ .hero-visual { display: none; } }

/* --------------------------------------------------------------------------
   Feature strip
   -------------------------------------------------------------------------- */
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.7rem; height: 100%;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; }
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--sky-2); }
.feature .fi { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright)); color: #fff; font-size: 1.6rem; margin-bottom: 1.2rem; box-shadow: 0 10px 22px -10px rgba(30,122,196,.6); }
.feature h3 { margin-bottom: .6rem; }
.feature p { color: var(--muted); font-size: .94rem; margin: 0; }

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */
.about-media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-media img, .about-media svg { display: block; width: 100%; }
.about-badge { position: absolute; left: 1.2rem; bottom: 1.2rem; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 1rem 1.3rem; display: flex; align-items: center; gap: .9rem; }
.about-badge b { font-family: var(--f-head); font-size: 2rem; color: var(--blue); line-height: 1; }
.about-badge span { font-size: .82rem; color: var(--muted); }
.tick-list { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: .6rem 1.4rem; }
.tick-list li { position: relative; padding-left: 1.9rem; font-size: .94rem; color: var(--ink); font-weight: 500; }
.tick-list li::before { content: "\F26E"; font-family: bootstrap-icons; position: absolute; left: 0; top: -1px; color: var(--blue); font-size: 1.15rem; }
@media (max-width: 575.98px){ .tick-list { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Service cards
   -------------------------------------------------------------------------- */
.svc-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; height: 100%; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--sky-2); }
.svc-top { position: relative; aspect-ratio: 16/10; background: linear-gradient(135deg, var(--blue), var(--blue-bright)); overflow: hidden; }
.svc-top svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.svc-ic { position: absolute; left: 1.1rem; bottom: -26px; width: 56px; height: 56px; display: grid; place-items: center;
  background: #fff; border-radius: 14px; box-shadow: var(--shadow); color: var(--blue); font-size: 1.5rem; z-index: 2; }
.svc-body { padding: 2.2rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.svc-body h3 { font-size: 1.08rem; margin-bottom: .55rem; }
.svc-body h3 a { color: var(--ink); }
.svc-card:hover h3 a { color: var(--blue); }
.svc-body p { font-size: .9rem; color: var(--muted); margin-bottom: 1.1rem; }
.svc-more { margin-top: auto; font-family: var(--f-head); font-weight: 600; font-size: .82rem; color: var(--blue);
  display: inline-flex; align-items: center; gap: .4rem; }
.svc-more i { transition: transform .25s var(--ease); }
.svc-card:hover .svc-more i { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   Stats band
   -------------------------------------------------------------------------- */
.stats { background: linear-gradient(120deg, var(--blue-deep), var(--blue)); position: relative; overflow: hidden; }
.stats::before { content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.14) 1px, transparent 0); background-size: 24px 24px; }
.stats .container { position: relative; }
.stat { text-align: center; color: #fff; padding: .6rem; }
.stat b { font-family: var(--f-head); font-size: clamp(2.4rem,5vw,3.3rem); font-weight: 800; line-height: 1; display: block; }
.stat b .plus { color: #BFE4FF; }
.stat span { font-size: .86rem; text-transform: uppercase; letter-spacing: .1em; color: #fff; margin-top: .5rem; display: block; }
.stat .divider { width: 32px; height: 3px; background: rgba(255,255,255,.5); border-radius: 3px; margin: .8rem auto 0; }

/* --------------------------------------------------------------------------
   Team
   -------------------------------------------------------------------------- */
.member { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; height: 100%;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.member:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.member-photo { aspect-ratio: 1/1; background: var(--sky); position: relative; overflow: hidden; }
.member-photo img, .member-photo svg { width: 100%; height: 100%; object-fit: cover; }
.member-body { padding: 1.3rem; text-align: center; }
.member-body h3 { font-size: 1.05rem; margin-bottom: .2rem; }
.member-role { font-family: var(--f-head); font-weight: 600; font-size: .78rem; color: var(--blue); text-transform: uppercase; letter-spacing: .04em; }
.member-body p { font-size: .86rem; color: var(--muted); margin: .7rem 0 1rem; }
.member-social { display: flex; justify-content: center; gap: .4rem; }
.member-social a, .member-social button { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%;
  background: var(--sky); color: var(--blue); border: 0; transition: all .2s; font-size: .9rem; }
.member-social a:hover, .member-social button:hover { background: var(--blue); color: #fff; }

.modal-team .modal-content { border: 0; border-radius: var(--radius); overflow: hidden; }
.modal-team .modal-header { background: linear-gradient(120deg, var(--blue), var(--blue-bright)); border: 0; padding: 1.5rem 1.7rem; align-items: center; gap: 1rem; }
.modal-team .mt-avatar { width: 60px; height: 60px; border-radius: 12px; overflow: hidden; flex: none; background: rgba(255,255,255,.2); }
.modal-team .mt-avatar svg, .modal-team .mt-avatar img { width: 100%; height: 100%; }
.modal-team .modal-title { color: #fff; font-size: 1.2rem; }
.modal-team .mt-role { color: #fff; font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.modal-team .btn-close { filter: brightness(0) invert(1); opacity: .8; }
.modal-team .modal-body { padding: 1.7rem; max-height: 60vh; overflow-y: auto; }
.modal-team .modal-body p { font-size: .93rem; }

/* --------------------------------------------------------------------------
   Sectors / expertise
   -------------------------------------------------------------------------- */
.sector { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.3rem; height: 100%; text-align: center;
  transition: all .3s var(--ease); }
.sector:hover { background: linear-gradient(135deg, var(--blue), var(--blue-bright)); border-color: transparent; transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.sector i { font-size: 2rem; color: var(--blue); transition: color .3s; }
.sector:hover i { color: #fff; }
.sector h4 { font-size: .98rem; margin: .8rem 0 .4rem; transition: color .3s; }
.sector:hover h4 { color: #fff; }
.sector p { font-size: .82rem; color: var(--muted); margin: 0; transition: color .3s; }
.sector:hover p { color: rgba(255,255,255,.92); }

/* --------------------------------------------------------------------------
   Process
   -------------------------------------------------------------------------- */
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem 1.5rem; height: 100%; position: relative;
  transition: all .3s var(--ease); }
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--sky-2); }
.step .num { font-family: var(--f-head); font-weight: 800; font-size: 2.4rem; color: #4A90CA; line-height: 1; }
.step:hover .num { color: var(--blue); }
.step h3 { font-size: 1.05rem; margin: .6rem 0 .5rem; }
.step p { font-size: .9rem; color: var(--muted); margin: 0; }

/* --------------------------------------------------------------------------
   Gallery
   -------------------------------------------------------------------------- */
.gal-filter { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: 2.4rem; }
.gal-filter button { font-family: var(--f-head); font-weight: 600; font-size: .82rem; padding: .55rem 1.2rem; border-radius: 50px;
  border: 2px solid var(--line); background: #fff; color: var(--body); transition: all .2s; }
.gal-filter button:hover { border-color: var(--blue); color: var(--blue); }
.gal-filter button.active { background: var(--blue); border-color: var(--blue); color: #fff; }
.gal-item { transition: opacity .3s, transform .3s; }
.gal-item.hide { display: none; }
.gal-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow); }
.gal-card svg { width: 100%; height: 100%; display: block; }
.gal-cap { position: absolute; inset: 0; background: linear-gradient(to top, rgba(18,80,127,.92), rgba(18,80,127,.15) 55%, transparent);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.3rem; opacity: 0; transition: opacity .3s var(--ease); }
.gal-card:hover .gal-cap { opacity: 1; }
.gal-cap b { color: #fff; font-family: var(--f-head); font-size: 1rem; }
.gal-cap span { color: #BFE4FF; font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.tm-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.7rem; height: 100%; }
.tm-card .quote { color: var(--blue); font-size: 2rem; line-height: 1; }
.tm-card p { font-size: .95rem; color: var(--body); font-style: italic; margin: .8rem 0 1.4rem; }
.tm-who { display: flex; align-items: center; gap: .8rem; }
.tm-who .av { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--blue-bright)); color: #fff;
  display: grid; place-items: center; font-family: var(--f-head); font-weight: 700; }
.tm-who b { display: block; color: var(--ink); font-family: var(--f-head); font-size: .95rem; }
.tm-who span { font-size: .82rem; color: var(--muted); }
.tm-stars { color: #F5B841; margin-bottom: .3rem; }

/* --------------------------------------------------------------------------
   Page header (inner pages)
   -------------------------------------------------------------------------- */
.page-hero { background: linear-gradient(120deg, var(--blue-deep), var(--blue)); position: relative; overflow: hidden;
  padding: clamp(52px,7vw,88px) 0 clamp(48px,6vw,72px); }
.page-hero::before { content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.14) 1px, transparent 0); background-size: 26px 26px; }
.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; }
.page-hero .breadcrumb { margin: .8rem 0 0; }
.page-hero .breadcrumb-item, .page-hero .breadcrumb-item a { color: #fff; font-size: .88rem; font-weight: 500; }
.page-hero .breadcrumb-item.active { color: #fff; }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.6); }
.page-hero p { color: #fff; max-width: 60ch; margin-top: .8rem; }

/* --------------------------------------------------------------------------
   Service detail
   -------------------------------------------------------------------------- */
.svc-hero-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.svc-hero-media svg { display: block; width: 100%; }
.side-card { background: var(--sky); border-radius: var(--radius); padding: 1.6rem; }
.side-card h3 { font-size: 1rem; margin-bottom: 1rem; }
.side-nav { list-style: none; padding: 0; margin: 0 0 1.4rem; }
.side-nav a { display: flex; align-items: center; gap: .6rem; padding: .6rem .8rem; border-radius: 8px; font-family: var(--f-head);
  font-weight: 500; font-size: .84rem; color: var(--body); }
.side-nav a:hover { background: #fff; color: var(--blue); }
.side-nav a.active { background: var(--blue); color: #fff; }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { position: relative; padding: .6rem 0 .6rem 2rem; border-bottom: 1px solid var(--line); font-size: .94rem; }
.check-list li:last-child { border-bottom: 0; }
.check-list li::before { content: "\F26E"; font-family: bootstrap-icons; position: absolute; left: 0; top: .55rem; color: var(--blue); font-size: 1.1rem; }

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */
.cta { background: linear-gradient(120deg, var(--blue-deep), var(--blue)); position: relative; overflow: hidden; }
.cta::before { content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.12) 1px, transparent 0); background-size: 26px 26px; }
.cta .container { position: relative; }
.cta h2 { color: #fff; }
.cta p { color: #fff; }

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem; height: 100%; transition: all .3s var(--ease); }
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--sky-2); }
.info-card .ic { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright)); color: #fff; font-size: 1.35rem; margin-bottom: 1rem; }
.info-card h4 { font-size: 1rem; margin-bottom: .5rem; }
.info-card p { font-size: .92rem; color: var(--body); margin: 0; }
.info-card a { color: var(--body); }
.info-card a:hover { color: var(--blue); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow); }
.form-label { font-family: var(--f-head); font-weight: 600; font-size: .82rem; color: var(--ink); margin-bottom: .4rem; }
.form-control, .form-select { border: 1.5px solid var(--line); border-radius: 8px; padding: .75rem .95rem; font-size: .94rem; color: var(--ink); }
.form-control:focus, .form-select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(30,122,196,.14); }
.form-control::placeholder { color: #A6B1BC; }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.map-embed iframe { display: block; width: 100%; height: 100%; min-height: 340px; border: 0; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer { background: var(--sky); border-top: 1px solid var(--sky-2); padding-top: clamp(52px,6vw,76px); }
.footer .f-logo { height: 65px; margin-bottom: 1.1rem; }
.footer p { color: var(--body); font-size: .92rem; }
.footer h4 { font-family: var(--f-head); font-size: .95rem; color: var(--ink); margin-bottom: 1.1rem; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: .55rem; }
.footer ul a, .footer .f-contact li { font-size: .9rem; color: var(--body); display: inline-flex; align-items: flex-start; gap: .55rem; }
.footer ul a:hover { color: var(--blue); }
.footer .f-contact i { color: var(--blue); margin-top: .25rem; }
.footer .f-social { display: flex; gap: .5rem; margin-top: 1.2rem; }
.footer .f-social a { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: #fff;
  color: var(--blue); border: 1px solid var(--sky-2); transition: all .2s; }
.footer .f-social a:hover { background: var(--blue); color: #fff; transform: translateY(-3px); }
.footer-bar { border-top: 1px solid var(--sky-2); margin-top: clamp(38px,5vw,56px); padding: 1.3rem 0; }
.footer-bar p, .footer-bar a { font-size: .84rem; color: var(--body); margin: 0; }
.footer-bar a:hover { color: var(--blue); }

/* --------------------------------------------------------------------------
   Floating buttons
   -------------------------------------------------------------------------- */
.wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 1050; display: inline-flex; align-items: center; gap: .6rem;
  background: var(--wa); color: var(--wa-ink); padding: .8rem 1.2rem .8rem .9rem; border-radius: 50px; font-family: var(--f-head); font-weight: 700;
  font-size: .92rem; box-shadow: 0 14px 30px -8px rgba(37,211,102,.6); transition: all .25s var(--ease); }
.wa-float:hover { background: var(--wa-dark); color: var(--wa-ink); transform: translateY(-3px); box-shadow: 0 18px 36px -8px rgba(37,211,102,.7); }
.wa-float i { font-size: 1.5rem; }
.wa-float .wa-txt { white-space: nowrap; }
.wa-float .wa-pulse { position: absolute; left: 0; top: 0; width: 100%; height: 100%; border-radius: 50px; box-shadow: 0 0 0 0 rgba(37,211,102,.5);
  animation: waPulse 2s infinite; pointer-events: none; }
@keyframes waPulse { 0%{box-shadow:0 0 0 0 rgba(37,211,102,.5);} 70%{box-shadow:0 0 0 16px rgba(37,211,102,0);} 100%{box-shadow:0 0 0 0 rgba(37,211,102,0);} }
@media (max-width: 575.98px){ .wa-float .wa-txt { display: none; } .wa-float { padding: .85rem; border-radius: 50%; } }

#toTop { position: fixed; left: 20px; bottom: 20px; z-index: 1050; width: 44px; height: 44px; display: grid; place-items: center;
  border: 0; border-radius: 50%; background: var(--blue); color: #fff; opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .3s var(--ease); box-shadow: var(--shadow); }
#toTop.show { opacity: 1; visibility: visible; transform: none; }
#toTop:hover { background: var(--blue-dark); }

/* --------------------------------------------------------------------------
   Reveal on scroll
   -------------------------------------------------------------------------- */
[data-aos] { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-aos].in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  [data-aos] { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px){
  .navbar-collapse { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); margin-top: .7rem; padding: .8rem;
    max-height: 76vh; overflow-y: auto; }
  .navbar .dropdown-menu { border: 0; box-shadow: none; padding-left: .8rem; margin-top: 0; }
  .nav-cta { margin: .6rem 0 0; }
  .side-card { position: static; margin-top: 2rem; }
}
@media (max-width: 575.98px){
  .btn { width: 100%; justify-content: center; }
  .btn-sm, .gal-filter button, .navbar .btn, .member-social a, .member-social button { width: auto; }
  .hero-cta .btn { width: 100%; }
}


.why-card{
    height:100%;
    background:linear-gradient(135deg,#1f8ef1 0%, #0d6efd 100%);
    border-radius:18px;
    padding:35px 30px;
    color:#fff;
    box-shadow:0 12px 30px rgba(13,110,253,.25);
    transition:.3s;
    display:flex;
    flex-direction:column;
    justify-content:center;
    overflow:hidden;
    position:relative;
}

.why-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(13,110,253,.35);
}

.why-card::before{
    content:"";
    position:absolute;
    top:-80px;
    right:-80px;
    width:220px;
    height:220px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
}

.why-card::after{
    content:"";
    position:absolute;
    bottom:-70px;
    left:-70px;
    width:180px;
    height:180px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
}

.why-title{
    display:flex;
    align-items:center;
    gap:12px;
    color:#fff;
    font-size:1.4rem;
    font-weight:700;
    margin-bottom:30px;
    position:relative;
    z-index:2;
}

.why-title i{
    color:#fff;
    font-size:28px;
}

.why-list{
    list-style:none;
    padding:0;
    margin:0;
    position:relative;
    z-index:2;
}

.why-list li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:18px;
    color:rgba(255,255,255,.95);
    font-size:14px;
    line-height:1;
}

.why-list li i{
    color:#fff;
    font-size:18px;
    margin-top:3px;
}

.why-card hr{
    border-color:rgba(255,255,255,.2);
    margin:25px 0;
}

.why-card p{
    color:rgba(255,255,255,.85);
    position:relative;
    z-index:2;
}

.why-card .btn{
    background:#fff;
    color:#0d6efd;
    border:none;
    border-radius:50px;
    padding:14px 20px;
    font-weight:700;
    transition:.3s;
    position:relative;
    z-index:2;
}

.why-card .btn:hover{
    background:#f4f8ff;
    color:#0b5ed7;
}

/*@media (min-width: 768px) {
    p {
        text-align: justify;
        text-justify: inter-word;
    }
}*/

.navbar-brand img {
    height: 65px;
    width: auto;
}
