/* ======================================================
  ROOT / BASE
====================================================== */
:root {
  --bg: #ffffff;
  --text: #0b1220;
  --muted: #5a677a;
  --border: rgba(10, 20, 40, 0.12);

  --dark: rgba(10, 14, 20, 0.55);
  --darkSolid: rgba(10, 14, 20, 0.9);

  --a: #f5b301; /* gold */
  --b: #479eb9; /* pink/red */
  --c: #457bd3; /* blue */

  --radius: 18px;
  --shadow: 0 16px 55px rgba(0, 0, 0, 0.25);
  --container: 1180px;
  --speed: 0.25s;
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  font-family:
    Inter,
    system-ui,
    Segoe UI,
    Arial;
  background: var(--bg);
  color: var(--text);
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
}
.section {
  padding: 50px 0;
}

/* ======================================================
  HEADER
====================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--dark);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 142, 28, 0.08);
  transition:
    background var(--speed) ease,
    box-shadow var(--speed) ease;
}
.header.scrolled {
  background: var(--darkSolid);
  box-shadow: var(--shadow);
}

.header__inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
}
.logo__img {
  height: 46px;
  width: auto;
  object-fit: contain;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
}
.nav__panel {
  display: flex;
  align-items: center;
  gap: 26px;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
}
.nav__panel {
  display: flex;
  align-items: center;
  gap: 26px;
}

/* Links */
.nav__link,
.nav__dropbtn {
  color: #ffffff; /* pure white default */
  font-weight: 650;
  padding: 10px 6px;
  opacity: 0.92;
  position: relative;
  transition:
    color 0.25s ease,
    opacity var(--speed) ease,
    transform var(--speed) ease;
}

/* Hover */
.nav__link:hover,
.nav__dropbtn:hover {
  color: #f5b301; /* gold on hover */
  opacity: 1;
  transform: translateY(-1px);
}

/* Active */
.nav__link.active {
  color: #eaf0ff;
  opacity: 1;
}

/* Underline hover */
.nav__link::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 2px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--c),
    var(--b),
    transparent
  );
  opacity: 0;
  transform: translateY(4px);
  transition: 0.25s ease;
}

.nav__link:hover::after,
.nav__link.active::after {
  opacity: 1;
  transform: translateY(0);
}

/* CTA */
.nav__cta {
  margin-left: 6px;
  padding: 10px 14px;
  border-radius: 12px;
  color: #fff;
  font-weight: 500;
  background: linear-gradient(90deg, var(--c), var(--b));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(255, 45, 85, 0.15);
  transition:
    transform var(--speed) ease,
    box-shadow var(--speed) ease;
}
.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(59, 130, 246, 0.18);
}

/* Hamburger */
/* Replace hamburger with vertical dots */
.nav__toggle {
  width: 44px;
  height: 44px;
  display: none;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  transition: 0.25s ease;
}

.nav__toggle:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #f5b301;
}
.nav__toggle.active {
  color: #f5b301;
  transform: rotate(90deg);
}

.nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #eaf0ff;
  border-radius: 99px;
}

/* ======================================================
  DROPDOWN BUTTON (Solution)
====================================================== */
.nav__dropdown {
  position: relative;
}

/* Remove default button background (white box fix) */
.nav__dropbtn {
  background: transparent !important;
  border: 0 !important;
  outline: none;
  box-shadow: none;
  color: #eaf0ff !important;
  opacity: 0.92;
  font: inherit;
  line-height: inherit;
  cursor: pointer;
  padding: 10px 6px;
  -webkit-text-fill-color: #eaf0ff;
  font-weight: bold;
}
.nav__dropdown:hover .nav__dropbtn,
.nav__dropdown.open .nav__dropbtn {
  color: var(--a) !important;
  -webkit-text-fill-color: var(--a);
  opacity: 1;
}

/* ======================================================
  DROPDOWN BASE PANEL
====================================================== */
.drop {
  position: absolute;
  top: 64px;

  left: 0; /* ✅ anchor from Solution to the right */
  right: auto; /* ✅ remove right-anchor */

  padding: 0;
  border-radius: 16px;

  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.45);

  display: none;
  z-index: 99999;
  overflow: hidden;
}
.nav__dropdown.open .drop {
  display: block;
}

/* ======================================================
  MEGA DROPDOWN (Tabs + Panels)
  - Default: ONLY LEFT tabs visible (compact width)
  - After selection: expands and shows right panels
====================================================== */
.drop--mega {
  width: 320px; /* compact (tabs only) */
  max-width: 92vw;
  max-height: 420px;
  transition: width 0.25s ease;
}

/* Expand after selection */
.drop--mega.has-selection {
  width: min(760px, 88vw);
}

/* Mega layout */
.mega {
  display: grid;
  grid-template-columns: 1fr; /* default only left */
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
}

/* After selection, show 2 columns */
.drop--mega.has-selection .mega {
  grid-template-columns: 240px 1fr;
}

/* Left tabs */
.mega__tabs {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

/* Tab button */
.mega__tab {
  text-align: left;
  width: 100%;
  padding: 11px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}
.mega__tab:hover {
  transform: translateX(2px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.16);
}
.mega__tab.is-active {
  background: #0f66ff;
  border-color: rgba(15, 102, 255, 0.5);
  box-shadow: 0 10px 24px rgba(15, 102, 255, 0.18);
}

/* Right panels container (hidden until selection) */
.mega__panels {
  padding: 14px;
  max-height: 420px;
  overflow: auto;

  display: none; /* hidden until selection */
}
.drop--mega.has-selection .mega__panels {
  display: block;
}

/* Panels */
.mega__panel {
  display: none;
}
.mega__panel.is-active {
  display: block;
}

/* Right grid: 2 items per row desktop/tablet, 1 on small mobile */
.mega__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
  align-items: start;
}

/* Right item */
.mega__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.mega__item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

/* Icon + title */
.mega__icon {
  margin-right: 10px;
}
.mega__icon i {
  font-size: 15px;
  width: 20px;
  text-align: center;
  color: #ffffff;
  transition: 0.2s ease;
}
.mega__item:hover .mega__icon i {
  transform: scale(1.1);
}

.mega__title {
  font-size: 15px;
  line-height: 1.2;
}

/* scrollbar */
.mega__panels {
  scrollbar-width: thin;
}
.mega__panels::-webkit-scrollbar {
  width: 8px;
}
.mega__panels::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}
.mega__panels::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
}

/* ======================================================
  PREMIUM MEGA DROPDOWN ANIMATIONS (ADD AT END)
  - Keeps your current responsive/layout exactly same
====================================================== */

/* 1) Smooth dropdown open/close (fade + lift + subtle scale) */
.drop {
  transform-origin: top left; /* since you anchor with left:0 */
  transform: translateY(10px) scale(0.985);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.22s ease,
    transform 0.28s cubic-bezier(0.2, 0.9, 0.2, 1),
    visibility 0s linear 0.22s;
}

.nav__dropdown.open .drop {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
  pointer-events: auto;

  transition:
    opacity 0.18s ease,
    transform 0.3s cubic-bezier(0.2, 0.9, 0.2, 1),
    visibility 0s;
}

/* 2) Premium expand when a tab is selected */
.drop--mega {
  transition:
    width 0.3s cubic-bezier(0.2, 0.9, 0.2, 1),
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.drop--mega.has-selection {
  box-shadow: 0 28px 85px rgba(0, 0, 0, 0.55);
  border-color: rgba(255, 255, 255, 0.14);
}

/* 3) RIGHT panel container reveal (when selection happens) */
.mega__panels {
  opacity: 0;
  transform: translateX(10px);
  transition:
    opacity 0.2s ease,
    transform 0.28s cubic-bezier(0.2, 0.9, 0.2, 1);
}

/* only when has-selection (you already set display:block there) */
.drop--mega.has-selection .mega__panels {
  opacity: 1;
  transform: translateX(0);
}

/* 4) Panel switch animation (fade + slight slide) */
.mega__panel {
  opacity: 0;
  transform: translateY(8px);
}

.mega__panel.is-active {
  animation: panelIn 0.26s cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 5) Tab premium feedback (glow + micro “press”) */
.mega__tab {
  transition:
    transform 0.18s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.25s ease;
}

.mega__tab:active {
  transform: translateX(2px) scale(0.99);
}

.mega__tab.is-active {
  position: relative;
}

.mega__tab.is-active::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: -6px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--c),
    var(--a),
    transparent
  );
  opacity: 0.85;
  filter: blur(0.2px);
}

/* 6) Item hover “premium” (smooth lift + soft glow) */
.mega__item {
  transition:
    background 0.18s ease,
    transform 0.2s cubic-bezier(0.2, 0.9, 0.2, 1),
    box-shadow 0.22s ease;
}

.mega__item:hover {
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.mega__item:active {
  transform: translateY(0);
  box-shadow: none;
}

/* 7) Optional: reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .drop,
  .nav__dropdown.open .drop,
  .drop--mega,
  .mega__panels,
  .mega__panel.is-active,
  .mega__tab,
  .mega__item {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
}
/* ======================================================
  MOBILE MENU SCROLL LOCK FIX
====================================================== */

/* Jab mobile menu open ho to background page lock ho */
body.menu-open {
  overflow: hidden;
  touch-action: none;
}

/* iPhone / mobile browsers ke liye strong lock */
body.menu-open.is-fixed {
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
}

/* ======================================================
  End Header
====================================================== */
/* ======================================================
  HERO SECTION
====================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  padding-top: 78px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero__bgImg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  filter: saturate(1.1);
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.3));
  z-index: 1;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      1200px 600px at 20% 20%,
      rgba(59, 130, 246, 0.18),
      transparent 60%
    ),
    radial-gradient(
      900px 600px at 80% 40%,
      rgba(255, 45, 85, 0.15),
      transparent 60%
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.04) 0 1px,
      transparent 1px 80px
    );
  opacity: 0.55;
  z-index: 2;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  align-items: center;
  padding: 64px 0;
  z-index: 3;
}

/* Content */
.hero__kicker {
  margin: 0 0 14px;
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}
.hero__title {
  margin: 0 0 14px;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1.02;
  text-shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
}
.hero__title span {
  color: var(--a);
}
.hero__sub {
  margin: 0 0 22px;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.75;
  font-size: 18px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-weight: normal !important;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 500; /* ya 400 */
  transition:
    transform var(--speed) ease,
    box-shadow var(--speed) ease,
    opacity var(--speed) ease;
}
.btn--primary {
  color: #fff;
  background: linear-gradient(90deg, var(--c), var(--b));
  box-shadow: 0 18px 55px rgba(59, 130, 246, 0.18);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 65px rgba(255, 45, 85, 0.18);
}
.btn--ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover {
  transform: translateY(-2px);
  opacity: 1;
}

/* ======================================================
  RESPONSIVE Hero
====================================================== */
@media (max-width: 980px) {
  .nav__toggle {
    display: flex;
  }

  .nav__panel {
    position: fixed;
    top: 78px;
    right: 12px;
    left: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(10, 14, 20, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.35);
  }
  .nav__panel.open {
    display: flex;
  }
  .nav__cta {
    margin-left: 0;
    text-align: center;
    padding: 12px 14px;
  }

  /* Mega dropdown becomes inline below Solution inside mobile menu */
  .drop {
    position: static;
    width: auto;
    max-width: none;
    margin-top: 8px;
  }
  .drop--mega {
    width: 100%;
    max-height: 70vh;
  }
  .drop--mega.has-selection {
    width: 100%;
  }

  .mega {
    grid-template-columns: 1fr;
  }
  .drop--mega.has-selection .mega {
    grid-template-columns: 1fr;
  }

  /* tabs vertical for mobile */
  .mega__tabs {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  /* grid single column for mobile */
  .mega__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    padding: 54px 0 78px;
  }
  .hero__card {
    display: none;
  }
  .hero__sub {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .mega__grid {
    grid-template-columns: 1fr;
  }
}
/* ======================================================
   HERO + CARD RESPONSIVE (KEEP CARD VISIBLE)
   Paste at END of style.css
====================================================== */

.hero__content,
.hero__card {
  min-width: 0;
}

/* Tablet / Small laptop: stack + keep card visible */
@media (max-width: 1100px) {
  .hero__inner {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .hero__card {
    width: 100% !important;
    max-width: 640px !important; /* premium width */
    margin-top: 10px !important;
  }
}

/* Tablet + Mobile: stack, card full width */
@media (max-width: 980px) {
  .hero {
    min-height: auto !important;
    align-items: flex-start !important;
  }

  .hero__inner {
    grid-template-columns: 1fr !important;
    padding: 44px 0 56px !important;
  }

  .hero__card {
    display: block !important; /* ✅ keep visible */
    width: 100% !important;
    max-width: 680px !important;
    margin: 14px 0 0 !important;
  }

  .hero__cardMedia img {
    height: 200px !important; /* stable on tablets */
  }

  .hero__badges {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }
}

/* Small mobile: card still visible but more compact */
@media (max-width: 600px) {
  .hero__actions {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .hero__actions .btn {
    width: 100% !important;
  }

  .hero__badges {
    grid-template-columns: 1fr !important;
  }

  .hero__title {
    font-size: 34px !important;
    line-height: 1.08 !important;
  }

  .hero__sub {
    font-size: 15px !important;
  }

  .hero__cardMedia img {
    height: 170px !important; /* smaller on phones */
  }

  .hero__cardBody {
    padding: 14px !important; /* tighter spacing */
  }
}

/* Very small phones */
@media (max-width: 380px) {
  .hero__title {
    font-size: 30px !important;
  }
  .hero__cardMedia img {
    height: 150px !important;
  }
}

/* ======================================================
ABOUT 2026 SECTION (Premium + Responsive)
====================================================== */
.about2026 {
  position: relative;
  padding: 50px 0;
  background: #0b0f16; /* deep base */
  color: #fff;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.about2026__top {
  display: grid;
  grid-template-columns: 1fr; /* Single column layout */
  gap: 30px;
  align-items: start;
  margin-bottom: 26px;
}

.about2026__eyebrow {
  margin: 0 0 10px;
  font-weight: bold;
  letter-spacing: 0.14em;
  font-size: clamp(25px, 3.5vw, 35px);
  color: #4b9fb5;
  text-align: center;
  display: flex;
  align-items: center;
  align-items: center;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.about2026__title {
  margin: 0 0 12px;
  font-size: clamp(25px, 3.5vw, 35px);
  line-height: 1;
  text-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  text-align: center;
  color: #4b9fb5;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
}

.about2026__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px; /* Space between each element */
}

.about2026__desc {
  margin: 0;
  width: 100%; /* Ensure the paragraph takes the full width */
  max-width: 100%; /* Remove any max-width to allow the content to stretch */
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  font-size: 15px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.3s;
  text-align: center; /* Ensure the text fills the width properly */
  word-wrap: break-word; /* Prevent text overflow */
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.about2026__stats {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about2026__stat {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  padding: 14px 14px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.6s; /* Delay for better effect */
}

.about2026__statNum {
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(90deg, var(--c), var(--b), var(--a));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
}
.about2026__statNum::after {
  content: "+";
}

.about2026__statLabel {
  margin-top: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  text-align: center;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile responsiveness */
@media (max-width: 980px) {
  .about2026__top {
    grid-template-columns: 1fr;
  }

  .about2026__stats {
    grid-template-columns: 1fr;
  }
}

/* grid cards */
.about2026__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.about2026__card {
  border-radius: 18px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
  transform: translateZ(0);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.about2026__card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.18);
}

.about2026__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.about2026__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition:
    transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.6s;
  filter: saturate(1.05) contrast(1.05);
}

.about2026__card:hover .about2026__media img {
  transform: scale(1.12);
}

.about2026__badge {
  position: absolute;
  left: 14px;
  top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  font-size: 13px;
}

.about2026__badge i {
  color: var(--a);
}

.about2026__cardBody {
  padding: 14px 14px 16px;
}

.about2026__cardBody h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.about2026__cardBody p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  font-size: 14px;
}

.about2026__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about2026__chips span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  font-size: 12px;
}

.about2026__chips i {
  color: rgba(255, 255, 255, 0.86);
}

/* CTA row */
.about2026__cta {
  margin-top: 18px;
  border-radius: 18px;
  background: linear-gradient(
    90deg,
    rgba(69, 123, 211, 0.2),
    rgba(71, 158, 185, 0.14)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.about2026__ctaText h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
.about2026__ctaText p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.6;
}

.about2026__ctaBtns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ======================================================
  PREMIUM REVEAL ANIMATION (no libraries)
====================================================== */
.reveal2026 {
  opacity: 0;
  transform: translateY(16px) scale(0.99);
  filter: blur(6px);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal2026.is-in {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* ======================================================
  RESPONSIVE
====================================================== */

/* Laptop/tablet */
@media (max-width: 1024px) {
  .about2026__top {
    grid-template-columns: 1fr;
  }
  .about2026__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .about2026__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 640px) {
  .about2026 {
    padding: 54px 0;
  }
  .about2026__stats {
    grid-template-columns: 1fr;
  }
  .about2026__grid {
    grid-template-columns: 1fr;
  }
  .about2026__cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Reduce motion support */
@media (prefers-reduced-motion: reduce) {
  .reveal2026,
  .about2026__media img,
  .about2026__card {
    transition: none !important;
  }
}

/* ====================================================== 
  Start Our Solution
====================================================== */
#solution {
  background-color: #0b1d39;
  color: white;
  padding: 60px 20px;
  padding-top: 10px;
  padding-bottom: 0;
  margin-bottom: 0;
}

#solution .container {
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 0 !important;
}
/* =========================================
   E-Governance - 4 Columns Single Row
========================================= */

.E-Governance-row .tech-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.E-Governance-row .tech-col {
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
}
/* Tablet */
@media (max-width: 992px) {
  .E-Governance-row .tech-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .E-Governance-row .tech-row {
    grid-template-columns: 1fr;
  }
}
#solution h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.solution-box h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  padding-bottom: 15px;
  position: relative; /* Positioning for icon above */
  padding-top: 35px;
}

/* ====================================================== 
  Icon Above the Title (for Emerging Technologies, E-Governance, System Integration)
====================================================== */

/* Parent container - Make it relative so absolute positioning works */
.solution-box {
  position: relative;
  width: 100%; /* Ensure full width for proper positioning */
}

#solution h2,
#solution h3 {
  text-align: center; /* Align both h2 and h3 text in the center */
}

/* Center the icon absolutely inside the parent container */
.icon-container {
  position: absolute;
  top: 0px; /* 50% from the top */
  left: 50%; /* 50% from the left */
  transform: translate(-50%, -50%); /* Offset by 50% of its size to center */
  background: linear-gradient(
    145deg,
    #457ed1,
    #ee0979
  ); /* Gradient background */
  padding: 15px;
  height: 70px;
  width: 70px;
  border-radius: 50%; /* Circle shape */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  z-index: 2; /* Make sure it’s on top */
}

.technology-icon {
  font-size: 40px; /* Adjust the size of the icon */
  color: white;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) translateY(20px); /* Start from below */
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0); /* Final position at center */
  }
}

/* =========================
  Responsive Design for Mobile/Tablet
========================== */

@media screen and (max-width: 768px) {
  .icon-container {
    margin-top: 20px;
    top: -20px; /* Adjust icon for mobile */
  }
}

@media screen and (max-width: 480px) {
  .icon-container {
    top: -15px; /* Adjust icon for mobile */
    padding: 10px; /* Adjust padding */
  }
}

.tech-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.tech-col {
  width: 30%;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.technology-box {
  border: 1px solid transparent;
  background-color: #05152e;
  padding: 0px;
  padding-bottom: 8px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(189, 189, 10, 0.1);
  transition:
    transform 0.3s ease-in-out,
    box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.technology-box:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 211, 35, 0.5); /* Glowing effect */
}

.technology-box img {
  width: 100%;
  max-height: 300px; /* Ensure the image fills the box completely */
  object-fit: cover; /* This makes the image cover the whole area */
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.box-header {
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
  margin-top: 10px;
}

.description {
  font-size: 1rem;
  margin: 15px 0;
}

.explore-btn {
  display: inline-block;
  padding: 5px 10px;
  background-color: #468cc7;
  color: white;
  text-decoration: none;
  border-radius: 15px;
  font-weight: bold;
  font-size: 13px;
}

.explore-btn:hover {
  background-color: #c6dc4d;
  color: black;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .tech-col {
    width: 48%;
  }
}

@media screen and (max-width: 480px) {
  .tech-col {
    width: 100%;
  }
}
/* Default (Desktop) */
.tech-row.last-row {
  display: flex;
  justify-content: center;
}

/* Optional: control box width so it doesn't stretch too wide */
.tech-row.last-row .tech-col {
  flex: 0 0 320px; /* box fixed width */
  max-width: 320px;
}

/* =========================
   Tablet
========================= */
@media (max-width: 992px) {
  .tech-row.last-row {
    justify-content: center;
  }

  .tech-row.last-row .tech-col {
    flex: 0 0 280px;
    max-width: 280px;
  }
}

/* =========================
   Mobile
========================= */
@media (max-width: 576px) {
  .tech-row.last-row {
    justify-content: center;
  }

  .tech-row.last-row .tech-col {
    flex: 0 0 100%; /* full width on mobile */
    max-width: 100%;
  }
}
/* ====================================================== 
  End Our Solution
====================================================== */
/**************************************************************************/
/* ======================================================
   Clients Section
====================================================== */

.clients-section {
  background: #ffffff;
  padding: 0;
  overflow: hidden;
  padding-top: 0px;
  padding-bottom: 70px;
}

.clients-container {
  width: min(1200px, 92%);
  margin: 0 auto;
  text-align: center;
}

.clients-title {
  font-size: 35px;
  font-weight: 800;
  margin-bottom: 14px;
  color: #4585cb;
}

.clients-desc {
  max-width: 650px;
  margin: 0 auto 60px;
  font-size: 18px;
  line-height: 1.7;
  color: black;
}

/* Slider Wrapper */
.clients-slider {
  position: relative;
  overflow: hidden;
}

/* Fade edges */
.clients-slider::before,
.clients-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.clients-slider::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.clients-slider::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

/* Track */
.clients-track {
  display: flex;
  gap: 60px;
}

/* Individual logo card */
.client-logo {
  flex: 0 0 auto;
  width: 180px;
  height: 140px;
  background: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.client-logo img {
  max-width: 140px;
  max-height: 110px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.4s ease;
}

/* Hover effects */
.client-logo:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.client-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Pause animation on hover */
.clients-slider:hover .clients-track {
  animation-play-state: paused;
}

/* Infinite Scroll Animation */
@keyframes scrollClients {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* =========================
   Responsive
========================= */

/* Large tablets / small laptops */
@media (max-width: 1100px) {
  .clients-title {
    font-size: 30px;
  }

  .clients-desc {
    font-size: 16px;
    margin: 0 auto 45px;
    max-width: 600px;
  }

  .clients-track {
    gap: 44px;
  }

  .client-logo {
    width: 170px;
    height: 130px;
  }

  .client-logo img {
    max-width: 130px;
    max-height: 100px;
  }

  .clients-slider::before,
  .clients-slider::after {
    width: 90px;
  }
}

/* Tablets */
@media (max-width: 900px) {
  .clients-container {
    width: min(1200px, 94%);
  }

  .clients-title {
    font-size: 26px;
  }

  .clients-desc {
    font-size: 15px;
    margin: 0 auto 38px;
    max-width: 560px;
  }

  .clients-track {
    gap: 34px;
  }

  .client-logo {
    width: 155px;
    height: 120px;
    border-radius: 12px;
  }

  .client-logo img {
    max-width: 120px;
    max-height: 92px;
  }

  .clients-slider::before,
  .clients-slider::after {
    width: 70px;
  }
}

/* Mobiles (landscape + large phones) */
@media (max-width: 768px) {
  .clients-section {
    padding-bottom: 55px;
  }

  .clients-title {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .clients-desc {
    font-size: 14px;
    margin: 0 auto 28px;
    max-width: 92%;
    line-height: 1.6;
  }

  .clients-track {
    gap: 22px;
  }

  .client-logo {
    width: 130px;
    height: 104px;
    border-radius: 12px;
  }

  .client-logo img {
    max-width: 105px;
    max-height: 78px;
  }

  .clients-slider::before,
  .clients-slider::after {
    width: 50px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .clients-section {
    padding-bottom: 45px;
  }

  .clients-title {
    font-size: 20px;
  }

  .clients-desc {
    font-size: 13px;
    margin: 0 auto 22px;
  }

  .clients-track {
    gap: 16px;
  }

  .client-logo {
    width: 112px;
    height: 92px;
    border-radius: 10px;
  }

  .client-logo img {
    max-width: 92px;
    max-height: 68px;
  }

  .clients-slider::before,
  .clients-slider::after {
    width: 36px;
  }
}

/* Very small phones */
@media (max-width: 360px) {
  .clients-title {
    font-size: 18px;
  }

  .clients-desc {
    font-size: 12.5px;
  }

  .client-logo {
    width: 104px;
    height: 86px;
  }

  .client-logo img {
    max-width: 86px;
    max-height: 64px;
  }
}

/**************************************************************************/
/* ======================================================
   END OurClients Section
====================================================== */
/* ======================================================
  start Card Section (FIXED MEDIA AREA + CLEAN WRAP)
====================================================== */

.hero-cards {
  padding: 34px 0;
  background: #141b27;
  margin-bottom: 0 !important;
  padding-bottom: 50px;
  margin-top: 0 !important;
}

.hero-cards__wrap {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: grid;
  gap: 50px;
}

/* Card shell */
.hx-card {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  min-height: 320px;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.hx-card:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 195, 255, 0.25);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
}

/* Background layers */
.hx-card__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      1200px 420px at 20% 20%,
      rgba(185, 143, 28, 0.18),
      transparent 55%
    ),
    radial-gradient(
      900px 320px at 90% 30%,
      rgba(255, 170, 60, 0.12),
      transparent 55%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.02)
    );
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 0;
}

.hx-card__glow {
  position: absolute;
  inset: -2px;
  pointer-events: none;
  background: radial-gradient(
    280px 280px at var(--x, 50%) var(--y, 50%),
    rgba(255, 215, 0, 0.45),
    rgba(184, 134, 11, 0.25),
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 1;
}

.hx-card:hover .hx-card__glow {
  opacity: 0.8;
}

/* ✅ IMPORTANT: layout + wrap fix */
.hx-card__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 24px;
  display: flex; /* grid se flex for strict control */
  align-items: center;
  gap: 18px;
}

/* Left: take remaining space, allow wrapping */
.hx-card__left {
  flex: 1 1 auto; /* grow + shrink */
  min-width: 0; /* ✅ wrap fix (very important) */
}

/* Right: fixed area (mehdood jaga) */
.hx-card__right {
  flex: 0 0 450px; /* ✅ fixed width */
  display: flex;
  justify-content: flex-end;
}

/* Badge */
.hx-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.4px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: fit-content;
  margin-bottom: 14px;
}

.hx-badge--alt {
  background: rgba(255, 255, 255, 0.06);
}

.hx-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #7cc3ff;
  box-shadow: 0 0 18px rgba(124, 195, 255, 0.9);
}

.hx-title {
  margin: 0 0 10px;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: 0.3px;
}

.hx-desc {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.9;
  width: 100%;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.hx-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  width: fit-content;
}

.hx-arrow {
  display: inline-block;
  transform: translateY(-1px);
}

/* ✅ Media box: fixed height + stable center */
.hx-media {
  width: 100%;
  height: 360px; /* fixed height (mehdood) */
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
  background: rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hx-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 0.35s ease;
  filter: saturate(1.05) contrast(1.02);
}

.hx-card:hover .hx-media img {
  transform: scale(1.08);
}

/* Shine sweep */
.hx-card::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: linear-gradient(
    120deg,
    transparent 35%,
    rgba(255, 255, 255, 0.08) 45%,
    transparent 55%
  );
  transform: translateX(-40%) rotate(8deg);
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 2;
  pointer-events: none;
}

.hx-card:hover::after {
  opacity: 1;
  animation: hxSweep 0.9s ease forwards;
}

@keyframes hxSweep {
  to {
    transform: translateX(40%) rotate(8deg);
  }
}

/* ✅ Alternate card layout */
.hero-cards__wrap .hx-card:nth-child(even) .hx-card__content {
  flex-direction: row-reverse; /* swap sides */
}

.hero-cards__wrap .hx-card:nth-child(even) .hx-card__right {
  justify-content: flex-start;
}

/* ===== Responsive (✅ FIXED) ===== */
@media (max-width: 980px) {
  .hx-card__content {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 14px;
  }

  /* ✅ FIX: right area reset properly */
  .hx-card__right {
    flex: 0 0 auto;
    width: 100%;
    justify-content: flex-end;
  }

  /* ✅ FIX: even cards MUST also stack (row-reverse remove) */
  .hero-cards__wrap .hx-card:nth-child(even) .hx-card__content {
    flex-direction: column;
  }

  .hero-cards__wrap .hx-card:nth-child(even) .hx-card__right {
    justify-content: flex-end;
  }

  .hx-media {
    height: 200px;
  }

  .hx-desc {
    max-width: 100%;
  }

  .hx-title {
    font-size: 24px;
  }
}

@media (max-width: 520px) {
  /* ✅ FIX: remove forced height that creates extra empty space */
  .hx-card {
    min-height: unset;
  }

  .hx-card__content {
    padding: 16px 14px;
    gap: 12px;
  }

  .hx-title {
    font-size: 20px;
    line-height: 1.2;
  }

  .hx-desc {
    font-size: 13px;
    line-height: 1.65;
  }

  .hx-media {
    height: 170px;
    border-radius: 12px;
  }

  /* ✅ keep even card stacking correct on small mobile too */
  .hero-cards__wrap .hx-card:nth-child(even) .hx-card__content {
    flex-direction: column;
  }

  .hero-cards__wrap .hx-card:nth-child(even) .hx-card__right {
    justify-content: flex-end;
  }
}

/* ======================================================
  End Card Section
====================================================== */
/**************************************************************************/
/* ======================================================
  Start Social Responsibility Section
====================================================== */

.csr {
  background: #fef9ef;
  padding: 72px 0;
  overflow: hidden;
}

.csr__container {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

/* ---------- Media (Left) ---------- */
.csr__media {
  position: relative;
}

/* Decorative blobs */
.csr__blob {
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 26px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(124, 195, 255, 0.45),
    rgba(120, 60, 255, 0.1) 60%,
    transparent 70%
  );
  filter: blur(0.2px);
  opacity: 0.9;
  animation: csrFloat 6.5s ease-in-out infinite;
}
.csr__blob--1 {
  left: -18px;
  top: 18px;
}
.csr__blob--2 {
  right: -18px;
  bottom: 26px;
  border-radius: 999px;
  width: 150px;
  height: 150px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(200, 160, 255, 0.45),
    rgba(120, 60, 255, 0.1) 60%,
    transparent 70%
  );
  animation-duration: 7.5s;
}

@keyframes csrFloat {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-10px) translateX(6px);
  }
}

/* Image card */
.csr__photo {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(13, 24, 45, 0.12);
  transform: translateZ(0);
}

.csr__photo img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.6s ease;
}

.csr__photoGlow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    600px 300px at 70% 20%,
    rgba(120, 60, 255, 0.25),
    transparent 60%
  );
  opacity: 0.85;
  pointer-events: none;
}

.csr__media:hover .csr__photo img {
  transform: scale(1.08);
}

/* Stats overlay */
.csr__stats {
  position: absolute;
  left: 20px;
  bottom: 13px;
  transform: translateX(-50%);
  width: min(540px, 92%);
  background: #fef9ef;
  border: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(13, 24, 45, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 15x;
  gap: 14px;
}

.csr__stat {
  flex: 1 1 0;
  text-align: center;
  padding: 10px 8px;
}

.csr__statIcon {
  width: 38px;
  height: 38px;
  margin: 0 auto 8px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #6a2fe8;
  background: linear-gradient(
    180deg,
    rgba(106, 47, 232, 0.1),
    rgba(106, 47, 232, 0.05)
  );
}

.csr__statIcon svg {
  width: 22px;
  height: 22px;
}

.csr__statNum {
  font-size: 34px;
  font-weight: 900;
  color: #0b1220;
  letter-spacing: 0.2px;
  line-height: 1.1;
}

.csr__statLabel {
  margin-top: 6px;
  font-size: 13px;
  color: rgba(11, 18, 32, 0.68);
}

.csr__divider {
  width: 1px;
  height: 54px;
  background: rgba(15, 23, 42, 0.1);
}

/* ---------- Content (Right) ---------- */
.csr__kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  justify-content: flex-start;
}

.csr__tag {
  font-size: 12px;
  letter-spacing: 0.22em;
  font-weight: 800;
  color: #6a2fe8;
}

.csr__line {
  height: 2px;
  width: 40px;
  background: linear-gradient(90deg, transparent, #6a2fe8, transparent);
  opacity: 0.9;
}

.csr__title {
  font-size: 30px;
  line-height: 1.12;
  margin: 0 0 14px;
  color: #0b1220;
  font-weight: 900;
}

.csr__accent {
  color: #6a2fe8;
}

.csr__text {
  margin: 0 0 14px;
  color: rgba(11, 18, 32, 0.72);
  font-size: 16px;
  line-height: 1.75;
  max-width: 56ch;
}

/* Checklist */
.csr__list {
  list-style: none;
  padding: 0;
  margin: 18px 0 22px;
  display: grid;
  gap: 12px;
}

.csr__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(11, 18, 32, 0.78);
  font-size: 15px;
  line-height: 1.55;
}

.csr__check {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #6a2fe8;
  color: #fff;
  display: inline-grid;
  place-items: center;
  font-weight: 900;
  flex: 0 0 26px;
  box-shadow: 0 10px 26px rgba(106, 47, 232, 0.28);
}

/* Button */
.csr__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  background: #6a2fe8;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 18px 42px rgba(106, 47, 232, 0.28);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.csr__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(106, 47, 232, 0.34);
  filter: brightness(1.03);
}

.csr__arrow {
  display: inline-block;
  transform: translateY(-0.5px);
  transition: transform 0.25s ease;
}

.csr__btn:hover .csr__arrow {
  transform: translateX(3px) translateY(-0.5px);
}

/* ---------- Reveal Animation ---------- */
.csr-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  will-change: opacity, transform;
}
.csr-reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .csr__container {
    gap: 40px;
  }
  .csr__title {
    font-size: 38px;
  }
  .csr__photo img {
    height: 390px;
  }
}

@media (max-width: 900px) {
  .csr__container {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .csr__kicker {
    justify-content: center;
  }

  .csr__content {
    text-align: left;
  }

  .csr__title {
    font-size: 34px;
  }

  .csr__text {
    max-width: 100%;
  }

  .csr__stats {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    margin-top: 14px;
  }

  .csr__photo img {
    height: 360px;
  }
}

@media (max-width: 560px) {
  .csr {
    padding: 56px 0;
  }

  .csr__title {
    font-size: 28px;
  }
  .csr__text {
    font-size: 14px;
  }

  .csr__photo img {
    height: 280px;
  }

  .csr__stats {
    padding: 14px 12px;
    border-radius: 16px;
  }

  .csr__statNum {
    font-size: 28px;
  }
  .csr__divider {
    height: 44px;
  }

  .csr__list li {
    font-size: 14px;
  }
}
/*======================================================
 END Social Responsibility Section 
====================================================== */
/**************************************************************************/
/* ====================================================== 
  Start Contact US 
====================================================== */
.contact-section {
  background: linear-gradient(145deg, #010f20, #003a59);
  color: white;
  margin-top: 0;
  margin-bottom: 10px;
  padding: 110px 20px 40px;
}

.contact-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: white;
}

.contact-section p {
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.6;
  font-size: 20px;
  padding-bottom: 30px;
  color: white;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Top info row */
.contact-info {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  flex-wrap: wrap;
}

.info-item {
  width: calc(33.333% - 14px);
  padding: 10px;
  border-radius: 10px;
  color: white;
  text-align: center;
}

.info-item .info-ico {
  font-size: 40px;
}

.info-item h3 {
  font-size: 1rem;
  margin: 10px 0;
}

.info-item p {
  font-size: 15px;
  line-height: 1.3;
  padding-bottom: 0;
}

.info-item a {
  color: white;
  text-decoration: none;
}

.info-item a:hover {
  text-decoration: underline;
}

/* Form + map row */
.contact-main {
  display: flex;
  gap: 24px;
  align-items: stretch;
  flex-wrap: wrap;
}

.contact-form,
.map-container {
  width: calc(50% - 12px);
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  color: white;
  border: 1px solid #012239;
  background: rgba(255, 255, 255, 0.02);
}

.contact-form label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin: 0 0 14px 0;
  border: 1px solid #1a4968;
  border-radius: 10px;
  background-color: #012239;
  color: white;
  transition: 0.3s ease;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #468cc7;
  outline: none;
  box-shadow: 0 0 0 3px rgba(70, 140, 199, 0.18);
}

.contact-form button {
  background-color: #468cc7;
  color: white;
  padding: 12px 22px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background-color: #3578b4;
  transform: translateY(-1px);
}

/* Map */
.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: none;
  border-radius: 10px;
  display: block;
}

/* Locations section below form + map */
.locations-section {
  width: 100%;
  margin-top: 10px;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.location-block {
  padding: 20px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  transition: 0.3s ease;
}

.location-block:hover {
  transform: translateY(-4px);
  border-color: rgba(70, 140, 199, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.location-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 14px;
  padding-left: 2px;
  position: relative;
}

.location-title::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 3px;
  background: #468cc7;
  border-radius: 10px;
  margin-right: 10px;
  vertical-align: middle;
}

.locations-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.locations-grid li {
  font-size: 15px;
  margin-bottom: 0;
  line-height: 1.7;
}

.locations-grid a {
  color: white;
  text-decoration: none;
}

.locations-grid a:hover {
  color: gold;
}

.locations-grid strong {
  font-weight: normal;
}

.locations-grid i {
  color: white;
  margin-right: 8px;
  font-size: 18px;
  min-width: 18px;
}

/* Tablet */
@media (max-width: 992px) {
  .info-item {
    width: calc(50% - 10px);
  }

  .contact-form,
  .map-container {
    width: 100%;
  }

  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .contact-section {
    padding: 90px 12px 30px;
  }

  .contact-section h2 {
    font-size: 2rem;
  }

  .contact-section p {
    font-size: 16px;
  }

  .info-item {
    width: 100%;
  }

  .locations-grid {
    grid-template-columns: 1fr;
  }

  .map-container iframe {
    min-height: 300px;
  }

  .contact-form button {
    width: 100%;
  }
}

/* ====================================================== 
  End Contact US 
====================================================== */

/* ======================================================
  start Industries page - Slider
====================================================== */
.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #010f20;
}

/* Slider track (moves left/right) */
.slider {
  display: flex;
  transition: transform 800ms ease;
  will-change: transform;
}

/* Each slide takes full width */
.slide {
  position: relative;
  min-width: 100%;
  height: clamp(320px, 52vw, 560px);
  overflow: hidden;
  height: 400px;
}

/* Image styling + opacity + subtle zoom animation */
.slider-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transform: scale(1.05);
  transition:
    transform 1200ms ease,
    opacity 700ms ease;
  filter: saturate(1.05) contrast(1.05);
  filter: brightness(0.4); /* 0.6 = darker, 0.5 aur dark, 0.7 halka */
}

/* Active slide image effect */
.slide.is-active .slider-image {
  opacity: 0.78;
  transform: scale(1);
}

/* Overlay center text */
.text-overlay {
  position: absolute;
  inset: 0; /* top:0 right:0 bottom:0 left:0 */
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical center */
  align-items: center; /* horizontal center */
  text-align: center;
  padding: 20px;
}

.text-overlay > div,
.text-overlay {
  pointer-events: none;
}

/* Make overlay card */
.text-overlay h2,
.text-overlay p {
  margin: 0;
}

.text-overlay {
  /* glass + gradient */
  background: radial-gradient(
    60% 60% at 50% 50%,
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.08) 60%,
    rgba(0, 0, 0, 0) 100%
  );
}

.text-overlay h2 {
  font-size: clamp(22px, 3.2vw, 42px);
  font-weight: 800;
  letter-spacing: 0.2px;
  color: #fff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
  animation: textIn 700ms ease both;
}

.text-overlay p {
  margin-top: 10px;
  font-size: clamp(14px, 1.4vw, 18px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 720px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
  animation: textIn 900ms ease both;
}

/* Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 28px;
  line-height: 1;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  transition:
    transform 180ms ease,
    background 180ms ease,
    opacity 180ms ease;
  opacity: 0.95;
  user-select: none;
}

.slider-btn:hover {
  background: rgba(0, 0, 0, 0.5);
  transform: translateY(-50%) scale(1.06);
}

.slider-btn:active {
  transform: translateY(-50%) scale(0.98);
}

.slider-btn.prev {
  left: 14px;
}
.slider-btn.next {
  right: 14px;
}

/* Dots */
.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.35);
  transition:
    transform 180ms ease,
    background 180ms ease,
    width 220ms ease;
}

.slider-dot.is-active {
  background: rgba(255, 255, 255, 0.95);
  width: 22px;
}

/* Text entrance */
@keyframes textIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 26px;
  }
  .slider-btn.prev {
    left: 10px;
  }
  .slider-btn.next {
    right: 10px;
  }
}

/* ======================================================
  Industries Slider - Responsive Patch (Mobile First Fix)
  (Baqi code same, yeh sirf mobile views ko perfect karega)
====================================================== */

/* Small phones (<= 480px) */
@media (max-width: 480px) {
  .slide {
    height: 280px; /* mobile pe zyada height na ho */
  }

  .text-overlay {
    padding: 14px 14px;
  }

  .text-overlay h2 {
    font-size: 20px; /* heading compact */
    line-height: 1.15;
  }

  .text-overlay p {
    font-size: 13px;
    line-height: 1.45;
    max-width: 92%;
    margin-top: 8px;
  }

  .slider-btn {
    width: 36px;
    height: 36px;
    font-size: 22px;
    top: 52%; /* thoda better placement */
  }

  .slider-btn.prev {
    left: 8px;
  }
  .slider-btn.next {
    right: 8px;
  }

  .slider-dots {
    bottom: 10px;
    gap: 6px;
    padding: 8px 10px;
  }

  .slider-dot {
    width: 8px;
    height: 8px;
  }
  .slider-dot.is-active {
    width: 18px;
  }
}

/* Medium phones (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .slide {
    height: 320px;
  }

  .text-overlay {
    padding: 14px 18px;
  }

  .text-overlay h2 {
    font-size: 24px;
    line-height: 1.15;
  }

  .text-overlay p {
    font-size: 13px;
    line-height: 1.45;
    margin-top: 8px;

    /* ✅ corners touch fix */
    padding: 0 6px;
    max-width: 86%;
    margin-left: auto;
    margin-right: auto;

    /* ✅ 2 lines only */
    display: -webkit-box;

    -webkit-flow-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

    /* optional: nicer break */
    text-wrap: balance;
  }

  .slider-dots {
    bottom: 12px;
  }
}

/* Tablets (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .slide {
    height: 380px;
  }

  .text-overlay p {
    max-width: 680px;
  }
}

/* iPhone notch safe-area (optional but premium) */
@supports (padding: max(0px)) {
  @media (max-width: 768px) {
    .slider-btn.prev {
      left: max(10px, env(safe-area-inset-left));
    }
    .slider-btn.next {
      right: max(10px, env(safe-area-inset-right));
    }
    .slider-dots {
      bottom: max(10px, env(safe-area-inset-bottom));
    }
  }
}
.industries-box {
  background-color: #467fd0;
  color: white;
}
.industries-container {
  padding-top: 70px;
  text-align: center;
  justify-content: center;
}
.industries-row {
  justify-content: space-evenly;
  align-items: center;
}
/* ======================================================
  end Industries page - Slider
====================================================== */
/* ======================================================
  Start Services page 
====================================================== */

.services-cards .hx-card {
  min-height: 330px; /* card height kam */
  display: flex;
  align-items: center;
}

/* content padding thoda kam */
.services-cards .hx-card__content {
  padding: 18px;
  gap: 45px;
  width: 100%;
}

/* image container size kam */
.services-cards .hx-media {
  height: 300px;
  width: 540px;
}

/* image adjustment */
.services-cards .hx-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* text thoda compact */
.services-cards .hx-title {
  font-size: 22px;
}

.services-cards .hx-desc {
  font-size: 13px;
  line-height: 1.5;
}
.services-cards .hx-card__right {
  flex: 0 0 260px;
}
/* ======================================================
  end Services page
====================================================== */
/* ======================================================
  Start success stories page
====================================================== */

.success-stories {
  padding: 80px 0;
  padding-top: 10px;
  background: #111f30;
  color: #fff;
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.section-head h2 {
  font-size: 42px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.section-head p {
  color: #b8c2d3;
  line-height: 1.6;
  font-size: 16px;
}

.stories-grid {
  display: grid;
  gap: 30px;
}

/* STORY CARD */

.story-card {
  background: linear-gradient(135deg, #000000, #0d263d);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.35s ease;
}
.story-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.45),
    0 0 25px rgba(0, 183, 255, 0.4);

  border: 1px solid rgba(0, 183, 255, 0.6);
}
.story-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 20px;
}

.story-title-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.story-heading {
  flex: 1;
  min-width: 0;
}

.story-heading h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.3;
  word-break: break-word;
}

.story-label {
  display: inline-block;
  font-size: 12px;
  color: #00b7ff;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.08em;
}

.story-badge {
  width: 220px;
  height: 130px;
  border-radius: 15px;
  overflow: hidden;
  flex-shrink: 0;
}

.story-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-content {
  margin-bottom: 25px;
}

.story-content p {
  line-height: 1.7;
  margin-bottom: 12px;
  color: #d7dfeb;
  font-size: 16px;
}

/* GALLERY */

.story-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: 0.4s;
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* LIGHTBOX */

.image-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  z-index: 9999;
  padding: 20px;
}

.image-lightbox.active {
  visibility: visible;
  opacity: 1;
}

.lightbox-inner {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-inner img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 10px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 40px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 35px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* =========================
   LARGE TABLETS
========================= */
@media (max-width: 1024px) {
  .story-card {
    padding: 24px;
  }

  .story-heading h3 {
    font-size: 24px;
  }

  .story-badge {
    width: 180px;
    height: 115px;
  }

  .gallery-item img {
    height: 210px;
  }
}

/* =========================
   TABLETS
========================= */
@media (max-width: 900px) {
  .success-stories {
    padding: 70px 0;
    padding-top: 10px;
  }

  .section-head h2 {
    font-size: 36px;
  }

  .story-title-wrap {
    gap: 16px;
  }

  .story-badge {
    width: 150px;
    height: 100px;
  }

  .story-heading h3 {
    font-size: 22px;
  }

  .story-content p {
    font-size: 15px;
  }

  .story-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item img {
    height: 200px;
  }
}

/* =========================
   MOBILE + SMALL TABLETS
========================= */
@media (max-width: 768px) {
  .story-card {
    padding: 20px;
    border-radius: 16px;
  }

  .story-header {
    gap: 16px;
  }

  .story-title-wrap {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .story-badge {
    width: 100%;
    max-width: 260px;
    height: 150px;
  }

  .story-heading {
    width: 100%;
  }

  .story-heading h3 {
    font-size: 21px;
  }

  .story-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 240px;
  }

  .lightbox-nav {
    font-size: 28px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 600px) {
  .success-stories {
    padding: 55px 0;
    padding-top: 10px;
  }

  .section-head {
    margin-bottom: 30px;
  }

  .section-head h2 {
    font-size: 30px;
  }

  .section-head p {
    font-size: 14px;
  }

  .story-card {
    padding: 16px;
  }

  .story-heading h3 {
    font-size: 19px;
  }

  .story-label {
    font-size: 11px;
  }

  .story-content p {
    font-size: 14px;
    line-height: 1.65;
  }

  .story-badge {
    max-width: 100%;
    height: 140px;
  }

  .gallery-item img {
    height: 220px;
  }

  .lightbox-inner img {
    max-width: 100%;
    max-height: 75vh;
  }

  .lightbox-close {
    top: 10px;
    right: 14px;
    font-size: 34px;
  }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 420px) {
  .section-head h2 {
    font-size: 26px;
  }

  .story-heading h3 {
    font-size: 18px;
  }

  .story-badge {
    height: 120px;
    border-radius: 12px;
  }

  .gallery-item img {
    height: 190px;
  }

  .lightbox-nav {
    font-size: 24px;
  }
}

/* ======================================================
  end Success Stories page
====================================================== */
/* =========================================
  OUR SOLUTION ALL PAGES START
  START ArtificalIntelligence Page
========================================= */

/* 1️⃣ Section Height Increase */
.ArtificalIntelligence-box {
  padding: 100px 0; /* upar neeche space barha do */
  display: flex;
}

.ArtificalIntelligence-box .technology-box {
  min-height: 320px; /* apni requirement ke mutabiq adjust karo */
  display: flex;
  flex-direction: column;
  justify-content: center; /* content vertical center */
  padding: 20px 9px; /* 40px top/bottom, 25px left/right */
  border: 2px solid #335c97;
}
.ArtificalIntelligence-box .box-header {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 14px;
  line-height: 1.3;
}
.ArtificalIntelligence-box .description {
  font-size: 13px;
  line-height: 1.7;

  text-align: justify;
  text-justify: inter-word;
  hyphens: none;

  max-width: 90%;
  margin: 0 auto;
}
.ArtificalIntelligence-box .tech-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(260px, 1fr));
  gap: 20px;
  justify-content: center;
}
.ArtificalIntelligence-box .tech-col {
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
}
/* Tablet */
@media (max-width: 992px) {
  .ArtificalIntelligence-box .tech-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .ArtificalIntelligence-box .tech-row {
    grid-template-columns: 1fr;
  }
}
/* ================================
   Industry Icon Styling
================================ */

.ArtificalIntelligence-box .industry-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(
    145deg,
    #680535,
    #4680d0
  ); /* Gradient background */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 5px;
  box-shadow: 0 10px 25px rgba(5, 21, 46, 0.4);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.ArtificalIntelligence-box .industry-icon i {
  font-size: 28px;
  color: #ffffff;
}

/* Tablet */
@media (max-width: 992px) {
  .ArtificalIntelligence-box .industry-icon {
    width: 60px;
    height: 60px;
  }

  .ArtificalIntelligence-box .industry-icon i {
    font-size: 24px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .ArtificalIntelligence-box .industry-icon {
    width: 55px;
    height: 55px;
  }

  .ArtificalIntelligence-box .industry-icon i {
    font-size: 22px;
  }
}
/* =========================================
   AI Page Slider Heading Size Adjustment
========================================= */

.Aii-container .text-overlay h2 {
  font-size: 28px; /* apni requirement ke mutabiq adjust kar sakte ho */
  line-height: 1.2;
}
.Aii-container .text-overlay h2 {
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.2;
}

@media (max-width: 768px) {
  .Aii-container .text-overlay h2 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .Aii-container .text-overlay h2 {
    font-size: 15px;
  }
}
/* =========================================
   AI Tech Row - Center 3 Columns
========================================= */

.ArtificalIntelligence-box .ai-tech-row {
  display: flex;
  justify-content: center; /* horizontal center */
  gap: 20px;
  flex-wrap: wrap;
}

.ArtificalIntelligence-box .ai-tech-row .tech-col {
  width: 280px; /* fixed card width for perfect center alignment */
}
@media (max-width: 768px) {
  .ArtificalIntelligence-box .ai-tech-row .tech-col {
    width: 100%;
  }
}
/* ======================================================
  AI Image Gallery (Images Only)
====================================================== */

.ai-gallery {
  width: 100%;
  padding: 36px 0 60px;
  background-color: #3565a8; /* jo color chaho yahan change karo */
}

.ai-gallery__grid {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ai-gallery__item {
  position: relative;
  border: 0;
  padding: 0;
  cursor: pointer;
  border-radius: 18px;
  overflow: hidden;
  background: #05152e;
  box-shadow: 0 18px 46px rgba(5, 21, 46, 0.28);
  transform: translateY(0);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease;
}

.ai-gallery__item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
  transition:
    transform 700ms ease,
    filter 500ms ease;
  filter: brightness(0.92) contrast(1.06);
}

/* shine overlay */
.ai-gallery__shine {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    60% 80% at 30% 20%,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0) 60%
  );
  opacity: 0;
  transition:
    opacity 350ms ease,
    transform 350ms ease;
  transform: translateY(10px);
  pointer-events: none;
}

/* hover */
.ai-gallery__item:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 66px rgba(5, 21, 46, 0.45);
}
.ai-gallery__item:hover img {
  transform: scale(1.08);
  filter: brightness(0.78) contrast(1.12);
}
.ai-gallery__item:hover .ai-gallery__shine {
  opacity: 1;
  transform: translateY(0);
}

/* entry animation */
.ai-gallery__item {
  animation: aiCardIn 650ms ease both;
}
.ai-gallery__item:nth-child(2) {
  animation-delay: 80ms;
}
.ai-gallery__item:nth-child(3) {
  animation-delay: 160ms;
}

@keyframes aiCardIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .ai-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ai-gallery__item img {
    height: 230px;
  }
}
@media (max-width: 576px) {
  .ai-gallery {
    padding: 26px 0 44px;
  }
  .ai-gallery__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .ai-gallery__item img {
    height: 220px;
  }
}

/* ======================================================
  Fullscreen Lightbox
====================================================== */

.ai-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.ai-lightbox.is-open {
  display: grid;
  place-items: center;
}

.ai-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
  animation: aiFadeIn 240ms ease both;
}

.ai-lightbox__panel {
  position: relative;
  width: min(1100px, 92vw);
  height: min(78vh, 720px);
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(5, 21, 46, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
  animation: aiZoomIn 260ms ease both;
  display: grid;
  place-items: center;
}

.ai-lightbox__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.15);
  transform: scale(1);
  transition: transform 260ms ease;
}

/* Controls */
.ai-lightbox__btn {
  position: absolute;
  border: 0;
  cursor: pointer;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 26px;
  transition:
    transform 180ms ease,
    background 180ms ease,
    opacity 180ms ease;
  opacity: 0.95;
  user-select: none;
}

.ai-lightbox__btn:hover {
  background: rgba(0, 0, 0, 0.5);
  transform: scale(1.06);
}

.ai-lightbox__close {
  top: 12px;
  right: 12px;
  font-size: 20px;
}

.ai-lightbox__prev {
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.ai-lightbox__next {
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 576px) {
  .ai-lightbox__panel {
    width: 94vw;
    height: 70vh;
    border-radius: 16px;
  }
  .ai-lightbox__btn {
    width: 42px;
    height: 42px;
    font-size: 22px;
  }
}

/* Animations */
@keyframes aiFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes aiZoomIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* =========================================
  END ArtificalIntelligence Page
========================================= */
/* =========================================
  Start metaverse Page
========================================= */
section.metaverse-box {
  background: #0f274e !important;
  margin-bottom: 0 !important;
}
.metaverse-box .technology-box {
  border: 1.5px solid #377598;
}

.metaverse-box .box-header {
  padding-right: 30px;
  padding-bottom: 10px;
  padding-left: 15px;
  padding-right: 15px;

  font-size: 20px;
  line-height: 1.3;
}

.metaverse-box .description {
  font-size: 13px;
  line-height: 1.7;
  padding-top: 15px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 20px;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;

  max-width: 90%;
  margin: 0 auto;
}
/* =========================================
   Metaverse Icon Styling
========================================= */

.metaverse-box .meta-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(
    145deg,
    #680535,
    #4680d0
  ); /* Gradient background */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 25px auto 18px auto;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.metaverse-box .meta-icon i {
  font-size: 35px;
  color: #ffffff;
}

.metaverse-box .technology-box:hover .meta-icon {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

/* Tablet */
@media (max-width: 992px) {
  .metaverse-box .meta-icon {
    width: 60px;
    height: 60px;
  }

  .metaverse-box .meta-icon i {
    font-size: 24px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .metaverse-box .meta-icon {
    width: 55px;
    height: 55px;
  }

  .metaverse-box .meta-icon i {
    font-size: 22px;
  }
}
/* =========================================
  END metavarse Page
========================================= */
/* =========================================
  Start Blockchain Page
========================================= */

.blockchain-box .bc-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 25px auto 15px auto;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  transition: 0.3s ease;
}

.blockchain-box .bc-icon i {
  font-size: 35px;
  color: #ffffff;
}

.blockchain-box .technology-box:hover .bc-icon {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

/* Tablet */
@media (max-width: 992px) {
  .blockchain-box .bc-icon {
    width: 60px;
    height: 60px;
  }
  .blockchain-box .bc-icon i {
    font-size: 24px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .blockchain-box .bc-icon {
    width: 55px;
    height: 55px;
  }
  .blockchain-box .bc-icon i {
    font-size: 22px;
  }
}
/* =========================================
   Blockchain Box Styling
========================================= */

/* Equal padding for header */
.blockchain-box .box-header {
  padding: 10px; /* top right bottom left equal */
  text-align: center;
}

/* Equal padding for description */
.blockchain-box .description {
  padding: 10px; /* equal on all sides */
  line-height: 1.7;
}
.blockchain-box .tech-row:last-child {
  justify-content: center;
}
/* Border for each box */
.blockchain-box .technology-box {
  border: 2px solid #063b7c;
  border-radius: 12px;
  transition: 0.3s ease;
}

@media (max-width: 768px) {
  .blockchain-box .box-header,
  .blockchain-box .description {
    padding: 15px;
  }
}
/* Blockchain slider heading size control */
.blockchain-slider .text-overlay h2 {
  font-size: 27px; /* apni requirement ke mutabiq change kar sakte ho */
  line-height: 1.2;
}
/* Tablet */
@media (max-width: 992px) {
  .blockchain-slider .text-overlay h2 {
    font-size: 17px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .blockchain-slider .text-overlay h2 {
    font-size: 14px;
  }
}
/* =========================================
  END Blockchain Page
========================================= */

/* =========================================
  Start BigData Page
========================================= */
/* Center last row (2 columns) in Big Data section */
.bigdata-box .tech-row:last-child {
  display: flex;
  justify-content: center; /* center the row */
  gap: 40px; /* space between the two boxes */
}
@media (max-width: 768px) {
  .bigdata-box .tech-row:last-child {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
}
/* =========================================
  END BigData Page
========================================= */

/* =========================================
  Start Cloud Page
========================================= */
/* Center last row in Cloud section */
.cloud-box .tech-row:last-child {
  display: flex;
  justify-content: center; /* center the two columns */
  gap: 40px; /* space between them */
}
@media (max-width: 768px) {
  .cloud-box .tech-row:last-child {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
}
/* =========================================
  END Cloud Page
========================================= */

/* ====================================================== 
  Fotter Start
====================================================== */
.footer {
  background-color: #161b26;
  color: #fff;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border-radius: 30px;
  margin: 10px 20px 18px;
  padding-top: 35px;
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 10px;
}
.footer {
  animation: footerIn 0.6s ease both;
}
@keyframes footerIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Top Row ===== */
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 18px; /* logo aur right block me gap */
  width: 100%;
  padding-bottom: 10px;
  text-align: start; /* center hatao */
}

.footer__img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

/* Right side (icons + address) */
.footer__contact {
  margin-left: auto; /* ✅ right side push */
  max-width: none; /* ✅ max-width ki wajah se left ruk raha tha */
  width: auto; /* ✅ apni natural width */
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* ✅ icons + text right edge pe */
}

.footer__contact p {
  margin: 0;
  width: 100%; /* ✅ same right line */
  text-align: right; /* ✅ right aligned */
  line-height: 1.35;
}

/* ===== Social Icons (top) ===== */
.footer__socials {
  width: 100%;
  display: flex;
  justify-content: flex-start; /* ✅ right side */
  gap: 48px; /* 50 zyada tha */
  margin: 0 0 6px 0;
}
.footer__contact p {
  text-align: justify;
  text-align-last: right;
}

.footer__socials .social-icon {
  font-size: 25px;
  color: #f5b301;
  transition:
    transform 0.35s ease,
    color 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer__socials .social-icon:hover {
  color: #fff;
  transform: rotate(360deg);
}

/* ===== Lines (HR) Height control ===== */
.footer__marquee {
  width: 100%;
  padding: 6px 0; /* 10px -> 6px */
  margin: 10px 0; /* 20px -> 10px */
}

.footer__marquee hr {
  border: 0;
  height: 1px;
  background: rgba(245, 179, 1, 0.45); /* gold-ish line */
}

/* ===== Thre Column Main (About + Services) ===== */
.footer__main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr; /* 3 columns */
  column-gap: 100px; /* yahan se right column left/right control hoga */
  row-gap: 18px;
  align-items: start;
  width: 100%;
  padding-bottom: 6px;
}

/* columns width constraint remove */
.footer__main .footer__section {
  width: 100%;
  max-width: none; /* IMPORTANT */
  text-align: left; /* center hatao */
  margin: 0; /* extra height remove */
  padding: 0;
}

/* headings spacing tight */
.footer__section h3 {
  font-size: 22px; /* 24 -> 22 */
  color: #f5b301;
  margin: 0 0 10px 0; /* 20 -> 10 */
}

/* lists spacing tight */
.footer__section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__section ul li {
  margin-bottom: 8px; /* 10 -> 8 */
  line-height: 1.35;
}

/* links */
.footer__section a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}
.footer__section a:hover {
  color: #f5b301;
}
/* Services section ko 2nd + 3rd column jaisa bana do */
.footer__services {
  grid-column: 2 / 4; /* services ko column 2 se 3 tak stretch */
}

/* ✅ Services list: 2 column layout (guaranteed) */
.footer__services ul {
  display: grid;
  grid-template-columns: 1fr 1fr; /* column 2 + column 3 */
  column-gap: 80px;
  row-gap: 10px;
}

/* li spacing */
.footer__services ul li {
  margin: 0; /* grid gap handles spacing */
}

.footer__services ul li a {
  display: block; /* inline ki problem khatam */
  width: 100%;
}
@media (max-width: 768px) {
  .footer__services {
    grid-column: 1 / -1;
  }
  .footer__services ul {
    column-count: 1;
  }
}
/* ===== Solutions: 2 Column Layout (like your reference image) ===== */
.footer__capabilities ul {
  list-style: none;
  padding: 0;
  margin: 0;

  /* make it 2 columns */
  columns: 3;
  -webkit-columns: 3;
  -moz-columns: 3;

  column-gap: 100px; /* columns ke darmiyan gap (adjust) */
}

.footer__capabilities ul li {
  break-inside: avoid; /* item half me break na ho */
  -webkit-column-break-inside: avoid;
  margin: 0 0 12px 0; /* vertical spacing */
}

.footer__capabilities ul li a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.footer__capabilities ul li a:hover {
  color: #f5b301;
}

/* Mobile pe wapas 1 column */
@media (max-width: 768px) {
  .footer__capabilities ul {
    columns: 1;
    column-gap: 0;
  }
}

/* ===== contact us fotter ===== */
.contact-email a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.contact-email a i {
  color: #f5b301;
  transition: transform 0.3s ease;
}

/* Email hover animation */
.contact-email a:hover {
  color: #f5b301;
}

.contact-email a:hover i {
  transform: rotate(-15deg) scale(1.1);
}

/* ===== WhatsApp Button Styling ===== */
.footer__call-to-action.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  background-color: #25d366; /* WhatsApp green */
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Icon inside button */
.footer__call-to-action.whatsapp-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

/* Hover animation */
.footer__call-to-action.whatsapp-btn:hover {
  background-color: #1ebc57;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}

/* WhatsApp icon rotate on hover */
.footer__call-to-action.whatsapp-btn:hover i {
  transform: rotate(15deg) scale(1.1);
}

/* ===== Contact Section Animation (Keep Existing) ===== */
.footer__contact-us {
  display: grid;
  grid-template-columns: 1fr auto; /* left = email, right = button */
  column-gap: 26px;
  row-gap: 8px;
  align-items: start;

  text-align: left;
  margin-bottom: 10px;
  padding: 0;
  opacity: 0;
  transform: translateY(30px);
  animation: contactFadeUp 0.8s ease forwards;
  animation-delay: 0.3s;
}
/* Heading full row */
.footer__contact-us h3 {
  grid-column: 1 / -1; /* full width */
}
/* Email left column */
.footer__contact-us .contact-email {
  grid-column: 1;
  margin: 0; /* extra height kam */
}
.contact-email {
  margin-bottom: 6px;
}

@keyframes contactFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================
   NEXT LEVEL FX (Pulse + Glow + Glass)
================================ */

/* --- Glass style (button + email line) --- */
.footer__call-to-action.whatsapp-btn,
.contact-email a {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
/* Button right column */
.footer__contact-us .whatsapp-btn {
  grid-column: 2;
  grid-row: 2;
  justify-self: end; /* right aligned */
  align-self: start; /* top aligned with email line */
  margin-top: -16px; /* pehle 12px tha, ab right side shift clean */
  margin-right: 500px;
}
/* Mobile pe button neeche aa jaye (responsive) */
@media (max-width: 768px) {
  .footer__contact-us {
    grid-template-columns: 1fr;
  }

  .footer__contact-us .whatsapp-btn {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 10px;
  }
}

/* Email line glass + border */
.contact-email a {
  padding: 5px 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 179, 1, 0.18);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  font-size: 12px;
}

/* Email icon glow */
.contact-email a i {
  color: #f5b301;
  filter: drop-shadow(0 0 6px rgba(245, 179, 1, 0.35));
}

/* Email hover glow stronger */
.contact-email a:hover {
  background: rgba(245, 179, 1, 0.06);
  border-color: rgba(245, 179, 1, 0.35);
  box-shadow: 0 12px 28px rgba(245, 179, 1, 0.12);
}

.contact-email a:hover i {
  filter: drop-shadow(0 0 10px rgba(245, 179, 1, 0.6));
  transform: rotate(-18deg) scale(1.12);
}

/* --- WhatsApp button glass + premium --- */
.footer__call-to-action.whatsapp-btn {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(
    135deg,
    rgba(37, 211, 102, 0.95),
    rgba(30, 188, 87, 0.92)
  );
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
  font-weight: normal;
}

/* Shimmer highlight */
.footer__call-to-action.whatsapp-btn::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -60%;
  width: 60%;
  height: 180%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.22),
    transparent
  );
  transform: rotate(18deg);
  animation: whatsappShimmer 3.8s linear infinite;
  pointer-events: none;
}

@keyframes whatsappShimmer {
  0% {
    left: -70%;
  }
  100% {
    left: 130%;
  }
}

/* Subtle pulse (default) */
.footer__call-to-action.whatsapp-btn {
  animation: whatsappPulse 2.8s ease-in-out infinite;
}

@keyframes whatsappPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
  }
  50% {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(37, 211, 102, 0.18);
  }
}

/* Pause pulse on hover (nice premium feel) */
.footer__call-to-action.whatsapp-btn:hover {
  animation-play-state: paused;
  background: linear-gradient(
    135deg,
    rgba(30, 188, 87, 0.98),
    rgba(18, 160, 75, 0.96)
  );
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.22);
}

/* Icon rotate on hover */
.footer__call-to-action.whatsapp-btn:hover i {
  transform: rotate(16deg) scale(1.12);
}

/* --- Optional: Reduce motion for accessibility --- */
@media (prefers-reduced-motion: reduce) {
  .footer__call-to-action.whatsapp-btn,
  .footer__call-to-action.whatsapp-btn::before {
    animation: none !important;
  }
}
.footer__bottom {
  text-align: center;
  font-size: 15px;
  opacity: 0.2;
  margin: 0;
  padding: 0;
}
/*All Responsive of footer*/
/* =========================================
   RESPONSIVE FIXES (Desktop unchanged)
   Paste this at the END of your CSS
========================================= */

/* ---------- Large Tablets / Small Laptops ---------- */
@media (max-width: 1200px) {
  .footer {
    padding-left: 30px;
    padding-right: 30px;
    margin: 10px 14px 18px;
  }

  .footer__main {
    column-gap: 60px; /* 100 -> 60 */
  }

  .footer__services ul {
    column-gap: 50px; /* 80 -> 50 */
  }

  .footer__capabilities ul {
    column-gap: 60px; /* 100 -> 60 */
    columns: 2; /* 3 -> 2 for better fit */
  }

  /* ✅ contact right button: hard margin reset for tablets */
  .footer__contact-us .whatsapp-btn {
    margin-right: 0; /* IMPORTANT: remove 500px on smaller screens */
    justify-self: end;
  }
}

/* ---------- Tablets ---------- */
@media (max-width: 992px) {
  .footer {
    padding-top: 26px;
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 10px;
    border-radius: 24px;
  }

  /* Top area stack better */
  .footer__top {
    align-items: center;
    gap: 14px;
  }

  .footer__img {
    height: 60px;
  }

  /* Icons gap reduce */
  .footer__socials {
    gap: 22px; /* 48 -> 22 */
  }

  .footer__socials .social-icon {
    font-size: 22px; /* 25 -> 22 */
  }

  /* Main grid: 2 columns (About + Services full row) */
  .footer__main {
    grid-template-columns: 1fr 1fr;
    column-gap: 50px;
    row-gap: 22px;
  }

  /* Services takes full width in row 2 */
  .footer__services {
    grid-column: 1 / -1;
  }

  .footer__services ul {
    grid-template-columns: 1fr 1fr; /* keep 2 on tablets */
    column-gap: 50px;
  }

  /* Capabilities columns 2 on tablets */
  .footer__capabilities ul {
    columns: 2;
    column-gap: 50px;
  }

  /* Contact us: make it 1 column (button goes below clean) */
  .footer__contact-us {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }

  .footer__contact-us .whatsapp-btn {
    grid-column: 1 / -1;
    grid-row: auto;
    justify-self: start;
    margin-top: 10px;
    margin-right: 0; /* IMPORTANT */
  }
}

/* ---------- Mobile ---------- */
@media (max-width: 768px) {
  .footer {
    padding-top: 20px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 10px;
    margin: 10px 10px 16px;
    border-radius: 20px;
  }

  /* Top row becomes column */
  .footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-bottom: 8px;
  }

  .footer__contact {
    width: 100%;
    align-items: flex-start;
    text-align: left;
  }

  .footer__contact p {
    width: 100%;
    text-align: left; /* mobile readable */
    text-align-last: auto;
  }

  /* Social icons left + wrap */
  .footer__socials {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer__socials .social-icon {
    font-size: 22px;
  }

  /* Main becomes 1 column */
  .footer__main {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 18px;
  }

  /* Services list 1 column on mobile */
  .footer__services ul {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  /* Capabilities 1 column on mobile */
  .footer__capabilities ul {
    columns: 1;
    column-gap: 0;
  }

  /* Contact us already 1 column */
  .footer__contact-us {
    grid-template-columns: 1fr;
  }

  .footer__contact-us .whatsapp-btn {
    justify-self: start;
    margin-top: 10px;
    margin-right: 0; /* IMPORTANT */
  }
}

/* ---------- Very Small Phones ---------- */
@media (max-width: 420px) {
  .footer__img {
    height: 54px;
  }

  .footer__socials .social-icon {
    font-size: 20px;
  }

  .footer__section h3 {
    font-size: 20px;
  }

  .footer__call-to-action.whatsapp-btn {
    width: 100%;
    justify-content: center;
  }

  .contact-email a {
    width: 100%;
  }
}
/* ====================================================== 
  Fotter END
====================================================== */
/* =========================================
   Ultra Premium Back To Top
========================================= */

:root {
  --btt-blue1: #479bbc;
  --btt-blue2: #467fd0;
  --btt-gold1: #b98f1c;
  --btt-gold2: #ffb74a;
}

/* Base button */
.btt {
  position: fixed;
  right: 10px;
  bottom: 24px;
  width: 45px;
  height: 45px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  z-index: 9999;

  display: grid;
  place-items: center;

  /* default theme (blue gradient) */
  background: linear-gradient(135deg, var(--btt-blue1), var(--btt-blue2));
  color: #fff;

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
  transform: translateY(18px) scale(0.96);
  opacity: 0;
  visibility: hidden;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease,
    box-shadow 0.35s ease;
}

.btt.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.btt:hover {
  transform: translateY(-6px) scale(1.06);
  box-shadow: 0 26px 65px rgba(0, 0, 0, 0.34);
}

/* Pulse ring */
.btt__pulse {
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.28),
    transparent 60%
  );
  filter: blur(2px);
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.btt.show .btt__pulse {
  opacity: 1;
  animation: bttPulse 1.8s ease-in-out infinite;
}

@keyframes bttPulse {
  0% {
    transform: scale(0.86);
    opacity: 0.35;
  }
  55% {
    transform: scale(1.08);
    opacity: 0.08;
  }
  100% {
    transform: scale(0.86);
    opacity: 0.35;
  }
}

/* Progress ring */
.btt__ring {
  position: absolute;
  inset: 6px;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  transform: rotate(-90deg);
  pointer-events: none;
}

.btt__ringBg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.22);
  stroke-width: 4;
}

.btt__ringProg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.92);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 113.097; /* 2πr where r=18 */
  stroke-dashoffset: 113.097; /* start at 0% */
  transition: stroke-dashoffset 0.1s linear;
}

/* Arrow icon */
.btt__icon {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-1px);
  transition: transform 0.25s ease;
}
.btt:hover .btt__icon {
  transform: translateY(-4px);
}

/* Theme: gold (used automatically on dark sections) */
.btt.theme-gold {
  background: linear-gradient(135deg, var(--btt-gold1), var(--btt-gold2));
}
.btt.theme-gold .btt__ringBg {
  stroke: rgba(255, 255, 255, 0.22);
}
.btt.theme-gold .btt__ringProg {
  stroke: rgba(255, 255, 255, 0.95);
}

/* Mobile */
@media (max-width: 768px) {
  .btt {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }
  .btt__icon {
    font-size: 18px;
  }
}
