*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: #fff;
  color: #1b1e55;
  line-height: 1.5;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
/* 
a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
} */

/* img {
  max-width: 100%;
  height: auto;
  display: block;
} */

p {
  font-size: 1.65rem;
  line-height: 1.6;
  color: #374151;
}

h2 {
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1b1e55;
  line-height: 1.15;
}

h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1b1e55;
  line-height: 1.2;
}

.container {
  max-width: 1380px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center {
  text-align: center;
}

/* ─── COLOR VARS ─── */
:root {
  --blue: #0f172a;
  --blue-dark: #1558d6;
  --blue2: linear-gradient(135deg, #0f172a 0%, #1e40af 100%);
  --blue1: linear-gradient(135deg, #0f172a 0%, #1e40af 100%);
  --blue-light: #e8f2ff;
  --blue-mid: #dbeafe;
  --navy: linear-gradient(135deg, #0f172a 0%, #1e40af 100%);
  --header-h: 76px;
  --text: #1f2937;
  --muted: #6b7280;
  --border: #e5e7eb;
  --bg-soft: #f9fafb;
  --primary-blue: linear-gradient(135deg, #0f172a 0%, #1e40af 100%);
  --light-blue: #e6f1fb;
  --border-color: #dde3ec;
  --text-main: #1a1a2e;
  --text-muted: #666;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --bg-gray: #f8f9fb;
}

/* NAVBAR */
.navbar {
  background: transparent;
  padding: 18px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  transition: all 0.35s ease;
}

/* On scroll */
.navbar.scrolled {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  padding: 12px 0;
}

.navbar-brand {
  color: #fff !important;
  font-size: 24px;
  font-weight: 700;
}

.nav-link {
  color: #fff !important;
  margin: 0 10px;
  font-size: 15.5px;
  font-weight: 500;
  padding: 10px 14px !important;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.nav-link {
  display: inline-block;
  /* important */
  padding: 10px 14px;
  color: #000;
  border-bottom: 2px solid transparent;
  line-height: 1.5;
  /* control height */
  transition:
    color 0.3s ease,
    border-color 0.3s ease;
}

.nav-link:hover {
  color: #7ab8ff !important;
  /* border-bottom: 2px solid #d9e0e9; */
}

.nav-link i {
  font-size: 18px;
}

/* MEGA MENU - Linear Gradient Background + Scrollable */
.mega-menu {
  width: 100%;
  left: 0;
  right: 0;
  border: none;
  border-radius: 0 0 1px 1px;
  padding: 45px 60px;

  /* 👇 Gradient + Image together */
  background:
    url("https://t3.ftcdn.net/jpg/04/59/30/34/360_F_459303447_YucAivjziUptaPOAKAETv0qJEGRK0Ltj.jpg")
      no-repeat right center,
    linear-gradient(135deg, hsl(224, 100%, 97%) 0%, hsl(0, 0%, 100%) 100%);

  background-size:
    420px auto,
    cover;
  /* control image size */

  box-shadow: 0 15px 35px rgba(30, 58, 138, 0.15);
  max-height: 85vh;
  overflow-y: auto;

  scrollbar-width: thin;
  scrollbar-color: #1e40af #e0e9ff;
}

.mega-menu::-webkit-scrollbar {
  width: 10px;
}

.mega-menu::-webkit-scrollbar-thumb {
  background: #1e40af;
  border-radius: 10px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}
@media (max-width: 991px) {
  .navbar-collapse {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    padding: 15px;
    border-radius: 10px;
    margin-top: 10px;
    color: #fff;
  }

  .navbar-collapse .nav-link {
    color: #ece7e7 !important;
  }

  .navbar-collapse .contact-btn {
    color: #000;
    border-color: #000;
  }
}
/* LEFT BOX */
.industry-box {
  padding: 25px;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  height: 100%;
}

.industry-box h5 {
  font-weight: 700;
  color: #1e40af;
  font-size: 2.5rem;
}

.industry-box p {
  font-size: 13.5px;
  color: #64748b;
}

/* MEGA MENU LINKS with Icons */
.mega-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1e40af;
  padding: 10px 0;
  text-decoration: none;
  font-size: 14.8px;
  font-weight: 500;
  transition: all 0.25s ease;
}

.mega-menu a i {
  color: #1e40af;
  font-size: 17px;
  width: 24px;
  margin: 10px;
}

.mega-menu a:hover {
  color: #0d6efd;
  transform: translateX(8px);
  background: rgba(30, 64, 175, 0.05);
  border-radius: 6px;
}

/* Contact Button */
.contact-btn-1 {
  padding: 10px 26px;
  font-weight: 600;
  border-width: 2px;
  color: white;
  border: 1px solid #fff;
  border-radius: 10px;
  margin-bottom: 3px;
  font-size: 1.4rem;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .mega-menu {
    max-height: 70vh;
    padding: 25px;
  }
}

.mega-menu {
  left: 0;
  right: 0;
  padding: 30px;
}

.mega-menu a {
  text-decoration: none;
  color: #000;
  display: block;
}
.tek-heading {
  font-size: 1.7rem;
  font-weight: 700;
  color: black;
  margin-bottom: 15px;
}
.mega-menu .desc {
  font-size: 13px;
  color: #64748b;
  display: block;
  margin-top: 4px;
}

/* ─── OVERLAY ─── */
.overlay {
  position: fixed;
  top: var(--header-h);
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  z-index: 9990;
  display: none;
  backdrop-filter: blur(2px);
}

.overlay.show {
  display: block;
}

/* ===== CASE STUDIES SECTION ===== */
.casestudies-section {
  padding: 60px 0 30px;
}

.casestudies-head {
  margin-bottom: 40px;
}

.casestudies-head-sec {
  width: 100%;
}

.casestudies-head-sec strong {
  color: #9ca3af;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 15px;
  display: block;
  text-transform: uppercase;
}

.casestudies-head-sec h2 {
  margin-bottom: 19px;
}

.casestudies-head-sec p {
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 12px;
  font-weight: 500;
}

.casestudies-row {
  justify-content: space-between;
  margin-bottom: 26px;
  background-color: #fff;
}

.casestudies-img {
  margin-bottom: 25px;
  width: 100%;
}

.casestudies-img img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.casestudies-content {
  width: 100%;
  padding-top: 15px;
}

.casestudies-content h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 28px;
}

.casestudies-content p {
  font-size: 1.8rem;
  margin-bottom: 27px;
}

.casestudies-point {
  margin-bottom: 30px;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-content {
    text-align: center;
    padding-top: 120px;
  }

  .hero-content .col-lg-8 {
    width: 100%;
  }

  .hero-content .d-flex {
    justify-content: center;
  }

  .btn-contact {
    display: none;
  }
}

@media only screen and (min-width: 768px) {
  .casestudies-head {
    margin-bottom: 60px;
    align-items: flex-end;
    justify-content: space-between;
  }

  .casestudies-head-sec {
    width: 70%;
  }

  .casestudies-head-sec p {
    margin-bottom: 0;
  }

  .casestudies-content,
  .casestudies-img {
    width: 47%;
  }

  .casestudies-img {
    margin-bottom: 0;
  }

  .casestudies-row {
    margin-bottom: 35px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --logo-width: 150px;
    --speed: 15s;
  }

  #title {
    font-size: 36px;
    max-width: 100%;
  }

  .logo-section {
    padding: 50px 0;
  }

  .slide-item img {
    height: 35px;
  }
}

@media (max-width: 576px) {
  .hero {
    height: 100vh;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .btn-primary-custom {
    padding: 10px 20px;
    font-size: 14px;
  }

  .tab {
    margin: 0 6px;
    min-width: 100px;
  }

  .tab-label {
    font-size: 12px;
  }

  .tabs {
    bottom: 20px;
  }
}

@media (max-width: 400px) {
  .hero h1 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 0.85rem;
  }

  .btn-primary-custom {
    font-size: 13px;
  }
}

@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1130px;
  }

  h2 {
    font-size: 3.6rem;
  }

  h3 {
    font-size: 2.2rem;
  }

  .casestudies-head,
  .casestudies-row {
    position: sticky;
    top: 90px;
  }

  .casestudies-row {
    top: calc((100vh - 300px) / 2);
    background-color: #fff;
    margin-bottom: 0;
    padding-bottom: 40px;
  }

  .casestudies-row:last-child {
    margin-bottom: 0;
  }

  .casestudies-content {
    padding-top: 25px;
  }
}

@media only screen and (min-width: 1366px) {
  .container {
    max-width: 1240px;
  }

  .casestudies-section {
    padding: 107px 0 0;
  }

  .casestudies-head {
    padding-right: 25px;
    margin-bottom: 30px;
  }

  .casestudies-head-sec h2 {
    margin-bottom: 19px;
  }

  .casestudies-head-sec p {
    font-size: 2rem;
    max-width: 514px;
    letter-spacing: 0.2px;
  }

  .casestudies-row {
    top: calc((100vh - 130px) / 2);
  }

  .casestudies-row:last-child {
    padding-bottom: 80px;
  }

  .casestudies-content h3 {
    font-size: 3rem;
    letter-spacing: 0.7px;
    margin-bottom: 16px;
  }

  .casestudies-img {
    width: 51.2%;
  }

  .casestudies-content {
    width: 44%;
    padding: 25px 17px 0 0;
  }

  .casestudies-content p {
    line-height: 1.5;
    margin-bottom: 19px;
  }
}

@media only screen and (min-width: 1440px) {
  .container {
    max-width: 1390px;
  }

  h2 {
    font-size: 4rem;
    letter-spacing: 1.2px;
  }

  .casestudies-row {
    top: calc((100vh - 260px) / 2);
    padding-bottom: 50px;
  }

  .casestudies-content h3 {
    font-size: 3.6rem;
    margin-bottom: 31px;
  }

  .casestudies-content {
    padding: 37px 17px 0 0;
  }

  .project-points {
    margin-bottom: 62px;
  }
}

@media only screen and (min-width: 1680px) {
  .casestudies-row {
    top: calc((100vh - 400px) / 2);
  }
}

/* ═══════════════════════════
   BUTTONS
═══════════════════════════ */
.primary-btn {
  display: inline-flex;
  align-items: center;
  background: var(--blue2);
  color: #fff;
  padding: 11px 20px 10px;
  border-radius: 8px;
  font-size: 1.55rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all 0.3s;
  margin-left: 20px;
}

.primary-btn::after {
  content: "";
  background: url("https://www.sparxitsolutions.com/sites/images/white-arrow.svg")
    no-repeat center;
  width: 18px;
  height: 18px;
  margin-left: 8px;
  display: inline-block;
  transition: 0.2s linear;
}

.primary-btn:hover {
  background: #fff;
  color: var(--blue2);
  border-color: var(--blue2);
}

.primary-btn:hover::after {
  filter: invert(40%) sepia(90%) saturate(800%) hue-rotate(200deg);
  transform: translateX(4px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--blue2);
  font-size: 1.55rem;
  font-weight: 600;
  padding: 9px 18px;
  transition: 0.3s;
  border-radius: 5px;
}

.text-link::after {
  content: "";
  background: url("https://www.sparxitsolutions.com/sites/images/_right_arrow.svg")
    no-repeat center;
  filter: invert(40%) sepia(90%) saturate(800%) hue-rotate(200deg);
  width: 14px;
  height: 12px;
  margin-left: 6px;
  display: inline-block;
  transition: 0.2s;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.text-link:hover {
  background: var(--blue-light);
}

/* ═══════════════════════════
   BANNER
═══════════════════════════ */
.banner {
  position: relative;
  overflow: hidden;
  height: 100vh;
  min-height: 500px;
  max-height: 922px;
}

@media (max-width: 767px) {
  .banner {
    height: auto;
    min-height: 620px;
    max-height: none;
  }
}

.banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
  z-index: 1;
}

.banner-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.banner-graphic {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.banner-content-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  z-index: 3;
}

@media (max-width: 767px) {
  .banner-content-wrap {
    padding: 110px 0 170px;
    align-items: flex-start;
  }
}

.banner-content-sec {
  width: 62%;
  max-width: 720px;
}

@media (max-width: 767px) {
  .banner-content-sec {
    width: 95%;
  }
}

.banner-content-sec * {
  color: #fff;
}

.main-title {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  transform: translateY(35px);
  opacity: 0;
  transition:
    opacity 0.7s ease 0.1s,
    transform 0.7s ease 0.1s;
}

.main-title span {
  display: block;
}

.banner-slide.active .main-title {
  opacity: 1;
  transform: translateY(0);
}

.banner-content-sec p {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  transform: translateY(25px);
  opacity: 0;
  transition:
    opacity 0.7s ease 0.3s,
    transform 0.7s ease 0.3s;
}

.banner-slide.active p {
  opacity: 1;
  transform: translateY(0);
}

.banner-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  transform: translateY(20px);
  opacity: 0;
  transition:
    opacity 0.7s ease 0.5s,
    transform 0.7s ease 0.5s;
}

.banner-slide.active .banner-btns {
  opacity: 1;
  transform: translateY(0);
}

.btn-first {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-size: 1.55rem;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 8px;
  border: 2px solid white;

  transition: all 0.25s;
}

.btn-first::after {
  content: "";
  background: url("https://www.sparxitsolutions.com/sites/images/white-arrow.svg")
    no-repeat center;
  width: 18px;
  height: 18px;
  margin-left: 8px;
  display: inline-block;
  transition: 0.2s linear;
}

.btn-first:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn-first:hover::after {
  transform: translateX(4px);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-outline::after {
  background: url("https://www.sparxitsolutions.com/sites/images/banner-chevron-down.svg")
    no-repeat center;
  background-size: 17px;
}

.thumbnail-wrap {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  z-index: 4;
  padding-right: 6rem;
}

.thumbnail-slider {
  display: flex;
  overflow-x: auto;
  padding: 0 15px;
}

.thumbnail-slider::-webkit-scrollbar {
  display: none;
}

.thumbnail {
  cursor: pointer;
  padding: 10px 16px 8px;
  min-width: 160px;
  border-radius: 5px;
  flex-shrink: 0;
  transition: background 0.3s;
  margin: 14px 12px;
}

.thumbnail:hover,
.thumbnail.active {
  background: rgba(255, 255, 255, 0.2);
}

.thumbnail span {
  display: block;
  color: #fff;
  font-size: 1.65rem;
  font-weight: 500;
  padding-top: 10px;
  position: relative;
  overflow: hidden;
}

.thumbnail span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

.thumbnail span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(135deg, #0f172a 0%, #1e40af 100%);
  width: 0;
  z-index: 1;
}

.thumbnail.active span::after {
  animation: prog 6s linear forwards;
}

@keyframes prog {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

.slider-dots {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  gap: 10px;
  z-index: 4;
}

@media (max-width: 767px) {
  .slider-dots {
    display: none;
  }
  .thumbnail {
    display: none;
  }
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: 0.3s;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.slider-dot.active {
  background: #fff;
}

@media (min-width: 1366px) {
  .main-title {
    font-size: 5.8rem;
  }
}

@media (min-width: 768px) and (max-width: 1365px) {
  .main-title {
    font-size: 4.2rem;
  }
}

/* ═══════════════════════════
   CLIENTS
═══════════════════════════ */
.client-wrapper {
  padding: 38px 0;
  overflow: hidden;
}

.clients-title {
  color: #9ca3af;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 32px;
}

.brands-wrap {
  overflow: hidden;
}

.logos-track {
  display: flex;
  animation: scroll-logos 30s linear infinite;
}

.logos-slide {
  flex-shrink: 0;
}

.brands-wrap:hover .logos-track {
  animation-play-state: paused;
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 767px) {
  .logos-slide img {
    width: 200px;
  }
}

/* ═══════════════════════════
   SECTION HEAD
═══════════════════════════ */
.section-head {
  max-width: 820px;
  width: 100%;
  margin: 0 auto 46px;
}

/* .section-title {
      font-size: 2.8rem;
      margin-bottom: 12px
    } */

.section-subtitle {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.5;
  color: #374151;
}

/* ═══════════════════════════
   CASE STUDIES — FIXED ANIMATION
═══════════════════════════ */
.casestudies-section {
  padding: 70px 0 40px;
}

.casestudies-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 20px;
}

.casestudies-head-sec {
  max-width: 65%;
}

.casestudies-head-sec strong {
  color: #9ca3af;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 22px;
}

.casestudies-head-sec h2 {
  margin-bottom: 14px;
  font-size: 3.8rem;
}

.casestudies-head-sec p {
  font-size: 1.8rem;
  font-weight: 500;
  color: #050f24;
}

/* Row wrapper — no transform on the row itself */
.casestudies-row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

/* Children start hidden, slide in from their respective sides */
.casestudies-row .casestudies-img {
  opacity: 0;
  transform: translateX(-60px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.casestudies-row .casestudies-content {
  opacity: 0;
  transform: translateX(60px);
  transition:
    opacity 0.75s ease 0.15s,
    transform 0.75s ease 0.15s;
}

/* When JS adds .in to the ROW, children animate in */
.casestudies-row.in .casestudies-img {
  opacity: 1;
  transform: translateX(0);
}

.casestudies-row.in .casestudies-content {
  opacity: 1;
  transform: translateX(0);
}

.casestudies-img {
  width: 100%;
  max-width: 680px;
}

.casestudies-img img {
  width: 100%;
  object-fit: cover;
  height: 460px;
  /* border-radius: 12px */
}

.casestudies-content {
  flex: 1;
  min-width: 260px;
  padding-top: 10px;
}

.casestudies-content h3 {
  font-size: 3rem;
  margin-bottom: 16px;
  margin-left: 12px;
}

.casestudies-content p {
  margin-bottom: 20px;
  margin-left: 12px;
}

.project-points {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.project-points li {
  color: #1e429f;
  font-size: 1.3rem;
  font-weight: 500;
  background: var(--blue-mid);
  border-radius: 6px;
  padding: 4px 11px;
}

@media (max-width: 767px) {
  .casestudies-head {
    flex-direction: column;
  }

  .casestudies-head-sec {
    max-width: 100%;
  }

  .casestudies-img {
    max-width: 100%;
  }

  .casestudies-img img {
    height: 240px;
  }

  /* Stack on mobile — slide up instead */
  .casestudies-row .casestudies-img {
    transform: translateY(40px);
  }

  .casestudies-row .casestudies-content {
    transform: translateY(40px);
  }

  .casestudies-row.in .casestudies-img {
    transform: translateY(0);
  }

  .casestudies-row.in .casestudies-content {
    transform: translateY(0);
  }
}

/* ═══════════════════════════
   TECHNOLOGIES
═══════════════════════════ */
.technologies-section {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  color: #fff;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.technologies-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 15, 36, 0.75);
  z-index: 0;
}

.tech-content-z {
  position: relative;
  z-index: 1;
}

.technologies-section * {
  color: #fff;
}

.technologies-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 60px;
}

.technologies-head {
  width: 100%;
  max-width: 700px;
}

@media (min-width: 768px) {
  .technologies-head {
    width: 44%;
    position: sticky;
    top: 110px;
  }

  .technologies-content {
    width: 46%;
    padding-top: 20px;
  }
}

.technologies-title {
  font-size: 5.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 900;
}

.technologies-subtitle {
  font-size: 1.8rem;
  margin-bottom: 30px;
  line-height: 1.55;
}

.technologies-content {
  flex: 1;
  min-width: 280px;
}

.technologies-box {
  margin-bottom: 5px;
  width: 100%;
  max-width: 500px;
}

.technologies-box a {
  display: block;
  padding: 22px;
  border-radius: 10px;
  transition: 0.3s;
  position: relative;
  min-height: 165px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.technologies-box a:hover {
  background: rgba(74, 157, 255, 0.12);
  border-color: rgba(74, 157, 255, 0.35);
}

.technologies-box h3 {
  font-size: 1.85rem;
  font-weight: 600;
  margin-bottom: 11px;
  padding-top: 22px;
}

.technologies-box h3::before {
  content: "";
  display: block;
  position: absolute;
  top: 22px;
  left: 22px;
  width: calc(100% - 44px);
  height: 4px;
  border-radius: 2px;
  margin-bottom: 13px;
  background: rgba(255, 255, 255, 0.2);
  transition: 0.3s;
}

.technologies-box a:hover h3::before {
  background: var(--blue1);
}

.technologies-box p {
  font-size: 1.55rem;
  opacity: 0.75;
  line-height: 1.55;
  margin-bottom: 22px;
}

.technologies-box a::after {
  content: "";
  background: url("https://www.sparxitsolutions.com/sites/images/white-arrow.svg")
    no-repeat;
  width: 18px;
  height: 18px;
  position: absolute;
  right: 20px;
  bottom: 20px;
}
:root {
  --primary: #2584f4;
  --dark: #0f172a;
  --text-main: #475569;
  --bg-light: #f8faff;
  --white: #ffffff;
}

/* Section Head Styling */
.testimonial-section {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(37, 132, 244, 0.1);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}

/* .section-title {
  font-size: 2.5rem;
  color: var(--dark);
  font-weight: 800;
  margin-bottom: 15px;
} */

/* The Grid System */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

/* Card Styling */
.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(37, 132, 244, 0.1);
  border-color: rgba(37, 132, 244, 0.2);
}

.quote-icon {
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.1;
  position: absolute;
  top: 10px;
  right: 30px;
  font-family: serif;
}

.testimonial-heading {
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 12px;
  font-weight: 700;
}

.testimonial-card p {
  color: var(--text-main);
  line-height: 1.8;
  font-size: 1rem;
  flex-grow: 1;
  margin-bottom: 30px;
}

/* User Meta */
.user-meta {
  display: flex;
  align-items: center;
  border-top: 1px solid #f1f5f9;
  padding-top: 25px;
}

.user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.user-info {
  flex-grow: 1;
}

.u-name {
  display: block;
  font-weight: 700;
  color: var(--dark);
  font-size: 1.1rem;
}

.u-role {
  font-size: 0.9rem;
  color: #94a3b8;
}

.brand-logo img {
  height: 24px;
  filter: grayscale(100%);
  opacity: 0.6;
}

/* CTA Design */
.cta-section {
  padding: 60px 0 100px;
}
.cta-card {
  background: var(--dark);
  border-radius: 24px;
  padding: 60px;
  display: flex;
  align-items: center;
  gap: 50px;
  color: white;
  overflow: hidden;
  position: relative;
}

.cta-content h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}
.cta-content p {
  color: #94a3b8;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.btn-primary {
  background: var(--primary);
  color: white;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #1d6ed1;
}

.btn-outline {
  border: 2px solid white;

  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .cta-card {
    flex-direction: column;
    text-align: center;
    padding: 40px;
  }
  .cta-visual img {
    max-width: 250px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}
/* ═══════════════════════════
   TESTIMONIALS
═══════════════════════════ */
.testimonial-section {
  padding: 60px 0;
  background: #f0f6ff;
}

.testimonial-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 10px;
}

.testimonial-box {
  background: #fff;
  padding: 26px;
  border-radius: 12px;
  flex: 1;
  min-width: 260px;
  box-shadow: 0 2px 12px rgba(37, 132, 244, 0.08);
  border: 1px solid rgba(37, 132, 244, 0.1);
}

.speakers {
  font-size: 1.8rem;
  font-weight: 600;
  display: block;
  margin-bottom: 14px;
  color: #1b1e55;
}

.testimonial-box p {
  color: #374151;
  line-height: 1.65;
  margin-bottom: 18px;
}

.user-detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 13px;
  border-top: 1px solid var(--blue-mid);
}

.user-wrap {
  display: flex;
  align-items: center;
  gap: 11px;
}

.user-pic {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--blue-mid);
}

.user-name {
  font-size: 1.45rem;
  font-weight: 600;
  display: block;
  color: #1b1e55;
}

.user-info {
  font-size: 1.25rem;
  color: #6b7280;
}

.company_logo img {
  max-height: 26px;
  max-width: 80px;
  object-fit: contain;
}

/* ═══════════════════════════
   CTA
═══════════════════════════ */
.cta-wrapper {
  padding: 60px 0;
}

.cta-wrap {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #f0f6ff 0%, #dbeafe 100%);
  border: 1px solid rgba(37, 132, 244, 0.2);
  border-radius: 14px;
  padding: 40px 52px;
  box-shadow: 0 4px 20px rgba(37, 132, 244, 0.1);
}

.cta-img {
  width: 38%;
  max-width: 340px;
}

.cta-img img {
  width: 100%;
}

.cta-txt {
  flex: 1;
  min-width: 240px;
}

.cta-txt h3 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 14px;
  color: #0d2144;
}

.cta-txt p {
  margin-bottom: 26px;
  font-weight: 500;
  color: #374151;
}

@media (max-width: 767px) {
  .cta-wrap {
    flex-direction: column;
    padding: 28px 20px;
  }

  .cta-img {
    width: 100%;
    max-width: 100%;
  }
}

/* ═══════════════════════════
   INDUSTRY
═══════════════════════════ */
.industry-section {
  padding: 60px 0;
}

.industry-wrap.industry-wrap-block {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.industry-box {
  flex: 1;
  min-width: 210px;
  background: #fff;
  border-radius: 12px;
  border: 1.5px solid rgba(37, 132, 244, 0.12);
  padding: 20px 16px;
  box-shadow: 0 4px 16px rgba(37, 132, 244, 0.07);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.industry-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(37, 132, 244, 0.15);
  border-color: var(--blue1);
}

.in-gb {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-light);
  margin-bottom: 12px;
}

.industry-box h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blue2);
  border-bottom: 1.5px solid var(--blue-mid);
  padding-bottom: 11px;
  margin-bottom: 11px;
}

.industry-listing {
  margin-bottom: 18px;
}

.industry-listing li {
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 9px;
  padding-left: 24px;
  position: relative;
  color: #374151;
}

.industry-listing li::before {
  content: "";
  width: 15px;
  height: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 1px;
  border-radius: 50%;
  background: url("https://www.sparxitsolutions.com/sites/images/check-white.svg")
    center no-repeat var(--blue2);
}

.industry-listing li a {
  color: #374151;
  transition: 0.2s;
}

.industry-listing li a:hover {
  color: var(--blue2);
  text-decoration: underline;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.tech-tag {
  font-size: 1.15rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 5px;
  border: 1.5px solid var(--blue1);
  color: var(--blue2);
  background: var(--blue-light);
  transition: 0.2s;
}

.tech-tag:hover {
  background: var(--blue2);
  color: #fff;
}

.expertise-head {
  font-size: 3.6rem;
  margin: 52px 0 26px;
  font-weight: 700;
  color: #1b1e55;
  margin-bottom: 6rem;
}

.expertise-industry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

@media (max-width: 992px) {
  .expertise-industry {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .expertise-industry {
    grid-template-columns: 1fr;
  }
}

.industry-image {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: none;
  padding: 0 !important;
  box-shadow: none;
  height: 250px;
}

.industry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.55s cubic-bezier(0.85, 0, 0, 1);
  display: block;
}

.industry-image:hover img {
  transform: scale(1.12);
}

.industry-image h3 {
  position: absolute;
  top: 14px;
  left: 14px;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
  z-index: 2;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.industry-overlap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  padding: 52px 14px 16px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.45s linear;
}

.industry-image:hover .industry-overlap {
  opacity: 1;
}

.industry-overlap ul {
  margin-bottom: 8px;
  padding-left: 14px;
}

.industry-overlap ul li {
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 5px;
  list-style: disc;
}

.industry-overlap span {
  color: #fff;
  font-size: 1.45rem;
  font-weight: 600;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ═══════════════════════════
   ABOUT STATS
═══════════════════════════ */
.about-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #f0f6ff 0%, #dbeafe 100%);
}

.about-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
}

.about-box {
  flex: 1;
  min-width: 190px;
  background: #fff;
  border-radius: 12px;
  padding: 28px 22px;
  box-shadow: 0 4px 16px rgba(37, 132, 244, 0.1);
  border: 1px solid rgba(37, 132, 244, 0.15);
  transition: transform 0.3s;
  text-align: center;
}

.about-box:hover {
  transform: translateY(-3px);
}

.about-info {
  color: var(--blue2);
  font-size: 4rem;
  font-weight: 800;
  display: block;
  margin-bottom: 10px;
}

.about-box p {
  font-size: 1.55rem;
  font-weight: 500;
  color: #374151;
  line-height: 1.35;
}

/* ═══════════════════════════
   PRODUCTS
═══════════════════════════ */
.exciting-section {
  padding: 60px 0;
}

.exciting-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 38px;
  flex-wrap: wrap;
  gap: 20px;
}

.exciting-head div {
  max-width: 62%;
}

.exciting-head h2 {
  margin-bottom: 12px;
}

.exciting-block {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.exciting-box {
  flex: 1;
  min-width: 240px;
}

.exciting-sec {
  min-height: 175px;
  background: #fff;
  border-radius: 12px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(37, 132, 244, 0.1);
  border: 1.5px solid rgba(37, 132, 244, 0.12);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.exciting-sec:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(37, 132, 244, 0.18);
  border-color: var(--blue1);
}

.exciting-sec img {
  max-height: 75px;
  object-fit: contain;
}

.exciting-box h3 {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1b1e55;
}

@media (max-width: 767px) {
  .exciting-head div {
    max-width: 100%;
  }

  .exciting-head {
    flex-direction: column;
  }
}

/* ═══════════════════════════
   EVENTS
═══════════════════════════ */
.event-section {
  padding: 60px 0;
}

.event-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.event-box {
  flex: 1;
  min-width: 270px;
}

.event-block {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(37, 132, 244, 0.1);
  border: 1px solid rgba(37, 132, 244, 0.1);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.event-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(37, 132, 244, 0.18);
}

.event-gallery img {
  width: 100%;
  height: 385px;
  object-fit: cover;
}

.event-content {
  padding: 18px;
}

.event-title {
  font-size: 1.9rem;
  font-weight: 700;
  display: block;
  margin-bottom: 14px;
  color: #1b1e55;
}

.event-location {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.event-location li {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #6b7280;
}

/* ═══════════════════════════
   BLOG
═══════════════════════════ */
.blog-section {
  padding: 70px 0;
  background: var(--bg-soft);
}

.blog-head {
  margin-bottom: 44px;
}

.blog-title {
  font-size: 4.4rem;
  margin-bottom: 12px;
}

.blog-subtitle {
  font-size: 1.65rem;
  font-weight: 500;
  color: #374151;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-col {
  padding: 0 22px;
}

.blog-col:first-child {
  padding-left: 0;
}

.blog-col:last-child {
  padding-right: 0;
}

.blog-col-mid {
  border-left: 1.5px solid var(--blue-mid);
  border-right: 1.5px solid var(--blue-mid);
}

@media (max-width: 900px) {
  .blog-col,
  .blog-col-mid {
    padding: 0;
    border: none;
    border-top: 1px solid var(--blue-mid);
    padding-top: 22px;
    margin-top: 22px;
  }

  .blog-col:first-child {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
  }
}

.blog-thumbnail {
  margin-bottom: 16px;
  border-radius: 10px;
  overflow: hidden;
}

.blog-thumbnail img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: 0.3s;
  display: block;
}

.blog-thumbnail img:hover {
  transform: scale(1.03);
}

.blog-card {
  background: #fff;
  border-radius: 10px;
  padding: 18px;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(37, 132, 244, 0.07);
  border: 1px solid rgba(37, 132, 244, 0.09);
  transition:
    box-shadow 0.25s,
    transform 0.25s;
}

.blog-card:hover {
  box-shadow: 0 6px 22px rgba(37, 132, 244, 0.15);
  transform: translateY(-2px);
}

.blog-card:last-child {
  margin-bottom: 0;
}

.time-read {
  font-size: 1.15rem;
  font-weight: 500;
  padding: 0 10px 0 26px;
  border-radius: 5px;
  margin-bottom: 9px;
  background: var(--blue-mid)
    url("https://www.sparxitsolutions.com/sites/images/clock.svg") 8px center
    no-repeat;
  height: 22px;
  display: inline-flex;
  align-items: center;
  color: #1e429f;
}

.feed-link {
  margin-bottom: 12px;
}

.feed-link a {
  font-size: 1.7rem;
  font-weight: 600;
  color: #1b1e55;
  line-height: 1.35;
  transition: 0.2s;
}

.feed-link a:hover {
  color: var(--blue2);
}

.blog-feat-title .feed-link a {
  font-size: 2rem;
}

/* ═══════════════════════════
   FOOTER
═══════════════════════════ */

/* ═══════════════════════════
   FOOTER
═══════════════════════════ */

/* ═══════════════════════════
   FOOTER
═══════════════════════════ */

:root {
  --footer-text: white;
  --footer-heading: #ffffff;
  --accent-color: #2584f4;
  --footer-border: rgba(255, 255, 255, 0.08);
}

.footer-section {
  background: linear-gradient(135deg, #101835 0%, #2546be 100%);
  padding: 80px 0 30px;
  font-family: "Inter", sans-serif;
  color: white;
}

.footer-grid {
  display: grid;
  /* 5 columns on desktop: 2fr for brand, 1fr for others */
  grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo-img {
  height: 45px;
  width: auto;
  margin-bottom: 25px;
  display: block;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: var(--footer-text);
}

.footer-col h4 {
  color: var(--footer-heading);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: var(--footer-text);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-col ul li a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

/* Social Links */
.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid var(--footer-border);
}

.social-links a:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-3px);
}

.social-links a svg {
  stroke: #fff;
}

/* Footer Bottom */
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--footer-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copy-right {
  font-size: 13px;
  color: white;
}

.terms-links {
  display: flex;
  gap: 25px;
}

.terms-links a {
  color: var(--footer-text);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}

.terms-links a:hover {
  color: #fff;
}

/* --- Responsive Breakpoints --- */

/* Tablet: 3 Columns */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-col:first-child {
    grid-column: span 3;
    max-width: 500px;
    margin-bottom: 20px;
  }
}

/* Mobile: Stacked */
@media (max-width: 768px) {
  .footer-section {
    padding: 60px 0 30px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-col:first-child {
    grid-column: span 2;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .terms-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-col:first-child {
    grid-column: span 1;
  }
}
/* Contact Details Styling */
.contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

.contact-item b {
  color: #fff;
  display: block;
  margin-bottom: 2px;
}

.contact-link {
  color: var(--accent-cyan) !important;
  font-weight: 600;
}

/* Premium Enquiry Form */
.enquiry-card {
  background: var(--card-bg);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* ═══════════════════════════
   GENERIC ANIMATIONS
═══════════════════════════ */
.anim-fade {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.anim-fade.in {
  opacity: 1;
  transform: translateY(0);
}

.anim-scale {
  opacity: 0;
  transform: scale(0.95);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.anim-scale.in {
  opacity: 1;
  transform: scale(1);
}

.d1 {
  transition-delay: 0.1s !important;
}

.d2 {
  transition-delay: 0.2s !important;
}

.d3 {
  transition-delay: 0.3s !important;
}

.d4 {
  transition-delay: 0.4s !important;
}

@media (max-width: 1100px) {
  .main-nav,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 767px) {
  .casestudies-head-sec h2 {
    font-size: 2.8rem;
  }

  .section-title {
    font-size: 2.3rem;
  }

  .about-info {
    font-size: 3.2rem;
  }
}

.app-title {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--app-primary), var(--app-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.app-tabs .nav-link {
  border-radius: 50px;
  padding: 10px 28px;
  font-weight: 600;
  color: #64748b;
}

.app-tabs .nav-link.active {
  background: linear-gradient(135deg, var(--app-primary), var(--app-accent));
  color: #fff !important;
}

.app-card {
  background: #fff;
  border-radius: 18px;
  padding: 25px;
  transition: 0.4s;
  border: 1px solid #e2e8f0;
  height: 100%;
}

.app-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.app-icon {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 15px;
  background: rgba(37, 132, 244, 0.1);
  color: var(--app-primary);
}

.app-card-title {
  font-weight: 700;
  color: var(--app-dark);
}

.app-card-text {
  color: #64748b;
  font-size: 0.92rem;
}

.section-wrap {
  padding: 100px 0;
  background: #fff;
}

.subtitle {
  color: grey;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.3;
  margin: 15px 0 20px;
}

.desc {
  font-size: 16px;
  color: #555;
  line-height: 1.9;
}

.btn-primary-custom {
  background: linear-gradient(135deg, #0f172a 0%, #1e40af 100%);
  color: #fff;
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  font-size: 1.6rem;
}

.btn-primary-custom:hover {
  background: #0f6ad6;
  transform: translateY(-3px);
}

.link-btn {
  color: #2584f4;
  font-weight: 600;
  text-decoration: none;
  margin-top: 10px;
  font-size: 1.8rem;
}

.cards .card-box {
  padding: 30px 24px;
  border-radius: 18px;
  background: #f8f9fb;
  border: 1px solid #e6eaf0;
  transition: 0.4s;
  height: 100%;
}

.card-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.card-box.blue {
  background: #e6f1fb;
  border-color: #b5d4f4;
}

.icon-box {
  width: 50px;
  height: 50px;
  background: #2584f4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #fff;
  font-size: 20px;
  transition: 0.3s;
}

.card-box:hover .icon-box {
  transform: scale(1.1) rotate(5deg);
}

.card-title {
  font-size: 18px;
  font-weight: 700;
}

.card-text {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .title {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .section-wrap {
    padding: 70px 0;
  }

  .title {
    font-size: 26px;
  }
}

/* SECTION */
.why-section {
  padding: 90px 0;
}

/* HEADING */
.section-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

.section-text {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  color: #475569;
  line-height: 1.9;
  font-size: 16px;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-top: 50px;
}

/* CARD */
.why-card {
  display: flex;
  gap: 18px;
  padding: 26px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  transition: 0.3s;
  box-shadow:
    rgba(0, 0, 0, 0.16) 0px 3px 6px,
    rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* ICON */
.icon-box {
  width: 50px;
  height: 50px;
  background: #eef4ff;
  color: #2563eb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-box i {
  width: 24px;
  height: 24px;
}

/* TEXT */
.why-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 26px;
  }
}

.process-section {
  padding: 80px 20px;

  /* Background Image */
  background-image: url("./images/process-back-img.avif"); /* change image */

  background-size: cover; /* full section cover */
  background-position: center; /* center align */
  background-repeat: no-repeat; /* no repeat */

  position: relative;
  z-index: 1;
}

/* Optional: Overlay for better readability */
.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: -1;
}

.section-head {
  text-align: center;
  margin-bottom: 60px;
}

.section-head strong {
  color: var(--primary-blue);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

/* Grid and Connector */
.proc-navigation {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 50px;
}

/* The Connecting Line */
.proc-navigation::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 12.5%;
  width: 75%;
  height: 2px;
  background: #d0d6de;
  color: #0061ff;
  z-index: 0;
}

.proc-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.proc-icon-circle {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transition: var(--transition);
}

.proc-icon-circle svg {
  stroke: #999;
  transition: var(--transition);
}

.proc-card:hover .proc-icon-circle {
  border-color: var(--primary-blue);
  transform: translateY(-5px);
}

/* Active State */
.proc-card.active .proc-icon-circle {
  border-color: var(--primary-blue);
  background: #fff;
  box-shadow: 0 10px 20px rgba(37, 132, 244, 0.15);
}

.proc-card.active svg {
  stroke: var(--primary-blue);
}

.proc-card.active .proc-label {
  color: var(--primary-blue);
  font-weight: 700;
}

.proc-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
}

/* Detail Panels */
.proc-content-wrapper {
  max-width: 960px;
  margin: 0 auto;
  min-height: 200px;
}

.proc-panel {
  display: none;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  animation: fadeIn 0.4s ease-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.proc-panel.active {
  display: flex;
  gap: 30px;
  align-items: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-badge {
  font-size: 16px;
  background: var(--light-blue);
  color: var(--primary-blue);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
}

/* Responsive Adjustments */
@media (max-width: 850px) {
  .proc-navigation::before {
    display: none;
  }

  .proc-navigation {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .proc-panel.active {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .proc-navigation {
    grid-template-columns: 1fr;
  }

  .section-head h2 {
    font-size: 28px;
  }
}
/* Add this to animate the connecting line color based on progress (Optional/Advanced) */
.proc-navigation::after {
  content: "";
  position: absolute;
  top: 36px;
  left: 12.5%;
  width: var(--progress-width, 0%);
  height: 2px;
  background: var(--primary-blue);
  z-index: 0;
  transition: width 0.5s ease;
}

@media (max-width: 850px) {
  .proc-navigation::after {
    display: none;
  }
}
.section-description {
  max-width: 800px; /* Prevents lines from being too long to read */
  margin: 20px auto 0; /* Centers the block */
  font-size: 16px;
  line-height: 1.8; /* Improves readability */
  color: rgb(23, 23, 24);
  text-align: center;
}

/* Responsive adjustment for smaller screens */
@media (max-width: 768px) {
  .section-description {
    font-size: 14px;
    line-height: 1.6;
    padding: 0 10px; /* Ensures text doesn't touch screen edges */
  }
}
:root {
  --gradient-start: #2584f4;
  --gradient-end: #00c6ff;
  --light-gray: #f4f7fa;
}

/* Responsive Container Fix */
.contact-section {
  padding: 60px 0;
}

.form-card {
  background: linear-gradient(135deg, #101835 0%, #2546be 100%);
  border-radius: 24px;
  color: white;
  box-shadow: 0 10px 30px rgba(37, 132, 244, 0.2);
  transition: all 0.3s ease;
}

.custom-input {
  border: none;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 1.5rem;
  margin-top: 1rem;
}
.spn {
  font-size: 1.4rem;
}
.btn-submit {
  background: white;
  color: #0061ff;
  border: none;
  padding: 12px 40px;
  border-radius: 10px;
  font-weight: 600;
  width: auto;
  /* Default for desktop */
  transition: transform 0.2s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  background: #f8f9fa;
  color: #0061ff;
}

.info-card {
  background-color: var(--light-gray);
  border-radius: 24px;
}

.location-pill {
  background: white;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gradient-start);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.contact-text {
  font-size: 3rem;
}
.contact-box {
  background: white;
  padding: 15px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  transition: 0.3s;
}

.icon-circle {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #101835 0%, #2546be 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 12px;
  flex-shrink: 0;
  /* Prevents icon from squishing on mobile */
  font-size: 2rem;
}

.upload-wrapper {
  background: white;
  border-radius: 10px;
  padding: 12px 15px;
  color: #6c757d;
  cursor: pointer;
  font-size: 0.9rem;
}

/* --- MOBILE & TABLET RESPONSIVENESS --- */
@media (max-width: 991.98px) {
  .form-card,
  .info-card {
    padding: 30px !important;
    /* Slightly smaller padding on tablets */
  }
}

@media (max-width: 575.98px) {
  .contact-section {
    padding: 30px 10px;
  }

  .form-card,
  .info-card {
    padding: 20px !important;
    /* Compact padding for small phones */
    border-radius: 18px;
  }

  .btn-submit {
    width: 100%;
    /* Full width button on mobile */
  }

  .contact-box {
    padding: 12px;
  }

  .contact-box span {
    font-size: 0.85rem;
    /* Smaller text for long emails on mobile */
    word-break: break-all;
    /* Prevents email from overflowing */
  }

  h2 {
    font-size: 1.5rem;
  }
}
.cont-icon {
  font-size: 1.4rem;
}
.cont-text {
  font-size: 1.6rem;
  color: #475569;
}

/* Container Styling */
.tekniko-hero-banner {
  background: linear-gradient(135deg, #101835 0%, #2546be 100%);
  border-radius: 34px;
  padding: 100px 20px;
  text-align: center;
  color: #ffffff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  max-width: 1400px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 300px;
}

/* Headline */
.tekniko-hero-banner h1 {
  font-size: 3.8rem;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* Subtext */
.tekniko-hero-banner p {
  font-size: 2.1rem;
  opacity: 0.9;
  margin-bottom: 40px;
  font-weight: 300;
}

/* Button Styling */
.tekniko-cta-button {
  background-color: #ffffff;
  color: #101835;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 2rem;
  display: inline-flex;
  align-items: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.tekniko-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Arrow Icon */
.tekniko-cta-button span {
  margin-left: 10px;
  font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .tekniko-hero-banner {
    padding: 60px 20px;
    min-height: 300px;
  }

  .tekniko-hero-banner h1 {
    font-size: 2rem;
  }
}
.tekniko-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.tekniko-icon {
  display: flex;
  transition: transform 0.3s ease;
}

.tekniko-cta-button:hover .tekniko-icon {
  transform: translateX(5px);
}

.logo-slider {
  overflow: hidden;
  position: relative;
  padding: 50px 0;
  background: hsl(0, 0%, 100%);
}

.slider-track {
  display: flex;
  animation: slide 30s linear infinite;
  width: max-content;
}

.slider-track:hover {
  animation-play-state: paused;
}

.logo-item {
  flex: 0 0 auto;
  padding: 0 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
}

.logo-item img {
  height: 55px;
  width: auto;
  transition: all 0.4s ease;
  /* opacity: 0.85; */
}

.logo-item img:hover {
  opacity: 1;
  transform: scale(1.12);
}

/* Infinite Animation */
@keyframes slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .logo-item {
    min-width: 160px;
    padding: 0 30px;
  }

  .logo-item img {
    height: 58px;
  }
}

@media (max-width: 768px) {
  .logo-item {
    min-width: 140px;
    padding: 0 25px;
  }

  .logo-item img {
    height: 52px;
  }
}

@media (max-width: 480px) {
  .logo-item {
    min-width: 120px;
    padding: 0 20px;
  }

  .logo-item img {
    height: 48px;
  }
}

.section-padding {
  padding: 90px 0;
  background-color: #f0f6ff;
}

.main-text {
  max-width: 800px;
  margin: 0 auto 50px;
  color: #475569;
  font-size: 16px;
  line-height: 1.8;
}

/* GRID - ONE ROW */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* CARD */
.pro-card {
  background: #fff;
  border: 1px solid hsl(213, 72%, 86%);
  border-radius: 20px;
  padding: 24px;
  transition: 0.3s;
  height: 100%;
  min-height: 240px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.pro-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: #0061ff;
}

.card-header-custom {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.icon-box {
  width: 44px;
  height: 44px;
  background: #eef4ff;
  color: #0061ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pro-card:hover .icon-box {
  background: #0061ff;
  color: #fff;
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.card-description {
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .main-title {
    font-size: 28px;
  }

  .section-padding {
    padding: 60px 0;
  }
}

/*enqry from css pop*/

/* --- Updated Modal Logic --- */
.tekniko-modal-content {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.2);
  max-height: 90vh;
  /* Prevents modal from being taller than screen */
  display: flex;
  flex-direction: column;
}

/* Container for the scrollable area */
.tekniko-scroll-body {
  overflow-y: auto;
  overflow-x: hidden;
}

/* Left Info Panel */
.tekniko-info-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  padding: 35px;
  color: #f8fafc;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tekniko-info-card h2 {
  font-weight: 700;
  font-size: 3.8rem;
  margin-bottom: 25px;
  color: #fff;
}

.tekniko-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.tekniko-icon-box {
  background: rgba(56, 189, 248, 0.1);
  color: #38bdf8;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.9rem;
}

.tekniko-contact-text strong {
  display: block;
  color: #38bdf8;
  font-size: 1.7rem;
  letter-spacing: 1px;
}

.tekniko-contact-text span {
  font-size: 1.6rem;
  color: #cbd5e1;
}

/* Right Form Panel */
.tekniko-form-wrapper {
  padding: 35px;
  background: #ffffff;
}

.tekniko-form-wrapper h4 {
  color: #0f172a;
  margin-bottom: 20px;
  font-size: 3.25rem;
}

.tekniko-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 4px;
  display: block;
}

.tekniko-field {
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 10px !important;
  padding: 10px 14px !important;
  font-size: 1.5rem !important;
  margin-bottom: 12px;
}

.tekniko-submit {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  width: 100%;
  margin-top: 10px;
  font-size: 1.6rem;
  transition: 0.3s;
}

/* Close Button */
.tekniko-btn-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 100;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

/* --- Responsive Tweaks --- */
@media (max-width: 768px) {
  .tekniko-info-card {
    padding: 25px;
  }

  .tekniko-info-card h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .tekniko-form-wrapper {
    padding: 25px;
  }

  .tekniko-contact-item {
    margin-bottom: 12px;
  }

  .tekniko-modal-content {
    max-height: 95vh;
  }
}

/* intl-tel-input fix — dono forms */
.iti {
  width: 100%;
  display: block;
}

.iti__flag-container {
  z-index: 10;
}

/* Enquiry modal phone fix */
.tekniko-field.iti__tel-input,
#enquiryPhone {
  width: 100% !important;
  padding-left: 90px !important; /* flag + dial code ki jagah */
}

/* Contact form phone fix */
#phone {
  width: 100% !important;
  padding-left: 90px !important;
}
/* dropdown list background + text fix */
.iti__country-list {
  background: #fff !important;
  color: #000 !important;
}

/* country name text */
.iti__country-name {
  color: #000 !important;
}

/* dial code */
.iti__dial-code {
  color: #000 !important;
}

/* hover state */
.iti__country.iti__highlight {
  background-color: #f2f2f2 !important;
}

/* selected flag text fix */
.iti__selected-dial-code {
  color: #000 !important;
}
