:root{
  --primary: #1B4F72;
  --accent: #E67E22;
  --muted: #2E4053;
  --bg: #F8F9F9;
  --surface: #ffffff;
  --radius-lg: 16px;
  --container: 1200px;
  --gap: 24px;
  --nav-height: 78px;
  --transition: 0.28s ease;
  --shadow-1: 0 6px 20px rgba(16,24,40,0.08);

  /* Highlight color used in hero */
  --highlight: #4ba3ff;
}

/* RESET */
* { margin:0; padding:0; box-sizing:border-box; }
body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--muted);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* =========================================================
   GLOBAL ANTI-HORIZONTAL-OVERFLOW PACK (ALL PAGES)
   Paste near the top of style.css (after reset)
========================================================= */

/* 1) Always prevent sideways scroll */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* 2) Consistent sizing everywhere */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 3) Media can never overflow */
img, video, svg, canvas {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 4) Fix the classic mobile “100vw causes overflow” issue */
:root {
  --safe-vw: 100%;
}
.full-bleed,
[class*="vw"],
[style*="100vw"] {
  max-width: 100%;
}

/* If you personally used width:100vw anywhere, convert it to 100% (recommended).
   But this helps protect you even if you miss one. */
body {
  position: relative;
}


/* GLOBAL CONTAINER — EVERY SECTION ALIGNED PERFECTLY */
.container,
.navbar-container,
.values-container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

@media (max-width: 768px) {
  .container,
  .navbar-container,
  .values-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* PAGE WRAPPER */
.page-wrapper { min-height: 100vh; }

/* =========================
   NAVBAR (GLOBAL)
========================= */
.navbar{
  width:100%;
  position:sticky;
  top:0;
  height:78px;
  display:flex;
  align-items:center;
  background:linear-gradient(135deg,#071a24 0%,#0d2a3a 100%);
  z-index:4000; /* keep above overlay */
}

.navbar-container{
  max-width:1250px;
  margin:0 auto;
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 24px;
}

.navbar-logo{
  display:flex;
  align-items:center;
  gap:10px;
  color:#ffffff;
  font-weight:700;
  text-decoration:none;
  z-index:4500;
}

.navbar-logo-img{ width:32px; height:32px; }

.logo-text{ line-height:1.1; }

.navbar-actions{
  display:flex;
  align-items:center;
  gap:14px;
  z-index:4500;
}

.btn-primary{
  background:#1b4f72;
  color:#fff;
  padding:10px 18px;
  border-radius:10px;
  font-weight:600;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

/* Hamburger */
.menu-toggle{
  display:none;
  background:none;
  border:none;
  cursor:pointer;
  flex-direction:column;
  gap:4px;
  padding:8px;
}

.menu-line{
  width:22px;
  height:2px;
  background:#ffffff;
  display:block;
  transition:all 0.3s ease;
}

/* =========================
   OVERLAY (GLOBAL)
   ✅ NO filter / NO blur / NO tint
   ✅ Only used to close on outside click
========================= */
.nav-overlay{
  position:fixed;
  inset:0;
  background:transparent;     /* IMPORTANT: no dark/white overlay */
  opacity:0;
  pointer-events:none;
  transition:opacity 0.2s ease;
  z-index:2000;               /* BELOW menu + below navbar */
}

.nav-overlay.show{
  opacity:1;
  pointer-events:auto;
}

/* =========================
   DESKTOP ONLY
========================= */
@media (min-width:1025px){
  .navbar-menu{
    display:flex;
    gap:32px;
    align-items:center;
  }

  .nav-link{
    color:#cfe4f4;
    font-size:16px;
    text-decoration:none;
    padding:10px 0;
    display:inline-flex;
    align-items:center;
    justify-content:space-between;
  }

  .nav-link:hover{ color:#ffffff; }

  .nav-item{ position:relative; }

  .mega-dropdown{
    position:absolute;
    top:100%;
    left:50%;
    transform:translateX(-50%);
    width:600px;
    background:rgba(13,42,58,0.96);
    border-radius:12px;
    padding:20px;
    opacity:0;
    visibility:hidden;
    display:flex;
    gap:30px;
    transition:0.3s;
  }

  .nav-item:hover .mega-dropdown{
    opacity:1;
    visibility:visible;
  }

  .mega-col{ flex:1; }

  .mega-col h4{
    color:#9cc7e1;
    font-size:12px;
    margin-bottom:8px;
    text-transform:uppercase;
  }

  .mega-col a{
    color:#e0edf7;
    display:block;
    padding:8px 0;
    text-decoration:none;
    font-size:14px;
  }

  .mega-col a:hover{ color:#fff; }
}

/* =========================
   MOBILE ONLY — MATCH YOUR SERVICES-PRICING
   ✅ Menu sits BELOW navbar (top: 78px)
   ✅ Links clickable
   ✅ Dropdown opens with .nav-item.open
========================= */
@media (max-width:1024px){

  .menu-toggle{ display:flex; }

  /* Make logo + buttons smaller on mobile */
  .logo-text{ font-size:14px; }

  .btn-primary{
    padding:8px 14px;
    font-size:14px;
    border-radius:10px;
  }

  .navbar-actions{ gap:10px; }

  /* MENU PANEL */
  .navbar-menu{
    position:fixed;
    top:78px;                      /* ✅ BELOW NAVBAR */
    right:0;
    width:min(85vw,360px);
    height:calc(100dvh - 78px);    /* ✅ fits remaining screen */
    background:#0b1220;
    overflow-y:auto;

    z-index:3000;                  /* ✅ ABOVE overlay */
    transform:translateX(105%);
    transition:transform 0.25s ease;

    display:flex;
    flex-direction:column;

    padding:0;                     /* no weird offsets */
    pointer-events:auto;           /* ✅ clickable */
  }

  .navbar-menu.open{ transform:translateX(0); }

  /* ✅ REMOVE ANY EXTERNAL X (pseudo close icon) */
  .navbar-menu::before,
  .navbar-menu::after{
    content:none !important;
    display:none !important;
  }

  /* ✅ Close button INSIDE menu (the one you want) */
  .mobile-nav-close{
    display:none;
    position:sticky;
    top:0;
    width:100%;
    text-align:right;

    background:rgba(11,18,32,0.95);
    color:#fff;
    border:none;
    font-size:28px;
    padding:14px 16px;
    cursor:pointer;
    z-index:5;
  }

  .navbar-menu.open .mobile-nav-close{
    display:block;
  }

  /* Give the first link breathing room under the close button */
  .navbar-menu .nav-link:first-of-type{
    margin-top:6px;
  }

  /* LINKS */
  .nav-link{
    width:100%;
    padding:18px 22px;
    font-size:18px;
    font-weight:600;
    color:#ffffff;
    text-decoration:none;
    border-bottom:1px solid rgba(255,255,255,0.12);

    display:flex;
    align-items:center;
    justify-content:space-between;

    transition:padding 0.25s ease;
    pointer-events:auto;           /* ✅ clickable */
  }

  .nav-link:hover{
    padding-left:28px;
  }

  .nav-item{ display:block; }

  /* DROPDOWN PARENT ARROW */
  .nav-parent{ cursor:pointer; }

  .nav-parent::after{
    content:'›';
    font-size:32px;
    font-weight:300;
    line-height:1;
    transition:transform 0.3s ease;
    color:#ffffff;
  }

  .nav-item.open .nav-parent::after{
    transform:rotate(90deg);
  }

  /* ✅ DROPDOWN CONTENT — this is what makes it OPEN */
  .mega-dropdown{
    display:none;
    background:rgba(255,255,255,0.06);
    border-radius:10px;
    padding:0;
    margin:12px 18px 8px;
    border:1px solid rgba(255,255,255,0.10);
    pointer-events:auto;           /* ✅ clickable */
  }

  .nav-item.open .mega-dropdown{
    display:block;
    padding:18px 20px;
  }

  /* Dropdown links */
  .mega-col{ margin-bottom:18px; }

  .mega-col h4{
    color:#ffffff;
    font-size:13px;
    margin:14px 0 10px;
    text-transform:uppercase;
    letter-spacing:0.5px;
    font-weight:700;
    opacity:0.9;
  }

  .mega-col a{
    display:flex;
    align-items:center;
    gap:12px;
    color:#ffffff;
    padding:12px 10px;
    text-decoration:none;
    font-size:16px;
    border-radius:8px;
    transition:all 0.25s ease;
    font-weight:500;
    pointer-events:auto;           /* ✅ clickable */
  }

  .mega-col a:hover{
    background:rgba(255,255,255,0.10);
    padding-left:18px;
  }
}

/* Smaller phones */
@media (max-width:520px){
  .navbar-actions{ gap:8px; }

  .btn-primary{
    padding:8px 10px;
    font-size:12px;
    border-radius:10px;
    white-space:nowrap;
  }

  .logo-text{ font-size:13px; }
}

@media (max-width:380px){
  .btn-primary{
    padding:7px 8px;
    font-size:11px;
  }

  .logo-text{ font-size:12px; }
}

@media (max-width:420px){
  .navbar-menu{
    width:100%;
    max-width:none;
  }

  .navbar-logo-img{
    width:28px;
    height:28px;
  }
}



/* ------------------------------------------------
   HERO SECTION
------------------------------------------------- */
.hero {
  background: linear-gradient(135deg, #081e2b, #0f3144);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 160px 160px;
  opacity: 0.35;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero-title p {
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
  position: relative;
}

/* HERO UNDERLINE (HIGHLIGHT) */
.hero-title p::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 3px;
  background: var(--highlight);
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  border-radius: 6px;
}

.hero-subtitle {
  color: #d4e6f1;
  max-width: 720px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
}

/* REMOVE UNDERLINE IN BREADCRUMBS */
.breadcrumbs a {
  text-decoration: none !important;
  color: #fff;
}
.page {
  color: var(--highlight);
  font-weight: 600;
}
.subpage {
  color: #ffff;
  font-weight: 600;
}




/* CONTACT OPTIONS SECTION */
.contact-options {
  padding: 80px 20px;
  background: #ffffff;
}

.contact-head {
  text-align: center;
  margin-bottom: 50px;
}

.contact-head h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.contact-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 4px;
  background: #1B4F72;
}

.contact-head p {
  color: #6b7780;
  margin-top: 14px;
}

/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}

/* CARD */
.contact-card {
  background: #ffffff;
  border: 1px solid rgba(27, 79, 114, 0.2);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(27, 79, 114, 0.18);
}

/* TOP BAR */
.card-top {
  background: linear-gradient(
    135deg,
    #1B4F72,
    #133a55
  );
  padding: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-top .icon {
  font-size: 28px;
  color: #ffffff;
}

/* CONTENT */
.contact-card h3 {
  font-size: 18px;
  font-weight: 600;
  padding: 22px;
  line-height: 1.4;
  color: #0f2f45;
}

.card-link {
  display: inline-block;
  padding: 0 22px 24px;
  color: #1B4F72;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.card-link:hover {
  transform: translateX(4px);
}






/* FOOTER BOTTOM */
.gts-footer {
  background: linear-gradient(135deg, #071a24 0%, #0d2a3a 100%);
  background-size: cover;
  padding: 80px 0 40px;
  color: rgba(255,255,255,0.85);
}


.gts-footer-inner {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 60px;
}

/* Headings */
.footer-heading {
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 600;
  color: #F39C12; /* gold accent */
  margin: 25px 0 12px;
}

/* Description */
.footer-desc {
  max-width: 320px;
  line-height: 1.6;
  font-size: 15px;
  opacity: 0.9;
}

/* Footer Links */
.gts-footer-col a {
  display: block;
  font-size: 15px;
  margin-bottom: 8px;
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  transition: 0.2s;
}

.gts-footer-col a:hover {
  color: #fff;
  transform: translateX(4px);
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.footer-social img {
  width: 22px;
  opacity: 0.8;
  transition: 0.2s;
  filter: brightness(0) invert(1); /* ← FORCES WHITE ICON */
}

.footer-social img:hover {
  opacity: 1;
  transform: scale(1.1);
}



/* Footer Bottom */
.gts-footer-bottom {
  margin-top: 60px;
  text-align: center;
  padding-top: 30px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 1100px) {
  .gts-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 700px) {
  .gts-footer-inner {
    grid-template-columns: 1fr;
  }
}
