/* ---- 1. CSS VARIABLES ---- */
:root {
  --navy: #051027;
  --navy-mid: #0b1b3d;
  --navy-light: #12254f;
  --navy-dark: rgba(0, 5, 55, 1);
  --blue: #2f86ff;
  --blue-light: #66b7ff;
  --cyan: #06b6d4;
  --white: #ffffff;
  --light: #f6f9ff;
  --gray-text: #6b7280;
  --dark-text: #000536;
  --primary: #6f82f9;
  --primary-dark: #074b7a;
  --primary-color: #5c94fd;
  --primary-hover: #5e7cf7;
  --border: #e6eefb;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --shadow-sm: 0 6px 18px rgba(47, 134, 255, 0.08);
  --shadow-md: 0 12px 36px rgba(47, 134, 255, 0.12);
  --shadow-lg: 0 24px 72px rgba(47, 134, 255, 0.16);
  --font-main: "Inter", system-ui, -apple-system, sans-serif;
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- 2. RESET & BASE ---- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: var(--font-main);
  color: var(--dark-text);
  background: var(--white);
  line-height: 1.65;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.body-text {
  font-size: 16px;
  color: var(--dark-text);
  line-height: 1.75;
  font-family: var(--font-main);
  font-weight: 400;
  text-align: left;
}

/* ---- 3. UTILITY CLASSES ---- */
@font-face {
  font-family: "Exo2";
  src: url("../fonts/Exo2-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

/* ---- 4. COMPONENTS ---- */
.section-badge {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 15px;
  display: inline-block;
}

.section-title {
  font-family: "Exo2", sans-serif;
  font-size: 35px;
  font-weight: 600;
  color: var(--dark-text);
  line-height: 1.2;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--black-text);
  max-width: 620px;
  margin: 0 auto 25px;
  line-height: 1.7;
  text-align: center;
}

/* .btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
} */

.btn-no-rotate:hover i {
  transform: none !important;
}

/* ===== PRIMARY CTA ===== */
.btn-primary-cta {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  background: linear-gradient(
    275.14deg,
    #0c89e0 7.88%,
    #0d5f99 90.02%
  ) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 10px 20px;
  font-weight: 600 !important;
  font-size: 14px;
  transition: var(--transition) !important;
  box-shadow: 0 10px 36px rgba(47, 134, 255, 0.12) !important;
  cursor: pointer !important;
  text-decoration: none !important;
  position: relative;
  overflow: hidden;
}

.btn-primary-cta i {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: #ffffff;
  color: #0c89e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  line-height: 1;
  transition: var(--transition);
}

.common-h4 {
  font-family: var(--font-main);
  font-size: 17px;
  font-weight: 600;
  color: var(--dark-text);
}

.btn-primary-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 14px 44px rgba(47, 134, 255, 0.16) !important;
  opacity: 0.95;
}

.btn-primary-cta:hover i {
  transform: rotate(45deg);
}

/* ====== NAVBAR ====== */
#mainNav {
  background: var(--navy-dark);
  padding: 1.1rem 0;
  transition:
    background 0.4s ease,
    padding 0.4s ease,
    box-shadow 0.4s ease;
  z-index: 1000;
}

#mainNav.scrolled {
  background: var(--navy-dark);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.65rem 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  display: block;
  width: auto;
  height: 42px;
  max-width: 180px;
  object-fit: contain;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.45rem 0.9rem !important;
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: 0.01em;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--white) !important;
  background: rgba(255, 255, 255, 0.1);
}

.navbar-nav .dropdown-toggle::after {
  margin-left: 0.3em;
  vertical-align: 0.15em;
}

.dropdown-menu {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  animation: dropIn 0.2s ease;
  min-width: 200px;
}

@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-item {
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark-text);
  transition: var(--transition);
}

.dropdown-item:hover {
  background: var(--light);
  color: var(--blue);
}

.toggler-icon {
  font-size: 1.4rem;
  color: var(--white);
  line-height: 1;
}

.navbar-toggler {
  border: none;
  padding: 0.25rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ===== HERO SECTION =====*/
.hero-section {
  background: linear-gradient(165deg, #000536 0%, #000537 100%);
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 140px 0 80px !important;
  position: relative;
  /* overflow: hidden; */
}

.services-hero {
  padding: 70px 0 0 0 !important;
  min-height: 500px;
}

.hero-section::before {
  content: "";
  position: absolute;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(47, 134, 255, 0.15) 0%,
    transparent 70%
  );
  top: -100px;
  right: -100px;
  border-radius: 50%;
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(6, 182, 212, 0.1) 0%,
    transparent 70%
  );
  bottom: 50px;
  left: -50px;
  border-radius: 50%;
  pointer-events: none;
}

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

.service-headline {
  font-size: 50px !important;
  width: 100%;
  max-width: 800px;
  font-weight: 700;
  font-family: "Exo2", sans-serif;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.intro-section {
  min-height: 550px;
  padding: 0;
}

.hero-section .intro-head {
  max-width: 100%;
  text-align: center;
}

.gradient-text-new {
  background: linear-gradient(90deg, #777cf8 0%, #5c94fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subheadline {
  font-family: var(--font-alt);
  font-weight: 100;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 24px;
  font-size: 32px;
  text-transform: capitalize;
}

.hero-desc {
  font-size: 17px;
  color: rgb(216, 215, 215);
  max-width: 768px;
  margin: 0 auto 1.8rem;
  line-height: 1.7;
}

.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/*==== SERVICE HERO IMAGE ONLY ====*/
.hero-with-image {
  overflow: visible !important;
}

.hero-wrapper-service {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-wrapper-service .hero-content {
  flex: 0 0 55%;
  max-width: 55%;
  margin-bottom: 90px;
}

.hero-image-service {
  position: absolute;
  right: 0;
  bottom: -20px;
  width: 40%;
  display: flex;
  justify-content: center;
  z-index: 5;
}

.hero-image-card {
  width: 100%;
  max-width: 420px;
  height: 380px;
  border-radius: 22px;
  overflow: hidden;
  background: #d9d9d9;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
  cursor: pointer;
}

.hero-img-service {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
  transition: transform 0.5s ease;
}

.hero-image-card:hover .hero-img-service {
  transform: scale(1.08);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
}

/* ===== FLOATING ANIMATION ===== */
@keyframes floatImage {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* ===== TRUSTED SECTION ===== */
.trusted-section {
  padding: 60px 0;
  background: var(--white);
  overflow: hidden;
  margin-top: 20px;
}

.home-trusted {
  margin-top: 180px;
}

.trusted-label {
  font-family: "Exo2";
  text-align: center;
  font-size: 35px;
  font-weight: 400;
  color: var(--dark-text);
  letter-spacing: 0.01em;
}

.trusted-marquee {
  position: relative;
  overflow: hidden;
}

.trusted-marquee::before,
.trusted-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 5;
  pointer-events: none;
}

.trusted-marquee::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.trusted-marquee::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.trusted-track {
  display: flex;
  align-items: center;
  padding: 20px;
  gap: 70px;
  width: max-content;
  animation: trustedScroll var(--trusted-duration, 22s) linear infinite;
  will-change: transform;
}

.trusted-marquee:hover .trusted-track {
  animation-play-state: paused;
}

.logo-slide {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-slide img {
  height: 60px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.logo-slide img:hover {
  transform: scale(1.08);
}

/* Animation */
@keyframes trustedScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ===== STATS SECTION =====*/
.stats-card {
  background: var(--navy-dark);
  border-radius: 12px;
  padding: 28px 35px;
  height: 100%;
  transition: var(--transition);
  text-align: left;
}

.stats-card:hover {
  transform: translateY(-5px);
}

.stats-icon {
  width: 50px;
  height: 50px;
  border: 1.5px solid var(--primary);
  border-radius: 50%;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-dark);
  transition: all 0.3s ease;
}

.stats-card:hover .stats-icon {
  background: var(--navy-dark);
  border-color: #8a9aff;
  transform: scale(1.05);
}

.stats-icon img {
  max-width: 28px;
  max-height: 28px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  /* filter:brightness(0) invert(1); */
}

.stats-card:hover .stats-icon img {
  transform: scale(1.1);
  transition: 0.3s;
}

.stats-card h2 {
  font-size: 45px;
  font-weight: 700;
  line-height: 1;
  color: var(--primary);
  margin-bottom: 12px;
}

.stats-card p {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  margin: 0;
}

/* ---- EXPLORE MORE BTN  ---- */
.btn-explore {
  color: #000000;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.btn-explore:hover {
  color: var(--primary);
  gap: 9px;
}

.btn-explore i {
  font-size: 13px;
  transition: var(--transition);
  transform: rotate(-9deg);
}

.btn-explore:hover i {
  transform: rotate(45deg);
}

/* ---- EVOLVING SECTION ---- */
.evolving-section {
  padding: 80px 0;
  background: var(--white);
}

.evolving-highlight-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.evolving-highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.evolving-highlight-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-text);
  margin: 10px 0;
}

.evolving-highlight-card p {
  color: var(--dark-text);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.evolving-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.evolving-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.evolving-card h4 {
  margin-bottom: 8px;
}

.evolving-card p {
  color: var(--black-text);
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 12px;
}

/* Highlight Animation with your Gradient */
@keyframes highlightBlink {
  0% {
    background: transparent;
    box-shadow: none;
  }
  50% {
    background: linear-gradient(
      275.14deg,
      #0c89e0 7.88%,
      #0d5f99 90.02%
    ) !important;
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(12, 137, 224, 0.6);
    color: #ffffff !important;
  }
  100% {
    background: transparent;
    transform: scale(1);
    box-shadow: none;
  }
}

.flash-effect {
  animation: highlightBlink 0.7s ease-in-out 3;
  border-radius: 8px;
  display: inline-block;
  padding: 8px 15px;
  transition: all 0.3s ease;
}

/* ===== AWARDS SECTION ===== */
.awards-section {
  padding: 90px 0;
}

.awards-box {
  padding: 0;
}

.awards-wrapper {
  background: var(--navy-dark);
  border-radius: 32px 0 0 32px;
  padding: 100px;
  margin-left: 87px;
  overflow: hidden;  
}

.Award-head {
  font-size: 12px;
}

.awards-title {
  font-size: 42px;   
  font-weight: 600;
  line-height: 1.25;
  color: #fff;
  margin: 10px 0;
}

.awards-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  line-height: 1.3;
  max-width: 330px;
  font-weight: 400;
}

.awards-wrapper .section-badge {
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.award-card {
  background: #12174d;
  border-radius: 18px;
  padding: 20px;
  height: 100%;
  transition: var(--transition);
}

.award-card:hover {
  transform: translateY(-6px);
}

.award-logo {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0d1032;
  margin-bottom: 10px;
}

.award-logo img {
  width: 120px;
  object-fit: contain;
}

.award-card h4 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 12px;
}

.award-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  line-height: 1.8;
  margin: 0;
}

.award-logo-box {
  background: #12174d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  height: 125px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}

.award-logo-box:hover {
  transform: translateY(-5px);
}

.award-logo-box img {
  max-width: 130px;
  max-height: 90px;
  object-fit: contain;
}

/* ==========================================
   TESTIMONIALS SECTION - MAIN WRAPPER
========================================== */
.testimonials-section {
  padding: 90px 0;
  background: var(--navy-dark, #000814);
  overflow: hidden;
  position: relative;
}

.testimonials-section .section-title {
  color: var(--white, #fff);
  margin-bottom: 20px;
}

.testimonials-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  /* gap: 15px !important;
  max-width: 1200px;
  margin: 0 auto;  */
}

.testimonials-slider {
  flex: 1;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  position: relative;
}

.testi-slide {
  display: none;
  width: 100%;
}

.testi-slide.active {
  display: block;
  animation: fadeInUp 0.45s ease;
}

/* ==========================================
   TESTIMONIAL INNER CARD (FIXED HEIGHT FIX)
========================================== */
.testi-card {
  width: 100%;
  /* max-width: 1000px; */
  margin: 0 auto;
  background: linear-gradient(0deg, #0c89e0 -42.95%, #074b7a 140.01%);
  border: 0;
  border-radius: 18px;
  padding: 38px 40px 32px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

/* ==========================================
   LOGO + BRAND
========================================== */
.testi-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 25px;
  flex-shrink: 0;
}

.testi-logo {
  width: 68px !important;
  height: 68px !important;
  min-width: 68px !important;
  border-radius: 50%;
  object-fit: contain !important;
  background: #fff;
  border: 3px solid rgba(255, 255, 255, 0.25);
  padding: 5px !important;
  display: block;
}

.testi-brand-name {
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.testi-brand-type {
  color: rgba(255, 255, 255, 0.75);
  font-size: 10px;
}

/* ==========================================
   QUOTE (RESERVED SPACE FOR TEXT)
========================================== */
.testi-quote {
  margin: 0 0 20px;
  padding: 0;
  border: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
  font-style: normal;
  min-height: 85px;
  display: flex;
  align-items: flex-start;
}

/* ==========================================
   AUTHOR & STATS
========================================== */
.testi-author {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  margin-top: auto; /* Push to bottom */
}

.testi-author strong {
  color: #fff;
  font-weight: 600;
}

.testi-stats-bar {
  width: 100%;
  display: flex;
  align-items: stretch;
  padding: 16px 20px;
  background: rgba(0, 67, 125, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  box-sizing: border-box;
}

.testi-stat-item {
  flex: 1;
  padding: 0 20px;
}

.testi-stat-item + .testi-stat-item {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.testi-stat-num {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}

.testi-stat-label {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
}

/* ==========================================
   NAVIGATION BUTTONS
========================================== */
.testi-nav {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: #e7ecf6;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  z-index: 5;
}

.testi-nav:hover {
  background: #fff;
  transform: scale(1.1);
}

/* ==========================================
   STORY BUTTON
========================================== */
.story-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.story-btn {
  padding: 12px 30px;
  background: #fff;
  color: #000;
  border-radius: 50px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.story-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ===== CASE STUDIES SECTION ===== */
.case-studies-section {
  padding: 90px 0;
  background: var(--white);
}

.Velixgen-title {
  font-size: 35px;
}

.Case-title {
  text-align: left !important;
}

.case-featured-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 88px;
}
.case-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: var(--transition);
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.case-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.case-card:hover .case-card-img {
  transform: scale(1.04);
}
.case-card-body {
  padding: 1.4rem;
}
.case-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-text);
  line-height: 1.45;
  margin-bottom: 1rem;
}

.case-read-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-text);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.2s;
}
.case-read-link:hover {
  color: var(--blue);
}

/* ==========================================
   PURPOSE SECTION
========================================== */
.purpose-section {
  padding: 90px 0;
  background: #fff;
}

.purpose-wrapper {
  position: relative;
  min-height: 375px;
}

.purpose-content {
  position: relative;
  z-index: 5;
  width: 58%;
  padding-top: 0;
}

.Purpose-text {
  font-size: 14px;
  text-align: justify;
}

.purpose-badge {
  display: block;
  margin-bottom: 16px;
  font-size: 22px;
  font-weight: 700;
  color: #081b52;
  letter-spacing: 0;
}

.purpose-content .body-text {
  margin: 0;
  line-height: 1.7;
}

.purpose-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 47%;
  height: 375px;
  overflow: hidden;
  border-radius: 4px;
  z-index: 1;
}

.purpose-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.purpose-image:hover img {
  transform: scale(1.05);
}

.purpose-image::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 35%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    270deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.55) 45%,
    #fff 100%
  );
}

.purpose-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 65%;
  margin-top: 25px;
}

.purpose-stat {
  position: relative;
  padding: 16px 18px;
}

.purpose-stat:nth-child(1)::after,
.purpose-stat:nth-child(2)::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 1px;
  background: #e5e8ef;
}

.purpose-stat:nth-child(1)::after {
  left: 0;
  right: 12px;
}

.purpose-stat:nth-child(2)::after {
  left: 12px;
  right: 0;
}

.purpose-stat:nth-child(1)::before,
.purpose-stat:nth-child(3)::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  background: #e5e8ef;
}

.purpose-stat:nth-child(1)::before {
  bottom: 8px;
}

.purpose-stat:nth-child(3)::before {
  top: 8px;
  bottom: 0;
}

.purpose-stat h3 {
  margin: 0 0 4px;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.1;
  color: #6f82f9;
}

.purpose-stat p {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: #081b52;
}

/* ==========================================
   WHAT DRIVES US SECTION
========================================== */
.drives-section {
  position: relative;
  padding: 90px 0;
  background: #06133f;
  color: #fff;
  overflow: hidden;
}

.drives-section::before,
.drives-section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40%;
  background-image: url("../images/about-pics/drive-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.45;
  pointer-events: none;
}

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

.drives-section::after {
  right: 0;
  background-position: right center;
}

.drives-section::after {
  right: 0;
  background-position: right center;

  mask-image: linear-gradient(to left, #000 0%, #000 45%, transparent 100%);
  -webkit-mask-image: linear-gradient(
    to left,
    #000 0%,
    #000 45%,
    transparent 100%
  );
}

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

.drives-header {
  max-width: 650px;
  margin: 0 auto 40px;
  text-align: center;
}

.drives-header h2 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  font-family: "Exo2", sans-serif;
}

.drives-header p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.drives-card {
  height: 100%;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  background: rgba(9, 28, 83, 0.55);
  transition: var(--transition);
}

.drives-card:hover {
  border-color: rgba(111, 130, 249, 0.8);
  transform: translateY(-5px);
  background: rgba(12, 34, 95, 0.7);
}

.drives-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6f82f9;
  font-size: 38px;
  margin-bottom: 20px;
}

.drives-icon i {
  font-size: 38px;
}

.drives-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
  margin-bottom: 18px;
}

.drives-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.drives-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

/* ==========================================
   VALUES SECTION
========================================== */
.values-section {
  background: var(--white);
}

.values-header {
  max-width: 850px;
  margin-bottom: 45px;
}

.values-header .section-title {
  margin-bottom: 14px;
}

.values-header .body-text {
  max-width: 800px;
  margin: 0;
}

.values-list {
  width: 100%;
  border: 1px solid #d9dce3;
  border-radius: 7px;
  overflow: hidden;
}

.value-item {
  min-height: 100px;
  border-bottom: 1px solid #d9dce3;
}

.value-item:last-child {
  border-bottom: none;
}

.value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #d9dce3;
}

.value-icon img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  display: block;
  filter: grayscale(1);
  transition: filter 0.5s ease;
  will-change: filter;
}

.value-icon img:hover {
  filter: brightness(0) saturate(100%) invert(51%) sepia(53%) saturate(579%)
    hue-rotate(195deg) brightness(108%) contrast(83%);
}

.value-item:first-child .value-icon img {
  filter: none;
}

.value-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 32px;
}

.value-content .common-h4 {
  margin: 0 0 6px;
  color: #081b52;
}

.value-content .body-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: #222;
}

/* ==========================================
   CULTURE / LEADERSHIP SECTION
========================================== */
.culture-section {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #ffffff;
}

.culture-section .culture-hero {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 830px;
  overflow: hidden;
  animation: cultureHeroReveal 0.8s ease-out both;
}

.culture-section .culture-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  animation: cultureHeroScale 1.1s ease-out both;
}

.culture-section .culture-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(0, 5, 55, 0.12) 0%,
    rgba(0, 5, 55, 0.2) 45%,
    rgba(0, 5, 55, 0.38) 100%
  );
}

.culture-section .leadership-wrapper {
  position: relative;
  z-index: 5;
  width: 100%;
  margin-top: -365px;
  padding: 70px 0 35px;
  animation: leadershipPanelRise 0.75s 0.15s ease-out both;
}

.culture-section .leadership-wrapper::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: -1;
  width: 87.25%;
  background: #ffffff;
  border-radius: 0 30px 0 0;
}

.culture-section .leadership-container {
  width: 80%;
  max-width: 1140px;
  margin: 0 auto;
}

.culture-section .leadership-title {
  margin: 0 0 8px;
  color: #051042;
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.culture-section .leadership-copy {
  max-width: 930px;
  margin: 0 0 54px;
  color: #202746;
  font-size: 11px;
  line-height: 1.45;
}

.culture-section .leadership-slider {
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.culture-section .leadership-slider .swiper-wrapper {
  align-items: flex-start;
}

.culture-section .leader-item {
  position: relative;
  width: 100%;
  height: 310px;
  overflow: hidden;
  border-radius: 8px;
  background: #f5f5f5;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.culture-section .leader-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 22px rgba(5, 16, 66, 0.14);
}

.culture-section .leader-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.culture-section .leader-item:hover img {
  transform: scale(1.025);
}

.culture-section .leader-meta {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 96px;
  padding: 44px 20px 16px;
  color: #ffffff;
  opacity: 0;
  transform: translateY(8px);
  background: linear-gradient(0deg, rgba(2, 8, 42, 0.82), rgba(2, 8, 42, 0));
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.culture-section .swiper-slide-next .leader-meta,
.culture-section .leader-item:hover .leader-meta {
  opacity: 1;
  transform: translateY(0);
}

.culture-section .leader-name,
.culture-section .leader-role {
  display: block;
  line-height: 1.25;
}

.culture-section .leader-name {
  font-size: 12px;
  font-weight: 500;
}

.culture-section .leader-role {
  margin-top: 2px;
  font-size: 10px;
}

.culture-section .leader-link {
  display: grid;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #8090ff;
  color: #ffffff;
  font-size: 13px;
  line-height: 1;
  text-decoration: none;
}

.culture-section .leadership-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 36px;
}

.culture-section .leadership-nav button {
  display: flex;
  width: 27px;
  height: 27px;
  align-items: center;
  justify-content: center;
  padding: 0 0 2px;
  border: 1px solid #8090ff;
  border-radius: 3px;
  background: #ffffff;
  color: #8090ff;
  font: inherit;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.culture-section .leadership-nav button:hover {
  background: #8090ff;
  color: #ffffff;
  transform: translateY(-2px);
}

.culture-section .leadership-nav button:focus-visible,
.culture-section .leader-link:focus-visible {
  outline: 2px solid #051042;
  outline-offset: 3px;
}

@keyframes cultureHeroReveal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes cultureHeroScale {
  from {
    transform: scale(1.035);
  }
  to {
    transform: scale(1);
  }
}

@keyframes leadershipPanelRise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==== WHAT MAKES US DIFFERENT ==== */
.capabilities-section {
  padding: 90px 0;
  background: #050d3f;
  color: #fff;
  overflow: hidden;
}

.capabilities-image {
  height: 435px;
  border: 2px solid #008fe8;
  overflow: hidden;
}

.capabilities-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.capabilities-image:hover img {
  transform: scale(1.06);
}

.capabilities-header {
  margin-bottom: 18px;
}

.capabilities-header .section-title,
.capabilities-item .common-h4 {
  color: #fff;
}

.capabilities-header .body-text,
.capabilities-item .body-text {
  color: rgba(255, 255, 255, 0.8);
}

.capabilities-list {
  height: 395px;
  overflow-y: auto;
  padding-right: 12px;
  scrollbar-width: thin;
  scrollbar-color: #7e8efa rgba(255, 255, 255, 0.08);
}

.capabilities-list::-webkit-scrollbar {
  width: 5px;
}

.capabilities-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
}

.capabilities-list::-webkit-scrollbar-thumb {
  background: #7e8efa;
  border-radius: 10px;
}

.capabilities-item {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.capabilities-icon {
  flex: 0 0 35px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #6f82f9;
  overflow: hidden;
}

.capabilities-icon img {
  width: 23px;
  height: 23px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.capabilities-icon:hover img {
  transform: scale(1.12);
}

.capabilities-item .common-h4 {
  margin: 0 0 8px;
  font-size: 15px;
}

.capabilities-item .body-text {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
}

/* ==== OUR APPROACH SECTION ==== */
.approach-section {
  background: var(--white);
}

.approach-header {
  margin-bottom: 45px;
}

.approach-label {
  display: block;
  margin-bottom: 18px;
  color: #17669a;
  font-size: 13px;
  font-weight: 600;
}

.approach-header .section-title {
  max-width: 440px;
  margin: 0;
}

.approach-header .body-text {
  margin: 32px 0 0;
}

.approach-card {
  height: 100%;
  min-height: 267px;
  padding: 22px 20px;
  border: 1px solid #e1e3e8;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(8, 27, 82, 0.08);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.approach-card:hover {
  border-color: #7e8efa;
  box-shadow: 0 6px 18px rgba(126, 142, 250, 0.18);
}

.approach-card .common-h4 {
  margin: 0;
  color: #111;
  font-size: 16px;
}

.approach-divider {
  height: 1px;
  margin: 14px 0 18px;
  background: #edf0f4;
}

.approach-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.approach-card li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 14px;
  color: #222;
  font-size: 13px;
  line-height: 1.25;
}

.approach-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 13px;
  height: 13px;
  border: 1px solid #7e8efa;
  border-radius: 50%;
  color: #7e8efa;
  font-size: 8px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==== OUR CLIENTS SECTION ==== */
.clients-section {
  background: var(--white);
}

.clients-box {
  overflow: hidden;
  background: var(--navy-dark);
  padding: 80px 0 80px 80px;
  margin-left: 87px;
  border-radius: 32px 0 0 32px;
}

.clients-content .section-title {
  margin-bottom: 12px;
  color: #fff;
}

.clients-content .body-text {
  max-width: 290px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  line-height: 1.6;
}

.clients-track .client-slide {
  width: 120px;
  height: 80px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  box-sizing: border-box;
  overflow: hidden;
}

.clients-track .client-slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.clients-marquee {
  width: 100%;
  overflow: hidden;
}

.clients-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 12px;
  animation: clientsMove var(--clients-duration, 18s) linear infinite;
}

@keyframes clientsMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ==== INDUSTRY RECOGNITION ==== */
.recognition-section {
  background: var(--white);
}

.recognition-header {
  margin-bottom: 80px;
}

.recognition-label {
  display: block;
  margin-bottom: 18px;
  color: #17669a;
  font-size: 13px;
  font-weight: 600;
}

.recognition-header .section-title {
  max-width: 450px;
  margin: 0 0 12px;
}

.recognition-header .body-text {
  max-width: 450px;
  margin: 0;
}

.recognition-box {
  padding: 20px;
  border: 1px solid #e1e3e8;
  border-radius: 7px;
}

.recognition-box .common-h4 {
  margin-bottom: 12px;
  color: #111;
  font-size: 15px;
}

.recognition-box .body-text {
  margin-bottom: 18px;
  color: #222;
  font-size: 13px;
  line-height: 1.6;
}

/* SLIDER */
.recognition-slider {
  width: 100%;
  overflow: hidden;
}

.recognition-card {
  height: 102px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.recognition-card img {
  width: 100%;
  height: 85px;
  object-fit: contain;
}

/* BUTTONS */
.recognition-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 34px;
}

.recognition-nav button {
  width: 28px;
  height: 28px;
  padding: 0;
  border: 1px solid #7e8efa;
  border-radius: 4px;
  background: #fff;
  color: #7e8efa;
  font-size: 25px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s ease;
}

.recognition-nav button:hover {
  background: #7e8efa;
  color: #fff;
}

/* ================================================
   INDUSTRIES SECTION
================================================ */
.industries-section {
  padding: 130px 0;
  background: #fff;
}

.industries-section .industries-left {
  position: sticky;
  top: 90px;
}

.btn-read-more {
  text-decoration: underline;
  color: #8dacfc;
}

.industry-card-top {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  padding: 2rem 1.5rem;
  min-height: 450px;
  cursor: pointer;
  border-top: 7px solid #0c89e0;
  background: #0d1b4b;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}

.industry-card-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.industry-card-top .industry-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: 0.4s;
}

.industry-card-top:hover .industry-img {
  transform: scale(1.04);
}

.industry-card-top::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.4) 60%,
    rgba(0, 0, 0, 0.15) 100%
  );
  z-index: 1;
  transition: 0.3s;
}

.industry-card-top:hover::after {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.5) 60%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.industry-card-top > * {
  position: relative;
  z-index: 2;
}

.industry-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0c89e0;
  margin-bottom: 4px;
}

.industry-sub {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.industry-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: 0.4s;
  text-align: justify;
}

.industry-card-top:hover .industry-desc {
  max-height: 200px;
  opacity: 1;
  margin-top: 8px;
}

/* ===== PROCESS SECTION ===== */
.process-section {
  padding: 90px 0;
  background: #fff;
  position: relative;
}

.pw-accordion {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 24px;
  max-width: 100%;
}

.pw-row {
  display: contents;
}

.process-subtitle {
  text-align: left;
}

.pw-item {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  box-sizing: border-box;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition:
    flex-basis 0.35s ease,
    flex-grow 0.35s ease;
  flex: 0 0 90px;
  min-width: 90px;
}

.pw-item.active {
  flex: 1 1 auto;
  cursor: default;
}

.pw-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 90px;
  width: 90px;
  gap: 20px;
  padding: 24px 16px;
  box-sizing: border-box;
}

.pw-number {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  font-family: var(--font-main);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pw-label {
  flex: 1 1 auto;
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
  font-family: var(--font-main);
  line-height: 1.3;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
  display: block;
  text-align: end;
}

.pw-body {
  display: none;
  flex: 1 1 auto;
  padding: 24px;
  box-sizing: border-box;
  min-width: 0;
}

.pw-item.active .pw-body {
  display: block;
}

.pw-image {
  width: 100%;
  aspect-ratio: 16 / 8;
  background: var(--light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 20px;
}

.pw-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pw-item .body-text {
  font-size: 14px;
}

/* ==========================================
   FOOTER - OPTIMIZED STYLES
========================================== */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.72);
  padding: 70px 0 24px;
}

.footer-top .row {
  justify-content: space-between;
  align-items: flex-start;
}

.footer-contact-link {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

.footer-contact-link strong {
  font-weight: 600;
}

.footer-top .col-lg-7 {
  padding-right: 70px;
}

.footer-top .col-lg-5 {
  padding-left: 70px;
  text-align: right;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 22px;
}

.footer-logo .brand-logo {
  height: 42px;
  width: auto;
}

.footer-about {
  max-width: 520px;
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.68);
  margin: 0 0 28px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 17px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--navy-light);
  transform: translateY(-3px);
}

/* ==== HEADINGS & CONTACT ==== */
.footer-heading {
  font-family: var(--font-main);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 22px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-end;
}

.footer-contact li {
  /* display: flex; */
  align-items: flex-start;
  gap: 14px;
  justify-content: flex-end;
}

.footer-contact li i {
  font-size: 18px !important;
  margin-top: 3px !important;
  order: 2;
}

.footer-contact span,
.footer-contact a {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  order: 1;
}

.footer-contact a:hover {
  color: #fff;
}

/* ==== LINKS AREA ==== */
.footer-links-area {
  padding: 45px 0 40px;
}

.footer-links-area .row {
  justify-content: space-between;
  gap: 110px !important;
}

.footer-links-area [class*="col-"] {
  flex: 1;
  max-width: 23%;
}

.footer-links-area .col-xl-3:nth-child(1) {
  text-align: left;
}

.footer-links-area .col-xl-3:nth-child(2),
.footer-links-area .col-xl-3:nth-child(3) {
  text-align: left;
}

.footer-links-area .col-xl-3:nth-child(4) {
  text-align: left;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-links-area .col-xl-3:nth-child(1) .footer-links {
  align-items: flex-start;
}

.footer-links-area .col-xl-3:nth-child(2) .footer-links,
.footer-links-area .col-xl-3:nth-child(3) .footer-links {
  align-items: left;
}

.footer-links-area .col-xl-3:nth-child(4) .footer-links {
  align-items: left;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.66);
  transition: var(--transition);
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-links-area .col-xl-3:nth-child(4) .footer-links a:hover {
  padding-left: 0;
  padding-right: 5px;
}

/* ==== BOTTOM SECTION ==== */
.footer-bottom {
  width: 100%;
}

.footer-bottom-row {
  max-width: 100%;
  margin: 0 auto;
}

.footer-copy {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.58);
}

.footer-legal {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.footer-legal span {
  color: rgba(255, 255, 255, 0.28);
}

.footer-legal a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  text-decoration: none;
}

.footer-legal a:hover {
  color: #fff;
}

.footer-bottom-border {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 22px auto 0;
}

/*-- ====  APP DEVELOPMENT SECTION ==== --*/
.app-development-section {
  padding: 0 0 50px 0;
  background: var(--white);
}

.app-development-image {
  height: 300px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.app-development-img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
  transition: var(--transition);
}

.app-development-section .app-title {
  font-size: 25px;
  margin-bottom: 14px;
}

.app-development-content {
  padding-left: 30px;
}

.app-development-image:hover .app-development-img {
  transform: scale(1.05);
}

.app-development-section .app-development-text {
  font-size: 15px;
  max-width: 100%;
  margin-bottom: 0;
  text-align:left;
}

/* ===== MOBILE APP SERVICES SECTION ===== */
.mobile-services-section {
  padding: 100px 0;
  background: var(--white);
}

.mobile-service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 32px 26px;
  border: 3px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.mobile-service-card,
.mobile-service-card * {
  transition: var(--transition);
}

.digital-text {
  text-align: left !important;
  margin-left: 0 !important;
}

.mobile-service-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  background: #eef3ff;
  box-shadow: 0 12px 30px rgba(92, 148, 253, 0.14);
}

/* ===== Icon ===== */
.mobile-service-icon {
  width: 58px;
  height: 58px;
  border: 1.5px solid var(--primary-color);
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: 0.3s ease;
}

.mobile-service-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  transition: 0.3s ease;
}

/* Hover */
.mobile-service-card:hover .mobile-service-icon {
  background: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 8px 18px rgba(92, 148, 253, 0.2);
}

.Enterprise-icon {
  background: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 8px 18px rgba(92, 148, 253, 0.2);
}

.mobile-service-card:hover .mobile-service-icon img {
  transform: scale(1.08);
  filter: brightness(0) invert(1); /* White icon on hover */
}

/* ===== Content ===== */
.mobile-service-title {
  line-height: 1.4;
  margin-bottom: 14px;
}

.mobile-service-title {
  font-size: 16px;
}

.mobile-service-text {
  flex: 1;
  font-size: 15px;
  color: var(--dark-text);
  line-height: 1.8;
  margin-bottom: 28px;
}

/* ===== Link ===== */
.mobile-service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--dark-text);
  font-size: 14px;
  font-weight: 600;
}

.mobile-service-link i {
  transition: var(--transition);
}

/* Card hover also affects button */
.mobile-service-card:hover .mobile-service-link,
.mobile-service-link:hover {
  color: var(--primary-color);
}

.mobile-service-card:hover .mobile-service-link i,
.mobile-service-link:hover i {
  transform: rotate(45deg);
}

/* ==========================================
   SERVICES MARQUEE
========================================== */
.services-marquee-section {
  margin: 50px 0;
  height: 80px;
  background: #07123f;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
}

.services-marquee-section .container-xl {
  max-width: none;
  width: 100%;
  padding: 0;
  margin: 0;
}

.services-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee var(--services-duration, 30s) linear infinite;
  will-change: transform;
}

.services-marquee-track:hover {
  animation-play-state: paused;
}

.services-marquee-track span {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  white-space: nowrap;
  padding: 0 35px;
  flex-shrink: 0;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ====  STARTUP SUPPORT SECTION ==== */
.startup-support-section {
  padding: 100px 0;
  background: var(--navy-dark);
  overflow: hidden;
}

.startup-support-section .section-badge {
  color: #6d8bff;
  text-transform: none;
  font-weight: 500;
  letter-spacing: normal;
}

.startup-support-section .section-title {
  color: var(--white);
  font-size: 32px;
  margin: 18px 0 20px;
}

.startup-support-subtitle {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 0;
}

.startup-support-grid {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  margin-top: 80px;
}

.startup-support-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
  min-width: 0;
}
.startup-support-col-offset {
  margin-top: 28px;
}

.startup-support-card {
  min-height: 130px;
  padding: 24px;
  border: 1.5px solid rgba(111, 130, 249, 0.27);
  border-radius: 20px 0 20px 20px;
  background: rgba(35, 76, 107, 0.2);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.startup-support-card.active {
  min-height: 155px;
  background: rgba(111, 130, 249, 0.27);
  border: 1.5px solid rgba(111, 130, 249, 0.27);
  border-radius: 20px 0 20px 20px;
}

.startup-support-card:hover {
  transform: translateY(-8px);
  border-color: #5c94fd;
  background: #22286d;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.startup-support-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(92, 148, 253, 0.55);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: var(--transition);
  overflow: hidden;
}

.startup-support-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  transition: var(--transition);
}

/* Hover */
.startup-support-card:hover .startup-support-icon {
  background: #5c94fd;
  border-color: #5c94fd;
}

.startup-support-card:hover .startup-support-icon img {
  transform: scale(1.08);
  filter: brightness(0) invert(1);
}

.startup-support-card h5 {
  margin: 0;
  color: #fff;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.4;
}

.startup-support-section .btn-primary-cta {
  margin-top: 38px;
}

/* ==== WHY CHOOSE US SECTION ==== */
.why-choose-section {
  padding: 100px 0;
  background: var(--white);
}

.why-choose-section .section-title {
  margin-bottom: 0;
}

.why-choose-card {
  height: 100%;
  padding: 34px 30px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  transition: var(--transition);
}

.why-choose-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

.why-choose-number {
  display: block;
  margin-bottom: 14px;
  color: #6d8bff;
  font-size: 25px;
  font-weight: 600;
  line-height: 1;
}

.why-choose-title {
  margin: 0 0 22px;
  color: var(--dark-text);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
}

.why-choose-text {
  margin: 0;
  color: var(--dark-text);
  font-size: 15px;
  line-height: 1.8;
}

/* ==========================================
   BRAND SHOWCASE SECTION
========================================== */
.brand-showcase-section {
  padding: 100px 0;
  background: var(--navy-dark);
}

.brand-showcase-section .section-title {
  color: var(--white);
}

.brand-showcase-subtitle {
  max-width: 720px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.brand-showcase-card {
  height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.brand-showcase-card:hover {
  transform: translateY(-8px);
  background: #22286d;
  border-color: #5c94fd;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

/* ===== Logo ===== */
.brand-showcase-card img {
  max-width: 100px;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: var(--transition);
}

.brand-showcase-card:hover img {
  transform: scale(1.08);
}

/* ====  GET STARTED SECTION ====*/
.get-started-section {
  padding: 110px 0;
  background: #f8f9ff;
  overflow: hidden;
  position: relative;
}

.get-started-section .section-subtitle {
  max-width: 980px;
  width: 100%;
  margin: 22px auto 0;
  font-size: 16px;
  line-height: 1.9;
}

.get-started-wrapper {
  position: relative;
  margin-top: 70px;
  min-height: 520px;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 80px;
  transform: translateX(-50%);
  width: 4px;
  height: 370px;
  background: rgba(111, 130, 249, 0.3);
  border-radius: 30px;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(111, 130, 249, 1);
  transition: 0.35s;
}

.dot-1 {
  top: -4px;
}

.dot-2 {
  top: 50%;
  transform: translate(-50%, -50%);
}

.dot-3 {
  bottom: -4px;
}

.timeline-card {
  position: absolute;
  width: 550px;
  min-height: 150px;
  padding: 30px;
  border: 1px solid #e6e7ef;
  border-radius: 22px;
  background: #fff;
  overflow: hidden;
  transition: all 0.35s ease;
}

.timeline-card-left {
  left: 0;
  top: 0;
}

.timeline-card-right {
  right: 0;
  top: 140px;
}

.timeline-card-bottom {
  left: 0;
  bottom: 0;
}

.timeline-icon {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  color: rgba(111, 130, 249, 0.45);
  transition: 0.35s;
}

.timeline-icon i {
  font-size: 36px;
}

.timeline-card h4 {
  margin: 0 0 18px;
  font-size: 17px;
  font-weight: 600;
  color: var(--dark-text);
}

.timeline-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--light-text);
}

.timeline-card:hover {
  border: 1px solid rgba(111, 130, 249, 1);
  background: #f5f7ff;
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(12, 40, 110, 0.08);
}

.timeline-card:hover .timeline-icon {
  opacity: 1;
  visibility: visible;
  transform: scale(1.08);
}

/* ==== TIMELINE ACTIVE ==== */
.timeline-card-left:hover ~ .timeline-line .dot-1 {
  animation: timelinePulse 0.9s infinite;
}

.timeline-card-right:hover ~ .timeline-line .dot-2 {
  animation: timelinePulse 0.9s infinite;
}

.timeline-card-bottom:hover ~ .timeline-line .dot-3 {
  animation: timelinePulse 0.9s infinite;
}

@keyframes timelinePulse {
  0% {
    transform: translate(-50%) scale(1);
    box-shadow: 0 0 0 rgba(111, 130, 249, 0);
  }

  50% {
    transform: translate(-50%) scale(1.45);
    box-shadow: 0 0 18px rgba(111, 130, 249, 0.6);
  }

  100% {
    transform: translate(-50%) scale(1);
    box-shadow: 0 0 0 rgba(111, 130, 249, 0);
  }
}

/* ---- Fix for iOS Safari ---- */
@supports (-webkit-touch-callout: none) {
  .hero-section {
    min-height: -webkit-fill-available;
  }
  .stat-card {
    min-height: 300px;
  }
}

/* ==========================================
   CONTACT INTRO SECTION
========================================== */
.contact-intro-section {
  padding: 65px 0 45px;
  background: var(--white);
}

.contact-intro-section .row {
  align-items: center;
}

.contact-intro-image {
  position: relative;
  width: 100%;
  overflow: hidden;

  /* Soft fade on image edges */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 7%,
    #000 93%,
    transparent 100%
  );

  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 7%,
    #000 93%,
    transparent 100%
  );
}

.contact-items-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-intro-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    #fff 0%,
    transparent 12%,
    transparent 88%,
    #fff 100%
  );
}

.contact-intro-image img {
  width: 100%;
  height: 280px;
  display: block;
  object-fit: cover;
  transform: none !important;
}

.contact-intro-content {
  padding-left: 25px;
  padding-right: 20px;
}

.contact-intro-content .section-title {
  margin: 0 0 15px;
  color: var(--dark-text);
}

.contact-intro-content .body-text {
  max-width: 540px;
  margin: 0;
  color: var(--dark-text);
  font-size: 15px;
  line-height: 1.65;
}

.contact-section {
  padding: 30px 0 60px;
  background: var(--white);
}

.contact-section > .container-xl > .row {
  align-items: flex-start;
}

.contact-title {
  font-family: "Exo2", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--dark-text);
  line-height: 1.2;
  margin-bottom: 15px;
}

.contact-details {
  padding: 0 20px 0 25px;
}

.contact-details .section-title {
  margin: 0 0 10px;
  color: var(--dark-text);
}

.contact-description {
  max-width: 430px;
  margin: 0 0 30px;
  color: var(--dark-text);
  font-size: 14px;
  line-height: 1.6;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 430px;
  padding: 12px 0;
  border-bottom: 1px solid #e5e5e5;
}

.contact-icon {
  width: 23px;
  height: 23px;
  min-width: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: #087fc9;
  color: #fff;
  font-size: 12px;
}

.contact-item .common-h4 {
  margin-top: 10px;
  color: var(--dark-text);
}

.contact-item .body-text {
  margin: 0;
  color: var(--dark-text);
  font-size: 12px;
  line-height: 1.5;
}

/* CONTACT FORM */
.contact-form-card {
  max-width: 500px;
  margin-left: 0;
  padding: 22px 22px 18px;
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 5px 22px rgba(8, 27, 82, 0.12);
}

.contact-form-card .common-h4 {
  margin: 0 0 6px;
  color: var(--dark-text);
}

.contact-form-card > .body-text {
  margin: 0 0 13px;
  color: var(--dark-text);
  font-size: 12px;
  line-height: 1.5;
}

.form-group {
  flex: 1;
  margin-bottom: 9px;
}

.form-group label {
  display: block;
  margin-bottom: 4px;
  color: var(--dark-text);
  font-size: 11px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 5px;
  outline: none;
  background: #fff;
  color: var(--dark-text);
  font-family: inherit;
  font-size: 12px;
}

.form-group input,
.form-group select {
  height: 36px;
  padding: 0 10px;
}

.form-group textarea {
  height: 65px;
  padding: 8px 10px;
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #777;
  opacity: 1;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #168bd3;
}

.form-row {
  display: flex;
  gap: 10px;
}

.contact-submit-btn {
  width: 100%;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 0;
  border-radius: 5px;
  background: #087fc9;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-submit-btn:hover {
  background: #006da9;
}

/* ==========================================
   PRIVACY POLICY DATE BUTTONS
========================================== */
.privacy-date-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 60px;
}

.privacy-date-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
  border: 1px solid rgba(92, 148, 253, 0.25);
  border-radius: 50px;
  background: rgba(92, 148, 253, 0.08);
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  transition: all 0.3s ease;
}

/* Effective Date */
.privacy-date-primary {
  background: linear-gradient(275deg, #0c89e0 7.88%, #0d5f99 90.02%);

  border-color: transparent;
  color: #ffffff;
}

/* Hover */
.privacy-date-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(92, 148, 253, 0.6);
  background: rgba(92, 148, 253, 0.18);
  box-shadow: 0 5px 18px rgba(47, 134, 255, 0.15);
}

.privacy-date-primary:hover {
  background: linear-gradient(275deg, #1599ed 7.88%, #0c6da9 90.02%);
  box-shadow: 0 6px 20px rgba(12, 137, 224, 0.25);
}

/* ==========================================
   PRIVACY POLICY CONTENT
========================================== */

.privacy-policy-section {
  padding: 65px 0 80px;
  background: #fff;
}

.privacy-policy-layout {
  align-items: flex-start;
  --bs-gutter-x: 70px;
}

/* ==========================================
   LEFT — ON THIS PAGE
========================================== */
.privacy-sidebar {
  position: sticky;
  top: 95px;
}

.privacy-sidebar-inner {
  padding: 0;
}

.privacy-sidebar-title {
  margin: 0 0 16px;
  color: var(--dark-text);
  font-size: 14px;
  font-weight: 700;
}

/* Border starts from Introduction */
.privacy-toc {
  margin: 0;
  padding: 2px 0 2px 28px;
  border-left: 3px solid #cfd3da;
}

.privacy-toc li {
  margin-bottom: 9px;
  padding-left: 2px;
  color: #5f6368;
  font-size: 12px;
  line-height: 1.55;
  transition:
    transform 0.25s ease,
    color 0.25s ease;
}

.privacy-toc li:hover {
  transform: translateX(3px);
  color: #087fc9;
}

.privacy-toc li.active {
  color: #087fc9;
  font-weight: 600;
}

.privacy-toc li.active a {
  color: #087fc9;
}

.privacy-toc a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

/* ==========================================
   RIGHT CONTENT
========================================== */
.privacy-content {
  min-width: 0;
  padding-left: 0;
}

.warning-text {
  color: #f71a1a !important;
}

.terms-link-coral {
  color: #ff6b4a !important;
  text-decoration: underline;
}

.terms-link-coral:hover {
  color: #e2502f !important;
}

.privacy-review-notice {
  margin: 0 0 30px;
  padding: 12px 16px;
  border: 1.5px solid #ff4d4d;
  border-left: 4px solid #ff4d4d;
  border-radius: 5px;
  background: #fff;
  color: #ff4d4d;
  font-size: 13px;
  line-height: 1.6;
}

/* ==========================================
   MAIN SECTIONS
========================================== */
.privacy-section {
  margin-bottom: 34px;
  scroll-margin-top: 100px;
}

.privacy-heading {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid #dfe2e7;
  color: var(--dark-text);
  font-family: "Exo2", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}

.privacy-number {
  width: 16px;
  height: 16px;
  min-width: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background: #087fc9;
  color: #fff;
  font-family: var(--font-main);
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
}

/* ==========================================
   BODY CONTENT
========================================== */
.privacy-content p {
  margin: 0 0 14px;
  color: var(--dark-text);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
}

.privacy-subheading {
  margin: 22px 0 10px;
  color: var(--dark-text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.privacy-list {
  margin: 8px 0 18px;
  padding-left: 20px;
  list-style: disc;
}

.privacy-list li {
  margin-bottom: 7px;
  color: var(--dark-text);
  font-size: 14px;
  line-height: 1.7;
}

.privacy-list strong {
  font-weight: 600;
}

/* ==========================================
   CONTACT BOX
========================================== */
.privacy-contact-box {
  margin: 24px 0 28px;
  padding: 30px 30px 34px;
  min-height: 225px;
  border-radius: 8px;
  background: var(--navy-dark);
  color: #fff;
}

.privacy-contact-box h4 {
  margin: 0 0 24px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}

.privacy-contact-box .row {
  row-gap: 24px !important;
}

.privacy-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.privacy-contact-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: #087fc9;
  color: #fff;
  font-size: 11px;
}

.privacy-contact-item strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.privacy-contact-item small {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  line-height: 1.55;
}

/* ==========================================
   DPO WARNING
   Same style as top red notice
========================================== */
.privacy-warning-box {
  margin-top: 18px;
  padding: 13px 16px;
  border: 1.5px solid #ff4d4d;
  border-left: 4px solid #ff4d4d;
  border-radius: 5px;
  background: #fff;
  color: #ff4d4d;
  font-size: 13px;
  line-height: 1.6;
}

.privacy-warning-box strong {
  font-weight: 700;
}

/* ==========================================
   LAST UPDATED
========================================== */
.privacy-footer-note {
  margin-top: 22px;
  color: #777;
  font-size: 11px;
  line-height: 1.6;
}
