/* =========================================================
   VELTRO — style.css  (cinematic dark redesign)
   ========================================================= */

:root {
  --bg-primary:    #0b1320;
  --bg-surface:    #0d1829;
  --bg-card:       rgba(29,62,93,0.3);
  --accent:        #1d3e5d;
  --accent-light:  #2a5a8a;
  --accent-bright: #3a7ab5;
  --text-primary:  #F0F6FF;
  --text-secondary:#7FA8C9;
  --text-muted:    #3d6080;
  --border-color:  rgba(29,62,93,0.5);
  --border-light:  rgba(255,255,255,0.06);
  --gradient-main: linear-gradient(135deg, #3a7ab5 0%, #1d3e5d 100%);
  --gradient-bright: linear-gradient(135deg, #5BB8E8 0%, #2a7ab5 50%, #1d3e5d 100%);
  --gradient-hero: linear-gradient(135deg, #5BB8E8 0%, #3a7ab5 60%, #1d3e5d 100%);
  --glass-bg:      rgba(29,62,93,0.2);
  --glass-border:  rgba(58,122,181,0.25);
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: #0b1320;
  color: var(--text-primary);
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  cursor: auto;
}

a { text-decoration: none; }
img { max-width: 100%; }
ul { list-style: none; }

::selection { background: #8BB8D4; color: #030712; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 9px; }
::-webkit-scrollbar-track { background: #0b1320; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(#8BB8D4, #1d3e5d);
  border-radius: 6px;
}


/* =========================================================
   Helpers
   ========================================================= */
.section-pad { padding: 120px 0; }

.gradient-text {
  background: linear-gradient(135deg, #1d3e5d, #2a5280);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-hero {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.section-heading {
  font-weight: 700;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.12;
  /*/*text-transform: lowercase;*/*/
  letter-spacing: -0.02em;
}

.section-sub {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

.bg-surface { background: var(--bg-surface); }
.bg-primary-dark { background: #0b1320; }

/* =========================================================
   Glass cards
   ========================================================= */
.glass-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.glass-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(29,62,93, 0.3);
  box-shadow: 0 8px 32px rgba(29,62,93, 0.08);
  transform: translateY(-4px);
}
.glass-card-highlighted {
  background: linear-gradient(135deg, rgba(29,62,93, 0.08), rgba(29,62,93, 0.12));
  border-color: rgba(29,62,93, 0.2);
}

/* =========================================================
   Buttons
   ========================================================= */
.btn-gradient {
  background: linear-gradient(135deg, #1d3e5d, #2a5280);
  border: none;
  color: #fff;
  border-radius: 50px;
  padding: 14px 36px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  /*text-transform: lowercase;*/
  transition: all 0.3s ease;
  cursor: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-gradient:hover {
  box-shadow: 0 0 30px rgba(29,62,93, 0.35);
  transform: translateY(-2px);
  color: #fff;
}

.btn-outline-white {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  border-radius: 50px;
  padding: 14px 36px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  /*text-transform: lowercase;*/
  transition: all 0.3s ease;
  cursor: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-outline-white:hover { background: #fff; color: #030712; }

.btn-nav-pill {
  border: 1px solid rgba(29,62,93, 0.4);
  color: #8BB8D4;
  background: transparent;
  border-radius: 50px;
  padding: 7px 20px;
  font-size: 0.8rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  /*text-transform: lowercase;*/
  transition: all 0.3s ease;
  cursor: none;
}
.btn-nav-pill:hover { background: rgba(29,62,93, 0.1); color: #8BB8D4; }

/* =========================================================
   NAVBAR
   ========================================================= */
#mainNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}
#mainNav.scrolled {
  background: rgba(3, 7, 18, 0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 12px 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo */
.nav-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.45rem;
  color: #8BB8D4;
  text-decoration: none;
  /*text-transform: lowercase;*/
  letter-spacing: -0.01em;
  line-height: 1;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.nav-logo span {
  font-size: 0.58rem;
  font-weight: 400;
  color: #6B7280;
  letter-spacing: 0.04em;
  margin-top: 3px;
  /*text-transform: lowercase;*/
}

/* Nav menu */
.nav-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: flex-end;
  margin-right: 24px;
}
@media (min-width: 992px) {
  .nav-menu { display: flex; }
}
.nav-menu li a {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: #6B7280;
  text-decoration: none;
  text-transform: capitalize;
  padding: 4px 10px;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.nav-menu li a:hover { color: #8BB8D4; }

/* Diamond separator */
.nav-menu li i {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: rgba(29,62,93, 0.3);
  transform: rotate(45deg);
  border-radius: 0;
  flex-shrink: 0;
  font-style: normal;
}

/* Hamburger */
.nav-hamburger {
  background: transparent;
  border: none;
  padding: 4px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  width: 32px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  height: 1.5px;
  background: #9CA3AF;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-hamburger span:nth-child(1) { width: 100%; }
.nav-hamburger span:nth-child(2) { width: 70%; margin-left: auto; }
.nav-hamburger span:nth-child(3) { width: 45%; margin-left: auto; }
.nav-hamburger:hover span { background: #8BB8D4; width: 100% !important; margin-left: 0 !important; }

/* Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: #0b1320;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.nav-overlay-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  color: #9CA3AF;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-overlay-close:hover {
  border-color: #8BB8D4;
  color: #8BB8D4;
}
.nav-overlay-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.nav-overlay-links a {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 700;
  color: #F9FAFB;
  text-decoration: none;
  /*text-transform: lowercase;*/
  letter-spacing: -0.02em;
  padding: 8px 0;
  transition: color 0.2s ease;
  text-align: center;
}
.nav-overlay-links a:hover { color: #8BB8D4; }

/* =========================================================
   HERO
   ========================================================= */
/* Hero section */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 0 80px;
}

.hero-content-wrap {
  position: relative;
  z-index: 5;
  text-align: center;
  width: 100%;
}

/* Hero pill label */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(29,62,93,0.3);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #9CA3AF;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
  /*text-transform: lowercase;*/
}
.hero-pill .pill-dot {
  width: 6px; height: 6px;
  background: linear-gradient(135deg, #1d3e5d, #2a5280);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Hero headline */
.hero-headline {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  /*text-transform: lowercase;*/
  margin-bottom: 28px;
}
.hero-headline .line-white { color: #F9FAFB; }
.hero-headline .line-gradient {
  background: linear-gradient(135deg, #5BC4E8 0%, #7EB5D4 60%, #4a8ab5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero subtext */
.hero-subtext {
  max-width: 520px;
  margin: 0 auto 44px;
  color: #6B7280;
  font-size: 1rem;
  line-height: 1.75;
  /*text-transform: lowercase;*/
}

/* Hero buttons */
.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* Scroll indicator — FIXED */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.35));
}
.scroll-text {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #374151;
}

/* Canvas absolute */
#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.noise-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 2;
}

/* Orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.orb-1 { width:500px; height:500px; background:rgba(29,62,93,0.09); top:-10%; left:-8%; animation: orbFloat1 20s ease-in-out infinite; }
.orb-2 { width:450px; height:450px; background:rgba(29,62,93,0.08); top:15%; right:-8%; animation: orbFloat2 25s ease-in-out infinite; }
.orb-3 { width:350px; height:350px; background:rgba(11,19,32,0.06); bottom:-5%; left:25%; animation: orbFloat3 30s ease-in-out infinite; }
@keyframes orbFloat1 { 0%,100%{transform:translate(0,0)} 33%{transform:translate(30px,-40px)} 66%{transform:translate(-20px,20px)} }
@keyframes orbFloat2 { 0%,100%{transform:translate(0,0)} 33%{transform:translate(-40px,30px)} 66%{transform:translate(25px,-20px)} }
@keyframes orbFloat3 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-30px,-30px)} }

@media (max-width: 768px) {
  .hero-headline { font-size: clamp(2.8rem, 12vw, 4.5rem); letter-spacing: -0.02em; }
  .hero-subtext { font-size: 0.92rem; padding: 0 8px; }
  .hero-buttons { gap: 12px; }
  .hero-buttons .btn-gradient,
  .hero-buttons .btn-outline-white { width: 100%; max-width: 320px; text-align: center; justify-content: center; display: flex; }
  .orb-1 { width: 280px; height: 280px; }
  .orb-2 { width: 240px; height: 240px; }
  .orb-3 { width: 200px; height: 200px; }
}

/* =========================================================
   Stats bar
   ========================================================= */
.stats-bar {
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 70px 0;
  background: #0f1a2e;
}

.stat-item {
  text-align: center;
  padding: 0 24px;
}

.stat-big {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #1d3e5d, #2a5280);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 10px;
  white-space: nowrap;
}

.stat-label-text {
  font-size: 0.82rem;
  color: #6B7280;
  /*text-transform: lowercase;*/
  line-height: 1.4;
  display: block;
}

.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.06);
  align-self: stretch;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .stat-divider { display: none; }
  .stat-item { padding: 16px 12px; }
  .stat-big { font-size: clamp(2.2rem, 8vw, 3rem); }
}

/* =========================================================
   Services tabs
   ========================================================= */
.tab-nav {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 16px;
  margin-bottom: 50px;
  scrollbar-width: none;
}
.tab-nav::-webkit-scrollbar { display: none; }
.tab-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 50px;
  cursor: none;
  white-space: nowrap;
  /*text-transform: lowercase;*/
  transition: all 0.3s ease;
}
.tab-btn.active { background: linear-gradient(135deg, #1d3e5d, #2a5280); color: #fff; }
.tab-btn:hover:not(.active) { color: #8BB8D4; }

.tab-pane { display: none; }
.tab-pane.active { display: block; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.service-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.service-heading {
  font-weight: 700;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  /*text-transform: lowercase;*/
  color: var(--text-primary);
  margin-bottom: 22px;
}
.service-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  /*text-transform: lowercase;*/
  margin-bottom: 26px;
}
.learn-link {
  font-weight: 600;
  font-size: 0.9rem;
  /*text-transform: lowercase;*/
}
.learn-link .arrow { display: inline-block; transition: transform 0.25s ease; }
.learn-link:hover .arrow { transform: translateX(6px); }

.svc-card-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.svc-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  /*text-transform: lowercase;*/
  margin-bottom: 10px;
}
.svc-card-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  /*text-transform: lowercase;*/
}

/* =========================================================
   Products
   ========================================================= */
.product-card { text-align: left; }
.product-initial {
  font-weight: 800;
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: 18px;
}
.product-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  /*text-transform: lowercase;*/
  margin-bottom: 6px;
}
.product-tag {
  font-size: 0.8rem;
  color: var(--text-secondary);
  /*text-transform: lowercase;*/
  margin-bottom: 22px;
}
.product-line {
  height: 2px;
  width: 100%;
  background: linear-gradient(135deg, #1d3e5d, #2a5280);
  border-radius: 2px;
  opacity: 0.5;
  transition: opacity 0.4s ease;
}
.glass-card:hover .product-line { opacity: 1; }

/* =========================================================
   Clients — marquee + tags
   ========================================================= */
.marquee-wrapper { overflow: hidden; padding: 8px 0; }
.marquee-track { display: flex; gap: 18px; width: max-content; }
.client-pill {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--text-secondary);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.client-pill:hover { color: #8BB8D4; border-color: rgba(29,62,93, 0.3); }

.industry-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: center;
  align-items: center;
  margin-top: 48px;
  color: var(--text-secondary);
  font-size: 0.75rem;
  /*text-transform: lowercase;*/
}
.industry-row .dot { color: var(--text-muted); }

/* =========================================================
   Heritage / about
   ========================================================= */
.heritage-stat {
  font-weight: 800;
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 10px;
}
.heritage-stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  /*text-transform: lowercase;*/
}

/* =========================================================
   Contact
   ========================================================= */
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.contact-info-item .ic {
  width: 44px; height: 44px;
  flex: 0 0 44px;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #8BB8D4;
}
.contact-info-item .txt { color: var(--text-primary); font-size: 0.95rem; }
.contact-info-item .txt small { display: block; color: var(--text-secondary); font-size: 0.72rem; /*text-transform: lowercase;*/ }

.contact-form-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 44px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.v-field { margin-bottom: 26px; }
.v-field label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-secondary);
  /*text-transform: lowercase;*/
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.v-field input,
.v-field select,
.v-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 12px 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease;
}
.v-field textarea { resize: vertical; min-height: 90px; }
.v-field input::placeholder, .v-field textarea::placeholder { color: var(--text-muted); }
.v-field input:focus, .v-field select:focus, .v-field textarea:focus { border-bottom-color: #8BB8D4; }
.v-field select option { background: var(--bg-surface); color: #fff; }

.social-row { display: flex; gap: 14px; margin-top: 8px; }
.social-row a {
  width: 42px; height: 42px;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}
.social-row a:hover { color: #8BB8D4; border-color: rgba(29,62,93, 0.4); transform: translateY(-3px); }

/* =========================================================
   FOOTER
   ========================================================= */
.veltro-footer {
  padding-top: 64px;
}

/* Top row */
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-brand { max-width: 320px; }

.footer-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #8BB8D4;
  text-decoration: none;
  /*text-transform: lowercase;*/
  display: block;
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 0.68rem;
  color: #374151;
  /*text-transform: lowercase;*/
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 0.85rem;
  color: #4B5563;
  line-height: 1.7;
  /*text-transform: lowercase;*/
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  margin-top: 4px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B7280;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  border-color: #8BB8D4;
  color: #8BB8D4;
}

/* Divider */
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin: 0 0 48px 0;
}

/* Links row */
.footer-links-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

@media (max-width: 767px) {
  .footer-links-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
  .footer-top {
    flex-direction: column;
    gap: 24px;
  }
  .footer-brand { max-width: 100%; }
}

.footer-col-title {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #374151;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: #6B7280;
  text-decoration: none;
  /*text-transform: lowercase;*/
  transition: color 0.2s ease;
  display: block;
}

.footer-col ul li a:hover { color: #8BB8D4; }

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: #374151;
  /*text-transform: lowercase;*/
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: #374151;
  text-decoration: none;
  /*text-transform: lowercase;*/
  transition: color 0.2s ease;
}
.footer-bottom-links a:hover { color: #8BB8D4; }
.footer-bottom-links span {
  color: rgba(255,255,255,0.1);
  font-size: 0.8rem;
}

/* =========================================================
   Inner page hero (about/services/contact placeholders)
   ========================================================= */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #0b1320;
}
.page-hero-title {
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  /*text-transform: lowercase;*/
  letter-spacing: -0.02em;
  position: relative;
  z-index: 3;
}

/* =========================================================
   MOBILE GLOBAL FIXES
   ========================================================= */
@media (max-width: 991px) {
  .section-pad { padding: 80px 0; }
}
@media (max-width: 767px) {
  .section-pad { padding: 60px 0; }

  /* Services tabs — scrollable on mobile */
  .tab-nav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
    flex-wrap: nowrap !important;
  }
  .tab-nav::-webkit-scrollbar { display: none; }
  .tab-btn {
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 0.82rem;
    padding: 10px 20px;
  }

  /* Glass cards stack */
  .glass-card { padding: 20px; }

  /* Products grid */
  .products-grid .col-lg-4 { margin-bottom: 16px; }

  /* Contact form */
  .contact-form-card { padding: 28px 20px !important; }

  /* Heritage stats grid */
  .heritage-stats .col-6 { margin-bottom: 16px; }
}

/* Interactive elements on mobile */
@media (max-width: 768px) {
  .hamburger-btn, .btn-nav-pill, .tab-btn, .btn-gradient, .btn-outline-white, .overlay-close, .overlay-link { cursor: pointer !important; cursor: pointer; }
}

/* =========================================================
   INNER PAGES
   ========================================================= */
.page-hero-section {
  min-height: 50vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  background: #0b1320;
  position: relative;
  overflow: hidden;
}
.page-hero-section::before {
  content: "";
  position: absolute;
  top: -20%; left: -10%;
  width: 500px; height: 500px;
  background: rgba(29,62,93,0.07);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.page-hero-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  /*text-transform: lowercase;*/
  color: #F9FAFB;
  margin-bottom: 20px;
}
.page-hero-desc {
  font-size: 1rem;
  color: #6B7280;
  line-height: 1.8;
  /*text-transform: lowercase;*/
  max-width: 540px;
}
.body-text {
  font-size: 0.95rem;
  color: #6B7280;
  line-height: 1.8;
  /*text-transform: lowercase;*/
}
.card-title-sm {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #F9FAFB;
  /*text-transform: lowercase;*/
  margin-bottom: 8px;
}
.card-desc-sm {
  font-size: 0.85rem;
  color: #6B7280;
  line-height: 1.6;
  /*text-transform: lowercase;*/
  margin: 0;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-info-icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(29,62,93,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #8BB8D4;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-info-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #374151;
  margin-bottom: 4px;
}
.contact-info-val {
  font-size: 0.95rem;
  color: #F9FAFB;
  margin: 0;
}
.contact-form-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 40px;
}
.veltro-field {
  margin-bottom: 28px;
}
.veltro-field label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #374151;
  margin-bottom: 10px;
}
.veltro-field input,
.veltro-field select,
.veltro-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: #F9FAFB;
  padding: 10px 0;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.3s ease;
}
.veltro-field input:focus,
.veltro-field select:focus,
.veltro-field textarea:focus {
  border-bottom-color: #8BB8D4;
}
.veltro-field input::placeholder,
.veltro-field textarea::placeholder { color: #374151; }
.veltro-field select option { background: #0f1a2e; color: #F9FAFB; }
.veltro-field textarea { resize: vertical; min-height: 100px; }
.btn-gradient-full {
  width: 100%;
  background: linear-gradient(135deg, #1d3e5d, #2a5280);
  border: none;
  color: white;
  border-radius: 50px;
  padding: 14px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  /*text-transform: lowercase;*/
}
.btn-gradient-full:hover {
  box-shadow: 0 8px 32px rgba(11,19,32,0.6);
  transform: translateY(-2px);
}
.service-block-page {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.service-block-page:last-child { border-bottom: none; }
.value-icon {
  width: 48px; height: 48px;
  background: rgba(29,62,93,0.3);
  border: 1px solid rgba(29,62,93,0.5);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}


/* =========================================================
   VELTRO SOLUTIONS — Navy Theme Overrides
   ========================================================= */

/* Gradient text — navy tones */
.gradient-text {
  background: linear-gradient(135deg, #5BC4E8 0%, #8BB8D4 50%, #4a8ab5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glass cards — navy */
.glass-card {
  background: rgba(29,62,93,0.2);
  border: 1px solid rgba(29,62,93,0.45);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s ease;
}
.glass-card:hover {
  background: rgba(29,62,93,0.35);
  border-color: rgba(42,82,128,0.7);
  box-shadow: 0 8px 32px rgba(11,19,32,0.5);
  transform: translateY(-4px);
}
.glass-card-highlighted {
  background: rgba(29,62,93,0.4);
  border-color: rgba(42,82,128,0.6);
}

/* Buttons */
.btn-gradient {
  background: linear-gradient(135deg, #1d3e5d, #2a5280);
  border: none;
  color: #F0F4F8;
  border-radius: 50px;
  padding: 14px 36px;
  font-family: 'Poppins';
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  /*text-transform: lowercase;*/
}
.btn-gradient:hover {
  background: linear-gradient(135deg, #2a5280, #3a6a9a);
  box-shadow: 0 8px 24px rgba(11,19,32,0.5);
  transform: translateY(-2px);
  color: #fff;
}

.btn-outline-white {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: #F0F4F8;
  border-radius: 50px;
  padding: 14px 36px;
  font-family: 'Poppins';
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  /*text-transform: lowercase;*/
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.btn-gradient-full {
  width: 100%;
  background: linear-gradient(135deg, #1d3e5d, #2a5280);
  border: none;
  color: #F0F4F8;
  border-radius: 50px;
  padding: 14px;
  font-family: 'Poppins';
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  /*text-transform: lowercase;*/
}
.btn-gradient-full:hover {
  background: linear-gradient(135deg, #2a5280, #3a6a9a);
  box-shadow: 0 8px 24px rgba(11,19,32,0.5);
  transform: translateY(-2px);
}

/* Nav logo */
.nav-logo { color: #F0F4F8 !important; }
.nav-logo-name { color: #F0F4F8 !important; }

/* Nav pill */
.btn-nav-pill {
  border-color: rgba(255,255,255,0.2) !important;
  color: #8BB8D4 !important;
}
.btn-nav-pill:hover {
  background: rgba(29,62,93,0.4) !important;
}

/* Tabs */
.tab-btn.active {
  background: linear-gradient(135deg, #1d3e5d, #2a5280) !important;
}

/* Orbs — navy tones */
.orb-1 { background: rgba(29,62,93,0.25) !important; }
.orb-2 { background: rgba(42,82,128,0.2) !important; }
.orb-3 { background: rgba(11,19,32,0.3) !important; }

/* Stat big numbers */
.stat-big {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: 10px;
  white-space: nowrap;
  background: linear-gradient(135deg, #5BC4E8, #8BB8D4) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Footer */
/* footer background handled by inline gradient on the <footer> element */
.footer-logo { color: #8BB8D4 !important; }

/* Contact info icon */
.contact-info-icon {
  border-color: rgba(29,62,93,0.6) !important;
  color: #8BB8D4 !important;
}

/* Value icon */
.value-icon {
  background: rgba(29,62,93,0.3) !important;
  border-color: rgba(29,62,93,0.5) !important;
}

/* Section label */
.section-label { color: #4a6580 !important; }

/* Know more link */
.know-more-link { color: #8BB8D4 !important; }
.know-more-link:hover { color: #F0F4F8 !important; }

/* Industry tags */
.industry-tag {
  border-color: rgba(29,62,93,0.6) !important;
  color: #8BB8D4 !important;
}
.industry-tag:hover {
  background: rgba(29,62,93,0.4) !important;
  color: #F0F4F8 !important;
}

/* Client pills */
.client-pill { border-color: rgba(29,62,93,0.4) !important; }
.client-pill:hover { color: #8BB8D4 !important; border-color: rgba(29,62,93,0.8) !important; }

/* Scrollbar */
::-webkit-scrollbar-thumb { background: #1d3e5d !important; }

/* Hero badge */
.hero-pill { border-color: rgba(29,62,93,0.5) !important; }
.badge-dot { background: linear-gradient(135deg, #1d3e5d, #2a5280) !important; }

/* Nav logo image */
.nav-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.nav-logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

/* =========================================================
   LIGHT SECTIONS
   ========================================================= */
.section-light {
  background: #EEF2F7;
}
.section-light .section-label {
  color: #1d3e5d !important;
  opacity: 0.7;
}
.section-light .section-heading,
.section-light h2,
.section-light h1 {
  color: #0b1320 !important;
}
.section-light p,
.section-light .body-text {
  color: #3d5a73 !important;
}
.section-light .gradient-text {
  background: linear-gradient(135deg, #1d3e5d 0%, #2a5280 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Light glass cards */
.light-card {
  background: #ffffff;
  border: 1px solid rgba(29,62,93,0.12);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.light-card:hover {
  border-color: rgba(29,62,93,0.35);
  box-shadow: 0 8px 32px rgba(29,62,93,0.12);
  transform: translateY(-4px);
}
.light-card-highlighted {
  background: linear-gradient(135deg, #1d3e5d, #2a5280);
  border: none;
}
.light-card-highlighted * { color: #ffffff !important; }

/* Light section stat cards */
.stat-card-light {
  background: #ffffff;
  border: 1px solid rgba(29,62,93,0.1);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.3s ease;
}
.stat-card-light:hover {
  border-color: rgba(29,62,93,0.3);
  box-shadow: 0 8px 32px rgba(29,62,93,0.1);
}
.stat-card-light .stat-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 5rem;
  color: #0b1320;
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-card-light .stat-num sup {
  font-size: 2.2rem;
  color: #1d3e5d;
}
.stat-card-light .stat-lbl {
  font-size: 0.9rem;
  color: #3d5a73;
  margin-top: 12px;
  /*text-transform: lowercase;*/
}
.stat-card-light .card-deco-line {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 100px; height: 100px;
  opacity: 0.06;
}

/* Light product cards */
.product-card-light {
  background: #ffffff;
  border: 1px solid rgba(29,62,93,0.1);
  border-radius: 16px;
  padding: 40px 24px;
  text-align: center;
  transition: all 0.3s ease;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-light:hover {
  border-color: rgba(29,62,93,0.4);
  box-shadow: 0 8px 24px rgba(29,62,93,0.12);
  transform: translateY(-4px);
}
.product-card-light .prod-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #0b1320;
}

/* Section divider line */
.section-divider-navy {
  border: none;
  height: 1px;
  background: linear-gradient(to right, #1d3e5d, #2a5280, transparent);
  opacity: 0.4;
  margin: 0 0 36px 0;
}
.section-divider-light {
  border: none;
  height: 1px;
  background: rgba(29,62,93,0.15);
  margin: 0 0 36px 0;
}

/* Know more link dark */
.know-more-dark {
  color: #0b1320;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  /*text-transform: lowercase;*/
  transition: color 0.2s ease;
}
.know-more-dark:hover { color: #1d3e5d; }

/* Section label on light */
.label-navy {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #1d3e5d;
  margin-bottom: 10px;
  opacity: 0.8;
}

/* Tab buttons on light bg */
.section-light .tab-btn {
  color: #3d5a73;
}
.section-light .tab-btn.active {
  background: linear-gradient(135deg, #1d3e5d, #2a5280) !important;
  color: white !important;
}

/* Affiliations light */
.partner-card-light {
  background: #ffffff;
  border: 1px solid rgba(29,62,93,0.1);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}
.partner-card-light:hover {
  border-color: rgba(29,62,93,0.35);
  box-shadow: 0 8px 24px rgba(29,62,93,0.1);
  transform: translateY(-4px);
}
.partner-card-light .partner-icon {
  font-size: 2rem;
  color: #1d3e5d;
  margin-bottom: 14px;
  display: block;
}
.partner-card-light h6 {
  color: #0b1320;
  font-weight: 600;
  /*text-transform: lowercase;*/
  margin-bottom: 8px;
}
.partner-card-light p {
  font-size: 0.82rem;
  color: #3d5a73;
  margin: 0;
}

/* Contact light section */
.contact-light-field label {
  color: #1d3e5d;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 8px;
}
.contact-light-field input,
.contact-light-field select,
.contact-light-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(29,62,93,0.25);
  color: #0b1320;
  padding: 10px 0;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.3s ease;
  margin-bottom: 28px;
}
.contact-light-field input:focus,
.contact-light-field select:focus,
.contact-light-field textarea:focus {
  border-bottom-color: #1d3e5d;
}
.contact-light-field textarea { resize: vertical; min-height: 100px; }

/* =========================================================
   HERO + SECTION BACKGROUND VISIBILITY
   ========================================================= */
.hero, section#home {
  background: #0b1320 !important;
  color: #F0F4F8 !important;
}
.hero h1, .hero h1 span.line-white, .hero p, .hero-line-inner {
  color: #F0F4F8 !important;
}

/* EMERGENCY VISIBILITY FIX */
.hero {
  background: #0b1320 !important;
  min-height: 100vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.hero-line-inner {
  opacity: 1 !important;
  transform: none !important;
}
.hero-fade-in {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}
.hero-pill {
  opacity: 1 !important;
}
section[id="heritage"] {
  background: #EEF2F7 !important;
}
section[id="services"] {
  background: #0b1320 !important;
}
section[id="products"] {
  background: #EEF2F7 !important;
}
section[id="clients"] {
  background: #0b1320 !important;
}
section[id="affiliations"] {
  background: #EEF2F7 !important;
}
section[id="contact"] {
  background: #0b1320 !important;
}

/* =========================================================
   HERO FORCE + CURSOR RESTORE
   ========================================================= */
.hero {
  background: radial-gradient(ellipse at 20% 50%, rgba(29,62,93,0.5) 0%, #0b1320 50%),
              radial-gradient(ellipse at 80% 20%, rgba(42,82,128,0.3) 0%, transparent 50%),
              #0b1320 !important;
  min-height: 100vh !important;
  position: relative !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
}
.hero .container * {
  opacity: 1 !important;
}
.hero-orb-1,
.hero-orb-2 {
  animation: float1 20s ease-in-out infinite !important;
  opacity: 1 !important;
}
.hero-orb-2 {
  animation: float2 25s ease-in-out infinite !important;
}
body {
  cursor: auto !important;
}
#cursor, #cursor-follower {
  display: none !important;
}

/* Simple fade-up without AOS */
.fade-up {
  opacity: 1 !important;
  transform: none !important;
}

/* Override any leftover AOS styles */
[data-aos] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
[data-aos].aos-animate {
  opacity: 1 !important;
  transform: none !important;
}

@keyframes float1 {
  0%,100% { transform: translate(0,0); }
  33% { transform: translate(30px,-40px); }
  66% { transform: translate(-20px,25px); }
}
@keyframes float2 {
  0%,100% { transform: translate(0,0); }
  33% { transform: translate(-35px,30px); }
  66% { transform: translate(20px,-20px); }
}

.hero-orb-1 {
  position: absolute;
  width: 600px; height: 600px;
  background: rgba(29,62,93,0.35);
  border-radius: 50%;
  filter: blur(100px);
  top: -15%; left: -10%;
  pointer-events: none;
  animation: float1 20s ease-in-out infinite;
  z-index: 0;
}
.hero-orb-2 {
  position: absolute;
  width: 450px; height: 450px;
  background: rgba(42,82,128,0.25);
  border-radius: 50%;
  filter: blur(90px);
  bottom: -10%; right: -5%;
  pointer-events: none;
  animation: float2 25s ease-in-out infinite;
  z-index: 0;
}

/* =========================================================
   HERO REDESIGN — Bright + Animated
   ========================================================= */

/* SVG animated lines */
.hero-lines-wrap {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  max-width: 700px;
  opacity: 0.8;
  pointer-events: none;
  z-index: 1;
}
.hero-svg {
  width: 100%;
  height: auto;
}
.svg-group-1 {
  animation: svgRotate1 30s linear infinite;
  transform-origin: 400px 400px;
}
.svg-group-2 {
  animation: svgRotate2 45s linear infinite;
  transform-origin: 400px 400px;
}
@keyframes svgRotate1 {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes svgRotate2 {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(91,184,232,0.25);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.75rem;
  color: #7FA8C9;
  letter-spacing: 0.06em;
  margin-bottom: 40px;
  /*text-transform: lowercase;*/
  font-family: 'Poppins', sans-serif;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #5BB8E8;
  animation: badgePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes badgePulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.4; transform:scale(0.7); }
}

/* Hero headline */
.hero-title-main {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  /*text-transform: lowercase;*/
  color: #F0F6FF;
  margin-bottom: 28px;
  text-align: left;
}
.hero-gradient-text {
  background: linear-gradient(135deg, #5BB8E8 0%, #3a7ab5 60%, #1d3e5d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero subtext */
.hero-subtext {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #7FA8C9;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 44px;
  text-align: left;
  margin-left: 0;
}

/* Hero buttons */
.hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.btn-hero-primary {
  background: linear-gradient(135deg, #2a7ab5, #1d3e5d);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 36px;
  font-family: 'Poppins';
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  /*text-transform: lowercase;*/
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(42,122,181,0.3);
}
.btn-hero-primary:hover {
  background: linear-gradient(135deg, #3a7ab5, #2a5a8a);
  box-shadow: 0 8px 30px rgba(91,184,232,0.3);
  transform: translateY(-2px);
  color: #fff;
}
.btn-hero-outline {
  background: transparent;
  border: 1px solid rgba(91,184,232,0.3);
  color: #7FA8C9;
  border-radius: 50px;
  padding: 14px 36px;
  font-family: 'Poppins';
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  /*text-transform: lowercase;*/
  transition: all 0.3s ease;
}
.btn-hero-outline:hover {
  border-color: #5BB8E8;
  color: #5BB8E8;
  background: rgba(91,184,232,0.05);
}

/* Hero scroll indicator */
.hero-scroll-ind {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding-left: 4px;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #5BB8E8, transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { opacity:0.8; }
  50%      { opacity:0.3; }
}
.hero-scroll-text {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #3d6080;
  font-family: 'Poppins';
}

/* Hero layout — left text, right SVG */
.hero .container > div {
  text-align: left !important;
}

/* Bright glass cards */
.glass-card {
  background: rgba(29,62,93,0.25) !important;
  border: 1px solid rgba(58,122,181,0.2) !important;
  border-radius: 20px !important;
  padding: 28px !important;
  backdrop-filter: blur(12px) !important;
  transition: all 0.4s ease !important;
}
.glass-card:hover {
  background: rgba(29,62,93,0.4) !important;
  border-color: rgba(91,184,232,0.35) !important;
  box-shadow: 0 8px 32px rgba(29,62,93,0.4) !important;
  transform: translateY(-4px) !important;
}
.glass-card-highlighted {
  background: linear-gradient(135deg, rgba(42,122,181,0.35), rgba(29,62,93,0.5)) !important;
  border-color: rgba(91,184,232,0.3) !important;
}

/* Bright gradient text */
.gradient-text {
  background: linear-gradient(135deg, #5BB8E8 0%, #3a7ab5 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Section headings brighter */
.section-heading {
  font-weight: 800 !important;
  color: #F0F6FF !important;
}

/* Tab buttons brighter */
.tab-btn {
  color: #7FA8C9 !important;
  border: 1px solid transparent !important;
  transition: all 0.3s ease !important;
}
.tab-btn:hover:not(.active) {
  color: #5BB8E8 !important;
  border-color: rgba(91,184,232,0.2) !important;
}
.tab-btn.active {
  background: linear-gradient(135deg, #2a7ab5, #1d3e5d) !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(42,122,181,0.3) !important;
}

/* Know more link brighter */
.know-more-link {
  color: #5BB8E8 !important;
}
.know-more-link:hover {
  color: #F0F6FF !important;
}

/* Nav links brighter on hover */
.nav-menu li a:hover {
  color: #5BB8E8 !important;
}

/* Stat cards on light section */
.stat-card-light .stat-num {
  color: #0b1320 !important;
  font-size: 5rem !important;
  font-weight: 800 !important;
}

/* Section label brighter */
.section-label {
  color: #5BB8E8 !important;
  letter-spacing: 0.12em !important;
}
.label-navy {
  color: #1d3e5d !important;
}

/* Partner icon brighter */
.partner-card-light .partner-icon {
  color: #1d3e5d !important;
}

/* Footer logo brighter */
.nav-logo-img, .footer-logo-img {
  filter: brightness(0) invert(1) !important;
  opacity: 0.9 !important;
}

/* Orbs brighter */
.hero-orb-1 {
  background: rgba(42,122,181,0.2) !important;
  animation: float1 20s ease-in-out infinite !important;
}
.hero-orb-2 {
  background: rgba(29,62,93,0.25) !important;
  animation: float2 25s ease-in-out infinite !important;
}

/* Mobile responsive */
@media (max-width: 991px) {
  .hero-lines-wrap { display: none; }
  .hero-title-main { font-size: clamp(2.5rem, 10vw, 4rem); }
  .hero .container > div { text-align: center !important; }
  .hero-btns { justify-content: center; }
  .hero-scroll-ind { align-items: center; }
}

/* =========================================================
   FOOTER BRIGHT
   ========================================================= */
.veltro-footer .footer-logo {
  color: #5BB8E8 !important;
  font-size: 1.4rem !important;
  font-weight: 700 !important;
}
.veltro-footer .footer-tagline {
  color: #7FA8C9 !important;
}
.veltro-footer .footer-desc {
  color: #7FA8C9 !important;
}
.veltro-footer .footer-col-title {
  color: #5BB8E8 !important;
  font-size: 0.68rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
}
.veltro-footer .footer-col ul li a {
  color: #F0F6FF !important;
  font-size: 0.875rem !important;
}
.veltro-footer .footer-col ul li a:hover {
  color: #5BB8E8 !important;
}
.veltro-footer .footer-social a {
  border-color: rgba(91,184,232,0.2) !important;
  color: #7FA8C9 !important;
}
.veltro-footer .footer-social a:hover {
  border-color: #5BB8E8 !important;
  color: #5BB8E8 !important;
}
.veltro-footer .footer-bottom p {
  color: #7FA8C9 !important;
}
.veltro-footer .footer-bottom-links a {
  color: #7FA8C9 !important;
}
.veltro-footer .footer-bottom-links a:hover {
  color: #5BB8E8 !important;
}
.veltro-footer .footer-bottom-links span {
  color: rgba(91,184,232,0.2) !important;
}
.veltro-footer .footer-bottom {
  border-top: 1px solid rgba(91,184,232,0.1) !important;
}
.veltro-footer .footer-divider {
  border-top: 1px solid rgba(91,184,232,0.1) !important;
  opacity: 1 !important;
}

/* Active page nav link */
.nav-menu li a.active {
  color: #5BB8E8 !important;
}

/* First letter capital on headings */
.section-heading,
.hero-title-main,
.page-hero-title,
.heritage-heading,
.service-heading {
  text-transform: none !important;
}
.card-title-sm {
  text-transform: capitalize !important;
}
.section-label {
  text-transform: uppercase !important;
}

/* Capitalize first letter utility */
.cap-first::first-letter {
  text-transform: uppercase;
}
