/* Gotham Light */
@font-face {
  font-family: "Gotham";
  src:
    url("../font/gotham/Gotham-Light.otf") format("opentype"),
    url("../font/gotham/GOTHAM-LIGHT.TTF") format("truetype");
  font-weight: 300;
  font-style: normal;
}

/* Gotham Book (Regular) */
@font-face {
  font-family: "Gotham";
  src:
    url("../font/gotham/Gotham-Book.otf") format("opentype"),
    url("../font/gotham/Gotham-BookItalic.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

/* Gotham Medium */
@font-face {
  font-family: "Gotham";
  src:
    url("../font/gotham/Gotham-Medium.otf") format("opentype"),
    url("../font/gotham/GOTHAM-MEDIUM.TTF") format("truetype");
  font-weight: 500;
  font-style: normal;
}

/* Gotham Bold */
@font-face {
  font-family: "Gotham";
  src:
    url("../font/gotham/GOTHAM-BOLD.TTF") format("truetype"),
    url("../font/gotham/Gotham-BoldItalic.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

/* Gotham Black */
@font-face {
  font-family: "Gotham";
  src: url("../font/gotham/GOTHAM-BLACK.TTF") format("truetype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Gotham";
  src: url("../font/gotham/Gotham-BookItalic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
}

:root {
  --primary-dark: #0a3a78;
  --primary-mid: #1467b0;
  --primary-light: #3fa0f5;

  --shield-dark: #0a2e60;
  --shield-blue: #1e64c8;

  --text-primary: #0a3a78;
  --text-secondary: #6ca4da;

  --white: #ffffff;
  --black: #000000;

  --dark-bg: #0f1419;
  --dark-secondary: #1a1f2e;
  --card-border: #2a3548;
}

body {
  font-family: "Gotham", sans-serif;
  overflow-x: hidden !important;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: linear-gradient(180deg, var(--dark-bg), var(--dark-secondary));
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary-mid), var(--primary-light));
  border-radius: 10px;
  border: 2px solid var(--dark-secondary);
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--shield-blue));
  box-shadow: 0 0 10px rgba(63, 160, 245, 0.6);
}

::-webkit-scrollbar-thumb:active {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-mid));
}

::-webkit-scrollbar-corner {
  background: var(--dark-bg);
}

/* ------------------------ NAVBAR SECTION ---------------------- */
.custom-navbar {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  transition: 0.4s ease;
}

.custom-navbar img {
  width: 65px;
}

.nav-link {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-light);
}

.btn-nav {
  background: linear-gradient(135deg, var(--primary-mid), var(--primary-light));
  padding: 8px 18px;
  border-radius: 10px;
  color: #fff !important;
  font-weight: 500;
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(63, 160, 245, 0.45);
}

.services-menu {
  left: -20px !important;
  width: 380px;
  border-radius: 18px;
  padding: 14px;
  border: none;
  opacity: 0;
  transform: translateY(15px);
  transition: 0.3s ease;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.services-dropdown:hover .services-menu {
  opacity: 1;
  transform: translateY(0);
  display: block;
}

.services-menu .dropdown-item {
  display: flex;
  gap: 14px;
  padding: 14px;
  border-radius: 14px;
  transition: 0.3s;
}

.services-menu .dropdown-item i {
  font-size: 24px;
  color: var(--primary-mid);
}

.services-menu h6 {
  margin: 0;
  font-weight: 600;
}

.services-menu span {
  font-size: 13px;
  color: #777;
}

.services-menu .dropdown-item:hover {
  background: rgba(63, 160, 245, 0.12);
}

.custom-navbar.scrolled {
  background: radial-gradient(circle at top, #1a1f2e, var(--dark-bg));
}

.mobile-menu {
  background: radial-gradient(circle at top, #1a1f2e, var(--dark-bg));
}

.mobile-menu .nav-link {
  color: #fff;
}

.mobile-menu ul a {
  color: #cfd8ff;
  text-decoration: none;
  padding: 6px 0;
  display: block;
}

.mobile-menu {
  width: 95%;
  max-width: 340px;
  padding-top: 10px;
}

.mobile-menu .offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu .nav-link {
  font-size: 17px;
  font-weight: 500;
  padding: 10px 0;
}

.mobile-menu .nav-link i {
  transition: transform 0.3s ease;
}

#mobileServices {
  transition: all 0.3s ease;
}

#mobileServices a {
  font-size: 15px;
  color: #cfd8ff;
  padding: 6px 0;
}

 White navbar toggler 
.navbar-toggler {
  /*border: none;*/
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Default Bootstrap icon → make it white */
.navbar-toggler-icon {
  filter: invert(1);
}


/*.call-btn {*/
/*  border-radius: 6px;*/
/*  box-shadow: 0 8px 20px rgba(63, 160, 245, 0.35);*/
/*  transition: transform 0.25s ease, box-shadow 0.25s ease;*/
/*}*/

/*.call-btn:hover {*/
/*  transform: translateY(-2px);*/
/*  box-shadow: 0 12px 28px rgba(63, 160, 245, 0.45);*/
/*}*/


/* -------------------- HERO SECTION ------------------------ */
/*.hero-section {*/
/*  height: 100vh;*/
/*  background: url("../images/key-highlights/Integrated.png") center/cover*/
/*    no-repeat;*/
/*  position: relative;*/
/*  overflow: hidden !important;*/
/*}*/

/*.hero-overlay {*/
/*  position: absolute;*/
/*  inset: 0;*/
/*  background: rgba(0, 0, 0, 0.65);*/
/*}*/

/*.hero-content {*/
/*  position: relative;*/
/*  z-index: 2;*/
/*  padding-top: 115px;*/
/*}*/

/*.hero-badge {*/
/*  color: var(--primary-light);*/
/*  letter-spacing: 2px;*/
/*  font-weight: 700;*/
/*  font-size: 16px;*/
/*}*/

/*.hero-section h1 {*/
/*  font-size: 45px;*/
/*  margin: 18px 0;*/
/*  color: #fff;*/
/*}*/

/*.hero-section p {*/
/*  max-width: 510px;*/
/*  color: #ddd;*/
/*  font-size: 17px;*/
/*}*/

/*.hero-btn {*/
/*  margin-top: 14px;*/
/*  background: var(--text-secondary);*/
/*  padding: 12px 25px;*/
/*  font-weight: 600;*/
/*  border-radius: 12px;*/
/*  font-size: medium;*/
/*  transition: transform 0.25s ease;*/
/*}*/

/*.hero-btn:hover {*/
/*  transform: translateY(-3px);*/
/*  background: var(--primary-dark);*/
/*  color: var(--white);*/
/*}*/

/*.hero-cards-container {*/
/*  position: absolute;*/
/*  right: 40px;*/
/*  bottom: 35px;*/
/*  display: flex;*/
/*  gap: 20px;*/
/*  z-index: 2;*/
/*  animation: slideUp 0.8s ease-out 0.4s both;*/
/*}*/

/*.hero-card {*/
/*  width: 180px;*/
/*  height: 120px;*/
/*  border-radius: 20px;*/
/*  overflow: hidden;*/
/*  border: 2px solid rgba(63, 160, 245, 0.3);*/
/*  position: relative;*/
/*  cursor: pointer;*/
/*  transition: all 0.3s ease;*/
/*  background: rgba(26, 31, 46, 0.5);*/
/*  backdrop-filter: blur(10px);*/
/*}*/

/*.hero-card img {*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  object-fit: cover;*/
/*  transition: transform 0.3s ease;*/
/*}*/

/*.hero-card:hover {*/
/*  border-color: var(--primary-light);*/
/*  transform: translateY(-8px);*/
/*  box-shadow: 0 20px 40px rgba(63, 160, 245, 0.2);*/
/*}*/

/*.hero-card:hover img {*/
/*  transform: scale(1.05);*/
/*}*/

/*.hero-card.active {*/
/*  border-color: var(--primary-light);*/
/*  box-shadow: 0 15px 35px rgba(63, 160, 245, 0.25);*/
/*}*/


.hero-section {
  /*height: 100vh;*/
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

/* Background slider */
.hero-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1s ease, transform 1.4s ease;
}

.hero-bg.active {
  opacity: 1;
  transform: scale(1);
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 115px;
}

.hero-badge {
  color: var(--primary-light);
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 16px;
}

.hero-section h1 {
  font-size: 45px;
  margin: 18px 0;
  color: #fff;
}

.hero-section p {
  max-width: 510px;
  color: #ddd;
  font-size: 17px;
}

.hero-btn {
  margin-top: 14px;
  background: var(--text-secondary);
  padding: 12px 25px;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-3px);
  background: var(--primary-dark);
  color: #fff;
}

/* Mini cards */
.hero-cards-container {
  position: absolute;
  right: 40px;
  bottom: 40px;
  display: flex;
  gap: 20px;
  z-index: 2;
}

.hero-card {
  width: 180px;
  height: 120px;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(63, 160, 245, 0.3);
  cursor: pointer;
  transition: all 0.35s ease;
  background: rgba(26, 31, 46, 0.5);
  backdrop-filter: blur(10px);
  position: relative;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hero-card:hover img {
  transform: scale(1.05);
}

.hero-card.active {
  transform: translateY(-10px) scale(1.04);
  border-color: var(--primary-light);
  box-shadow: 0 20px 40px rgba(63, 160, 245, 0.25);
}

/* Premium glow */
.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(120deg, transparent, rgba(63,160,245,0.2), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hero-card.active::after {
  opacity: 1;
}



@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ------------------ WHO WE ARE SECTION ---------------------- */
.who-we-are-section {
  padding: 80px 0;
  background: var(--white);
  color: var(--text-primary);
  overflow: hidden !important;
}

.section-tag {
  background: linear-gradient(135deg, var(--primary-light), var(--primary-mid));
  color: var(--white);
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 600;
}

.who-content h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--black);
}

.who-content h2 span {
  color: var(--primary-mid);
}

.who-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--black);
  margin-bottom: 18px;
}

.who-content .highlight {
  border-left: 4px solid var(--primary-light);
  padding-left: 16px;
  font-weight: 500;
  color: var(--primary-dark);
}

.who-content strong {
  color: var(--primary-dark);
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.image-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 230px;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.35);
  transition: all 0.4s ease;
  cursor: pointer;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1),
    rgba(10, 58, 120, 0.65)
  );
  z-index: 1;
}

.image-card .overlay {
  position: absolute;
  bottom: 0;
  z-index: 2;
  padding: 18px;
  width: 100%;
}

.image-card h5 {
  margin: 0;
  color: var(--white);
  font-size: 16px;
  text-align: center;
  font-weight: 500;
}

.image-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(20, 103, 176, 0.45);
}

.image-card:hover img {
  transform: scale(1.1);
}

/* ------------------- DIFFERENCE SECTION ------------------ */

.difference-section {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--dark-bg) 0%,
    #131820 50%,
    #0a1829 100%
  );
  overflow: hidden !important;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.section-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(63, 160, 245, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(30, 100, 200, 0.05) 0%,
      transparent 50%
    );
  z-index: 1;
}

.content-wrapper {
  position: relative;
  z-index: 2;
}

.section-badge {
  display: inline-block;
  margin-bottom: 20px;
}

.badge-text {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 8px 18px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-mid));
  color: var(--white);
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(63, 160, 245, 0.25);
  animation: fadeInDown 0.8s ease-out;
}

.diff-title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -1px;
  /* animation: fadeInUp 0.8s ease-out 0.1s both; */
}

.diff-title .highlight {
  background: linear-gradient(135deg, var(--primary-light), var(--primary-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.section-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.section-desc strong {
  color: var(--primary-light);
  font-weight: 600;
}

.difference-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.point-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px 10px 10px 25px;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid var(--card-border);
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out both;
}

.point-card:nth-child(1) {
  animation-delay: 0.3s;
}
.point-card:nth-child(2) {
  animation-delay: 0.4s;
}
.point-card:nth-child(3) {
  animation-delay: 0.5s;
}

.card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(20, 103, 176, 0.05),
    rgba(63, 160, 245, 0.02)
  );
  z-index: 0;
  transition: all 0.4s ease;
}

.point-card:hover .card-bg {
  background: linear-gradient(
    135deg,
    rgba(20, 103, 176, 0.15),
    rgba(63, 160, 245, 0.1)
  );
}

.diff-icon-wrapper {
  position: relative;
  flex-shrink: 0;
}

.icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-mid), var(--primary-light));
  color: var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  box-shadow: 0 12px 30px rgba(63, 160, 245, 0.3);
  transition: all 0.4s ease;
}

.icon-glow {
  position: absolute;
  inset: -8px;
  background: radial-gradient(circle, var(--accent-glow-strong), transparent);
  border-radius: 14px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.point-card:hover .icon {
  transform: scale(1.12) rotate(-5deg);
  box-shadow: 0 16px 40px rgba(63, 160, 245, 0.4);
}

.point-card:hover .icon-glow {
  opacity: 1;
}

.diff-card-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.point-card h6 {
  margin: 0 0 8px 0;
  font-size: 18px;
  color: var(--white);
  font-weight: 600;
  transition: color 0.3s ease;
}

.point-card:hover h6 {
  color: var(--primary-light);
}

.point-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.card-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-light), transparent);
  transition: width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.point-card:hover .card-accent {
  width: 100%;
}

.point-card:hover {
  border-color: var(--primary-light);
  transform: translateX(12px);
  box-shadow: 0 20px 50px rgba(63, 160, 245, 0.2);
}

.visual-wrapper {
  position: relative;
  max-width: 520px;
  margin-left: auto;
  animation: fadeInRight 0.8s ease-out 0.2s both;
}

.image-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(10, 58, 120, 0.3);
}

.main-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 24px;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.image-container:hover .main-image {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(10, 58, 120, 0.2) 100%
  );
  pointer-events: none;
  border-radius: 24px;
}

.floating-card {
  position: absolute;
  background: linear-gradient(
    135deg,
    var(--dark-secondary),
    rgba(26, 31, 46, 0.8)
  );
  border: 1.5px solid rgba(63, 160, 245, 0.4);
  border-radius: 18px;
  padding: 24px 28px;
  color: var(--white);
  text-align: center !important;
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.5),
    inset 0 1px 1px rgba(63, 160, 245, 0.2);
  backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.card-icon {
  font-size: 28px;
  color: var(--primary-light);
  margin-bottom: 12px;
  transition: all 0.4s ease;
}

.floating-card:hover .card-icon {
  transform: scale(1.2) rotate(360deg);
  filter: drop-shadow(0 0 12px var(--primary-light));
}

.floating-card h5 {
  font-size: 20px;
  margin-bottom: 6px;
  color: var(--primary-light);
  font-weight: 800;
  transition: color 0.3s ease;
}

.floating-card p {
  font-size: 10px;
  color: var(--text-secondary);
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
}

.floating-card:hover {
  transform: translateY(-12px);
  border-color: var(--primary-light);
  box-shadow:
    0 32px 60px rgba(63, 160, 245, 0.3),
    inset 0 1px 1px rgba(63, 160, 245, 0.3);
  background: linear-gradient(
    135deg,
    rgba(20, 103, 176, 0.1),
    rgba(63, 160, 245, 0.05)
  );
}

.card-1 {
  top: 12%;
  left: -50px;
}

.card-2 {
  bottom: 8%;
  right: -40px;
}

.decoration {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: screen;
}

.decoration-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(63, 160, 245, 0.1), transparent);
  top: -100px;
  right: -100px;
  animation: float 6s ease-in-out infinite;
}

.decoration-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(20, 103, 176, 0.08), transparent);
  bottom: -50px;
  left: -50px;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(30px);
  }
}

/* ================= WHY CHOOSE US SECTION ================= */

.why-choose-section {
  padding: 80px 0;
  min-height: 100vh;
  /* overflow: hidden; */
  background: var(--white);
  color: var(--text-primary);
}

.bg-decoration {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  animation: float 6s ease-in-out infinite;
  z-index: 0;
}

.bg-deco-1 {
  width: 400px;
  height: 400px;
  background: var(--primary-light);
  top: -120px;
  right: -120px;
}

.bg-deco-2 {
  width: 300px;
  height: 300px;
  background: var(--shield-blue);
  bottom: 80px;
  left: -100px;
  animation-delay: 2s;
}

.bg-deco-3 {
  width: 350px;
  height: 350px;
  background: var(--primary-mid);
  bottom: -120px;
  right: 10%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(30px);
  }
}

.why-image-card {
  position: relative;
  border-radius: 20px;
  padding: 8px;
  background: linear-gradient(
    135deg,
    rgba(63, 160, 245, 0.35),
    rgba(30, 100, 200, 0.15),
    rgba(10, 58, 120, 0.4)
  );
  box-shadow: 0 40px 80px rgba(10, 58, 120, 0.35);
  overflow: hidden;
}

.why-image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  opacity: 0.25;
  animation: shine 6s infinite linear;
}

@keyframes shine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  position: relative;
}

.image-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 3;
  background: rgba(10, 58, 120, 0.85);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  backdrop-filter: blur(8px);
  box-shadow: 0 15px 35px rgba(10, 58, 120, 0.5);
}

.image-badge i {
  font-size: 20px;
  color: var(--primary-light);
}

.section-header {
  margin-bottom: 30px;
}

.section-header h2 {
  font-size: 38px;
  font-weight: 600;
  color: var(--black);
}

.highlight {
  background: linear-gradient(135deg, var(--primary-light), var(--shield-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 16px;
  margin-top: 12px;
}

.cards-container.stacked-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-item {
  position: relative;
  /* opacity: 0; */
  cursor: pointer;
}

.card-content.horizontal-card {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 20px 25px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(20, 103, 176, 0.08),
    rgba(63, 160, 245, 0.04)
  );
  border: 1px solid rgba(20, 103, 176, 0.22);
  box-shadow:
    0 20px 50px rgba(10, 58, 120, 0.15),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  backdrop-filter: blur(8px);
}

.card-item:hover .horizontal-card {
  transform: translateY(-8px);
  box-shadow:
    0 30px 70px rgba(63, 160, 245, 0.28),
    inset 0 0 0 1px rgba(63, 160, 245, 0.45);
}

.horizontal-card .icon-circle {
  min-width: 64px;
  min-height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary-light), var(--shield-blue));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 14px 30px rgba(20, 103, 176, 0.45);
  position: relative;
}

.horizontal-card .icon-circle::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 20px;
  background: radial-gradient(
    circle,
    rgba(63, 160, 245, 0.35),
    transparent 70%
  );
  opacity: 0.6;
  z-index: -1;
}

.card-text {
  flex: 1;
}

.horizontal-card .card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.horizontal-card .card-description {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 0px !important;
}

/* .why-choose-section,
.why-choose-section .container-fluid,
.why-choose-section .row,
.why-choose-section .col-lg-6 {
  overflow: visible !important;
} */

/* --------------------- MISSION, VISION AND CORE VALUES ------------------------- */

.mission-vision-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--dark-bg) 0%,
    var(--dark-secondary) 100%
  );
}

.mission-vision-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 35px,
    rgba(63, 160, 245, 0.03) 35px,
    rgba(63, 160, 245, 0.03) 70px
  );
  pointer-events: none;
  z-index: 1;
}

.mission-vision-section::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(20, 103, 176, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 1;
}

.mv-wrapper {
  position: relative;
  z-index: 2;
}

.mv-title {
  text-align: center;
  margin-bottom: 70px;
  color: var(--white);
}

.mv-title h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.mv-title p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin: 0 auto;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  padding: 0;
}

.mission-card {
  background: linear-gradient(
    135deg,
    var(--dark-secondary) 0%,
    rgba(20, 103, 176, 0.1) 100%
  );
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 50px 35px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.mission-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.mission-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-15px);
  box-shadow:
    0 30px 60px rgba(20, 103, 176, 0.2),
    0 0 40px rgba(63, 160, 245, 0.15);
}

.mission-card:hover::before {
  left: 100%;
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-light) 0%,
    var(--primary-mid) 100%
  );
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  font-size: 2rem;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(63, 160, 245, 0.3);
}

.card-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-title-accent {
  color: var(--primary-light);
}

.card-description {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

.card-footer-text {
  font-size: 1.1rem;
  color: rgba(108, 164, 218, 0.7);
  border-top: 1px solid var(--card-border);
  padding-top: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-footer-text i {
  color: var(--primary-light);
}

.core-values-section {
  padding-top: 60px;
}

.core-values-section h3 {
  text-align: center;
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.core-values-section h3 span {
  color: var(--primary-light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.value-item {
  background: rgba(20, 103, 176, 0.1);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.value-item:hover {
  background: rgba(63, 160, 245, 0.15);
  border-color: var(--primary-light);
  transform: scale(1.05);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-light) 0%,
    var(--primary-mid) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.5rem;
  color: var(--white);
}

.value-item h4 {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.value-item p {
  color: var(--text-secondary);
  font-size: 0.99rem;
  font-weight: 500;
  margin: 0;
}

/* ------------- SERVICES SECTION ----------------------- */
.services-section {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--dark-bg) 0%,
    #131820 50%,
    #0a1829 100%
  );
  overflow: hidden !important;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: linear-gradient(180deg, #171c25, #10151c);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-light);
  background: var();
}

.service-content {
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-content h4 {
  color: var(--white);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 12px;
}

.service-content p {
  color: #9aa4b2;
  font-size: 14px;
  line-height: 1.6;
  flex-grow: 1;
}

.service-link {
  color: var(--white);
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

.service-link span {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.service-card:hover .service-link span {
  transform: translateX(4px);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------------- STATISTICS SECTION ------------------- */

.stats-section {
  background: var(--white);
  padding: 80px 0;
  color: #fff;
  overflow: hidden !important;
}

.stat-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 380px;
  cursor: pointer;
}

.stat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.stat-card:hover img {
  transform: scale(1.08);
}

.stat-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1),
    rgba(10, 58, 120, 0.65)
  );
}

.stat-number {
  font-size: 38px;
  font-weight: 700;
}

.stat-label {
  font-size: 15px;
  color: #d1d1d1;
}

.stat-icon {
  position: absolute;
  right: 18px;
  bottom: 22px;
  background: #fff;
  color: var(--accent);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.1);
}

/* ------------------------- TESTIMONIAL SECTION ------------------------------- */

.testimonial-section {
  padding: 80px 0;
  background: radial-gradient(circle at top, #1a1f2e, var(--dark-bg));
  overflow: hidden !important;
}

.testimonial-header span {
  color: var(--primary-light);
  letter-spacing: 2px;
  font-size: 14px;
}

.testimonial-header h2 {
  font-size: 42px;
  font-weight: 600;
  margin-top: 10px;
}

.swiper {
  padding: 40px 0 60px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-card {
  background: var(--dark-secondary);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 35px;
  max-width: 420px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  transform: translateY(30px) scale(0.9);
  opacity: 0;
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.swiper-slide-active .testimonial-card {
  transform: translateY(0) scale(1.08);
  opacity: 1;
  border-color: var(--primary-light);
  box-shadow: 0 5px 40px rgba(63, 160, 245, 0.35);
}

.swiper-slide-prev .testimonial-card {
  transform: translateX(-40px) scale(0.92) rotateY(8deg);
  opacity: 0.45;
  filter: blur(1px);
}

.swiper-slide-next .testimonial-card {
  transform: translateX(40px) scale(0.92) rotateY(-8deg);
  opacity: 0.45;
  filter: blur(1px);
}

.testimonial-card .quote-icon,
.testimonial-card .testimonial-text,
.testimonial-card .testimonial-user {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

.swiper-slide-active .quote-icon {
  animation: fadeUp 0.6s ease forwards;
}

.swiper-slide-active .testimonial-text {
  animation: fadeUp 0.6s ease 0.15s forwards;
}

.swiper-slide-active .testimonial-user {
  animation: fadeUp 0.6s ease 0.3s forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.swiper-slide-active .testimonial-card * {
  opacity: 1;
  transform: translateY(0);
}

.quote-icon {
  font-size: 40px;
  color: var(--primary-light);
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #cbd5e1;
}

.testimonial-user {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-top: 1px solid var(--card-border);
  padding-top: 18px;
}

.testimonial-user img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--primary-light);
}

.testimonial-user h6 {
  margin: 0;
  font-size: 15px;
  color: var(--white);
}

.testimonial-user small {
  color: var(--text-secondary);
  font-size: 13px;
}

.swiper-button-next,
.swiper-button-prev {
  width: 45px;
  height: 45px;
  background: var(--dark-secondary);
  border-radius: 50%;
  color: var(--white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px;
}

.swiper-pagination-bullet {
  background: #445;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--primary-light);
  width: 10px;
  height: 10px;
}

/* ---------------------------- CLIENTELE SECTION ------------------------------ */
.clientele-section {
  padding: 60px 0;
  background: #f7f8fc;
  overflow: hidden !important;
}

.client-btn {
  background: #000;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  margin-bottom: 12px;
  color: #555;
}

.feature-list span {
  font-weight: 700;
  margin-right: 10px;
  color: var(--primary-light);
}

.logo-scroll-wrapper {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.logo-column {
  width: 160px;
  height: 420px;
  position: relative;
  overflow: hidden;
}

.blur-mask::before,
.blur-mask::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 80px;
  left: 0;
  z-index: 5;
  pointer-events: none;
}

.blur-mask::before {
  top: 0;
  background: linear-gradient(to bottom, #f7f8fc, transparent);
}

.blur-mask::after {
  bottom: 0;
  background: linear-gradient(to top, #f7f8fc, transparent);
}

.logo-track {
  position: absolute;
  width: 100%;
}

.logo-card {
  width: 150px;
  height: 150px;
  margin-bottom: 20px;
  background: #eaeefd;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.logo-card img {
  max-width: 70%;
  height: auto;
  display: block;
}

.logo-card:hover {
  transform: translateY(-6px) scale(1.05);
}

@keyframes scrollX {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* -------------------------------------------------------- FOOTER SECTION */
.footer-section {
  background: linear-gradient(
    135deg,
    var(--dark-bg) 0%,
    var(--dark-secondary) 50%,
    var(--shield-dark) 100%
  );
  padding: 80px 0px 20px;
  position: relative;
  overflow: hidden !important;
  border-top: 2px solid rgba(63, 160, 245, 0.2);
}

.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(63, 160, 245, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.footer-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(30, 100, 200, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.footer-content {
  position: relative;
  z-index: 1;
}

.footer-brand {
  margin-bottom: 50px;
  animation: fadeInUp 0.8s ease-out;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 25px;
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

.footer-logo:hover {
  transform: translateY(-5px);
  filter: brightness(1.1);
}

.footer-logo img {
  width: 120px;
  height: auto;
  display: block;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.8;
  color: #c3c4d4;
  max-width: 340px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.footer-heading {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-light), transparent);
  transition: width 0.3s ease;
}

.footer-column:hover .footer-heading::after {
  width: 100%;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}

.footer-links li:hover {
  transform: translateX(8px);
}

.footer-links a {
  color: #c3c4d4;
  text-decoration: none;
  font-size: 14px;
  transition:
    color 0.3s ease,
    text-shadow 0.3s ease;
  font-weight: 500;
  position: relative;
}

.footer-links a::before {
  content: "▸";
  margin-right: 10px;
  color: var(--primary-light);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-light);
  text-shadow: 0 0 10px rgba(63, 160, 245, 0.3);
}

.footer-links a:hover::before {
  opacity: 1;
}

.footer-contact {
  padding: 30px;
  background: rgba(20, 103, 176, 0.08);
  border: 1px solid rgba(63, 160, 245, 0.15);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.footer-contact:hover {
  background: rgba(20, 103, 176, 0.12);
  border-color: rgba(63, 160, 245, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(63, 160, 245, 0.1);
}

.footer-contact .footer-heading {
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: #c3c4d4;
  line-height: 1.6;
  align-items: flex-start;
}

.contact-item i {
  color: var(--primary-light);
  margin-top: 2px;
  font-size: 16px;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(108, 164, 218, 0.3);
  border-radius: 50%;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--primary-light);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s ease,
    height 0.3s ease;
  z-index: -1;
}

.social-icon:hover::before {
  width: 100%;
  height: 100%;
}

.social-icon:hover {
  color: var(--white);
  border-color: var(--primary-light);
  box-shadow: 0 0 20px rgba(63, 160, 245, 0.4);
  transform: translateY(-5px);
}

.social-icon i {
  font-size: 18px;
  position: relative;
  z-index: 1;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 40px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copy {
  color: #80829c;
  font-size: 13px;
  text-align: center;
  flex: 1 1 auto;
}

.footer-copy a {
  color: var(--primary-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-copy a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom .footer-social {
  flex: 1 1 auto;
  justify-content: center;
  gap: 12px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-column {
  animation: fadeInUp 0.8s ease-out;
}

.footer-column:nth-child(1) {
  animation-delay: 0.1s;
}

.footer-column:nth-child(2) {
  animation-delay: 0.2s;
}

.footer-column:nth-child(3) {
  animation-delay: 0.3s;
}

.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(20px);
}

.fade-in-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease-out;
}

/* ------------------------------------------------------ ABOUT US SECTION */

.breadcrumb-section {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 130px 0 110px;
  overflow: hidden;
}

.breadcrumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 58, 120, 0.8),
    rgba(15, 20, 25, 0.9)
  );
  z-index: 1;
}

.breadcrumb-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.breadcrumb-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 1px;
  background: linear-gradient(to right, var(--white), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.breadcrumb-nav {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.breadcrumb-nav a {
  color: var(--primary-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
  color: var(--white);
}

.breadcrumb-nav span {
  color: var(--text-secondary);
  font-size: 14px;
}

.breadcrumb-nav .active {
  color: var(--white);
  font-weight: 600;
}

.blog-breadcrumb .breadcrumb-title {
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.blog-breadcrumb .breadcrumb-nav {
  font-size: 14px;
  padding: 8px 18px;
  border-radius: 50px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ---------------------------------------------- OUR TEAM SECTION */
.team-section {
  padding: 80px 0;
  background: radial-gradient(circle at top, #1a1f2e, var(--dark-bg));
  overflow: hidden !important;
}

.team-title-wrapper {
  text-align: center;
  margin-bottom: 70px;
}

.team-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #d8d7dd;
  transition: all 0.4s ease;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.team-card:hover {
  transform: translateY(-12px);
}

.team-card img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.team-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 20px;
  border-radius: 18px;
  text-align: center;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(12px);
}

.team-info h5 {
  margin: 0;
  font-weight: 600;
  color: var(--white);
}

.team-info span {
  font-size: 14px;
  color: var(--primary-light);
}

/* ------------------------------------------------ SECTORS WE SERVE */
.sectors-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    rgba(63, 160, 245, 0.08),
    rgba(20, 103, 176, 0.05)
  );
  overflow: hidden !important;
}

.vertical-text {
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%) rotate(-90deg);
  font-size: 120px;
  font-weight: 700;
  letter-spacing: 8px;
  color: rgba(10, 58, 120, 0.08);
  pointer-events: none;
  user-select: none;
}

.sector-wrapper {
  padding-left: 120px;
}

.sector-card {
  background: var(--white);
  border-radius: 16px;
  padding: 26px 22px;
  border: 1px solid var(--primary-light);
  box-shadow: 0 18px 40px rgba(10, 58, 120, 0.1);
  transition: all 0.4s ease;
  height: 100%;
}

.sector-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(10, 58, 120, 0.2);
}

.sector-icon {
  width: 62px;
  height: 62px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.sector-icon i {
  font-size: 26px;
  color: var(--white);
}

.sector-card h6 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.sector-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.card-col:nth-child(2) {
  margin-top: 60px;
}

.card-col:nth-child(6) {
  margin-bottom: 60px;
}

.sector-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-mid);
  margin-bottom: 14px;
}

.sector-title {
  font-size: 38px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.sector-desc {
  font-size: 15px;
  text-align: justify;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 480px;
}

.sector-desc.highlight {
  color: var(--primary-dark);
  font-weight: 600;
}

.cta-btn {
  margin-top: 10px;
  padding: 14px 36px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--primary-mid), var(--primary-light));
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  border: none;
  transition: all 0.4s ease;
  box-shadow: 0 12px 30px rgba(20, 103, 176, 0.4);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(20, 103, 176, 0.6);
}

/* CONTACT PAGE SECTION */
.contact-section {
  padding: 80px 0;
  background: #f8fafc;
  overflow: hidden !important;
}

.contact-form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 20px 50px rgba(10, 58, 120, 0.12);
}

.form-label {
  font-size: 13px;
  color: var(--text-primary);
  font-weight: 500;
}

.form-control,
.input-group-text {
  border-radius: 10px;
  border: 1px solid #e3ebf6;
  padding: 10px 14px;
  font-size: 14px;
}

.form-control:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 0.2rem rgba(63, 160, 245, 0.2);
}

.send-btn {
  background: var(--primary-dark);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 14px;
  transition: 0.3s;
}

.send-btn:hover {
  background: var(--primary-mid);
}

.contact-info-card {
  background: linear-gradient(160deg, var(--primary-dark), var(--shield-dark));
  color: var(--white);
  border-radius: 18px;
  padding: 35px;
  height: 100%;
}

.contact-title {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-icon {
  background: rgba(255, 255, 255, 0.15);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.contact-item small {
  color: var(--text-secondary);
  font-size: 12px;
}

.contact-item p {
  margin: 0;
  font-size: 14px;
}

.info-divider {
  border-color: rgba(255, 255, 255, 0.2);
  margin: 30px 0;
}

.social-links span {
  font-size: 13px;
  color: var(--text-secondary);
}

.social-links .icons {
  margin-top: 12px;
  display: flex;
  gap: 16px;
  font-size: 18px;
}

.social-links i {
  cursor: pointer;
  transition: 0.3s;
}

.social-links i:hover {
  color: var(--primary-light);
}

/* ------------------------------------------------------- Blogs Section */
.blogs-section {
  padding: 80px 0;
  background: #f7f9fc;
  overflow: hidden !important;
}

.blogs-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-primary);
}

.blogs-header p {
  max-width: 650px;
  margin: 15px auto 0;
  color: #6b7280;
  font-size: 16px;
}

.blogs-mobile-btn {
  display: none;
}

.blog-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(20, 103, 176, 0.18);
}

.blog-img {
  position: relative;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover img {
  transform: scale(1.07);
}

.blog-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-mid));
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
}

.blog-content {
  padding: 22px;
}

.blog-content h5 {
  font-size: 17px;
  font-weight: 600;
  color: #111827;
  line-height: 1.4;
  margin-bottom: 10px;
}

.blog-content p {
  font-size: 14px;
  color: #8e949f;
  margin-bottom: 0;
}

/* ------------------------------------------------- SERVICES DETAILS PAGE */

.service-details-section {
  padding: 80px 0;
  background: #f7f9fc;
}

.sidebar-card {
  background: var(--white);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.sidebar-title {
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 20px;
  position: relative;
}

.sidebar-title::after {
  content: "";
  width: 40px;
  height: 3px;
  background: var(--primary-light);
  display: block;
  margin-top: 6px;
}

.category-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  margin-bottom: 10px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-primary);
  background: #f3f7fd;
  transition: 0.3s;
  font-weight: 500;
}

.category-list a:hover {
  background: var(--primary-light);
  color: #fff;
}

.download-btn {
  width: 100%;
  padding: 12px;
  background: var(--primary-dark);
  color: #fff;
  border-radius: 10px;
  border: none;
  margin-bottom: 12px;
  font-weight: 500;
}

.feature-checklist {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary-dark);
}

.feature-checklist li i {
  font-size: 18px;
  color: var(--primary-light);
  background: rgba(63, 160, 245, 0.12);
  border-radius: 50%;
  padding: 6px;
  box-shadow: 0 6px 16px rgba(20, 103, 176, 0.25);
}

.call-card {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-mid));
  color: #fff;
  border-radius: 16px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.call-card i {
  font-size: 42px;
  margin-bottom: 15px;
}

.call-card a {
  display: inline-block;
  background: #fff;
  color: var(--primary-dark);
  padding: 10px 25px;
  border-radius: 30px;
  margin-top: 15px;
  text-decoration: none;
  font-weight: 600;
}

.service-title h4 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 20px;
  color: linear-gradient(135deg, var(--primary-light), var(--primary-mid));
}

.service-img {
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.benefit-card {
  background: #d4e4fb;
  border-radius: 14px;
  padding: 25px;
  height: 100%;
  transition: 0.3s;
}

.benefit-card:hover {
  transform: translateY(-6px);
  background: #fff;
}

.benefit-card i {
  font-size: 34px;
  color: var(--primary-mid);
}

.accordion-button {
  font-weight: 600;
  color: var(--primary-dark);
}

.accordion-button:not(.collapsed) {
  background: var(--primary-light);
  color: #fff;
}

/* ----------------------------------- BLOG DETAILS PAGE --------------------------- */

.featured-image-section {
  background: linear-gradient(
    180deg,
    rgba(63, 160, 245, 0.08),
    rgba(255, 255, 255, 1)
  );
}

.featured-image-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 50px;
  box-shadow: 0 20px 50px rgba(10, 58, 120, 0.15);
}

.featured-image {
  width: 100%;
  transition: transform 0.3s ease;
}

.featured-image-wrapper:hover .featured-image {
  transform: scale(1.03);
}

.image-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 35px 30px;
  background: linear-gradient(180deg, transparent, rgba(10, 58, 120, 0.9));
  color: var(--white);
  font-size: 0.95rem;
}

.blog-content-section {
  padding: 80px 0;
  background: var(--white);
}

.blog-details-box {
  background: #ffffff;
  padding: 2rem 1.8rem;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(10, 58, 120, 0.09);
}

.blog-details-content {
  margin: 0 auto;
}

.blog-details-content p + p {
  margin-top: 1.2rem;
}

.blog-details-content ul,
.blog-details-content ol {
  margin: 1.8rem 0;
  padding-left: 1.8rem;
}

.blog-details-content ul li::marker {
  color: var(--primary-mid);
  font-weight: 700;
}

.blog-details-content strong {
  color: var(--primary-dark);
  font-weight: 600;
}

.blog-details-content blockquote {
  background: linear-gradient(
    135deg,
    rgba(63, 160, 245, 0.08),
    rgba(20, 103, 176, 0.05)
  );
  border-left: 5px solid var(--primary-mid);
  padding: 2rem 2.2rem;
  border-radius: 12px;
  margin: 3rem 0;
  font-size: 1.15rem;
  color: var(--primary-dark);
}

.blog-details-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2.5rem 0;
  font-size: 0.95rem;
}

.blog-details-content th,
.blog-details-content td {
  padding: 14px;
  border: 1px solid rgba(20, 103, 176, 0.2);
}

.blog-details-content th {
  background: rgba(63, 160, 245, 0.1);
  color: var(--primary-dark);
  font-weight: 600;
}

.blog-details-content a {
  color: var(--primary-mid);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid rgba(63, 160, 245, 0.3);
  transition: 0.3s;
}

.blog-details-content a:hover {
  color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.sticky-sidebar {
  position: sticky;
  top: 90px;
}

.blog-sidebar {
  background: var(--white);
  border: 1px solid rgba(20, 103, 176, 0.2);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(10, 58, 120, 0.08);
}

.-blog-sidebar h5 {
  color: var(--primary-dark);
  border-bottom: 2px solid var(--primary-light);
  padding-bottom: 1rem;
}

.toc-link {
  display: block;
  color: var(--text-primary);
  padding: 0.6rem 0;
  text-decoration: none;
  transition: 0.3s;
}

.toc-link:hover {
  color: var(--primary-mid);
}

.related-articles-section {
  padding: 80px 0;
  background: rgba(63, 160, 245, 0.04);
  border-top: 1px solid rgba(20, 103, 176, 0.15);
}

.section-title {
  color: var(--primary-dark);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  position: relative;
}

.article-card {
  background: var(--white);
  border: 1px solid rgba(20, 103, 176, 0.18);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(63, 160, 245, 0.25);
  border-color: var(--primary-light);
}

.article-image {
  position: relative;
  height: 200px;
  background: rgba(63, 160, 245, 0.08);
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.article-card:hover .article-image img {
  transform: scale(1.05);
}

.article-category {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary-mid);
  color: var(--white);
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.article-card h5 {
  padding: 1.5rem 1.5rem 0.5rem;
  margin: 0;
  font-weight: 700;
  line-height: 1.4;
}

.article-card h5 a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.article-card h5 a:hover {
  color: var(--primary-mid);
}

.article-card p {
  padding: 0 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.article-meta {
  margin-top: auto;
  padding: 1rem 1.5rem 1.5rem;
  display: flex;
  justify-content: space-between;
  color: var(--text-secondary);
  font-size: 0.85rem;
  border-top: 1px solid rgba(20, 103, 176, 0.15);
}

/* -------------------------------- RESPONSIVE DESIGN ----------------------------- */
@media (max-width: 991px) {
  body {
    overflow-x: hidden !important;
  }

  .services-dropdown:hover .services-menu {
    opacity: 1;
    transform: translateY(0);
    display: block;
  }

  .hero-section {
    height: auto;
    padding-bottom: 140px;
  }

  .hero-content {
    padding-top: 120px;
  }

  .hero-section h1 {
    font-size: 36px;
  }

  .hero-section p {
    font-size: 16px;
    max-width: 100%;
  }

  /* .hero-cards-container {
    right: 20px !important;
    bottom: 25px !important;
    gap: 14px;
  } */

  .hero-card {
    width: 150px;
    height: 100px;
  }

  .who-we-are-section {
    padding: 70px 0;
  }

  .who-content h2 {
    font-size: 34px;
  }

  .who-content p {
    font-size: 15px;
  }

  .image-grid {
    gap: 18px;
  }

  .image-card {
    height: 200px;
  }

  .difference-section {
    min-height: auto;
    padding: 70px 0;
  }

  .diff-title {
    font-size: 34px;
  }

  .section-desc {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .point-card {
    gap: 20px;
    padding: 14px 18px;
  }

  .point-card h6 {
    font-size: 17px;
  }

  .visual-wrapper {
    max-width: 100%;
    margin: 0 auto;
  }

  .card-1 {
    left: -20px;
    top: 8%;
  }

  .card-2 {
    right: -20px;
    bottom: 6%;
  }

  .why-choose-section {
    padding: 70px 0;
    min-height: auto;
  }

  .why-choose-section .sticky-top {
    position: relative !important;
    top: auto !important;
    margin-bottom: 40px;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .section-header p {
    font-size: 15px;
  }

  .card-content.horizontal-card {
    gap: 22px;
    padding: 18px 20px;
  }

  .horizontal-card .icon-circle {
    min-width: 56px;
    min-height: 56px;
    font-size: 24px;
  }

  .services-section {
    padding: 70px 0;
    min-height: auto;
  }

  .services-header {
    margin-bottom: 40px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .service-content {
    padding: 24px;
  }

  .service-content h4 {
    font-size: 18px;
  }

  .blogs-section {
    padding: 70px 0;
  }

  /* .blogs-section .d-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  } */

  .blogs-section h2 {
    font-size: 34px;
  }

  .hero-btn {
    align-self: flex-start;
  }

  .blog-img img {
    height: 200px;
  }

  .blog-content {
    padding: 20px;
  }

  .blog-content h5 {
    font-size: 16px;
  }

  .testimonial-section {
    padding: 65px 0;
  }

  .diff-title {
    font-size: 34px;
  }

  .testimonial-card {
    max-width: 360px;
    padding: 30px;
  }

  .swiper-slide-prev .testimonial-card,
  .swiper-slide-next .testimonial-card {
    transform: scale(0.96);
    opacity: 0.55;
    filter: blur(0.5px);
  }

  .swiper-slide-active .testimonial-card {
    transform: scale(1.03);
  }

  .clientele-section {
    padding: 50px 0;
  }

  .logo-scroll-wrapper {
    gap: 12px;
  }

  .logo-column {
    width: 130px;
    height: 360px;
  }

  .logo-card {
    width: 120px;
    height: 120px;
  }

  .logo-card img {
    max-width: 65%;
  }

  .mission-vision-section {
    padding: 65px 0;
  }

  .mv-title h2 {
    font-size: 2.8rem;
  }

  .mv-title p {
    font-size: 1.05rem;
  }

  .cards-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .mission-card {
    padding: 40px 30px;
  }

  .card-title {
    font-size: 1.6rem;
  }

  .core-values-section h3 {
    font-size: 1.9rem;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sectors-section {
    padding: 60px 0;
  }

  /* Stack columns */
  .sectors-section .row {
    row-gap: 50px;
  }

  /* Cards grid spacing */
  .card-col:nth-child(2),
  .card-col:nth-child(6) {
    margin: 0;
  }

  /* Reduce hover lift */
  .sector-card:hover {
    transform: translateY(-6px);
  }

  /* Right content */
  .sector-wrapper {
    padding-left: 0;
    text-align: center;
  }

  .vertical-text {
    display: none;
  }

  .sector-desc {
    max-width: 100%;
    text-align: center;
    margin: 0 auto 20px;
  }

  .cta-btn {
    margin-top: 20px;
  }

  .service-details-section .row {
    display: flex;
    flex-direction: column-reverse;
  }

  .service-details-section .sticky-side {
    position: static !important;
    top: auto !important;
    margin-top: 40px;
  }

  .service-details-section .col-lg-4 {
    /* margin-top: 30px; */
  }

  .footer-section {
    padding: 60px 0 30px;
  }

  .footer-heading {
    font-size: 15px;
  }

  .footer-tagline {
    font-size: 13px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom .footer-social {
    order: 3;
    width: 100%;
  }
}

@media (max-width: 576px) {
  body {
    overflow-x: hidden !important;
  }

  .hero-section {
    min-height: 80vh;
    /*text-align: center;*/
    padding-bottom: 180px;
  }

  .hero-content {
    padding-top: 130px;
  }

  .hero-badge {
    font-size: 14px;
  }

  .hero-section h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-section p {
    font-size: 15px;
    margin: 0 auto;
  }

  .hero-btn {
    padding: 11px 22px;
    font-size: 15px;
  }

  .hero-cards-container {
    display: flex;
    justify-content: center !important;
    /* margin: auto 0 !important; */
    /* position: absolute !important; */
    left: 0;
    right: 0;
    bottom: 50px;
    /*transform: translateX(-50%);*/
    gap: 12px;
  }

  .hero-card {
    width: 110px;
    height: 80px;
    border-radius: 14px;
  }

  .who-we-are-section {
    padding: 50px 0;
    /* text-align: center; */
  }

  .section-tag {
    font-size: 13px;
    padding: 5px 14px;
  }

  .who-content h2 {
    font-size: 26px;
    line-height: 1.35;
  }

  .who-content p {
    font-size: 14px;
  }

  .who-content .highlight {
    text-align: left;
    font-size: 14px;
  }

  .image-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    /* margin-top: 25px; */
  }

  .image-card {
    height: 200px;
    border-radius: 16px;
  }

  .image-card h5 {
    font-size: 15px;
  }

  .difference-section {
    padding: 50px 0;
  }

  .content-wrapper {
    text-align: center;
  }

  .section-badge {
    margin-bottom: 16px;
  }

  .badge-text {
    font-size: 13px;
    padding: 6px 14px;
  }

  .diff-title {
    font-size: 26px;
    line-height: 1.25;
  }

  .section-desc {
    font-size: 14px;
    margin-bottom: 28px;
  }

  /* Stack cards cleanly */
  .difference-points {
    gap: 18px;
  }

  .point-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    transform: none !important;
  }

  .diff-icon-wrapper {
    margin-bottom: 10px;
  }

  .point-card h6 {
    font-size: 16px;
  }

  .point-card p {
    font-size: 13px;
  }

  .visual-wrapper {
    /* margin-top: 40px; */
  }

  .image-container {
    border-radius: 20px;
  }

  .floating-card {
    display: none;
  }

  .decoration-1,
  .decoration-2 {
    opacity: 0.4;
  }

  .why-choose-section {
    padding: 50px 0;
    overflow: hidden !important;
  }

  /* Center image card */
  .why-image-card {
    padding: 6px;
    border-radius: 18px;
  }

  .image-badge {
    font-size: 13px;
    padding: 10px 14px;
    bottom: 18px;
    left: 18px;
  }

  .image-badge i {
    font-size: 16px;
  }

  /* Section header */
  .section-header {
    text-align: center;
  }

  .section-header h2 {
    font-size: 26px;
    line-height: 1.3;
  }

  .section-header p {
    font-size: 14px;
  }

  /* Cards stack vertically */
  .card-content.horizontal-card {
    flex-direction: column;
    text-align: center;
    gap: 14px;
    padding: 18px;
  }

  .horizontal-card .icon-circle {
    margin: 0 auto;
  }

  .horizontal-card .card-title {
    font-size: 15px;
  }

  .horizontal-card .card-description {
    font-size: 13px;
  }

  .services-section {
    padding: 60px 0;
  }

  .services-header {
    margin-bottom: 32px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-card {
    border-radius: 14px;
  }

  .service-content {
    padding: 20px;
    text-align: center;
  }

  .service-content h4 {
    font-size: 17px;
  }

  .service-content p {
    font-size: 13px;
  }

  .service-link {
    justify-content: center;
  }

  .service-image img {
    max-height: 220px;
  }

  .blogs-section {
    padding: 50px 0;
  }

  /* .blogs-section {
    text-align: center;
    align-items: center;
  } */

  .blogs-section h2 {
    font-size: 26px;
    line-height: 1.3;
  }

  .blogs-section .hero-btn {
    display: none !important;
  }

  /* Show bottom button */
  .blogs-mobile-btn {
    width: 60%;
    padding: 14px 20px;
    font-size: 15px;
    border-radius: 14px;
    display: block;
    /* margin-top: 30px; */
    text-align: center;
    background: var(--text-secondary);
  }

  .blog-card {
    border-radius: 16px;
  }

  .blog-img img {
    height: 180px;
  }

  .blog-content {
    padding: 18px;
    text-align: left;
  }

  .blog-content h5 {
    font-size: 15px;
  }

  .blog-content p {
    font-size: 13px;
  }

  .testimonial-section {
    padding: 50px 0;
  }

  .diff-title {
    font-size: 28px;
    line-height: 1.3;
  }

  .swiper {
    padding: 25px 0 45px;
  }

  .testimonial-card {
    max-width: 90%;
    padding: 25px;
    transform: translateY(0) scale(1);
    opacity: 1;
  }

  /* Disable heavy 3D effects on mobile */
  .swiper-slide-prev .testimonial-card,
  .swiper-slide-next .testimonial-card {
    transform: scale(0.95);
    opacity: 0.6;
    filter: none;
  }

  .swiper-slide-active .testimonial-card {
    transform: scale(1);
  }

  .testimonial-text {
    font-size: 14px;
  }

  .testimonial-user {
    /* justify-content: flex-start; */
  }

  /* Smaller arrows */
  .swiper-button-next,
  .swiper-button-prev {
    width: 36px;
    height: 36px;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 14px;
  }

  .clientele-section {
    padding: 40px 0;
  }

  .logo-scroll-wrapper {
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
  }

  /* Convert columns to horizontal rows */
  .logo-column {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
  }

  /* Horizontal scrolling track */
  .logo-track {
    position: relative;
    display: flex;
    flex-direction: row;
    width: max-content;
    gap: 20px;
    animation: scrollX 22s linear infinite;
  }

  /* Logo sizing */
  .logo-card {
    width: 110px;
    height: 110px;
    margin: 0;
    flex-shrink: 0;
  }

  .logo-card img {
    max-width: 65%;
  }

  /* Remove vertical blur fade */
  .blur-mask::before,
  .blur-mask::after {
    display: none;
  }

  /* Second row moves opposite direction */
  #scrollDown .logo-track {
    animation-direction: reverse;
    animation-duration: 18s;
  }

  .mission-vision-section {
    padding: 50px 0;
  }

  .mv-title {
    margin-bottom: 45px;
  }

  .mv-title h2 {
    font-size: 2.2rem;
    letter-spacing: 1px;
  }

  .mv-title p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Cards stack */
  .cards-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .mission-card {
    padding: 35px 25px;
  }

  /* Reduce hover jump on mobile */
  .mission-card:hover {
    transform: translateY(-6px);
  }

  .card-icon {
    width: 65px;
    height: 65px;
    font-size: 1.6rem;
    margin-bottom: 20px;
  }

  .card-title {
    font-size: 1.4rem;
  }

  .card-description {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .card-footer-text {
    font-size: 0.95rem;
  }

  /* Core values */
  .core-values-section {
    padding-top: 45px;
  }

  .core-values-section h3 {
    font-size: 1.6rem;
    margin-bottom: 35px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .value-item {
    padding: 25px;
  }

  .value-item:hover {
    transform: none;
  }

  .sectors-section {
    padding: 50px 0;
  }

  /* Cards */
  .sector-card {
    padding: 22px 18px;
  }

  .sector-card h6 {
    font-size: 15px;
  }

  .sector-card p {
    font-size: 13px;
  }

  .sector-icon {
    width: 54px;
    height: 54px;
  }

  .sector-icon i {
    font-size: 22px;
  }

  .card-col:nth-child(2) {
    margin: 20px 0px 0 !important;
  }

  .card-col:nth-child(6) {
    margin: 0;
  }

  /* Right content */
  .sector-wrapper {
    padding-left: 0;
    text-align: center;
  }

  .vertical-text {
    display: none;
  }

  .sector-title {
    font-size: 28px;
  }

  .sector-desc {
    font-size: 14px;
    line-height: 1.7;
    text-align: center;
    max-width: 100%;
  }

  .cta-btn {
    padding: 12px 30px;
    font-size: 14px;
    margin-bottom: 30px;
  }

  .sectors-section .row {
    flex-direction: column-reverse !important;
    row-gap: 0;
  }

  .team-section {
    padding: 50px 0;
  }

  .breadcrumb-section {
    padding: 120px 0 70px;
  }

  .breadcrumb-title {
    font-size: 32px;
    letter-spacing: 0.5px;
  }

  .breadcrumb-nav {
    padding: 8px 14px;
    gap: 6px;
    justify-content: center;
  }

  .breadcrumb-nav a,
  .breadcrumb-nav span {
    font-size: 13px;
    white-space: normal;
  }

  .breadcrumb-nav .active {
    display: block;
    width: 100%;
  }

  .blog-breadcrumb .breadcrumb-title {
    font-size: 22px;
    line-height: 1.2;
  }

  .blog-breadcrumb .breadcrumb-nav {
    font-size: 12px;
    padding: 6px 12px;
  }

  .stats-section {
    padding: 50px 0;
  }

  .service-details-section {
    padding: 50px 0;
  }

  .service-details-section .row {
    flex-direction: column-reverse;
  }

  .service-details-section .sticky-side {
    position: static !important;
    top: auto !important;
    margin-top: 32px;
  }

  .blog-content-section {
    padding: 50px 0;
  }

  #blog-content .row {
    flex-direction: column-reverse;
  }

  /* Disable sticky on mobile */
  .sticky-sidebar {
    position: static !important;
    top: auto !important;
    margin-top: 0;
  }

  .blog-details-content p {
    text-align: justify;
  }

  .sidebar-card {
    padding: 1.5rem;
  }

  .featured-image-wrapper {
    margin-bottom: 30px;
  }

  .related-articles-section {
    padding: 50px 0;
  }

  .contact-section {
    padding: 50px 0;
  }

  .footer-section {
    padding: 40px 0 20px;
  }

  .footer-brand {
    margin-bottom: 35px;
  }

  .footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 20px 0;
  }

  .footer-heading {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .footer-tagline {
    font-size: 12px;
    max-width: 100%;
  }

  .footer-contact {
    padding: 20px;
  }

  .footer-copy {
    font-size: 12px;
  }

  .footer-logo img {
    width: 100px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-section::before,
  .footer-section::after {
    display: none;
  }
}

@media (hover: none) {
  .hero-card:hover {
    transform: none;
    box-shadow: none;
  }

  .image-card:hover {
    transform: none;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.35);
  }

  .image-card:hover img {
    transform: none;
  }

  .point-card:hover {
    transform: none;
    box-shadow: none;
  }

  .point-card:hover .icon {
    transform: none;
  }

  .floating-card:hover {
    transform: none;
  }

  .card-item:hover .horizontal-card {
    transform: none;
    box-shadow:
      0 20px 50px rgba(10, 58, 120, 0.15),
      inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  }
}
