
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0a1a3a;
  --navy-mid: #0d2250;
  --navy-light: #122870;
  --red: #e03616;
  --red-hover: #b52222;
  --white: #ffffff;
  --light-bg: #fbfbfb;
  --light-text: #ccd6f6;
  --muted: #5b6e8c;
  --paragraph: #0d0e23;
  --purple-deep: #37215f;
  --blue-bold: #001b79;
  --card-bg: rgba(255, 255, 255, 0.06);
  --card-border: rgba(255, 255, 255, 0.12);
  --accent-blue: #1e3a8a;
  --ease: cubic-bezier(0.29, 0.57, 0.12, 0.99);
  --duration: 0.65s;
  --blob-size: 500px;
  --scaleMask: 1;
  --card-shadow: 0 8px 20px rgba(0, 0, 0, 0.02), 0 2px 6px rgba(0, 0, 0, 0.05);
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--paragraph);
  background: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 10px;
  left: 40px;
  right: 40px;
  padding: 10px 28px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  z-index: 100;
  background: transparent;
  box-shadow: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.logo img {
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--paragraph);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--red);
}

.navbar .nav-links a {
  color: var(--paragraph);
}

.navbar .nav-links a:hover {
  color: var(--red);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  padding: 8px 24px;
  backdrop-filter: blur(7px);
  border-radius: 50px;
}

.navbar.scrolled .btn-contact {
  pointer-events: auto !important;
  cursor: pointer;
  opacity: 1;
  border-radius: 35px;
}

.navbar.scrolled .btn-contact:hover::before,
.navbar.scrolled .btn-contact:hover::after {
  width: 0;
}

.navbar.scrolled .btn-contact:hover span::before,
.navbar.scrolled .btn-contact:hover span::after {
  height: 0;
}

.navbar.scrolled .btn-contact:hover p::before {
  top: 50%;
  transform: translateY(-50%);
}

.navbar.scrolled .btn-contact:hover p::after {
  top: 150%;
}

.navbar.scrolled .btn-contact p::before {
  content: attr(data-title);
  top: 50%;
  transform: translateY(-50%);
}

.navbar.scrolled .btn-contact p::after {
  display: none;
}

.navbar.scrolled .nav-links a {
  color: var(--paragraph);
}

/* ============================================================
   MEGA MENU
   ============================================================ */
.mega-menu {
  position: fixed;
  top: 80px;
  left: 40px;
  right: 40px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 60px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
}

.has-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-left {
  flex: 2;
}

.mega-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--paragraph);
}

.mega-grid {
  display: flex;
  gap: 60px;
}

.mega-column {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mega-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 10px;
  border-radius: 10px;
  transition: 0.3s;
  color: #ffffff;
}

.mega-item:hover {
  background: rgba(0, 0, 0, 0.05);
}

.icon {
  width: 42px;
  height: 42px;
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon svg {
  width: 20px;
  height: 20px;
}

.text {
  color: var(--paragraph);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.mega-cta {
  flex: 1;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)),
    url("https://ctobridge.com/assets/background/Business-Consulting-Image.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 30px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.mega-cta h3 {
  margin-top: 50px;
}

.mega-cta p {
  font-size: 14px;
  margin-bottom: 20px;
}

.mega-cta .cta-btn {
  display: inline-block;
  perspective: 600px;
  text-decoration: none;
}

.cube {
  position: relative;
  display: inline-block;
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.face {
  display: block;
  padding: 12px 22px;
  background: var(--red);
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
  backface-visibility: hidden;
  box-shadow: inset -2px 0 0 rgba(0, 0, 0, 0.2);
}

.front {
  transform: rotateX(0deg) translateZ(20px);
}

.top {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotateX(90deg) translateZ(20px);
}

.mega-cta .cta-btn:hover .cube {
  transform: rotateX(-90deg);
}

/* Resources Mega Menu */
.mega-menu.resources-menu {
  position: absolute;
  top: 50px;
  left: 50%;
  min-width: 185px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.has-mega:hover .mega-menu.resources-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.has-mega {
  position: relative;
}

.res-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.res-card {
  display: block;
  text-decoration: none;
  padding: 10px 16px;
  transition: all 0.2s ease;
  background: transparent;
  text-align: left;
  min-width: 160px;
  width: 100%;
  box-sizing: border-box;
}

.res-card:hover {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 5px;
}

.res-text {
  display: block;
}

.res-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--paragraph);
  transition: color 0.2s ease;
}

/* ============================================================
   CONTACT BUTTON
   ============================================================ */
.btn-contact {
  width: 125px;
  height: 35px;
  background-color: var(--red);
  color: #fff !important;
  position: relative;
  overflow: hidden;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: capitalize;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  box-shadow: 0 6px 14px rgba(229, 62, 62, 0.3);
}

.btn-contact::before,
.btn-contact::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s cubic-bezier(0.35, 0.1, 0.25, 1);
}

.btn-contact::before {
  right: 0;
  top: 0;
  transition: all 0.5s cubic-bezier(0.35, 0.1, 0.25, 1);
}

.btn-contact::after {
  left: 0;
  bottom: 0;
}

.btn-contact span {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  padding: 0;
  z-index: 1;
}

.btn-contact span::before,
.btn-contact span::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 0;
  background-color: #fff;
  transition: all 0.3s cubic-bezier(0.35, 0.1, 0.25, 1);
}

.btn-contact span::before {
  right: 0;
  top: 0;
  transition: all 0.5s cubic-bezier(0.35, 0.1, 0.25, 1);
}

.btn-contact span::after {
  left: 0;
  bottom: 0;
}

.btn-contact p {
  padding: 0;
  margin: 0;
  transition: all 0.4s cubic-bezier(0.35, 0.1, 0.25, 1);
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-contact p::before,
.btn-contact p::after {
  position: absolute;
  width: 100%;
  transition: all 0.4s cubic-bezier(0.35, 0.1, 0.25, 1);
  z-index: 1;
  left: 0;
  text-align: center;
  font-weight: 600;
}

.btn-contact p::before {
  content: attr(data-title);
  top: 50%;
  transform: translateY(-50%);
}

.btn-contact p::after {
  content: attr(data-text);
  top: 150%;
  color: #fff;
}

.btn-contact:hover::before,
.btn-contact:hover::after {
  width: 100%;
}

.btn-contact:hover span {
  z-index: 1;
}

.btn-contact:hover span::before,
.btn-contact:hover span::after {
  height: 100%;
}

.btn-contact:hover p::before {
  top: -50%;
  transform: rotate(5deg);
}

.btn-contact:hover p::after {
  top: 50%;
  transform: translateY(-50%);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  background-size: 600% 600%;
  animation: gradientWave 12s ease infinite;
}

@keyframes gradientWave {
  0%   { background-position: 0% 50%; }
  25%  { background-position: 50% 100%; }
  50%  { background-position: 100% 50%; }
  75%  { background-position: 50% 0%; }
  100% { background-position: 0% 50%; }
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 80px;
  max-width: 780px;
  margin-top: 10vh;
  transition: opacity 0.4s ease;
}

.hero-content.fade-transition {
  opacity: 0;
}

.hero-eyebrow {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--blue-bold);
  text-transform: uppercase;
  border-bottom: 2px solid var(--blue-bold);
  padding-bottom: 4px;
  margin-bottom: 22px;
  display: inline-block;
}

.hero-title {
  font-size: 62px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--red);
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: var(--paragraph);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-ctas .btn-primary-link {
  background: var(--red);
  color: #fff;
  padding: 13px 30px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background 0.2s, transform 0.15s;
}

.hero-ctas .btn-primary-link:hover {
  background: var(--red-hover);
  transform: translateY(-1px);
}

.secondary-btn {
  width: 155px;
  background-color: transparent;
  box-shadow: none;
  border: 2px solid #001b79;
  color: #001b79 !important;
  position: relative;
  overflow: hidden;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: capitalize;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  text-decoration: none;
}

.secondary-btn:hover {
  background-color: #001b79;
  color: #fff !important;
}

/* ============================================================
   BLOB CAROUSEL
   ============================================================ */
.blob-carousel-container {
  position: absolute;
  right: 80px;
  top: 27%;
  transform: translateY(-30%);
  width: var(--blob-size);
  height: var(--blob-size);
  z-index: 5;
}

.blob-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.blob-carousel svg {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.blob-carousel svg #blobMask {
  transform: scale(var(--scaleMask));
  transform-origin: center;
}

.blob-carousel--images {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-clip-path: url(#blobMask);
  clip-path: url(#blobMask);
  overflow: hidden;
}

.blob-carousel--images img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity var(--duration) var(--ease), transform var(--duration) var(--ease);
  opacity: 0;
  transform: scale(0.92) translateZ(0);
  will-change: transform, opacity;
}

.blob-carousel--images img.active {
  opacity: 1;
  transform: scale(1) translateZ(0);
}

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 60px;
  position: relative;
  z-index: 10;
}

.feat-card {
  background: #001b79;
  border-radius: 16px;
  padding: 28px 22px 26px;
  backdrop-filter: blur(12px);
  transition: background 0.25s, transform 0.2s, border-color 0.25s;
}

.feat-card:hover {
  background: #37215f;
  transform: translateY(-3px);
  color: #ffffff !important;
}

.feat-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.feat-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.45;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  background: #ffffff;
  margin: 0 40px;
  padding: 70px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 5;
  margin-top: -30px;
}

.hero + .about-section {
  margin-top: -30px;
}

.about-left h2 {
  font-size: 44px;
  font-weight: 700;
  color: var(--red);
  line-height: 1.15;
}

.bridge-illustration {
  margin-top: 32px;
}

.bridge-illustration svg {
  width: 100%;
  max-width: 360px;
  opacity: 0.35 !important;
}

.bridge-illustration img {
 opacity: 0.55 !important;
}

.about-right .eyebrow {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--blue-bold);
  text-transform: uppercase;
  border-bottom: 2px solid var(--blue-bold);
  display: inline-block;
  padding-bottom: 4px;
  margin-bottom: 22px;
}

.about-right p {
  font-size: 15px;
  color: var(--paragraph);
  line-height: 1.8;
  margin-bottom: 14px;
  text-align: justify;
}

.btn-about {
  display: inline-block;
  margin-top: 20px;
  background: transparent;
  color: #0a1a3a;
  padding: 12px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #0a1a3a;
  transition: background 0.2s, color 0.2s;
}

.btn-about:hover {
  background: #0a1a3a;
  color: #fff;
}

/* ============================================================
   SIDE BUTTONS
   ============================================================ */
.side-btns {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0;
  z-index: 999;
}

.side-btn {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}

.side-btn:hover {
  background: var(--red-hover);
}

.side-btn svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.side-btn:nth-child(1) { border-radius: 6px 0 0 0; }
.side-btn:nth-child(2) { background: #37215f; }
.side-btn:last-child   { background: #001b79; border-radius: 0 0 0 6px; }

/* ============================================================
   SPACER
   ============================================================ */
.spacer {
  height: 60px;
}

/* ============================================================
   CTA FOOTER (BLOB FOOTER)
   ============================================================ */
   
.blob-footer {
  position: relative;
  width: 100%;
  background:
    linear-gradient(135deg, #5a2653 0%, #16213e 100%),
    url("https://ctobridge.com/assets/background/cta-bg-violet-2.avif");
  background-blend-mode: overlay;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    box-shadow 0.3s ease;
}

.blob-footer {
  background: linear-gradient(135deg, #5a2653 0%, #16213e 100%);
}

@supports (background-blend-mode: overlay) {
  .blob-footer {
    background:
      linear-gradient(135deg, #5a2653 0%, #16213e 100%),
      url("https://ctobridge.com/assets/background/cta-bg-violet-2.avif");
    background-blend-mode: soft-light;
    background-size: cover;
    background-position: center;
  }
}

.blob-footer.revealed {
  opacity: 1;
  transform: translateY(0);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);
}

.footer-blob,
.footer-blob-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}

.footer-blob svg {
  position: absolute;
  width: 50vmax;
  height: auto;
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%);
  opacity: 0.3;
  filter: blur(8px);
  animation: elegantFloat 6s ease-in-out infinite;
}

.footer-blob-2 svg {
  position: absolute;
  width: 40vmax;
  height: auto;
  bottom: -100%;
  right: 7%;
  opacity: 0.2;
  filter: blur(12px);
  animation: elegantFloatReverse 8s ease-in-out infinite;
}

@keyframes elegantFloat {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }
  33% {
    transform: translate(-45%, -55%) scale(1.05) rotate(5deg);
  }
  66% {
    transform: translate(-55%, -45%) scale(0.98) rotate(-3deg);
  }
}

@keyframes elegantFloatReverse {
  0%,
  100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  50% {
    transform: translate(-5%, -5%) scale(1.08) rotate(4deg);
  }
}

.footer-container {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 10px 10px;
}

.footer-cta {
  display: flex;
  min-height: 250px;
  position: relative;
}

.footer-cta::after {
  content: "";
  position: absolute;
  top: 15%;
  bottom: 15%;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(-50%);
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.footer-cta:hover::after {
  opacity: 0;
}

.cta-box {
  flex: 1;
  padding: 35px;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  transition:
    flex 0.35s cubic-bezier(0.2, 0.9, 0.4, 1),
    background 0.25s ease,
    opacity 0.25s ease;
  border-radius: 24px;
  cursor: pointer;
}

.cta-content {
  width: 100%;
}

.cta-box h2 {
  font-size: 2.4rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.25s cubic-bezier(0.2, 0.9, 0.4, 1);
}

.cta-hidden {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition:
    opacity 0.25s ease,
    max-height 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

.cta-box p {
  color: #ffffff;
  margin: 18px 0 20px;
  font-weight: 400;
  line-height: 1.5;
  font-size: 1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.footer-container .cta-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #fff;
  color: #16213e;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.footer-container .cta-btn:hover {
  background: #e03616;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(224, 54, 22, 0.4);
}

.newsletter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 20px;
  border-radius: 50px;
  border: none;
  font-family: "Poppins", sans-serif;
  outline: none;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.95);
  transition: 0.2s;
}

.newsletter-form input:focus {
  background: #fff;
  box-shadow: 0 0 0 3px rgba(224, 54, 22, 0.3);
}

.newsletter-form button {
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  background: #e03616;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  transition: all 0.2s ease;
}

.newsletter-form button:hover {
  background: #c02c0e;
  transform: scale(0.97);
}

.cta-box:has(h2:hover) {
  flex: 1.75;
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.01);
  backdrop-filter: blur(2px);
}

.cta-box:has(h2:hover) h2 {
  font-size: 1.7rem;
}

.cta-box:has(h2:hover) .cta-hidden {
  opacity: 1;
  max-height: 320px;
}

.cta-box:hover {
  flex: 1.75;
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.01);
  backdrop-filter: blur(2px);
}

.cta-box:hover h2 {
  font-size: 1.7rem;
}

.cta-box:hover .cta-hidden {
  opacity: 1;
  max-height: 320px;
}

.footer-cta:has(.cta-box:hover) .cta-box:not(:hover) {
  opacity: 0.45;
  filter: blur(0.5px);
  transition: all 0.3s ease;
}

.image-glow-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 20% 40%,
    rgba(102, 126, 234, 0.107) 0%,
    rgba(22, 33, 62, 0.227) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.dot-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.08) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* ============================================================
   MAIN FOOTER
   ============================================================ */
.footer {
  background: #faf8ff;
  color: var(--paragraph);
}

.footer .footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  padding-top: 55px;
}

.footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer .footer-col h4 {
  font-size: 14px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer .footer-col p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--paragraph);
  margin-top: 15px;
}

.footer .footer-col ul {
  list-style: none;
  padding: 0;
}

.footer .footer-col ul li {
  margin-bottom: 10px;
}

.footer .footer-col ul li a {
  text-decoration: none;
  color: var(--paragraph);
  font-size: 14px;
  transition: 0.3s;
}

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

.footer h4 {
  color: var(--red);
  font-size: 14px;
  font-weight: 600;
}

.footer .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-left: 10px;
  border-radius: 50%;
  background: #0d0e231c;
  color: var(--paragraph);
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.footer .social-icons a:hover {
  background: #37215f;
  color: #ffffff;
}

.footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--paragraph);
}

.footer .logo img {
  height: 53px;
}

.footer hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 20px 0;
}

/* ============================================================
   SERVICE PAGES
   ============================================================ */
.service-hero {
  padding: 160px 80px 80px;
  background: linear-gradient(135deg, #f5f7ff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.service-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-breadcrumb {
  margin-bottom: 30px;
  font-size: 14px;
  color: #666;
}

.service-breadcrumb a {
  color: var(--red);
  text-decoration: none;
}

.service-breadcrumb a:hover {
  text-decoration: underline;
}

.service-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--blue-bold);
  margin-bottom: 20px;
  line-height: 1.2;
}

.service-headline {
  font-size: 28px;
  font-weight: 600;
  color: var(--paragraph);
  margin-bottom: 20px;
  line-height: 1.3;
}

.service-subtext {
  font-size: 16px;
  color: var(--paragraph);
  line-height: 1.7;
  margin-bottom: 30px;
}

.service-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(214, 43, 43, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #001b79;
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #001b79;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-secondary:hover {
  background: #001b79;
  color: #fff;
}

.service-feature-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-content {
  padding: 80px;
  background: #fff;
}

.service-content-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.service-description {
  font-size: 15px;
  line-height: 1.8;
  color: var(--paragraph);
}

.service-description p {
  margin-bottom: 20px;
}

.service-outcomes {
  margin-top: 40px;
  background: #f8f9ff;
  padding: 30px;
  border-radius: 16px;
}

.service-outcomes h3 {
  font-size: 22px;
  color: var(--blue-bold);
  margin-bottom: 20px;
}

.outcomes-grid {
  display: grid;
  gap: 15px;
}

.outcome-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #fff;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.outcome-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.outcome-item i {
  color: var(--red);
  font-size: 20px;
}

.service-sidebar .sidebar-widget {
  background: #f8f9ff;
  padding: 30px;
  border-radius: 16px;
  margin-bottom: 30px;
}

.service-sidebar .sidebar-widget h4 {
  font-size: 18px;
  color: var(--blue-bold);
  margin-bottom: 20px;
}

.contact-widget .btn-block {
  display: block;
  text-align: center;
  margin: 20px 0;
}

.contact-info {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}

.contact-info p {
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.related-services {
  list-style: none;
  padding: 0;
}

.related-services li {
  margin-bottom: 12px;
}

.related-services a {
  color: var(--paragraph);
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  background: #fff;
}

.related-services a:hover {
  color: var(--red);
  transform: translateX(5px);
}

/* ============================================================
   SERVICE FAQ
   ============================================================ */
.service-faq {
  padding: 80px;
  background: #f5f7ff;
}

.service-faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

.service-faq h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--blue-bold);
  margin-bottom: 50px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.faq-item {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--blue-bold);
  margin-bottom: 15px;
}

.faq-item p {
  color: var(--paragraph);
  line-height: 1.7;
  font-size: 14px;
}

/* ============================================================
   SERVICES LISTING PAGE
   ============================================================ */
.services-listing-hero {
  padding: 150px 80px 60px;
  background: linear-gradient(135deg, #001b79 0%, #37215f 100%);
  text-align: center;
  color: #fff;
}

.services-listing-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.services-listing-hero .subtitle {
  font-size: 16px;
  opacity: 0.9;
}

.services-listing-grid {
  padding: 80px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.service-card-large {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  transition: all 0.3s ease;
}

.service-card-large:hover {
  transform: translateY(-10px);
}

.service-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.service-card-icon img {
  width: 40px;
  height: 40px;
}

.service-card-large h2 {
  font-size: 22px;
  color: var(--blue-bold);
  margin-bottom: 15px;
}

.service-card-large p {
  color: var(--paragraph);
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 20px;
}

.service-highlights {
  list-style: none;
  margin-bottom: 25px;
}

.service-highlights li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--paragraph);
  font-size: 14px;
}

/* ============================================================
   SERVICES SHOWCASE SECTION
   ============================================================ */
.services-page {
  background: linear-gradient(180deg, #f4f6fb 0%, #ffffff 100%);
}

.services-page .scroll-container {
  position: relative;
  min-height: calc(100vh * 3);
  padding: 140px 0 0;
  overflow-x: hidden;
}

.services-page .column {
  position: absolute;
  top: 0;
  width: min(44%, 520px);
}

.services-page .left-column {
  left: 6%;
}

.services-page .right-column {
  right: 6%;
}

.services-page .panel {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px;
  border-radius: 36px;
  box-shadow: 0 32px 80px rgba(15, 23, 42, 0.14);
  color: #ffffff;
  font-size: clamp(2rem, 2.8vw, 3.4rem);
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
}

.services-page .panel span {
  display: block;
  max-width: 16ch;
}

.services-page .v-p1 {
  background: linear-gradient(135deg, #ff2d7d 0%, #ff7eb5 100%);
}

.services-page .v-p2 {
  background: linear-gradient(135deg, #24d1ff 0%, #37b6ff 100%);
}

.services-page .v-p3 {
  background: linear-gradient(135deg, #9c4dff 0%, #5b3cff 100%);
}

.services-page .center-lock {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 4;
}

.services-page .blend-text {
  margin: 0;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.9;
  font-weight: 900;
  text-transform: uppercase;
  color: transparent;
  background: linear-gradient(135deg, #0f172a 0%, #4338ca 50%, #ec4899 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.services-panel-copy {
  padding: 100px 24px 140px;
  background: #fff;
}

.services-panel-content {
  max-width: 840px;
  margin: 0 auto 50px;
  text-align: center;
}

.services-panel-content h2 {
  font-size: clamp(2.6rem, 4vw, 4.8rem);
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--navy);
}

.services-panel-content p {
  max-width: 780px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
}

.services-card-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1400px;
  margin: 0 auto;
}

.mini-service-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mini-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 36px 90px rgba(15, 23, 42, 0.14);
}

.mini-service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 18px;
  color: var(--blue-bold);
}

.mini-service-card p {
  margin-bottom: 22px;
  color: var(--muted);
  line-height: 1.9;
  font-size: 0.96rem;
}

.mini-service-link {
  color: var(--red);
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 1100px) {
  .services-page .column {
    position: static;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 24px;
  }

  .services-page .scroll-container {
    min-height: auto;
    padding-top: 100px;
  }

  .services-page .panel {
    min-height: 240px;
    padding: 30px;
  }

  .services-page .center-lock {
    position: relative;
    padding: 40px 0 10px;
  }

  .services-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .services-page .scroll-container {
    padding-top: 80px;
  }

  .services-page .panel {
    min-height: 220px;
    font-size: 2rem;
  }

  .services-panel-content h2 {
    font-size: 2.4rem;
  }

  .services-card-grid {
    grid-template-columns: 1fr;
  }
}

.service-highlights li i {
  color: var(--red);
}

.btn-outline {
  display: inline-block;
  padding: 12px 24px;
  border: 2px solid var(--red);
  color: var(--red);
  text-decoration: none;
  border-radius: 40px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--red);
  color: #fff;
}

.services-cta {
  padding: 80px;
  text-align: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
}

.services-cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.services-cta p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.btn-large {
  padding: 16px 40px;
  font-size: 18px;
}

/* ============================================================
   MOBILE SIDEBAR / HAMBURGER NAV
   ============================================================ */
.menu-toggle {
  display: none;
  background: #fff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  z-index: 301;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  margin-left: auto;
  flex-shrink: 0;
}

.menu-toggle span {
  width: 22px;
  height: 2.5px;
  background: #0a1a3a;
  border-radius: 4px;
  display: block;
  transition: 0.25s;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100%;
  background: #fff;
  z-index: 2000;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.18);
  transition: right 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  padding: 72px 22px 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-sidebar.open {
  right: 0;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: 0.22s;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.close-sidebar {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #f1f5f9;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 30px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a1a3a;
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #eef2ff;
}

.mobile-nav-link {
  font-size: clamp(0.875rem, 4vw, 1rem);
  font-weight: 600;
  color: var(--paragraph);
  text-decoration: none;
  padding: 13px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.mobile-nav-link .arrow {
  font-size: 10px;
  color: #8892b0;
  transition: transform 0.22s;
  display: inline-block;
}

.mobile-nav-link.open .arrow {
  transform: rotate(180deg);
}

.mobile-submenu {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 0 0 14px 4px;
}

.mobile-submenu.open {
  display: flex;
}

.mobile-sub-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 9px 12px;
  background: #f8fafc;
  border-radius: 11px;
  transition: background 0.15s;
}

.mobile-sub-item:hover {
  background: #eef2ff;
}

.mobile-sub-item img {
  width: 24px;
  height: 24px;
  border-radius: 6px;
}

.mobile-sub-item span {
  font-size: clamp(0.75rem, 3.5vw, 0.84rem);
  color: var(--paragraph);
  font-weight: 500;
}

.mobile-res-grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 0 14px 4px;
}

.mobile-res-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 10px 13px;
  background: #f8fafc;
  border-radius: 11px;
  border: 1px solid #eef2ff;
  transition: background 0.15s;
}

.mobile-res-link:hover {
  background: #eef2ff;
}

.mob-res-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mob-res-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mob-res-icon.ic-case  { background: #eef2ff; }
.mob-res-icon.ic-case  svg { stroke: #4361ee; }
.mob-res-icon.ic-testi { background: #fff0f0; }
.mob-res-icon.ic-testi svg { stroke: var(--red); }
.mob-res-icon.ic-career { background: #f0fff4; }
.mob-res-icon.ic-career svg { stroke: #22c55e; }
.mob-res-icon.ic-news  { background: #fff8e6; }
.mob-res-icon.ic-news  svg { stroke: #f59e0b; }

.mob-res-label {
  display: block;
  font-size: clamp(0.78rem, 3.5vw, 0.875rem);
  font-weight: 600;
  color: var(--paragraph);
}

.mob-res-sub {
  display: block;
  font-size: clamp(0.65rem, 3vw, 0.75rem);
  color: var(--muted);
}

.mobile-cta-wrap {
  margin-top: auto;
  padding-top: 22px;
  flex-shrink: 0;
}

.mobile-cta-btn {
  width: 100%;
  height: 44px;
  background-color: var(--red);
  color: #fff !important;
  position: relative;
  overflow: hidden;
  font-size: clamp(0.78rem, 3.5vw, 0.875rem);
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: capitalize;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  box-shadow: 0 6px 14px rgba(229, 62, 62, 0.3);
  text-decoration: none;
}

.mobile-cta-btn::before,
.mobile-cta-btn::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s cubic-bezier(0.35, 0.1, 0.25, 1);
}

.mobile-cta-btn::before {
  right: 0;
  top: 0;
  transition: all 0.5s cubic-bezier(0.35, 0.1, 0.25, 1);
}

.mobile-cta-btn::after {
  left: 0;
  bottom: 0;
}

.mobile-cta-btn .bi {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.mobile-cta-btn .bi::before,
.mobile-cta-btn .bi::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 0;
  background-color: #fff;
  transition: all 0.3s cubic-bezier(0.35, 0.1, 0.25, 1);
}

.mobile-cta-btn .bi::before {
  right: 0;
  top: 0;
  transition: all 0.5s cubic-bezier(0.35, 0.1, 0.25, 1);
}

.mobile-cta-btn .bi::after {
  left: 0;
  bottom: 0;
}

.mobile-cta-btn .bl {
  padding: 0;
  margin: 0;
  transition: all 0.4s cubic-bezier(0.35, 0.1, 0.25, 1);
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-cta-btn .bl::before,
.mobile-cta-btn .bl::after {
  position: absolute;
  width: 100%;
  transition: all 0.4s cubic-bezier(0.35, 0.1, 0.25, 1);
  z-index: 1;
  left: 0;
  text-align: center;
  font-weight: 600;
}

.mobile-cta-btn .bl::before {
  content: attr(data-title);
  top: 50%;
  transform: translateY(-50%);
}

.mobile-cta-btn .bl::after {
  content: attr(data-text);
  top: 150%;
  color: #fff;
}

.mobile-cta-btn:hover::before,
.mobile-cta-btn:hover::after {
  width: 100%;
}

.mobile-cta-btn:hover .bi::before,
.mobile-cta-btn:hover .bi::after {
  height: 100%;
}

.mobile-cta-btn:hover .bl::before {
  top: -50%;
  transform: rotate(5deg);
}

.mobile-cta-btn:hover .bl::after {
  top: 50%;
  transform: translateY(-50%);
}

/* ============================================================
   ================================================================
   RESPONSIVE BREAKPOINTS
   ================================================================
   ============================================================ */

/* ============================================================
   4K — 3840px+
   ============================================================ */
@media (min-width: 3840px) {
  .hero { padding: 0 240px; }

  .hero-content { max-width: 1400px; margin-top: 10vh; padding-top: 120px; }
  .hero-eyebrow { font-size: 22px; letter-spacing: 4px; margin-bottom: 32px; }
  .hero-title   { font-size: 128px; letter-spacing: -3px; margin-bottom: 36px; }
  .hero-subtitle { font-size: 28px; max-width: 1000px; margin-bottom: 60px; }

  .blob-carousel-container { --blob-size: 900px; right: 200px; top: 30%; }

  .feature-cards { gap: 40px; margin-top: 100px; }
  .feat-card     { padding: 60px 45px; border-radius: 24px; }
  .feat-icon     { width: 70px; height: 70px; margin-bottom: 36px; }
  .feat-card h3  { font-size: 24px; }

  .about-section { margin: 0 160px; margin-top: -50px; padding: 120px 120px; gap: 100px; }
  .about-left h2 { font-size: 80px; }
  .bridge-illustration svg, .bridge-illustration img { max-width: 600px; }
  .about-right .eyebrow { font-size: 22px; letter-spacing: 4px; margin-bottom: 36px; }
  .about-right p { font-size: 20px; line-height: 2; margin-bottom: 28px; text-align: justify;}
  .btn-about { padding: 18px 50px; font-size: 20px; margin-top: 32px; }

  .navbar { left: 80px; right: 80px; top: 20px; padding: 16px 40px; }
  .nav-links a { font-size: 18px; }
  .btn-contact { width: 180px; height: 52px; font-size: 18px; }
  .logo img { height: 70px; }

  .footer-cta { min-height: 450px; }
  .cta-box { padding: 60px; }
  .cta-box h2 { font-size: 4rem; }
  .cta-box:hover h2 { font-size: 3rem; }
  .cta-box p { font-size: 1.4rem; }
  .footer-container { max-width: 2800px; padding: 30px 80px; }

  .footer .footer-container { max-width: 2800px; padding: 80px; padding-top: 100px; }
  .footer .footer-col h4 { font-size: 20px; }
  .footer .footer-col p, .footer .footer-col ul li a { font-size: 18px; }
  .footer .logo img { height: 90px; }
  .footer .social-icons a { width: 54px; height: 54px; font-size: 20px; }
  .footer .footer-bottom { font-size: 16px; }

  .side-btn { width: 70px; height: 70px; }
  .side-btn svg { width: 32px; height: 32px; }
}

/* ============================================================
   2K — 2560px – 3839px
   ============================================================ */
@media (min-width: 2560px) and (max-width: 3839px) {
  .hero { padding: 0 180px; }
  .hero-content { max-width: 1200px; margin-top: 10vh; padding-top: 110px; }
  .hero-eyebrow { font-size: 20px; letter-spacing: 3.5px; margin-bottom: 30px; }
  .hero-title   { font-size: 96px; letter-spacing: -2px; margin-bottom: 30px; }
  .hero-subtitle { font-size: 22px; max-width: 750px; margin-bottom: 55px; }

  .blob-carousel-container { --blob-size: 720px; right: 150px; }

  .feature-cards { gap: 32px; margin-top: 90px; }
  .feat-card     { padding: 50px 40px; border-radius: 22px; }
  .feat-icon     { width: 60px; height: 60px; margin-bottom: 32px; }
  .feat-card h3  { font-size: 22px; }

  .about-section { margin: 0 120px; margin-top: -40px; padding: 100px 100px; gap: 80px; border-radius: 36px; }
  .about-left h2 { font-size: 64px; }
  .bridge-illustration svg, .bridge-illustration img { max-width: 500px; }
  .about-right .eyebrow { font-size: 19px; letter-spacing: 3.5px; margin-bottom: 32px; }
  .about-right p { font-size: 18px; line-height: 1.95; margin-bottom: 24px; text-align: justify;}
  .btn-about { padding: 16px 44px; font-size: 18px; margin-top: 28px; }

  .navbar { left: 70px; right: 70px; top: 18px; padding: 14px 36px; }
  .nav-links a { font-size: 16px; }
  .btn-contact { width: 160px; height: 48px; font-size: 16px; }
  .logo img { height: 60px; }

  .footer-cta { min-height: 380px; }
  .cta-box { padding: 55px; }
  .cta-box h2 { font-size: 3.2rem; }
  .cta-box:hover h2 { font-size: 2.4rem; }
  .cta-box p { font-size: 1.2rem; }
  .footer-container { max-width: 2200px; padding: 25px 60px; }

  .footer .footer-container { max-width: 2200px; padding: 70px 60px; padding-top: 90px; }
  .footer .footer-grid { gap: 70px; }
  .footer .footer-col h4 { font-size: 17px; margin-bottom: 22px; }
  .footer .footer-col p, .footer .footer-col ul li a { font-size: 16px; }
  .footer .logo img { height: 75px; }
  .footer .social-icons a { width: 48px; height: 48px; font-size: 18px; }
  .footer .footer-bottom { font-size: 15px; }

  .side-btn { width: 62px; height: 62px; }
  .side-btn svg { width: 28px; height: 28px; }
}

/* ============================================================
   1920×1080 — FULL HD
   ============================================================ */
@media (min-width: 1900px) and (max-width: 2559px) {
  /* Navbar */
  .navbar { left: 60px; right: 60px; top: 15px; padding: 12px 32px; }
  .navbar.scrolled { left: 60px; right: 60px; padding: 10px 32px; }
  .nav-links { gap: 40px; }
  .nav-links a { font-size: 15px; }
  .btn-contact { width: 140px; height: 42px; font-size: 15px; }
  .logo img { height: auto; }

  /* Hero */
  .hero { padding: 0 120px; min-height: 100vh; }
  .hero-content { max-width: 950px; margin-top: 12vh; padding-top: 100px; }
  .hero-eyebrow { font-size: 18px; letter-spacing: 3px; margin-bottom: 28px; padding-bottom: 6px; }
  .hero-title   { font-size: 78px; letter-spacing: -2px; margin-bottom: 28px; line-height: 1.08; }
  .hero-subtitle { font-size: 18px; max-width: 600px; margin-bottom: 48px; line-height: 1.7; }
  .hero-ctas { gap: 20px; }
  .hero-ctas .btn-primary-link { padding: 16px 38px; font-size: 16px; border-radius: 12px; }

  /* Blob */
  .blob-carousel-container { --blob-size: 580px; right: 100px; top: 27%; transform: translateY(-30%); }

  /* Feature Cards */
  .feature-cards { gap: 24px; margin-top: 80px; }
  .feat-card     { padding: 36px 28px; border-radius: 20px; }
  .feat-icon     { width: 52px; height: 52px; margin-bottom: 28px; }
  .feat-card h3  { font-size: 18px; line-height: 1.5; }

  /* About */
  .about-section {
    margin: 0 80px;
    margin-top: -40px;
    padding: 80px 80px;
    gap: 70px;
    border-radius: 32px;
  }
  .hero + .about-section { margin-top: -40px; }
  .about-left h2 { font-size: 52px; line-height: 1.2; }
  .bridge-illustration { margin-top: 40px; text-align: left; }
  .bridge-illustration svg, .bridge-illustration img { max-width: 400px; width: 100%; height: auto; }
  .about-right { text-align: left; }
  .about-right .eyebrow { font-size: 18px; letter-spacing: 3px; margin-bottom: 28px; padding-bottom: 6px; display: inline-block; }
  .about-right p { font-size: 16px; line-height: 1.9; margin-bottom: 20px; text-align: justify;}

  /* Spacer */
  .spacer { height: 80px; }

  .footer-container { max-width: 1600px; padding: 20px 60px; }
  .footer-cta { min-height: 320px; }
  .cta-box { padding: 45px; }
  .cta-box h2 { font-size: 2.8rem; }
  .cta-box:hover h2 { font-size: 2rem; }
  .cta-box p { font-size: 1.1rem; margin: 22px 0 26px; }
  .cta-hidden { margin-top: 10px; }
  .footer-container .cta-btn { padding: 14px 34px; font-size: 1rem; }
  .newsletter-form { gap: 15px; flex-direction: row; }
  .newsletter-form input { padding: 14px 24px; font-size: 1rem; flex: 1; }
  .newsletter-form button { padding: 14px 32px; font-size: 1rem; flex-shrink: 0; }

  /* Footer */
  .footer .footer-container { max-width: 1600px; padding: 60px 60px; padding-top: 75px; }
  .footer .footer-grid { gap: 60px; grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer .footer-col h4 { font-size: 16px; margin-bottom: 20px; }
  .footer .footer-col p, .footer .footer-col ul li a { font-size: 15px; }
  .footer .logo img { height: 65px; }
  .footer .social-icons a { width: 42px; height: 42px; font-size: 16px; }
  .footer hr { margin: 30px 0; }
  .footer .footer-bottom { font-size: 14px; flex-direction: row; justify-content: space-between; }

  /* Side Btns */
  .side-btn { width: 54px; height: 54px; }
  .side-btn svg { width: 24px; height: 24px; }

  /* Service pages */
  .service-hero { padding: 180px 120px 100px; }
  .service-hero-container { max-width: 1600px; gap: 80px; }
  .service-title    { font-size: 58px; }
  .service-headline { font-size: 32px; }
  .service-subtext  { font-size: 18px; }
  .service-content  { padding: 100px 120px; }
  .service-content-container { max-width: 1600px; gap: 80px; }
  .service-faq { padding: 100px 120px; }
  .service-faq h2 { font-size: 44px; margin-bottom: 60px; }
  .faq-item { padding: 35px; }
  .faq-item h3 { font-size: 20px; }
  .services-listing-hero { padding: 180px 120px 80px; }
  .services-listing-hero h1 { font-size: 64px; }
  .services-listing-grid { padding: 100px 120px; }
  .services-grid { gap: 40px; }
  .service-card-large { padding: 50px; }
  .service-card-large h2 { font-size: 28px; }
  .service-card-large p { font-size: 16px; }
}

/* ============================================================
   MACBOOK PRO 14"/16" — 1500px – 1899px
   ============================================================ */
@media (min-width: 1500px) and (max-width: 1899px) {
  .hero { padding: 0 90px; }
  .hero-content { max-width: 850px; margin-top: 11vh; padding-top: 90px; }
  .hero-title { font-size: 68px; }
  .hero-subtitle { font-size: 17px; max-width: 560px; }

  .blob-carousel-container { --blob-size: 520px; right: 60px; }

  .feature-cards { gap: 20px; margin-top: 70px; }
  .feat-card { padding: 30px 24px; }
  .feat-card h3 { font-size: 16px; }

  .about-section { margin: 0 60px; padding: 70px 60px; gap: 60px; }
  .about-left h2 { font-size: 46px; }
  .bridge-illustration svg, .bridge-illustration img { max-width: 360px; }
  .about-right p { font-size: 15px; text-align: justify;}
}

/* ============================================================
   LAPTOP — 1360px – 1499px
   ============================================================ */
@media (min-width: 1360px) and (max-width: 1499px) {
  .hero { padding: 0 60px; }
  .hero-content { max-width: 760px; margin-top: 10vh; padding-top: 85px; }
  .hero-title { font-size: 56px; }
  .hero-subtitle { font-size: 15px; max-width: 500px; }

  .blob-carousel-container { --blob-size: 420px; right: 40px; top: 30%; }

  .feature-cards { gap: 14px; margin-top: 55px; }
  .feat-card { padding: 22px 18px; }
  .feat-card h3 { font-size: 13px; }

  .about-section { margin: 0 40px; padding: 55px 48px; gap: 44px; }
  .about-left h2 { font-size: 36px; }
  .bridge-illustration svg, .bridge-illustration img { max-width: 280px; }
}

/* ============================================================
   DESKTOP DEFAULT — 1200px – 1359px
   ============================================================ */
@media (min-width: 1200px) and (max-width: 1359px) {
  .blob-carousel-container { --blob-size: 420px; right: 40px; }
  .about-section { margin: 0 24px; padding: 50px 40px; gap: 40px; }
  .about-left h2 { font-size: 36px; }
  .bridge-illustration img, .bridge-illustration svg { max-width: 280px; }
  .about-right .eyebrow { font-size: 14px; letter-spacing: 2px; margin-bottom: 18px; }
  .about-right p { font-size: 14px; line-height: 1.7; text-align: justify;}
}

/* ============================================================
   TABLET LANDSCAPE — 992px – 1199px
   ============================================================ */
@media (min-width: 993px) and (max-width: 1199px) {
  .blob-carousel-container { --blob-size: 360px; right: 30px; transform: translateY(-20%); }

  .about-section {
    grid-template-columns: 1fr;
    gap: 35px;
    margin: 0 20px;
    margin-top: -20px;
    padding: 45px 35px;
    text-align: center;
    border-radius: 24px;
  }
  .about-left { text-align: center; }
  .about-left h2 { font-size: 34px; }
  .bridge-illustration { display: flex; justify-content: center; margin-top: 20px; }
  .bridge-illustration img, .bridge-illustration svg { max-width: 260px; }
  .about-right { text-align: center; }
  .about-right .eyebrow { font-size: 13px; letter-spacing: 2px; }
  .about-right p { max-width: 550px; margin-left: auto; margin-right: auto; text-align: justify;}

  .service-hero { padding: 120px 40px 60px; }
  .service-hero-container { grid-template-columns: 1fr; }
  .service-content { padding: 60px 40px; }
  .service-content-container { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .services-listing-hero { padding: 120px 40px 50px; }
  .services-listing-grid { padding: 50px 40px; }

  .footer .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   TABLET / HAMBURGER TRIGGER — ≤ 880px
   ============================================================ */
@media (max-width: 880px) {
  .nav-links { display: none !important; }
  .mega-menu { display: none !important; }
  .menu-toggle { display: flex; }

  .navbar {
    left: 16px;
    right: 16px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
  }

  .navbar.scrolled { left: 16px; right: 16px; background: #fff; }
  .logo img { width: 100px; height: auto !important; }
}

/* ============================================================
   TABLET PORTRAIT — 769px – 880px
   ============================================================ */
@media (min-width: 769px) and (max-width: 880px) {
  .blob-carousel-container { display: none; }
  .hero { padding: 0 40px; }
  .hero-content { max-width: 100%; text-align: center; margin-top: 14vh; padding-top: 70px; }
  .hero-subtitle { margin-left: auto; margin-right: auto; max-width: 90%; }
  .hero-ctas { justify-content: center; }

  .feature-cards { grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 40px; }
  .feat-card { padding: 20px 14px; }
  .feat-icon { width: 36px; height: 36px; }

  .about-section {
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 0 16px;
    margin-top: -15px;
    padding: 35px 24px;
    text-align: center;
    border-radius: 24px;
  }
  .about-left { text-align: center; }
  .about-left h2 { font-size: 28px; }
  .bridge-illustration { display: flex; justify-content: center; margin-top: 16px; }
  .bridge-illustration img, .bridge-illustration svg { max-width: 220px; }
  .about-right { text-align: center; }
  .about-right p { font-size: 13px; text-align: justify; }
  .btn-about, .about-right .secondary-btn { padding: 8px 24px; font-size: 13px; min-height: 38px; margin-top: 6px; }

  .footer-cta { flex-direction: column; min-height: auto; }
  .footer-cta::after { display: none; }
  .cta-box {
    flex: 1 !important;
    margin-bottom: 16px;
    transform: none !important;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 28px;
    padding: 2rem 1.8rem;
    backdrop-filter: blur(2px);
  }
  .cta-box h2 { font-size: 1.8rem !important; }
  .cta-box:hover h2 { font-size: 1.8rem !important; }
  .cta-hidden { opacity: 1; max-height: 500px; }
  .footer-cta:hover .cta-box { flex: 1 !important; }
  .footer-cta:hover .cta-box:not(:hover) { opacity: 1; }
  .cta-box:hover { background: rgba(255, 255, 255, 0.1) !important; transform: none !important; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form button, .newsletter-form input { width: 100%; }

  .footer .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer .footer-bottom { flex-direction: column; align-items: flex-start; gap: 15px; }

  .cta-box h2 { font-size: 2rem; }
  .cta-box { padding: 2rem 1.8rem; }
}

/* ============================================================
   MOBILE — ≤ 768px
   ============================================================ */
@media (max-width: 768px) {
  .blob-carousel-container { display: none; }

  .hero { padding: 0 24px; }
  .hero-content { max-width: 100%; text-align: center; margin-top: 12vh; padding-top: 60px; }
  .hero-subtitle { margin-left: auto; margin-right: auto; max-width: 90%; }
  .hero-ctas { justify-content: center; }
  .hero-title { font-size: 42px; }

  .feature-cards { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; margin-top: 40px; }
  .feat-card { padding: 20px 12px; }
  .feat-icon { width: 36px; height: 36px; }

  .about-section {
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 0 16px;
    margin-top: -15px;
    padding: 35px 24px;
    text-align: center;
    border-radius: 24px;
  }
  .hero + .about-section { margin-top: -15px; }
  .about-left { text-align: center; }
  .about-left h2 { font-size: 28px; line-height: 1.2; }
  .bridge-illustration { display: flex; justify-content: center; margin-top: 16px; }
  .bridge-illustration img, .bridge-illustration svg { max-width: 220px; }
  .about-right { text-align: center; }
  .about-right .eyebrow { font-size: 12px; letter-spacing: 1.5px; padding-bottom: 3px; margin-bottom: 16px; }
  .about-right p { font-size: 13px; line-height: 1.65; margin-bottom: 12px; text-align: justify;}
  .btn-about, .about-right .secondary-btn { padding: 8px 24px; font-size: 13px; min-height: 38px; margin-top: 6px; }

  .footer-container { padding: 40px 20px; }
  .footer-cta { flex-direction: column; min-height: auto; }
  .footer-cta::after { display: none; }
  .cta-box {
    flex: 1 !important;
    margin-bottom: 16px;
    transform: none !important;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 28px;
    padding: 2rem 1.8rem;
    backdrop-filter: blur(2px);
  }
  .cta-box h2 { font-size: 1.8rem !important; }
  .cta-box:hover h2 { font-size: 1.8rem !important; }
  .cta-hidden { opacity: 1; max-height: 500px; }
  .footer-cta:hover .cta-box { flex: 1 !important; }
  .footer-cta:hover .cta-box:not(:hover) { opacity: 1; }
  .cta-box:hover { background: rgba(255, 255, 255, 0.1) !important; transform: none !important; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form button, .newsletter-form input { width: 100%; }

  .footer .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer .footer-bottom { flex-direction: column; align-items: flex-start; gap: 15px; }

  .service-hero { padding: 120px 24px 50px; }
  .service-hero-container { grid-template-columns: 1fr; }
  .service-title { font-size: 32px; }
  .service-headline { font-size: 22px; }
  .service-content { padding: 50px 24px; }
  .service-content-container { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   MOBILE SMALL — ≤ 575px
   ============================================================ */
@media (max-width: 575px) {
  .about-section { margin: 0 12px; margin-top: -10px; padding: 28px 18px; gap: 25px; border-radius: 20px; }
  .hero + .about-section { margin-top: -10px; }
  .about-left h2 { font-size: 26px; }     
  .bridge-illustration { margin-top: 12px; }
  .bridge-illustration img, .bridge-illustration svg { max-width: 180px; }
  .about-right .eyebrow { font-size: 13px; letter-spacing: 1.2px; margin-bottom: 14px; }  
  .about-right p { font-size: 14px; line-height: 1.5; margin-bottom: 12px; text-align: justify;}             
  .btn-about, .about-right .secondary-btn { padding: 9px 24px; font-size: 14px; min-height: 42px; } 

  .footer .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   MOBILE XS — ≤ 480px
   ============================================================ */
@media (max-width: 480px) {
  .hero-title { font-size: 40px; }          
  .hero-eyebrow { font-size: 13px; }        
  .hero-ctas { flex-direction: column; align-items: center; gap: 12px; }
  .hero-ctas .btn-primary-link, .secondary-btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
    padding: 14px 20px;                  
    font-size: 15px;                    
  }
  .feature-cards { grid-template-columns: 1fr 1fr; gap: 16px; }
  .feat-card h3 { font-size: 15px; }        /* was 12px */
  .hero-content { margin-top: 6vh; }
}

/* ============================================================
   MOBILE XXS — ≤ 400px
   ============================================================ */
@media (max-width: 400px) {
  .mobile-sidebar { width: 94%; }
  .mobile-sidebar p, .mobile-sidebar a { font-size: 14px; line-height: 1.5; }
}

/* ============================================================
   MOBILE SMALLEST — ≤ 380px
   ============================================================ */
@media (max-width: 380px) {
  .feature-cards { grid-template-columns: 1fr; }
  .hero-title { font-size: 36px; }         
  .about-section { margin: 0 10px; margin-top: -8px; padding: 22px 14px; gap: 20px; border-radius: 18px; }
  .hero + .about-section { margin-top: -8px; }
  .about-left h2 { font-size: 24px; }      
  .bridge-illustration img, .bridge-illustration svg { max-width: 150px; }
  .about-right .eyebrow { font-size: 12px; letter-spacing: 1px; } 
  .about-right p { font-size: 13.5px; line-height: 1.5; text-align: justify;}          
  .btn-about, .about-right .secondary-btn { padding: 8px 20px; font-size: 13px; min-height: 40px; } 
}

/* ============================================================
   OVERFLOW SAFETY — ALL WIDE SCREENS
   ============================================================ */
@media (min-width: 1900px) {
  html { overflow-y: scroll; }
  body { overflow-x: hidden; }
  .hero,
  .footer { width: 100%; max-width: 100%; overflow-x: hidden; }
  .feature-cards { width: 100%; max-width: 100%; }
  .hero-title br { display: block; }
}
/* ============================================================
   SERVICE PAGE — SHARED STYLES (from service-template.php)
   Consolidated here so service pages can drop inline <style>
   ============================================================ */

/* ---- Service Hero (new layout) ---- */
.service-hero {
  padding: 100px 0 80px;
  background: #ffffff;
  position: relative;
}

.hero-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.hero-top {
  flex: 1;
  padding: 40px 0 20px;
  max-width: 60%;
  background: #ffffff;
}

.hero-eyebrow-svc {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--blue-bold);
  padding-bottom: 4px;
  margin-bottom: 22px;
  display: inline-block;
  color: var(--blue-bold);
  font-family: "Poppins", sans-serif;
}

.hero-title-svc {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  color: var(--red);
  font-family: "Poppins", sans-serif;
}

.hero-subtitle-svc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 480px;
  color: var(--paragraph);
  font-family: "Poppins", sans-serif;
}

/* ---- Hero Contact Card ---- */
.hero-contact-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 28px 28px 32px;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.02);
  border: 1px solid #eef2f8;
}

.hero-contact-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--paragraph);
  font-family: "Poppins", sans-serif;
}

.hero-contact-card p {
  font-size: 13px;
  margin-bottom: 20px;
  padding-left: 12px;
  border-left: 3px solid var(--red);
  color: var(--paragraph);
  font-family: "Poppins", sans-serif;
}

.hero-contact-card button {
  width: 100%;
  padding: 11px;
  border: none;
  border-radius: 40px;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  background: var(--red);
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
  font-family: "Poppins", sans-serif;
}

.hero-contact-card button:hover {
  background: var(--red-hover);
}

/* ---- Form elements ---- */
.form-group {
  margin-bottom: 12px;
}

.form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.form-row .form-group {
  flex: 1;
  margin-bottom: 0;
}

.form-group input,
.form-group textarea,
.form-row select,
#assistanceNeed,
#purposeEnquiry {
  width: 100%;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: var(--paragraph);
  transition: all 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-row select:focus,
#assistanceNeed:focus,
#purposeEnquiry:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(224, 54, 22, 0.08);
}

.form-group textarea {
  resize: vertical;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  justify-content: center;
  font-size: 11px;
  border-top: 1px solid #edf2f7;
  padding-top: 16px;
  color: var(--muted);
  font-family: "Poppins", sans-serif;
}

.form-success {
  background: #e6f7e6;
  color: #2e7d32;
  padding: 10px;
  border-radius: 14px;
  font-size: 13px;
  text-align: center;
  margin-top: 12px;
  display: none;
  font-family: "Poppins", sans-serif;
}

/* ---- Content Section ---- */
.content-section {
  padding: 60px 0;
  background: #ffffff;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.content-left h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--red);
  font-family: "Poppins", sans-serif;
}

.content-left p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--paragraph);
  font-family: "Poppins", sans-serif;
}

/* ---- Outcomes Wheel ---- */
.outcomes-wheel {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}

.wheel {
  --total: 4;
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: 50%;
}

.wheel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed var(--purple-deep);
}

.wheel-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: var(--purple-deep);
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}

.wheel-item {
  position: absolute;
  top: 40%;
  left: 30%;
  width: 130px;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(0, 27, 121, 0.06);
  background: #FCFAFF;
  color: var(--purple-deep);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  font-size: 14px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  --angle: calc(360deg / var(--total));
  transform: rotate(calc(var(--i) * var(--angle))) translate(150px) rotate(calc(var(--i) * -1 * var(--angle)));
  animation: orbit-svc 20s linear infinite;
}

.wheel-item:nth-child(2) { animation-delay: -5s; }
.wheel-item:nth-child(3) { animation-delay: -10s; }
.wheel-item:nth-child(4) { animation-delay: -15s; }

@keyframes orbit-svc {
  from { transform: rotate(0deg) translate(150px) rotate(0deg); }
  to   { transform: rotate(360deg) translate(150px) rotate(-360deg); }
}

.wheel:hover .wheel-item {
  animation-play-state: paused;
}

/* ---- Why Section ---- */
.why-section {
  position: relative;
  padding: 80px 0;
  background: var(--light-bg);
  overflow: hidden;
}

.why-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://ctobridge.com/assets/images/icons/why-cto-bg.svg") no-repeat right;
  background-size: 600px;
  opacity: 0.15;
  z-index: 0;
}

.why-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--light-bg);
  opacity: 0.85;
  z-index: 1;
}

.why-section > * {
  position: relative;
  z-index: 2;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.why-left h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--red);
  font-family: "Poppins", sans-serif;
}

.why-left p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--paragraph);
  font-family: "Poppins", sans-serif;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.stats-grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  transform: translateX(-50%);
  background: rgba(55, 33, 95, 0.2);
}

.stats-grid::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  transform: translateY(-50%);
  background: rgba(55, 33, 95, 0.2);
}

.stat-card {
  background: transparent;
  padding: 24px;
  border: 1px solid transparent;
  transition: all 0.2s;
  cursor: default;
}

.stat-card:hover {
  border: 1px solid var(--purple-deep);
}

.stat-label {
  font-size: 14px;
  line-height: 1.4;
  text-transform: capitalize;
  font-weight: 500;
  color: var(--paragraph);
  font-family: "Poppins", sans-serif;
}

.why-us-icon img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  background: var(--purple-deep);
  transform: translateY(-30px);
  opacity: 0;
  transition: all 0.4s ease;
}

.stat-card:hover .why-us-icon img {
  transform: translateY(0);
  opacity: 1;
}

/* ---- Read More ---- */
.more-text {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.content-left.active .more-text {
  max-height: 500px;
}

.read-more-btn {
  margin-top: 10px;
  background: none;
  border: none;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  color: var(--purple-deep);
  font-family: "Poppins", sans-serif;
}

/* ---- Services Section ---- */
.services-section {
  padding: 50px 0;
  background: #ffffff;
}

.section-header {
  text-align: left;
  margin: 0 0 30px 0;
}

.section-eyebrow {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--red);
  padding-bottom: 4px;
  margin-bottom: 22px;
  display: inline-block;
  color: var(--red);
  font-family: "Poppins", sans-serif;
}

.section-title-svc {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  color: var(--red);
  font-family: "Poppins", sans-serif;
}

.section-subtitle-svc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--paragraph);
  font-family: "Poppins", sans-serif;
}

/* ---- Service Tabs ---- */
.services-tabs-svc {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.tab-svc {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  background: var(--light-bg);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  color: var(--paragraph);
  font-family: "Poppins", sans-serif;
}

.tab-svc:hover,
.tab-svc.active {
  background: var(--navy-mid);
  color: #fff;
  box-shadow: 0 4px 12px rgba(13, 34, 80, 0.2);
}

/* ---- Service Cards (tab panels) ---- */
.services-grid-svc {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.service-card-svc {
  background: var(--light-bg);
  color: var(--paragraph);
  padding: 32px 36px;
  border-radius: 16px;
  transition: all 0.3s ease;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
  border-left: 4px solid transparent;
}

.service-card-svc:hover {
  border-left-color: var(--red);
}

.service-card-svc h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--navy-mid);
  font-family: "Poppins", sans-serif;
  transition: color 0.3s ease;
}

.service-card-svc:hover h3 {
  color: var(--red);
}

.service-card-svc p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--paragraph);
  font-family: "Poppins", sans-serif;
}

/* ---- Tag Grid ---- */
.tag-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
}

.tag {
  background: var(--light-bg);
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--paragraph);
  text-align: left;
  border-radius: 4px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  font-family: "Poppins", sans-serif;
  line-height: 1.5;
}

/* ---- Timeline Section ---- */
.timeline-section {
  padding: 80px 0;
  background: #ffffff;
}

.timeline-row {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0;
  margin: 0 auto;
  padding: 32px 0;
}

.timeline-row .box {
  position: relative;
  flex: 1 1 220px;
  background: #FCFAFF;
  padding: 28px 24px;
  box-shadow: 0 18px 40px rgba(3, 29, 80, 0.08);
  border: 1px solid rgba(0, 27, 121, 0.06);
  overflow: hidden;
}

.timeline-row .box h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--purple-deep);
  font-family: "Poppins", sans-serif;
  position: relative;
  z-index: 2;
}

.timeline-row .box p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--paragraph);
  font-family: "Poppins", sans-serif;
  position: relative;
  z-index: 2;
}

.box-bg-icon {
  position: absolute;
  right: -10px;
  bottom: 0;
  width: 100px;
  opacity: 0.04;
  z-index: 0;
  pointer-events: none;
  filter: grayscale(100%);
}

.timeline-line {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.timeline-line path {
  fill: none;
  stroke: var(--purple-deep);
  stroke-width: 1;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  transition: stroke-dashoffset 1.8s ease;
}

.timeline-row.active path {
  stroke-dashoffset: 0;
}

.timeline-row .circle {
  position: absolute;
  left: 0;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  z-index: 2;
}

.timeline-row .circle.top { top: 0; }
.timeline-row .circle.bottom { bottom: 0; transform: translate(-50%, 50%); }

/* ---- Services CTO Boxes ---- */
.services-cto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 35px;
}

.service-box {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 60px 20px 20px;
  border: 1px solid #e5e5e5;
  background: #fff;
  perspective: 1000px;
  transition: transform 0.6s ease, box-shadow 0.6s ease, border-color 0.6s ease;
  border-radius: 10px;
}

.service-box:hover {
  transform: rotateY(180deg);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
  border-color: var(--navy);
}

.service-box:hover .box-contents {
  transform: rotateY(-180deg);
}

.circle-icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0%) !important;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  pointer-events: none;
}

.circle-icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.box-contents {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  color: var(--paragraph);
  font-family: "Poppins", sans-serif;
  text-align: center;
  transition: transform 0.6s ease;
}

.box-contents div:first-child {
  font-size: 15px;
  font-weight: 600;
  color: var(--paragraph);
  margin-bottom: 8px;
}

/* ---- Who Section ---- */
.who-section {
  padding: 60px 0;
  background: #ffffff !important;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.who-panel {
  position: relative;
  padding: 28px;
  transition: transform 0.3s ease;
  overflow: hidden;
  z-index: 1;
  box-shadow: rgba(14, 63, 126, 0.04) 0 0 0 1px, rgba(42, 51, 69, 0.04) 0 1px 1px -0.5px,
              rgba(42, 51, 70, 0.04) 0 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0 6px 6px -3px;
}

.who-panel h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--paragraph);
  font-family: "Poppins", sans-serif;
  position: relative;
  z-index: 3;
}

.who-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  list-style: none;
  position: relative;
  z-index: 3;
}

.who-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--paragraph);
  font-size: 14px;
  line-height: 1.7;
  font-family: "Poppins", sans-serif;
}

/* ---- Form Sec (contact form section) ---- */
.form-sec {
  padding: 80px 0;
  background: var(--light-bg);
  position: relative;
  overflow: hidden;
}

.bg-panel {
  position: absolute;
  top: 50px;
  left: 5%;
  right: 20%;
  bottom: 20%;
  background: #ffffff;
  border-radius: 32px;
  z-index: 0;
}

.sec-in {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  gap: 32px;
}

.left-card {
  padding: 56px 48px 56px 0;
  position: relative;
  z-index: 1;
}

.sec-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--red);
  font-family: "Poppins", sans-serif;
}

.sec-text-box p {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.78;
  color: var(--paragraph);
  margin-bottom: 18px;
}

.right-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 34px 30px 38px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04), 0 16px 48px rgba(0,27,121,0.10), 0 1px 2px rgba(0,0,0,0.03);
  border: 1px solid rgba(200, 210, 230, 0.6);
  position: relative;
  z-index: 3;
  margin-top: -50px;
}

.right-card .form-group input,
.right-card .form-group textarea,
.right-card .form-group select,
.right-card #assistanceNeed,
.right-card #purposeEnquiry {
  width: 100%;
  padding: 12px 18px;
  border-radius: 50px;
  border: 1.5px solid #e4eaf4;
  background: #f7f9fd;
  font-family: "Poppins", sans-serif;
  font-size: 13.5px;
  color: var(--paragraph);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.right-card .form-group textarea {
  border-radius: 16px;
  resize: vertical;
  min-height: 82px;
  padding: 12px 18px;
}

.right-card .form-group select,
.right-card #assistanceNeed,
.right-card #purposeEnquiry {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%23a0aec0' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 42px;
  cursor: pointer;
}

.right-card .form-group input::placeholder,
.right-card .form-group textarea::placeholder {
  color: #a0aec0;
}

.right-card .form-group input:focus,
.right-card .form-group textarea:focus,
.right-card .form-group select:focus,
.right-card #assistanceNeed:focus,
.right-card #purposeEnquiry:focus {
  border-color: var(--red);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(224, 54, 22, 0.09);
}

.right-card button[type="submit"] {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 50px;
  background: var(--red);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  cursor: pointer;
  margin-top: 8px;
  display: block;
  transition: background 0.2s, transform 0.12s;
}

.right-card button[type="submit"]:hover {
  background: var(--red-hover);
}

.right-card button[type="submit"]:active {
  transform: scale(0.985);
}

/* ---- Fade In Up ---- */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up.delay-1 {
  transition-delay: 0.15s;
}

/* ---- Hero 3D canvas ---- */
.hero-3d {
  flex: 1;
  height: 500px;
  position: relative;
  margin-bottom: -80px;
  z-index: 3;
}

.hero-3d canvas {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

/* ---- Hero Bottom ---- */
.hero-bottom {
  width: 100%;
  margin: 40px 0 0;
}

.hero-bottom .container {
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  border-radius: 16px;
}

.hero-bottom-left {
  flex: 1;
  max-width: 50%;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.hero-bottom-left img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.hero-bottom-right.left-aligned {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-btn {
  display: inline-block;
  background: var(--red);
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.hero-btn:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(224, 54, 22, 0.3);
}

/* ============================================================
   SERVICE PAGE — RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Large screens 1600px+ */
@media (min-width: 1600px) {
  .sec-in { max-width: 1440px; }
  .hero-title-svc { font-size: 56px; }
  .section-title-svc { font-size: 42px; }
  .sec-title { font-size: 36px; }
  .left-card { padding: 70px 60px 70px 0; }
  .right-card { padding: 42px 38px 46px; }
  .service-card-svc { padding: 40px 48px; }
  .service-card-svc h3 { font-size: 28px; }
  .service-card-svc p { font-size: 17px; }
  .wheel { width: 380px; height: 380px; }
  .wheel-item { width: 150px; font-size: 16px; transform: rotate(calc(var(--i) * var(--angle))) translate(180px) rotate(calc(var(--i) * -1 * var(--angle))); }
}

/* Tablet landscape 993-1199 */
@media (min-width: 993px) and (max-width: 1199px) {
  .hero-title-svc { font-size: 38px; }
  .why-us-icon img { opacity: 1; transform: translateY(0); }
  .wheel { width: 280px; height: 280px; }
  .wheel-item { width: 110px; font-size: 12px; transform: rotate(calc(var(--i) * var(--angle))) translate(130px) rotate(calc(var(--i) * -1 * var(--angle))); }
}

/* Tablet 993px */
@media (max-width: 992px) {
  .outcomes-wheel { display: none; }
  .content-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-title-svc { font-size: 40px; }
  .hero-top { max-width: 100%; padding: 20px 0; }
  .hero-wrapper { flex-direction: column; }
  .hero-3d { display: none; }
  .hero-bottom .container { flex-direction: column; align-items: center; }
  .hero-bottom-left { max-width: 100%; width: 100%; }
  .hero-bottom-right.left-aligned { align-items: center; text-align: center; width: 100%; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-tabs-svc { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; -webkit-overflow-scrolling: touch; }
  .tab-svc { white-space: nowrap; flex-shrink: 0; }
  .timeline-row { flex-direction: column; }
  .timeline-row .box { width: 100%; flex: 1 1 100%; }
  .timeline-line { display: none; }
  .services-cto { grid-template-columns: repeat(2, 1fr); }
  .who-grid { grid-template-columns: 1fr; gap: 20px; }
  .sec-in { grid-template-columns: 1fr; padding: 0 24px; }
  .left-card { padding: 40px 36px; background: #fff; border-radius: 28px; }
  .right-card { margin-top: 0; }
  .bg-panel { display: none; }
  .form-sec { overflow: visible; }
}

/* Tablet 768px */
@media (max-width: 768px) {
  .service-hero { padding: 60px 0 0; }
  .hero-title-svc { font-size: 32px; text-align: center; }
  .hero-subtitle-svc { text-align: center; max-width: 100%; }
  .hero-eyebrow-svc { font-size: 12px; }
  .section-title-svc { font-size: 24px; }
  .service-card-svc { padding: 24px 20px; }
  .service-card-svc h3 { font-size: 20px; }
  .service-card-svc p { font-size: 14px; }
  .content-left h2 { font-size: 22px; }
  .why-left h2 { font-size: 22px; }
  .sec-in { padding: 0 20px; gap: 24px; }
  .left-card { padding: 32px 28px; }
  .sec-title { font-size: 26px; }
  .right-card { padding: 28px 24px 32px; }
  .form-row { flex-direction: column; gap: 12px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-card { padding: 20px; border-bottom: 1px solid rgba(0,0,0,0.05); }
  .hero-btn { width: 100%; text-align: center; padding: 12px 24px; }
  .tag-container { grid-template-columns: 1fr; }
  .who-panel h3 { font-size: 18px; }
  .who-list li { font-size: 13px; }
  .services-cto { grid-template-columns: 1fr; gap: 30px; }
  .service-box { padding: 70px 20px 20px; }
  .timeline-section { padding: 60px 0; }
  .why-section { padding: 35px 0; }
  .services-section { padding: 35px 0; }
  .who-section { padding: 48px 0 20px; }
}

/* Mobile 576px */
@media (max-width: 576px) {
  .hero-title-svc { font-size: 28px; }
  .hero-subtitle-svc { font-size: 14px; }
  .section-title-svc { font-size: 22px; }
  .service-card-svc { padding: 16px; }
  .service-card-svc h3 { font-size: 18px; }
  .service-card-svc p { font-size: 13px; }
  .tab-svc { padding: 6px 14px; font-size: 12px; }
  .tag { font-size: 13px; padding: 8px 12px; }
  .stat-label { font-size: 12px; }
  .timeline-row .box { padding: 20px; }
  .timeline-row .box h3 { font-size: 15px; }
  .timeline-row .box p { font-size: 13px; }
  .who-panel { padding: 20px; }
  .who-panel h3 { font-size: 17px; }
  .sec-in { padding: 0 16px; gap: 20px; }
  .left-card { padding: 28px 22px; border-radius: 24px; }
  .sec-title { font-size: 24px; }
  .sec-text-box p { font-size: 13.5px; }
  .right-card { padding: 24px 20px 28px; border-radius: 24px; }
  .right-card .form-group input,
  .right-card .form-group textarea,
  .right-card .form-group select { padding: 10px 14px; font-size: 13px; }
  .right-card button[type="submit"] { font-size: 14px; padding: 13px; }
  .circle-icon { width: 60px; height: 60px; }
  .service-box { padding: 50px 15px 15px; }
}

/* Mobile 480px */
@media (max-width: 480px) {
  .hero-title-svc { font-size: 26px; }
  .hero-eyebrow-svc { font-size: 11px; }
  .service-card-svc h3 { font-size: 17px; }
  .tab-svc { padding: 5px 12px; font-size: 11px; }
  .box-contents div:first-child { font-size: 14px; }
}

/* Mobile 380px */
@media (max-width: 380px) {
  .hero-title-svc { font-size: 24px; }
  .section-title-svc { font-size: 20px; }
  .hero-btn { font-size: 13px; padding: 8px 16px; }
  .tab-svc { padding: 4px 10px; font-size: 10px; }
  .who-panel h3 { font-size: 16px; }
  .who-list li { font-size: 12px; }
  .sec-title { font-size: 22px; }
  .right-card { padding: 18px 14px 22px; }
  .right-card .form-group input,
  .right-card .form-group textarea,
  .right-card .form-group select { font-size: 12px; padding: 9px 12px; }
  .right-card button[type="submit"] { font-size: 13px; padding: 11px; }
  .service-card-svc { padding: 20px 16px; }
}

/* Full HD 1900-2559px */
@media (min-width: 1900px) and (max-width: 2559px) {
  .service-hero { padding: 120px 0 80px; }
  .hero-title-svc { font-size: 64px; }
  .hero-subtitle-svc { font-size: 18px; max-width: 600px; }
  .section-title-svc { font-size: 42px; }
  .section-subtitle-svc { font-size: 18px; }
  .service-card-svc { padding: 48px 56px; }
  .service-card-svc h3 { font-size: 28px; }
  .service-card-svc p { font-size: 17px; }
  .tag { font-size: 16px; padding: 14px 20px; }
  .tag-container { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
  .who-panel { padding: 40px; }
  .who-panel h3 { font-size: 24px; }
  .who-list li { font-size: 16px; }
  .timeline-section { padding: 120px 0 100px; }
  .timeline-row .box { padding: 36px 32px; }
  .timeline-row .box h3 { font-size: 22px; }
  .timeline-row .box p { font-size: 16px; }
  .services-cto { gap: 30px; margin-top: 50px; }
  .service-box { padding: 75px 25px 25px; }
  .box-contents div:first-child { font-size: 18px; }
  .box-contents { font-size: 16px; }
  .sec-in { max-width: 1600px; gap: 50px; }
  .left-card { padding: 70px 60px 70px 0; }
  .sec-title { font-size: 38px; }
  .sec-text-box p { font-size: 17px; line-height: 1.8; }
  .right-card { padding: 45px 42px 50px; margin-top: -60px; }
  .right-card .form-group input,
  .right-card .form-group textarea,
  .right-card .form-group select { padding: 14px 22px; font-size: 15px; }
  .right-card button[type="submit"] { padding: 16px; font-size: 16px; margin-top: 15px; }
  .wheel { width: 420px; height: 420px; }
  .wheel-item { width: 160px; font-size: 16px; transform: rotate(calc(var(--i) * var(--angle))) translate(200px) rotate(calc(var(--i) * -1 * var(--angle))); }
  .why-left h2 { font-size: 36px; }
  .stat-label { font-size: 16px; }
  .content-left h2 { font-size: 36px; }
  .content-left p { font-size: 17px; }
  .services-tabs-svc { gap: 16px; }
  .tab-svc { padding: 12px 28px; font-size: 16px; }
}

/* 2K and above */
@media (min-width: 2560px) {
  .hero-title-svc { font-size: 80px; }
  .hero-subtitle-svc { font-size: 22px; max-width: 800px; }
  .service-card-svc { padding: 60px 70px; }
  .service-card-svc h3 { font-size: 34px; }
  .wheel { width: 500px; height: 500px; }
  .wheel-item { width: 190px; font-size: 18px; transform: rotate(calc(var(--i) * var(--angle))) translate(240px) rotate(calc(var(--i) * -1 * var(--angle))); }
}
