:root {
  --primary-blue: #0066ff;
  --primary-blue-dark: #0047b3;
  --primary-blue-hover: #0052cc;
  --primary-blue-light: #e8f2ff;
  --sky-blue: #0066ff;
  --sky-blue-dark: #0284c7;
  --dark-navy: #0a192f;
  --dark-navy-deep: #061325;
  --dark-navy-card: #0f2342;
  --light-bg: #f8fafc;
  --light-card-bg: #ffffff;
  --border-light: #e2e8f0;
  --border-dark: rgba(255, 255, 255, 0.12);
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --text-light: #cbd5e1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--dark-navy);
  color: #fff;
}

body.menu-open {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* TOP ANNOUNCEMENT TICKER BAR */
.top-ticker-bar {
  width: 100%;
  background: linear-gradient(90deg, #061325 0%, #0047b3 50%, #061325 100%);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 0;
  overflow: hidden;
  position: relative;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  white-space: nowrap;
  user-select: none;
}

.ticker-track {
  display: flex;
  width: max-content;
}

.ticker-content {
  display: flex;
  align-items: center;
  gap: 28px;
  animation: infiniteTicker 30s linear infinite;
}

.top-ticker-bar:hover .ticker-content {
  animation-play-state: paused;
}

.ticker-dot {
  color: #38bdf8;
  font-size: 0.9rem;
}

@keyframes infiniteTicker {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* HEADER & NAVBAR */
.header {
  height: 76px;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
  width: 100%;
  z-index: 1050;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.header.is-fixed {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100% !important;
  z-index: 1080;
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid #e2e8f0;
  animation: slideDownHeader 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideDownHeader {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo-img {
  height: 60px;
  width: auto;
  max-width: 185px;
  object-fit: contain;
  filter: none;
  transition: transform 0.3s ease;
}

.brand:hover .brand-logo-img {
  transform: scale(1.04);
}

.dropdown-toggle::after,
.nav .dropdown-toggle::after {
  display: none !important;
}

.brand small {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sky-blue);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--primary-blue);
  font-size: 1.6rem;
  font-weight: 800;
  transform: skew(-8deg);
}

.nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav a,
.nav .dropdown-toggle {
  opacity: .95;
  padding: 26px 0;
  position: relative;
  color: #0f172a;
  font-size: 0.95rem;
  font-weight: 600;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-decoration: none;
}

.nav a.active,
.nav a:hover,
.nav .dropdown:hover>.dropdown-toggle {
  color: var(--primary-blue);
  opacity: 1;
}

.nav a.active:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-blue);
  border-radius: 3px 3px 0 0;
}

/* DESKTOP HOVER DROPDOWN MENU */
@media(min-width: 769px) {
  .nav .dropdown {
    position: relative;
  }

  .nav .dropdown-menu-custom {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    background: var(--dark-navy-card);
    border: 1px solid var(--border-dark);
    border-radius: 10px;
    padding: 10px 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 1100;
  }

  .nav .dropdown:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}

.nav .dropdown-menu-custom a {
  padding: 10px 20px !important;
  display: block;
  font-size: 0.9rem;
  color: var(--text-light) !important;
  transition: all 0.2s ease;
  width: 100%;
}

.nav .dropdown-menu-custom a:hover {
  background: var(--primary-blue);
  color: #ffffff !important;
  padding-left: 25px !important;
}

.nav .dropdown-menu-custom a:after {
  display: none !important;
}

.quote-btn,
.lime-btn {
  background: var(--primary-blue);
  color: #ffffff;
  border-radius: 30px;
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
  border: 0;
  cursor: pointer;
  text-decoration: none;
}

.quote-btn:hover,
.lime-btn:hover {
  background: var(--primary-blue-dark);
  color: #ffffff;
  transform: translateY(-1px);
}

/* ANIMATED MOBILE HAMBURGER TOGGLE (Positioned Far Right) */
.mobile-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
  z-index: 1100;
  padding: 0;
  margin-left: auto;
  /* Push to far right */
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: #0f172a;
  border-radius: 3px;
  position: absolute;
  left: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-toggle span:nth-child(1) {
  top: 0;
}

.mobile-toggle span:nth-child(2) {
  top: 10px;
}

.mobile-toggle span:nth-child(3) {
  top: 20px;
}

/* Hamburger Morph into X Icon */
.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
  background: var(--sky-blue);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-12px);
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
  background: var(--sky-blue);
}

/* SECTIONS & TYPOGRAPHY */
.section-light {
  background: var(--light-bg);
  color: var(--text-dark);
}

.section-dark {
  background: var(--dark-navy-deep);
  color: #fff;
}

.mini-title,
.label {
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  color: var(--sky-blue);
  font-weight: 700;
  text-transform: uppercase;
}

.section-intro h2,
.portfolio-copy h2,
.testimonial-intro h2,
.about-copy h2,
.journey-copy h2,
.contact h2 {
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.section-dark h2 span,
.about-copy h2 span,
.journey h2 span {
  color: var(--sky-blue);
}

.section-light h2 span,
.contact h2 span {
  color: var(--primary-blue);
}

.section-intro p,
.portfolio-copy p,
.testimonial-intro p,
.about-copy p,
.journey-copy p,
.contact p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.section-dark p {
  color: var(--text-light);
}

.dark-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark-navy);
  color: #fff;
  border-radius: 25px;
  padding: 10px 22px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s ease;
  text-decoration: none;
}

.dark-btn:hover {
  background: var(--primary-blue-dark);
  color: #fff;
}

/* BENTO GRID & HIGH-END AGENCY UI CARDS */
.bento-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 28px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.bento-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-blue);
  box-shadow: 0 20px 40px rgba(0, 102, 255, 0.12);
}

.bento-card-dark {
  background: rgba(15, 35, 66, 0.7);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  padding: 28px;
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-card-dark:hover {
  border-color: var(--sky-blue);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 102, 255, 0.2);
}

.bento-featured {
  background: linear-gradient(135deg, var(--dark-navy-card), var(--dark-navy-deep));
  border: 1px solid rgba(0, 102, 255, 0.4);
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--primary-blue-light);
  color: var(--primary-blue);
}

.svg-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--primary-blue-light);
  color: var(--primary-blue);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.bento-card-dark .svg-icon-wrapper {
  background: rgba(0, 102, 255, 0.2);
  color: var(--sky-blue);
}

/* HERO SECTION */
.hero {
  min-height: 600px;
  background: radial-gradient(circle at 70% 45%, #0d2a52 0%, var(--dark-navy) 48%, var(--dark-navy-deep) 100%);
  overflow: hidden;
}

.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin: 20px 0;
}

.hero h1 span {
  color: #f3f5f5;
}

.hero h1 strong {
  color: var(--primary-blue);
}

.hero-copy>p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 520px;
}

.outline-btn {
  border: 1px solid #3b82f6;
  border-radius: 30px;
  padding: 10px 22px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.outline-btn:hover {
  border-color: var(--primary-blue);
  background: rgba(0, 102, 255, 0.1);
  color: #fff;
}

.outline-btn i {
  color: var(--primary-blue);
}

.hero-stats b {
  color: var(--primary-blue);
  font-size: 1.5rem;
}

.hero-stats strong {
  font-size: 1.05rem;
  display: block;
}

.hero-stats span {
  font-size: 0.75rem;
  color: #aab7bb;
}

.hero-art {
  min-height: 480px;
}

.world-map {
  position: absolute;
  inset: 15px 0 0 0;
  background: radial-gradient(ellipse at center, rgba(0, 102, 255, 0.28), transparent 55%);
  opacity: .9;
}

.connection {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sky-blue);
  box-shadow: 0 0 16px var(--sky-blue);
}

.c1 {
  top: 23%;
  left: 37%;
}

.c2 {
  top: 42%;
  left: 58%;
}

.c3 {
  top: 19%;
  right: 18%;
}

.device {
  position: absolute;
  background: #111;
  border: 5px solid #334155;
  box-shadow: 0 30px 55px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.2, 1, 0.3, 1), box-shadow 0.3s ease, z-index 0s;
}

.screen,
.tablet-screen,
.phone-screen {
  overflow: hidden;
  background: #f8fafc;
}

.laptop {
  width: 58%;
  height: 310px;
  left: 5%;
  top: 15%;
  border-radius: 12px 12px 6px 6px;
  transform: perspective(700px) rotateX(2deg) rotateY(-3deg) rotateZ(-1deg);
  z-index: 4;
}

.laptop:hover {
  transform: perspective(700px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1.03) translateY(-6px);
  box-shadow: 0 40px 80px rgba(0, 102, 255, 0.4);
}

.screen {
  height: 100%;
  padding: 13px;
  border-radius: 7px;
}

.base {
  position: absolute;
  left: -7%;
  bottom: -28px;
  width: 114%;
  height: 28px;
  background: linear-gradient(#64748b, #334155);
  border-radius: 0 0 40px 40px;
  transform: perspective(400px) rotateX(45deg);
}

.site-nav {
  height: 25px;
  font-size: 0.65rem;
  color: #222;
  font-weight: 700;
}

.site-nav span {
  float: right;
  font-weight: 400;
  color: #777;
}

.travel-hero {
  height: 170px;
  background: linear-gradient(120deg, var(--dark-navy), #1e3a8a);
  padding: 30px 20px;
  color: #fff;
}

.travel-hero small {
  font-size: 0.65rem;
}

.travel-hero h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 8px 0;
}

.travel-hero button {
  font-size: 0.65rem;
  padding: 5px 9px;
  border: 0;
  border-radius: 10px;
  background: var(--primary-blue);
  color: #fff;
}

.mini-cards {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.mini-cards i {
  height: 40px;
  flex: 1;
  border-radius: 5px;
  background: #cbd5e1;
}

.tablet {
  width: 26%;
  height: 260px;
  right: 14%;
  top: 30%;
  border-radius: 14px;
  transform: rotate(5deg);
  z-index: 5;
  padding: 5px;
}

.tablet:hover {
  transform: rotate(0deg) scale(1.05) translateY(-8px);
  box-shadow: 0 40px 80px rgba(56, 189, 248, 0.4);
}

.tablet-screen {
  height: 100%;
  border-radius: 7px;
  padding: 13px;
}

.store-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #222;
}

.product {
  display: inline-block;
  width: 43%;
  height: 65px;
  background: #ddd;
  border-radius: 6px;
  margin: 10px 4px 0;
}

.p1 {
  background: linear-gradient(135deg, #f0f0f0, #aaa);
}

.p2 {
  background: linear-gradient(135deg, #ddd, #888);
}

.p3 {
  width: 91%;
  height: 70px;
  background: linear-gradient(135deg, #ccc, #eee);
}

.phone {
  width: 15%;
  height: 220px;
  right: 2%;
  top: 38%;
  border-radius: 18px;
  padding: 5px;
  z-index: 6;
  transform: rotate(7deg);
}

.phone:hover {
  transform: rotate(0deg) scale(1.07) translateY(-10px);
  box-shadow: 0 40px 80px rgba(0, 102, 255, 0.5);
}

.phone-screen {
  height: 100%;
  border-radius: 13px;
  padding: 8px;
}

.phone-head {
  font-size: 0.7rem;
  color: #222;
}

.app-card {
  height: 80px;
  background: linear-gradient(135deg, #0a2540, var(--primary-blue));
  border-radius: 8px;
  margin-top: 8px;
}

.app-row {
  display: flex;
  gap: 5px;
  margin-top: 8px;
}

.app-row i {
  height: 30px;
  flex: 1;
  background: #ddd;
  border-radius: 5px;
}

.hand-note {
  position: absolute;
  right: 2%;
  top: 6%;
  font-size: 0.95rem;
  line-height: 1.1;
  transform: rotate(-5deg);
  color: #cbd5e1;
  z-index: 7;
  transition: transform 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.hand-note:hover {
  transform: rotate(0deg) scale(1.1);
  color: var(--sky-blue);
}

.hand-note span {
  display: block;
  text-align: center;
  font-size: 1.5rem;
}

/* CARDS & COMPONENTS */
.service-card {
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 10px 24px;
  min-height: 160px;
  background: var(--light-card-bg);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-section {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 102, 255, 0.12);
  border-color: var(--primary-blue);
}

.service-icon {
  font-size: 1.75rem;
  margin-bottom: 12px;
  color: var(--primary-blue);
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--text-dark);
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
}

.portfolio-card {
  font-size: 0.95rem;
}

.project-screen {
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.project-screen small {
  font-size: 0.75rem;
  letter-spacing: 1px;
  font-weight: 600;
}

.project-screen h3 {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.15;
  margin-top: 45px;
}

.travel-card .project-screen {
  background: linear-gradient(145deg, var(--dark-navy), #1e40af);
  color: #fff;
}

.shop-card .project-screen {
  background: #e8dfd2;
}

.app-card2 .project-screen {
  background: #1e293b;
  color: #fff;
}

.real-card .project-screen {
  background: #e8e5de;
}

.bag {
  position: absolute;
  width: 50px;
  height: 80px;
  right: 25px;
  bottom: -5px;
  background: #fff;
  border-radius: 25px 25px 7px 7px;
  box-shadow: 12px 10px 20px rgba(0, 0, 0, 0.13);
}

.app-devices {
  position: absolute;
  right: 10px;
  bottom: 15px;
  width: 65px;
  height: 105px;
  border: 4px solid #334155;
  border-radius: 10px;
  background: var(--primary-blue);
}

.house {
  position: absolute;
  right: 10px;
  bottom: 0;
  width: 95px;
  height: 65px;
  background: #fff;
  clip-path: polygon(50% 0, 100% 35%, 100% 100%, 0 100%, 0 35%);
}

.portfolio-card>b {
  display: block;
  margin-top: 10px;
  color: var(--text-dark);
  font-size: 1rem;
}

.portfolio-card>span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.review-card {
  background: #fff;
  border-radius: 10px;
  padding: 26px;
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.08);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card q {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  display: block;
  margin-bottom: 20px;
  font-style: normal;
}

.review-card strong {
  font-size: 0.95rem;
  display: block;
  color: var(--text-dark);
  font-weight: 600;
}

.review-card small {
  font-size: 0.8rem;
  color: #888;
}

.value-card {
  border: 1px solid #1e3a8a !important;
  background: rgba(10, 25, 47, 0.6);
  border-radius: 10px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.value-card:hover {
  border-color: var(--primary-blue) !important;
  transform: translateY(-4px);
}

.value-card b {
  color: var(--sky-blue);
  font-size: 0.9rem;
  font-weight: 700;
}

.value-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* INDUSTRY CARDS (ABOUT PAGE) */
.industry-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.25s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-blue);
  box-shadow: 0 12px 30px rgba(0, 102, 255, 0.12);
}

.industry-card i {
  font-size: 2rem;
  color: var(--primary-blue);
}

.industry-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 12px 0 0;
  color: var(--text-dark);
}

/* WORKFLOW PIPELINE (APPROACH PAGE) */
.pipeline-step {
  background: rgba(10, 25, 47, 0.8);
  backdrop-filter: blur(12px);
  border: 1.5px solid #1e3a8a;
  border-radius: 14px;
  padding: 28px 20px;
  position: relative;
  transition: all 0.3s ease;
}

.pipeline-step:hover {
  border-color: var(--primary-blue);
  background: rgba(0, 102, 255, 0.12);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 102, 255, 0.2);
}

.pipeline-num {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--sky-blue);
  text-transform: uppercase;
}

.pipeline-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin: 15px auto;
  box-shadow: 0 0 20px rgba(0, 102, 255, 0.4);
}

/* ABOUT & JOURNEY SPECIFICS */
.office-image {
  height: 280px;
  border-radius: 8px;
  background: linear-gradient(145deg, #0f2d57, var(--dark-navy-deep));
  position: relative;
  overflow: hidden;
}

.office-wall {
  position: absolute;
  top: 30px;
  left: 35px;
  font-size: 1.1rem;
  line-height: 1.1;
  color: #eee;
}

.office-wall b {
  color: var(--primary-blue);
}

.desk {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 65px;
  background: #0f1e36;
}

.office-logo {
  position: absolute;
  right: 45px;
  top: 60px;
  color: var(--primary-blue);
  font-size: 2.5rem;
  font-weight: 800;
}

.office-logo span {
  display: block;
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.pill-row span {
  color: var(--primary-blue);
  font-size: 1.5rem;
}

.pill-row b {
  font-size: 0.8rem;
  color: #fff;
  line-height: 1.2;
  font-weight: 600;
}

.mission-note {
  font-size: 1rem;
  line-height: 1.2;
  transform: rotate(-4deg);
}

.mission-note b {
  color: var(--primary-blue);
}

.mission-note i {
  display: block;
  height: 2px;
  background: var(--primary-blue);
  transform: rotate(-4deg);
  margin-top: 8px;
}

.journey-photo {
  height: 220px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(#1e3a8a, var(--dark-navy-deep));
  border-radius: 8px;
}

.mountain {
  position: absolute;
  inset: 50px 0 0;
  background: var(--dark-navy-card);
  clip-path: polygon(0 100%, 30% 35%, 42% 60%, 63% 20%, 100% 100%);
}

.walker {
  position: absolute;
  bottom: 35px;
  left: 40%;
  font-size: 2.5rem;
}

.step-box b {
  display: block;
  color: var(--primary-blue);
  font-size: 0.85rem;
  font-weight: 700;
}

.step-box i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--primary-blue);
  border-radius: 50%;
  margin: 10px auto;
  font-style: normal;
  color: var(--primary-blue);
  font-size: 1.2rem;
}

.step-box h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 8px 0;
  color: #fff;
}

.step-box p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.4;
  margin: 0;
}

/* INNER PAGE HERO */
.page-hero {
  padding: 85px 0 65px;
  background: #fff;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -1px;
}

.page-hero h1 span {
  color: var(--primary-blue);
}

.page-hero p {
  max-width: 650px;
  font-size: 1.05rem;
}

.about-panel {
  background: linear-gradient(145deg, #0d284f, var(--dark-navy-deep));
  border: 1px solid var(--border-dark);
}

.panel-symbol {
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1;
}

.stat-counter border-start {
  border-color: var(--border-light) !important;
}

.stat-counter strong {
  color: var(--primary-blue);
  font-size: 2.2rem;
}

.stat-counter span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* CONTACT DETAILS ICONS */
.contact-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-blue-light);
  color: var(--primary-blue);
  font-size: 1.2rem;
}

/* FINAL CTA & CONTACT FORM */
.final-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(100deg, var(--dark-navy), #0d2f60);
  color: #fff;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.final-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/mobile-app.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.18;
  z-index: 1;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.9) 100%);
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.9) 100%);
}

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

.final-cta h2 {
  font-size: 1.6rem;
  font-weight: 700;
}

.final-cta p {
  font-size: 0.95rem;
  color: var(--text-light);
}

.contact-mini {
  font-size: 0.85rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.form-control-custom {
  display: block;
  width: 100%;
  padding: 10px 0;
  border: 0;
  border-bottom: 1.5px solid var(--border-light);
  background: transparent;
  outline: 0;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color 0.2s ease;
}

.form-control-custom:focus {
  border-bottom-color: var(--primary-blue);
}

.form-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-link {
  border-color: #1e3a8a !important;
  font-size: 1rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.service-link:hover {
  color: var(--primary-blue) !important;
  border-color: var(--primary-blue) !important;
}

/* FOOTER & WHATSAPP */
.site-footer {
  position: relative;
  background-color: #ffffff;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-top: 1px solid #e2e8f0;
  padding: 55px 0 30px;
  color: #334155;
  overflow: hidden;
}

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

.footer-logo {
  display: inline-block;
  text-decoration: none;
}

.footer-logo-img {
  height: 65px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
  transform: scale(1.04);
}

.footer-desc {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
}

.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: 0.2px;
}

.footer-link {
  color: #475569;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-link:hover {
  color: var(--primary-blue);
  transform: translateX(3px);
}

.footer-contact-item {
  color: #334155;
  font-weight: 500;
  font-size: 0.88rem;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: #334155;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-social-btn:hover {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 102, 255, 0.25);
}

.footer-bottom {
  color: #64748b;
  font-weight: 500;
}

.footer-bottom-link {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-link:hover {
  color: var(--primary-blue);
}

/* MOBILE RESPONSIVE FOOTER FIXES */
@media (max-width: 768px) {
  .site-footer {
    padding: 35px 0 24px;
  }

  .site-footer .row.g-4 {
    --bs-gutter-y: 1.8rem;
  }

  .footer-logo-img {
    height: 40px;
  }

  .footer-desc {
    font-size: 0.85rem;
    margin-bottom: 16px !important;
  }

  .footer-social-btn {
    width: 38px;
    height: 38px;
  }

  .footer-bottom {
    text-align: center;
    justify-content: center !important;
    flex-direction: column;
    gap: 8px !important;
  }
}

.whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 28px;
  z-index: 1000;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, background 0.2s ease;
  text-decoration: none;
}

.whatsapp:hover {
  transform: scale(1.08);
  color: #fff;
  background: #20ba5a;
}

/* MOBILE FULL-HEIGHT ANIMATED DRAWER & LEFT-ALIGNED MENU */
@media(max-width: 768px) {
  .header {
    height: 68px;
  }

  .header .quote-btn {
    display: none !important;
  }

  /* Hide top-bar quote btn on mobile */
  .mobile-toggle {
    display: block;
  }

  .nav {
    display: flex;
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    height: calc(100vh - 68px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    padding: 24px 20px 60px;
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: flex-start;
    gap: 6px;
    overflow-y: auto;
    border-top: 1px solid #e2e8f0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1040;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav a,
  .nav .dropdown-toggle {
    width: 100%;
    text-align: left !important;
    padding: 12px 16px !important;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a !important;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
  }

  .nav a:hover,
  .nav a.active,
  .nav .dropdown-toggle:hover {
    background: #f1f5f9;
    color: var(--primary-blue) !important;
  }

  .nav a.active:after {
    display: none;
  }

  .nav .dropdown {
    width: 100%;
  }

  /* Submenu inline collapse/expand inside mobile drawer */
  .nav .dropdown-menu-custom {
    position: static !important;
    transform: none !important;
    background: rgba(15, 35, 66, 0.8) !important;
    border: 1px solid var(--border-dark);
    box-shadow: none;
    margin-top: 4px !important;
    margin-left: 10px;
    width: calc(100% - 10px);
    border-radius: 8px;
    display: none !important;
    opacity: 0;
    visibility: hidden;
    padding: 4px 0;
    transition: all 0.3s ease;
  }

  .nav .dropdown-menu-custom.mobile-expanded {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .nav .dropdown-menu-custom a {
    padding: 10px 16px !important;
    font-size: 0.95rem;
    font-weight: 500;
  }

  /* Quote button inside mobile nav drawer */
  .quote-btn-mobile {
    display: block !important;
    width: 100%;
    text-align: center;
    margin-top: 20px;
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 30px;
  }

  .contact-mini {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 10px;
  }
}

@media(min-width: 769px) {
  .quote-btn-mobile {
    display: none !important;
  }
}

/* CUSTOM NAVY CARD & HOVER UTILITIES */
.bg-navy-card {
  background: var(--dark-navy-card) !important;
  backdrop-filter: blur(16px);
}

.letter-spacing-1 {
  letter-spacing: 1px;
}

.fs-7 {
  font-size: 0.85rem !important;
}

.hover-elevate {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-elevate:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 102, 255, 0.2) !important;
}

/* ============================================================
   HIGH-END 3D PARALLAX & ANIMATED CANVAS/SVG ENGINE STYLES
   ============================================================ */

.interactive-graphic-card {
  position: relative;
  perspective: 1000px;
  transform-style: preserve-3d;
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
  will-change: transform;
}

.interactive-graphic-card:hover {
  box-shadow: 0 25px 50px rgba(0, 102, 255, 0.25) !important;
}

.parallax-layer-depth-1 {
  transform: translateZ(20px);
  transition: transform 0.2s ease-out;
}

.parallax-layer-depth-2 {
  transform: translateZ(40px);
  transition: transform 0.2s ease-out;
}

/* KEYFRAME ANIMATIONS FOR INLINE CANVAS/SVGS */
@keyframes spinCW {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes spinCCW {
  0% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@keyframes float1 {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-14px) rotate(-1.5deg);
  }
}

@keyframes pulseGlow {

  0%,
  100% {
    opacity: 0.8;
    transform: scale(1);
    filter: drop-shadow(0 0 10px rgba(0, 102, 255, 0.4));
  }

  50% {
    opacity: 1;
    transform: scale(1.06);
    filter: drop-shadow(0 0 22px rgba(56, 189, 248, 0.8));
  }
}

@keyframes dashFlow {
  0% {
    stroke-dashoffset: 40;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes thrusterFlame {
  0% {
    transform: scaleY(1) scaleX(1);
    opacity: 0.85;
  }

  50% {
    transform: scaleY(1.4) scaleX(0.9);
    opacity: 1;
    filter: drop-shadow(0 0 15px #38bdf8);
  }

  100% {
    transform: scaleY(0.9) scaleX(1.1);
    opacity: 0.7;
  }
}

@keyframes codeBlink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

@keyframes radarSweep {
  0% {
    transform: rotate(0deg);
    opacity: 0.7;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: rotate(360deg);
    opacity: 0.7;
  }
}

@keyframes pathPulse {

  0%,
  100% {
    stroke: #0066ff;
    stroke-width: 2;
  }

  50% {
    stroke: #38bdf8;
    stroke-width: 4;
    filter: drop-shadow(0 0 8px #38bdf8);
  }
}

/* ANIMATION UTILITY CLASSES APPLIED TO SVG ELEMENTS */
.anim-spin-cw {
  transform-box: fill-box;
  transform-origin: center;
  animation: spinCW 22s linear infinite;
}

.anim-spin-ccw {
  transform-box: fill-box;
  transform-origin: center;
  animation: spinCCW 18s linear infinite;
}

.anim-float-badge-1 {
  animation: float1 4s ease-in-out infinite;
}

.anim-float-badge-2 {
  animation: float2 5s ease-in-out infinite 1s;
}

.anim-pulse-core {
  transform-box: fill-box;
  transform-origin: center;
  animation: pulseGlow 3.5s ease-in-out infinite;
}

.anim-dash-line {
  stroke-dasharray: 8 6;
  animation: dashFlow 1.5s linear infinite;
}

.anim-thruster-flame {
  transform-box: fill-box;
  transform-origin: top center;
  animation: thrusterFlame 0.3s ease-in-out infinite alternate;
}

.anim-code-cursor {
  animation: codeBlink 1s infinite;
}

.anim-radar-sweep {
  transform-box: fill-box;
  transform-origin: 0% 100%;
  animation: radarSweep 6s linear infinite;
}

.anim-path-pulse {
  animation: pathPulse 3s ease-in-out infinite;
}

/* ============================================================
   INTERACTIVE CONTACT US PAGE STYLES
   ============================================================ */
.contact-info-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.05);
}

.contact-info-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-blue);
  box-shadow: 0 15px 35px rgba(0, 102, 255, 0.12);
}

.contact-info-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(56, 189, 248, 0.15));
  border: 1px solid rgba(0, 102, 255, 0.2);
  color: var(--primary-blue);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
  background: var(--primary-blue);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(0, 102, 255, 0.4);
}

/* SERVICE PILL BUTTONS FOR ENQUIRY FORM */
.service-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 30px;
  background: #f1f5f9;
  border: 1.5px solid #cbd5e1;
  color: #334155;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
}

.service-pill-btn:hover {
  background: #e2e8f0;
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  transform: translateY(-2px);
}

.service-pill-btn.active {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

/* ENQUIRY FORM CONTAINER */
.enquiry-form-card {
  background: #ffffff;
  border: 1.5px solid rgba(0, 102, 255, 0.2);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(10, 25, 47, 0.08);
}

.form-control-custom-box {
  display: block;
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  background: #f8fafc;
  outline: none;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: all 0.25s ease;
}

.form-control-custom-box:focus {
  border-color: var(--primary-blue);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.12);
}

/* 13 CORE SERVICES MINI CARDS ON CONTACT PAGE */
.core-service-mini-card {
  background: rgba(10, 25, 47, 0.7);
  backdrop-filter: blur(10px);
  border: 1.5px solid #1e3a8a;
  border-radius: 14px;
  padding: 20px;
  transition: all 0.3s ease;
  height: 100%;
}

.core-service-mini-card:hover {
  border-color: var(--sky-blue);
  background: rgba(0, 102, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 102, 255, 0.2);
}

.core-service-mini-card i {
  font-size: 1.6rem;
  color: var(--sky-blue);
}

.core-service-mini-card h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin: 10px 0 4px;
}

.core-service-mini-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.4;
}

/* ============================================================
   HERO AUTO-SLIDER SECTION STYLES (DRAG, TOUCH, DOTS & ARROWS)
   ============================================================ */
.hero-slider-section {
  position: relative;
  width: 100%;
  background: radial-gradient(circle at 80% 50%, #0d2e5a 0%, var(--dark-navy) 65%);
  overflow: hidden;
  user-select: none;
  touch-action: pan-y;
}

.hero-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-slides-track {
  display: flex;
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: grab;
}

.hero-slides-track.dragging {
  transition: none !important;
  cursor: grabbing !important;
}

.hero-slide {
  flex: 0 0 100%;
  width: 100%;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0;
}

.hero-slider-section img,
.hero-full-img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 30px;
  background: rgba(0, 102, 255, 0.18);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: var(--sky-blue);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-desc {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: var(--text-light);
  max-width: 580px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-artwork-wrapper {
  position: relative;
  display: inline-block;
  max-width: 100%;
  padding: 10px;
}

.hero-artwork-img {
  max-height: 420px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
  transition: transform 0.4s ease;
  pointer-events: none;
}

.hero-slide:hover .hero-artwork-img {
  transform: translateY(-6px) scale(1.02);
}

/* MID-LEFT & MID-RIGHT NAVIGATION ARROWS */
.hero-slider-prev,
.hero-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(10, 25, 47, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(56, 189, 248, 0.4);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.hero-slider-prev {
  left: 24px;
}

.hero-slider-next {
  right: 24px;
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
  background: var(--primary-blue);
  border-color: var(--sky-blue);
  color: #ffffff;
  box-shadow: 0 0 25px rgba(0, 102, 255, 0.8);
  transform: translateY(-50%) scale(1.12);
}

/* PAGINATION DOTS: BOTTOM LEFT ABSOLUTE */
.hero-slider-pagination {
  position: absolute;
  bottom: 30px;
  left: 5%;
  z-index: 15;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.35);
  border: 0;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.hero-dot.active {
  width: 36px;
  background: var(--sky-blue);
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.8);
}

@media (max-width: 768px) {
  .hero-slide {
    padding: 0px;
    min-height: auto;
  }

  .hero-slider-prev,
  .hero-slider-next {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }

  .hero-slider-prev {
    left: 8px;
  }

  .hero-slider-next {
    right: 8px;
  }

  .hero-slider-pagination {
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ============================================================
   OUR APPROACH / JOURNEY SECTION 50% LEFT TRANSPARENT BACKGROUND
   ============================================================ */
section.journey {
  position: relative;
  overflow: hidden;
}

section.journey::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-image: url('/assets/images/1\ \(7\).jpeg');
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  opacity: 0.28;
  z-index: 1;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.4) 65%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.4) 65%, rgba(0, 0, 0, 0) 100%);
}

section.journey::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: url('/assets/images/1\ \(7\).jpeg');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  opacity: 0.28;
  z-index: 1;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.4) 65%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.4) 65%, rgba(0, 0, 0, 0) 100%);
}

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

/* ============================================================
   TESTIMONIALS AUTO-SLIDER STYLES
   ============================================================ */
.testimonial-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  user-select: none;
  touch-action: pan-y;
  padding: 10px 0;
}

.testimonial-slides-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: grab;
}

.testimonial-slides-track.dragging {
  transition: none !important;
  cursor: grabbing !important;
}

.testimonial-slide {
  flex: 0 0 calc(50% - 8px);
  min-width: calc(50% - 8px);
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .testimonial-slide {
    flex: 0 0 100%;
    min-width: 100%;
  }
}

.testimonial-card {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  background: #ffffff;
  border-radius: 16px;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 102, 255, 0.12) !important;
  border-color: rgba(0, 102, 255, 0.3) !important;
}

.testimonial-slider-prev,
.testimonial-slider-next {
  transition: all 0.25s ease;
}

.testimonial-slider-prev:hover,
.testimonial-slider-next:hover {
  background: var(--primary-blue) !important;
  color: #ffffff !important;
  border-color: var(--primary-blue) !important;
  transform: scale(1.1);
}

section.about,
section.ourstory {
  position: relative;
  overflow: hidden;
}

section.about {
  padding: 35px 0 30px !important;
}

section.ourstory {
  background: unset;
  border-top: 50px solid white;
}

section.about::before,
section.ourstory::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/about-banner.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -1;
  pointer-events: none;
}

section.ourstory::before {
  background-image: url('/assets/images/about-story.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  section.ourstory {
    border-top: 0px solid white !Important;
  }

  section.ourstory::before {
    background-position: left center;
  }
}

/* ============================================================
   SERVICES PAGE EXCLUSIVE STYLES (MATCHING MOCKUP DESIGN)
   ============================================================ */
.service-hero-section {
  background: linear-gradient(135deg, #f8fafc 0%, #edf5ff 100%);
  position: relative;
  border-bottom: 1px solid #e2e8f0;
  overflow: hidden;
}

/* DESKTOP BACKGROUND IMAGE ON RIGHT SIDE OF HERO SECTION */
@media (min-width: 992px) {
  .service-hero-section::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    width: 50%;
    height: 100%;
    background-image: url(/assets/images/service-1.png);
    background-size: cover;
    background-position: right bottom;
    background-repeat: no-repeat;
    opacity: 0.95;
    z-index: 1;
    pointer-events: none;
    filter: drop-shadow(0 20px 35px rgba(0, 102, 255, 0.15));
  }
}

.service-hero-art-card {
  position: relative;
  width: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* ON MOBILE / TABLET (< 992px): SERVICE-1 IMAGE SHOWS AS BACKGROUND IMAGE AT THE BOTTOM */
@media (max-width: 991px) {
  .service-hero-section::before {
    display: none;
  }

  .service-hero-art-card {
    min-height: 320px;
    background-image: url('/assets/images/service-1.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    margin-top: 20px;
    border-radius: 16px;
  }
}


/* FLOATING BADGES OVERLAY STYLING */
.service-hero-badges-wrapper {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
}

.service-hero-success-text {
  position: absolute;
  bottom: 0px;
  right: 0px;
  max-width: 140px;
  z-index: 10;
  pointer-events: none;
}

.service-card-split {
  border-radius: 18px;
  padding: 24px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service-card-split:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 35px rgba(0, 102, 255, 0.12) !important;
}

/* Background Color Themes for Service Cards */
.bg-card-blue {
  background: #f0f7ff;
  border: 1px solid #dbeafe;
}

.bg-card-orange {
  background: #fff7ed;
  border: 1px solid #ffedd5;
}

.bg-card-purple {
  background: #f5f3ff;
  border: 1px solid #ede9fe;
}

.bg-card-green {
  background: #f0fdf4;
  border: 1px solid #dcfce7;
}

.bg-card-pink {
  background: #fff1f2;
  border: 1px solid #ffe4e6;
}

/* Service Icon Boxes */
.service-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #ffffff;
  flex-shrink: 0;
  margin-bottom: 14px;
}

.icon-box-blue {
  background: #0066ff;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.icon-box-orange {
  background: #ff6b00;
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.icon-box-purple {
  background: #8b5cf6;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.icon-box-green {
  background: #10b981;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.icon-box-pink {
  background: #ec4899;
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

.icon-box-red {
  background: #ef4444;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

/* Card Image Thumbnail */
.service-card-img {
  max-width: 140px;
  max-height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 6px 15px rgba(0, 0, 0, 0.08));
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.service-card-split:hover .service-card-img {
  transform: scale(1.06) translateY(-2px);
}

/* Category Pillar Number Badges */
.pillar-num-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fbcfe8, #f472b6);
  color: #831843;
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ============================================================
   PACKAGES & PRICING PAGE EXCLUSIVE STYLES
   ============================================================ */
.packages-hero-section {
  /* background: radial-gradient(circle at 75% 50%, #0c2b57 0%, #061325 70%); */
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 102, 255, 0.2);
}

.packages-hero-section::before {
  content: "";
  position: absolute;
  top: 0%;
  right: 0%;
  width: 100%;
  height: 100%;
  background: url('/assets/images/about-banner.png') no-repeat center bottom;
  z-index: -1;
  background-size: cover;
  pointer-events: none;
}

.hero-feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgb(0 0 0 / 8%);
  border: 1px solid rgb(0 0 0 / 15%);
  backdrop-filter: blur(10px);
  color: #000;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0px 9px;
  border-radius: 30px;
}

.package-card {
  position: relative;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 28px 24px;
  background: #ffffff;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.package-card:hover {
  transform: translateY(-6px);
  border-color: #cbd5e1;
  box-shadow: 0 16px 35px rgba(0, 102, 255, 0.1) !important;
}

.package-popular {
  border: 2px solid #0066ff !important;
  box-shadow: 0 12px 35px rgba(0, 102, 255, 0.15) !important;
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #0066ff, #0284c7);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 4px 16px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.35);
  white-space: nowrap;
}

.package-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.icon-blue-light {
  background: #eff6ff;
  color: #0066ff;
  border: 1px solid #dbeafe;
}

.icon-blue-solid {
  background: #0066ff;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.icon-purple-light {
  background: #f5f3ff;
  color: #8b5cf6;
  border: 1px solid #ede9fe;
}

.package-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.package-subtitle {
  font-size: 0.82rem;
  color: #64748b;
  font-weight: 500;
  display: block;
  margin-top: 2px;
}

.package-price-wrapper {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding: 12px 0 8px;
  border-bottom: 1px solid #f1f5f9;
}

.currency-symbol {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0066ff;
}

.price-val {
  font-size: 2.1rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -1px;
  line-height: 1;
}

.price-period {
  font-size: 0.8rem;
  color: #94a3b8;
  font-weight: 500;
  margin-left: 2px;
}

.package-feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.package-feature-list li {
  font-size: 0.88rem;
  font-weight: 500;
  color: #334155;
  display: flex;
  align-items: center;
}

.package-feature-list li i {
  font-size: 1rem;
  color: #0066ff !important;
  flex-shrink: 0;
}

.why-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: #e8f2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.why-choose-packages-section .col-lg-3:hover .why-icon-box {
  transform: scale(1.1) rotate(4deg);
  background: var(--primary-blue);
}

.why-choose-packages-section .col-lg-3:hover .why-icon-box i {
  color: #ffffff !important;
}

.custom-website-cta {
  background: linear-gradient(135deg, #071933 0%, #0d2f60 100%);
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.custom-website-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

/* TERMS & CONDITIONS PAGE STYLES */
.terms-card {
  border-color: #e2e8f0 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.terms-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.terms-num {
  color: #0066ff;
  font-weight: 800;
}

.terms-block p {
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.terms-list {
  list-style: disc;
  padding-left: 1.4rem;
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 0.85rem;
}

.terms-list li {
  margin-bottom: 0.35rem;
}

.terms-intro-box {
  background-color: #f8fafc !important;
}

.bg-amber-light {
  background-color: #fffbe6 !important;
}

.border-amber {
  border-color: #ffe58f !important;
}

.terms-legal-notice p {
  line-height: 1.6;
}