/**
* Eleganza Info Tech — Custom professional enhancement layer
* Loaded AFTER main.css to refine the base template into a modern agency site.
*/

/*--------------------------------------------------------------
# Design Tokens
--------------------------------------------------------------*/
:root {
  --brand-900: #04397D;
  /* primary deep blue (matches --accent-color) */
  --brand-700: #0a5bc0;
  --brand-500: #1e7ce8;
  --brand-300: #63b3f0;
  --brand-glow: rgba(4, 57, 125, 0.18);
  --ink: #10233d;
  --muted: #5b6b82;
  --line: #e7ecf3;
  --grad-brand: linear-gradient(135deg, #04397D 0%, #1170d6 55%, #22a2e6 100%);
  --grad-soft: linear-gradient(180deg, #f5f9ff 0%, #ffffff 100%);
  --shadow-sm: 0 4px 14px rgba(16, 35, 61, 0.06);
  --shadow-md: 0 14px 40px rgba(16, 35, 61, 0.10);
  --shadow-lg: 0 30px 70px rgba(16, 35, 61, 0.16);
  --radius: 18px;
}

html { scroll-behavior: smooth; }

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  color: var(--ink);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100000;
  padding: 10px 16px;
  border-radius: 10px;
  color: #fff;
  background: var(--brand-900);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: translateY(0); }

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(34, 162, 230, 0.45);
  outline-offset: 4px;
}

.container,
.container-xl { max-width: 1200px; }

/*--------------------------------------------------------------
# Section rhythm + titles
--------------------------------------------------------------*/
section,
.section { padding: 90px 0; }

.section-title { padding: 0 0 10px; margin-bottom: 46px; }

.section-title h2 {
  font-size: 40px;
  letter-spacing: -0.5px;
  text-transform: none;
  color: var(--ink);
}

.section-title span {
  font-size: 90px;
  letter-spacing: 2px;
  color: color-mix(in srgb, var(--brand-900), transparent 94%);
  top: -18px;
}

.section-title h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: var(--grad-brand);
}

.section-title p {
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 16px;
}

@media (max-width: 575px) {
  section, .section { padding: 64px 0; }
  .section-title h2 { font-size: 30px; }
  .section-title span { font-size: 58px; top: -10px; }
}

/*--------------------------------------------------------------
# Header / Nav
--------------------------------------------------------------*/
.header {
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: all 0.35s ease;
}

.scrolled .header {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 30px rgba(16, 35, 61, 0.08);
  border-bottom-color: var(--line);
}

.header .logo img { max-height: 44px; }

@media (min-width: 1200px) {
  .navmenu a,
  .navmenu a:focus {
    font-weight: 500;
    position: relative;
  }
  .navmenu a::after {
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 10px;
    height: 2px;
    background: var(--grad-brand);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }
  .navmenu li:hover > a::after,
  .navmenu .active::after { transform: scaleX(1); }
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  background: var(--grad-brand);
  background-size: 160% 160%;
  font-weight: 600;
  letter-spacing: 0.2px;
  padding: 10px 26px;
  box-shadow: 0 10px 24px var(--brand-glow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-position 0.5s ease;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  background: var(--grad-brand);
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px var(--brand-glow);
}

/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
.hero {
  position: relative;
  min-height: 92vh;
  padding: 72px 0 62px;
  background:
    radial-gradient(900px 620px at 88% 18%, rgba(30, 124, 232, 0.28), transparent 62%),
    radial-gradient(680px 520px at -8% 104%, rgba(34, 162, 230, 0.16), transparent 64%),
    linear-gradient(135deg, #06192f 0%, #082b50 54%, #073c68 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -120px;
  top: -120px;
  background: linear-gradient(135deg, #1e7ce8, #22a2e6);
  opacity: 0.14;
  filter: blur(24px);
  border-radius: 42% 58% 63% 37% / 42% 45% 55% 58%;
  animation: blob 16s ease-in-out infinite;
  z-index: 0;
}

.hero .container { position: relative; z-index: 2; }

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #b9e5ff;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.4px;
  margin-bottom: 22px;
}

.hero .eyebrow i { font-size: 15px; }

.hero h1 {
  color: #fff !important;
  font-size: clamp(44px, 5vw, 66px);
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: -1.8px;
  margin-bottom: 22px;
  text-wrap: balance;
}

.hero h1 .grad {
  background: linear-gradient(110deg, #ffffff 0%, #8fd4ff 45%, #39bff5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 30px;
}

.hero .hero-cta { gap: 14px; flex-wrap: wrap; }

.hero .btn-get-started {
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
}

.hero .btn-get-started.btn-brand {
  color: var(--brand-900);
  background: #fff;
}
.hero .btn-get-started.btn-brand:hover { transform: translateY(-2px); }

.hero .btn-outline {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  box-shadow: none;
}
.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.62);
  color: #fff;
  transform: translateY(-2px);
}

.hero .hero-trust {
  display: flex;
  gap: 28px;
  margin-top: 38px;
  flex-wrap: wrap;
}
.hero .hero-trust .t-num {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  font-family: var(--heading-font);
  line-height: 1;
}
.hero .hero-trust .t-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.58);
  margin-top: 4px;
}

.hero .hero-img { position: relative; z-index: 2; }
.hero .hero-art-frame {
  position: relative;
  overflow: visible;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 42px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
}
.hero .hero-art-frame::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  pointer-events: none;
}
.hero .hero-img img {
  display: block;
  width: 100%;
  min-height: 460px;
  border-radius: 20px;
  object-fit: cover;
  object-position: 58% center;
}
.hero .hero-float {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}
.hero .hero-float i { color: var(--brand-700); font-size: 16px; }
.hero .hero-float-top { top: 28px; left: -18px; }
.hero .hero-float-bottom { right: -18px; bottom: 30px; }

.capability-strip {
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.capability-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  overflow-x: auto;
  scrollbar-width: none;
}
.capability-strip .container::-webkit-scrollbar { display: none; }
.capability-strip span {
  position: relative;
  flex: 0 0 auto;
  padding: 0 24px;
  color: #42576f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.capability-strip span + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brand-300);
  transform: translateY(-50%);
}

@keyframes blob {
  0%, 100% { border-radius: 42% 58% 63% 37% / 42% 45% 55% 58%; transform: rotate(0deg) scale(1); }
  50% { border-radius: 58% 42% 37% 63% / 55% 58% 42% 45%; transform: rotate(18deg) scale(1.08); }
}

@media (max-width: 991px) {
  .hero { min-height: auto; text-align: center; padding: 54px 0 66px; }
  .hero .lead { margin-left: auto; margin-right: auto; }
  .hero .hero-cta, .hero .hero-trust { justify-content: center; }
  .hero .hero-img { max-width: 720px; margin: 0 auto 28px; }
  .hero .hero-img img { min-height: 360px; }
}
@media (max-width: 575px) {
  .hero h1 { font-size: 39px; letter-spacing: -1px; }
  .hero .lead { font-size: 17px; }
  .hero .hero-art-frame { border-radius: 20px; }
  .hero .hero-img img { min-height: 280px; border-radius: 14px; }
  .hero .hero-float { display: none; }
  .capability-strip .container { justify-content: flex-start; }
  .capability-strip span { padding: 0 18px; }
}

/*--------------------------------------------------------------
# Why choose us (featured)
--------------------------------------------------------------*/
.why { background: var(--grad-soft); }

.why .section-head { text-align: center; margin-bottom: 44px; }
.why .section-head h2 {
  color: var(--ink);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.why .section-head p { color: var(--muted); max-width: 620px; margin: 12px auto 0; }

.why .feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 30px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  overflow: hidden;
}
.why .feature-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.why .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.why .feature-card:hover::before { transform: scaleX(1); }

.why .feature-card .ico {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--brand-900), transparent 90%);
  color: var(--brand-900);
  font-size: 27px;
  margin-bottom: 22px;
  transition: all 0.35s ease;
}
.why .feature-card:hover .ico {
  background: var(--grad-brand);
  color: #fff;
  transform: rotate(-6deg);
}
.why .feature-card h4 {
  color: var(--ink);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
}
.why .feature-card p { color: var(--muted); font-size: 15px; line-height: 1.65; margin: 0; }

/*--------------------------------------------------------------
# About / intro
--------------------------------------------------------------*/
.about { background: #fff; }
.about .about-lead {
  font-size: 18px;
  line-height: 1.85;
  color: var(--muted);
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(380px 180px at 100% 0%, rgba(30, 124, 232, 0.08), transparent 72%),
    #fff;
  box-shadow: var(--shadow-sm);
}
.about .about-lead strong { color: var(--ink); }

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services { background: var(--grad-soft); }

.services .service-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px 30px;
  box-shadow: var(--shadow-sm);
  text-align: left;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.services .service-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--brand-900), transparent 80%);
}
.services .service-item .icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  margin: 0 0 22px;
  background: color-mix(in srgb, var(--brand-900), transparent 90%);
  transition: all 0.35s ease;
}
.services .service-item .icon i { color: var(--brand-900); font-size: 30px; }
.services .service-item:hover .icon {
  background: var(--grad-brand);
  transform: rotate(-6deg);
}
.services .service-item:hover .icon i { color: #fff; }
.services .service-item h3 {
  color: var(--ink);
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 12px;
}
.services .service-item:hover h3 { color: var(--brand-900); }
.services .service-item p { color: var(--muted); font-size: 15px; line-height: 1.65; }
.services .service-item .learn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-weight: 600;
  font-size: 14px;
  color: var(--brand-900);
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.35s ease;
}
.services .service-item:hover .learn { opacity: 1; transform: translateX(0); }

/*--------------------------------------------------------------
# Process
--------------------------------------------------------------*/
.process {
  background: #fff;
  overflow: hidden;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  position: relative;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #b9d4f0 12%, #b9d4f0 88%, transparent);
}
.process-step {
  position: relative;
  z-index: 1;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: #bfd6ef;
}
.process-step .step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #c7d5e4;
  font: 700 13px/1 var(--heading-font);
  letter-spacing: 0.1em;
}
.process-step .step-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 16px;
  color: #fff;
  background: var(--grad-brand);
  box-shadow: 0 12px 24px var(--brand-glow);
  font-size: 24px;
}
.process-step h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
}
.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
@media (max-width: 991px) {
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid::before { display: none; }
}
@media (max-width: 575px) {
  .process-grid { grid-template-columns: 1fr; }
}

/*--------------------------------------------------------------
# Stats
--------------------------------------------------------------*/
.stats {
  background: var(--grad-brand);
  padding: 64px 0;
}
.stats .stats-item {
  padding: 14px;
  position: relative;
}
.stats .stats-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.22);
}
.stats .row > div:last-child .stats-item::after { display: none; }
.stats .stats-item span {
  color: #fff;
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
}
.stats .stats-item p {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 600;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
@media (max-width: 767px) {
  .stats .stats-item::after { display: none; }
  .stats .stats-item span { font-size: 42px; }
}

/*--------------------------------------------------------------
# Awards
--------------------------------------------------------------*/
#awards.awards {
  background: #0a2a55 !important;
  background: linear-gradient(160deg, #04397D 0%, #072a58 100%) !important;
  position: relative;
  overflow: hidden;
}
#awards.awards::before {
  content: "";
  position: absolute;
  width: 480px; height: 480px;
  right: -140px; bottom: -160px;
  background: radial-gradient(circle, rgba(34,162,230,0.35) 0%, transparent 70%);
  border-radius: 50%;
}
#awards .award-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(6px);
}
#awards .award-card img {
  border-radius: 12px;
  height: 380px;
  object-fit: contain;
  width: 100%;
  background: rgba(255,255,255,0.04);
}
#awards .award-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: #ffd66b;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 16px;
}
#awards .fact {
  border-left: 3px solid #22a2e6;
  padding-left: 14px;
  margin-bottom: 14px;
}
#awards .fact strong { color: #8fd4ff; display: block; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
#awards .fact span { color: rgba(255,255,255,0.92); font-size: 15px; }

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio { background: var(--grad-soft); }

.portfolio .portfolio-item {
  height: auto !important;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}
.portfolio .portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.portfolio .portfolio-item .pf-media {
  height: 250px;
  background: linear-gradient(135deg, #eef4ff, #f7fbff);
  display: grid;
  place-items: center;
  padding: 22px;
  overflow: hidden;
}
.portfolio .portfolio-item .pf-media img {
  height: 100% !important;
  width: 100%;
  object-fit: contain !important;
  transition: transform 0.5s ease;
}
.portfolio .portfolio-item:hover .pf-media img { transform: scale(1.06); }
.portfolio .portfolio-item .portfolio-info {
  position: static !important;
  opacity: 1 !important;
  background: #fff !important;
  padding: 22px 24px 26px !important;
  left: auto; right: auto; bottom: auto;
}
.portfolio .portfolio-item .portfolio-info h3 {
  color: var(--ink);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
}
.portfolio .portfolio-item .portfolio-info p {
  color: var(--muted) !important;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.portfolio .portfolio-item .project-type {
  margin-bottom: 8px;
  color: var(--brand-700);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.portfolio .portfolio-item .project-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: var(--brand-900);
  font-size: 13px;
  font-weight: 700;
}
.portfolio .portfolio-item .project-link i { transition: transform 0.22s ease; }
.portfolio .portfolio-item .project-link:hover i { transform: translate(2px, -2px); }
.portfolio .portfolio-featured { border-color: #c9ddee; }
.portfolio .app-showcase {
  position: relative;
  height: 250px;
  padding: 22px 30px 0;
  isolation: isolate;
}
.portfolio .app-showcase::before,
.portfolio .app-showcase::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  z-index: -1;
}
.portfolio .app-showcase::before {
  width: 210px;
  height: 210px;
  left: -50px;
  top: -75px;
  background: rgba(255, 255, 255, 0.11);
}
.portfolio .app-showcase::after {
  width: 170px;
  height: 170px;
  right: -35px;
  bottom: -80px;
  background: rgba(255, 255, 255, 0.08);
}
.portfolio .player-showcase {
  background: linear-gradient(140deg, #092e45 0%, #0f5777 58%, #1e8aa0 100%);
}
.portfolio .manager-showcase {
  background: linear-gradient(140deg, #071c36 0%, #113f7b 58%, #2167a8 100%);
}
.portfolio .app-showcase .app-screen {
  position: absolute;
  bottom: -52px;
  width: 120px !important;
  height: auto !important;
  max-height: none;
  object-fit: contain !important;
  border: 4px solid #071c29;
  border-radius: 18px;
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.34);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1) !important;
}
.portfolio .app-showcase .screen-front {
  z-index: 2;
  left: calc(50% - 88px);
  transform: rotate(-5deg);
}
.portfolio .app-showcase .screen-back {
  z-index: 1;
  right: calc(50% - 88px);
  transform: translateY(17px) rotate(7deg);
  opacity: 0.9;
}
.portfolio .portfolio-item:hover .app-showcase .screen-front { transform: translateY(-10px) rotate(-3deg); }
.portfolio .portfolio-item:hover .app-showcase .screen-back { transform: translateY(2px) rotate(5deg); }
.portfolio .project-badge {
  position: absolute;
  z-index: 4;
  top: 18px;
  left: 18px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.portfolio .custom-swiper-nav {
  border: 1px solid var(--line);
  background-color: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
}
.portfolio .custom-swiper-nav:hover {
  background-color: #fff;
  transform: scale(1.06);
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials { background: #fff; }
.testimonials .testimonial-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 30px 30px 34px;
  min-height: auto;
  margin-bottom: 24px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.testimonials .testimonial-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.testimonials .testimonial-item .stars {
  color: #f5b301;
  font-size: 15px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testimonials .testimonial-item p {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 0 20px !important;
  font-style: normal;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right { display: none; }
.testimonials .testimonial-item .person {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.testimonials .testimonial-item .testimonial-img {
  width: 52px !important;
  height: 52px;
  margin: 0 !important;
  border: 3px solid #fff;
  box-shadow: var(--shadow-sm);
}
.testimonials .testimonial-item h3 {
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  margin: 0 !important;
}
.testimonials .testimonial-item h4 {
  color: var(--brand-900);
  font-size: 13px;
  margin: 2px 0 0 !important;
  font-weight: 600;
}

/*--------------------------------------------------------------
# CTA band
--------------------------------------------------------------*/
.cta-band {
  background: var(--grad-brand);
  border-radius: 26px;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 340px; height: 340px;
  right: -80px; top: -120px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
}
.cta-band h3 {
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.cta-band p { color: rgba(255,255,255,0.9); font-size: 17px; margin: 0; }
.cta-band .cta-kicker {
  display: block;
  margin-bottom: 10px;
  color: #9ddcff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.cta-band .cta-actions { gap: 12px; flex-wrap: wrap; }
.cta-band .btn-white {
  background: #fff;
  color: var(--brand-900);
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}
.cta-band .btn-white:hover { transform: translateY(-2px); color: var(--brand-900); }
.cta-band .btn-ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}
.cta-band .btn-ghost:hover { background: rgba(255,255,255,0.22); color: #fff; transform: translateY(-2px); }

@media (max-width: 767px) {
  .cta-band { padding: 40px 26px; text-align: center; }
  .cta-band h3 { font-size: 26px; }
  .cta-band .cta-actions { justify-content: center; margin-top: 22px; }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: #0b1f38;
  color: rgba(255,255,255,0.72);
}
.footer .footer-top { padding-top: 64px; padding-bottom: 20px; }
.footer .footer-about img { filter: brightness(0) invert(1); }
.footer .footer-about .footer-logo { width: 190px; height: auto; max-height: 72px; object-fit: contain; }
.footer .footer-contact p { color: rgba(255,255,255,0.72); }
.footer .footer-contact strong { color: #fff; }
.footer .footer-contact a { color: rgba(255,255,255,0.78); }
.footer .footer-contact a:hover { color: #fff; }
.footer h4 { color: #fff; font-size: 15px; text-transform: uppercase; letter-spacing: 0.6px; }
.footer h4::after {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  border-radius: 3px;
  margin-top: 10px;
  background: var(--grad-brand);
}
.footer .footer-links ul a {
  color: rgba(255,255,255,0.68);
  transition: all 0.25s ease;
}
.footer .footer-links ul a:hover { color: #fff; padding-left: 4px; }
.footer .footer-about .foot-tagline {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 14px;
}
.footer .social-links { margin-top: 18px; display: flex; }
.footer .social-links a {
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
}
.footer .social-links a:hover {
  background: var(--grad-brand);
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
}
.footer .copyright {
  border-top-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
}
.footer .copyright a { color: rgba(255,255,255,0.85); }
.footer .copyright a:hover { color: #fff; }

/*--------------------------------------------------------------
# Floating WhatsApp
--------------------------------------------------------------*/
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 78px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
  z-index: 99998;
  transition: transform 0.25s ease;
}
.wa-float:hover { transform: scale(1.08); color: #fff; }

@media (hover: none) {
  .services .service-item .learn { opacity: 1; transform: none; }
}

@media (max-width: 1199px) {
  .header .btn-getstarted { margin-right: 54px; }
}

@media (max-width: 575px) {
  .header .btn-getstarted { display: none; }
  .hero .hero-trust { gap: 20px; }
  .hero .hero-trust > div { min-width: 88px; }
  .wa-float { right: 16px; bottom: 72px; width: 50px; height: 50px; }
}

/*--------------------------------------------------------------
# Leadership hero — clean illustration treatment
--------------------------------------------------------------*/
.hero {
  background:
    radial-gradient(720px 460px at -5% 105%, rgba(99, 179, 240, 0.10), transparent 70%),
    #fff;
}
.hero::before {
  width: 480px;
  height: 480px;
  right: -180px;
  top: -190px;
  opacity: 0.07;
  filter: blur(18px);
}
.hero .eyebrow {
  color: var(--brand-900);
  border-color: rgba(4, 57, 125, 0.12);
  background: rgba(4, 57, 125, 0.06);
}
.hero h1 { color: var(--ink) !important; }
.hero h1 .grad {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .lead { color: var(--muted); }
.hero .btn-get-started { box-shadow: 0 16px 34px var(--brand-glow); }
.hero .btn-get-started.btn-brand {
  color: #fff;
  background: var(--grad-brand);
}
.hero .btn-outline {
  color: var(--brand-900);
  border-color: rgba(4, 57, 125, 0.2);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.hero .btn-outline:hover {
  color: var(--brand-900);
  border-color: var(--brand-900);
  background: #fff;
}
.hero .hero-trust .t-num { color: var(--brand-900); }
.hero .hero-trust .t-label { color: var(--muted); }
.hero .hero-visual-clean {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}
.hero .hero-visual-clean::before {
  display: none;
}
.hero .hero-visual-clean img {
  width: min(100%, 620px);
  min-height: 0;
  border-radius: 0;
  object-fit: contain;
  mix-blend-mode: normal;
  filter: drop-shadow(0 28px 34px rgba(16, 35, 61, 0.12));
}

@media (max-width: 991px) {
  .hero .hero-visual-clean { min-height: 380px; }
  .hero .hero-visual-clean img { width: min(86%, 610px); }
}

@media (max-width: 575px) {
  .hero .hero-visual-clean { min-height: 285px; }
  .hero .hero-visual-clean img { width: min(100%, 430px); }
}
