/* \style.css */

/* =========================
   CARDS LAYOUT (KEEP ONLY THIS)
========================= */
.cards-container {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;     /* Box 1 wider */
  grid-template-rows: 1fr 1fr;              /* Box2 top, Box3 bottom */
  grid-template-areas:
    "card1 card2"
    "card1 card3";
  gap: 25px;
  min-height: 350px;
  align-items: stretch;
}

.card-primary { grid-area: card1; }
.card-secondary { grid-area: card2; }
.card-tertiary { grid-area: card3; }


/* =========================
   CARD BASE (BETTER GLASS + PADDING)
========================= */
.card-3d {
  position: relative;
  border-radius: 22px;
  padding: 34px;                           /*  more inner spacing */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: rgba(255, 255, 255, 0.08);   /*  brighter glass */
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

/* subtle shine overlay */
.card-3d::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 300px at 20% 10%,
    rgba(255,255,255,0.10),
    transparent 60%);
  pointer-events: none;
}

/* top accent line */
.card-3d::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00d4ff, #8a2be2);
  opacity: 0.85;                           /*  always visible */
}

.card-3d:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  border-color: rgba(0, 212, 255, 0.28);
}

/* Different background tones per box (slightly brighter than before) */
.card-primary {
  background: linear-gradient(135deg,
    rgba(0, 212, 255, 0.14),
    rgba(138, 43, 226, 0.12));
}

.card-secondary {
  background: rgba(255, 255, 255, 0.07);
}

.card-tertiary {
  background: rgba(255, 255, 255, 0.06);
}


/* =========================
   ICON + CONTENT SPACING
========================= */
.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 212, 255, 0.14);
  border: 1px solid rgba(0, 212, 255, 0.20);
  color: #00d4ff;

  margin-bottom: 18px;                     /*  better spacing */
}

/* Make number + title visible */
.card-number {
  font-size: 0.95rem;
  color: rgba(0, 212, 255, 0.95);
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

/*  Bright Title */
.card-3d h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
  color: #ffffff;
  font-weight: 800;
}

/*  Brighter paragraph (your screenshot shows too dark) */
.card-3d p {
  color: rgba(255, 255, 255, 0.78);        /*  brighter text */
  line-height: 1.65;
  margin-bottom: 18px;
  max-width: 36ch;
}

/* Tags (Box1) */
.card-tags {
  display: flex;
  gap: 10px;
  margin-top: auto;                         /*  pushes tags to bottom nicely */
  flex-wrap: wrap;
}

.card-tags span {
  background: rgba(0, 212, 255, 0.14);
  color: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(0, 212, 255, 0.22);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}


/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991.98px) {
  .cards-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "card1"
      "card2"
      "card3";
    min-height: auto;
    gap: 20px;
    margin-top: 40px;
  }

  .card-3d {
    padding: 28px;
  }
}

@media (max-width: 767.98px) {
  .card-3d h3 { font-size: 1.3rem; }
  .card-3d p { font-size: 0.95rem; }
}


.content-wrapper h1 {
	color:#fff;
}


/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1199px){
  .footer-top .footer-container{
    grid-template-columns: 1.4fr repeat(3, 1fr);
  }
}

@media (max-width: 991.98px){
  .footer-top .footer-container{
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand{
    grid-column: 1 / -1;
  }
}

@media (max-width: 575.98px){
  .footer-top{
    padding: 50px 0 30px;
  }
  .footer-top .footer-container{
    grid-template-columns: 1fr;
  }
  .footer-heading::after{
    width: 70px;
  }
}


/* Version 1 Styles */
.modern-form .form-input,
.modern-form .form-textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    background: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    transition: all 0.3s ease;
}

.modern-form .form-row {
    display: flex;
    gap: 15px;
}

.modern-form .half {
    flex: 1;
}

.modern-form .form-input:focus,
.modern-form .form-textarea:focus {
    outline: none;
    border-color: #16469D;
    box-shadow: 0 0 0 3px rgba(23, 71, 158, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #16469D 0%, #0d2b66 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(23, 71, 158, 0.2);
}

.features-list {
    margin-top: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #fff;
}

/* Version 2 Styles */
.split-layout .banner-style1__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-form .input-group {
    margin-bottom: 20px;
}

.card-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.card-form input,
.card-form select,
.card-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s;
}

.btn-primary {
    background: #16469D;
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

/* Version 3 Styles */
.minimalist .floating-form {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.input-with-icon {
    position: relative;
    margin-bottom: 20px;
}

.input-with-icon .input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
}

.input-with-icon input,
.input-with-icon textarea {
    width: 100%;
    padding: 14px 14px 14px 45px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
}

.btn-send {
    background: #16469D;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 600;
}




/* ===========================
   SolidPro – Modern Testimonials
   (No HTML change required)
=========================== */

:root{
  --sp-primary:#0B3C8A;
  --sp-blue:#1E66D0;
  --sp-red:#E11D2E;
  --sp-bg:#050C18;
  --sp-card:#0E1A2F;
  --sp-border: rgba(30,102,208,.30);
  --sp-text: rgba(255,255,255,.92);
  --sp-muted: rgba(255,255,255,.68);
}

.tp-testimonial-area{
  position: relative;
  padding: clamp(64px, 6vw, 110px) 0;
  background: var(--sp-bg);
  overflow: hidden;
}

/* Background overlay */
.tp-testimonial-bg{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(800px 500px at 20% 35%, rgba(30,102,208,.22), transparent 60%),
    radial-gradient(700px 420px at 80% 45%, rgba(225,29,46,.16), transparent 55%),
    linear-gradient(180deg, rgba(5,12,24,.95), rgba(5,12,24,.88));
  filter: saturate(1.08);
}

/* subtle grid + shine */
.tp-testimonial-area::before{
  content:"";
  position:absolute;
  inset:-2px;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity:.10;
  pointer-events:none;
}
.tp-testimonial-area::after{
  content:"";
  position:absolute;
  width: 520px;
  height: 520px;
  right: -200px;
  top: -180px;
  background: radial-gradient(circle, rgba(30,102,208,.20), transparent 60%);
  filter: blur(10px);
  pointer-events:none;
}

.tp-testimonial-area .container{
  position: relative;
  z-index: 1;
}

/* ===========================
   Header row
=========================== */

.tp-testimonial-top{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 18px;
  margin-bottom: clamp(24px, 2.6vw, 40px);
  opacity:1!important;
}

.tp-testimonial-subtitle{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--sp-border);
  background: rgba(11,60,138,.14);
}

.tp-testimonial-subtitle::before{
  content:"";
  width:8px; height:8px;
  border-radius: 50%;
  background: var(--sp-red);
  box-shadow: 0 0 0 4px rgba(225,29,46,.22);
}

.tp-testimonial-title{
  margin: 14px 0 0;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.12;
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.tp-testimonial-title::after{
  content:"";
  display:block;
  width: 84px;
  height: 3px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sp-blue), var(--sp-red));
  opacity: .9;
}

/* button */
.tp-testimonial-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  color:#fff;
  text-decoration:none;
  font-weight: 700;
  border: 1px solid rgba(225,29,46,.35);
  background: linear-gradient(90deg, rgba(225,29,46,.95), rgba(179,18,32,.95));
  box-shadow: 0 18px 40px rgba(225,29,46,.25);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.tp-testimonial-btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 22px 55px rgba(225,29,46,.32);
}

/* ===========================
   Swiper spacing + slides
=========================== */

.tp-testimonial-slider{
  padding: 18px 6px 42px;
}

.tp-testimonial-slider .swiper-slide{
  height: auto;
}

/* ===========================
   Card – modern glass + border
=========================== */

.tp-testimonial-card{
  position: relative;
  height: 100%;
  padding: 22px 22px 18px;
  border-radius: 22px;
  background: rgba(14,26,47,.78);
  border: 1px solid rgba(30,102,208,.26);
  box-shadow:
    0 30px 70px rgba(0,0,0,.45),
    inset 0 0 0 1px rgba(255,255,255,.04);
  backdrop-filter: blur(10px);
  transition: transform .25s ease, border-color .25s ease;
}

.tp-testimonial-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(30,102,208,.55), rgba(225,29,46,.30));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .55;
  pointer-events:none;
}

.tp-testimonial-card:hover{
  transform: translateY(-4px);
  border-color: rgba(225,29,46,.35);
}

/* card head */
.tp-testimonial-card-head{
  display:flex;
  align-items:center;
  gap: 14px;
  margin-bottom: 14px;
}

.tp-testimonial-avatar{
  width: 52px;
  height: 52px;
  border-radius: 16px;
  padding: 10px;
  background: rgba(11,60,138,.22);
  border: 1px solid rgba(30,102,208,.28);
  display:grid;
  place-items:center;
  flex: 0 0 auto;
}
.tp-testimonial-avatar img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tp-testimonial-name{
  margin:0;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}
.tp-testimonial-role{
  margin: 2px 0 0;
  font-size: 13px;
  color: rgba(255,255,255,.68);
}

/* quote text */
.tp-testimonial-text{
  margin: 14px 0 18px;
  color: rgba(255,255,255,.80);
  font-size: 14.5px;
  line-height: 1.65;
  position: relative;
  padding-left: 14px;
}

.tp-testimonial-text::before{
  content:"";
  position:absolute;
  left:0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--sp-blue), var(--sp-red));
  opacity: .9;
}

/* footer */
.tp-testimonial-card-foot{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.tp-testimonial-company{
  width: 88px;
  height: 22px;
  opacity: .92;
}
.tp-testimonial-company img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tp-testimonial-rating{
  display:flex;
  gap: 4px;
  font-size: 14px;
  color: #FFD56A; /* warm gold looks premium */
  opacity: .95;
}

/* ===========================
   Swiper pagination dots
=========================== */
.tp-testimonial-pagination{
  bottom: 0 !important;
}
.tp-testimonial-pagination .swiper-pagination-bullet{
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,.18);
  opacity: 1;
  border: 1px solid rgba(30,102,208,.35);
  transition: transform .2s ease, background .2s ease;
}
.tp-testimonial-pagination .swiper-pagination-bullet-active{
  background: linear-gradient(90deg, var(--sp-blue), var(--sp-red));
  transform: scale(1.15);
  border-color: rgba(225,29,46,.45);
}

/* ===========================
   Responsive
=========================== */
@media (max-width: 768px){
  .tp-testimonial-top{
    flex-direction: column;
    align-items: flex-start;
  }
  .tp-testimonial-btn-wrap{
    width: 100%;
  }
  .tp-testimonial-btn{
    width: 100%;
  }
}






/* Image Stack Container */
.service-image-stack {
  display: flex;
  gap: 14px;
  margin-bottom: 30px;
}

/* Individual Images */
.service-image-stack img {
  width: 100%;
  max-width: 110px;
  height: 140px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Staggered look */
.service-image-stack img:nth-child(2) {
  margin-top: 20px;
}
.service-image-stack img:nth-child(3) {
  margin-top: 40px;
}

/* Hover effect */
.service-image-stack img:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
}

/* Responsive */
@media (max-width: 991px) {
  .service-image-stack {
    justify-content: center;
  }

  .service-image-stack img {
    max-width: 90px;
    height: 120px;
  }
}


.service-item-wrapper {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease-in-out;
}

/* Stagger using nth-child */
.service-wrapper-2 .service-item-wrapper:nth-child(1) {
  transition-delay: 0.2s;
}
.service-wrapper-2 .service-item-wrapper:nth-child(2) {
  transition-delay: 0.4s;
}
.service-wrapper-2 .service-item-wrapper:nth-child(3) {
  transition-delay: 0.6s;
}
.service-wrapper-2 .service-item-wrapper:nth-child(4) {
  transition-delay: 0.8s;
}

/* Active state when in view */
.service-wrapper-2 .service-item-wrapper.active {
  opacity: 1;
  transform: translateX(0);
}




.page-wrapper {
    padding-top: 0px;
}


.zigzag-banner {
  position: relative;
  height: 60vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0b0f1a;
}

/* Background image */
.inner-banner__bg {
  position: absolute;
  inset: 0;
  background: url('assets/images/background/page-title.jpg') center/cover no-repeat;
  z-index: 1;
}

/* Dark overlay */
.inner-banner__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(11,15,26,0.9),
    rgba(11,15,26,0.55),
    rgba(11,15,26,0.25)
  );
}

/* ✨ Animated light sweep */
.banner-light {
  position: absolute;
  inset: -50%;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,0.08) 45%,
    rgba(255,255,255,0.18) 50%,
    rgba(255,255,255,0.08) 55%,
    transparent 70%
  );
  z-index: 2;
  animation: lightSweep 10s linear infinite;
}

/* Zig-zag bottom */
.zigzag-banner::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 140px;
  background: #ffffff;
  clip-path: polygon(
    0 0,
    25% 40%,
    50% 0,
    75% 40%,
    100% 0,
    100% 100%,
    0 100%
  );
  z-index: 6;
}

/* Content */
.inner-banner__content {
  position: relative;
  z-index: 5;
  max-width: 720px;
}

.inner-banner__title {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
}

.inner-banner__breadcrumb {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: #ddd;
}

.inner-banner__breadcrumb li a {
  color: #fff;
  text-decoration: none;
}

/* Light sweep animation */
@keyframes lightSweep {
  from {
    transform: translateX(-40%) rotate(0deg);
  }
  to {
    transform: translateX(40%) rotate(0deg);
  }
}

/* Logo */
.banner-logo {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 7;
  background: #fff;
  padding: 16px;
  border-radius: 50%;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.banner-logo img {
  width: 70px;
}

/* Responsive */
@media (max-width: 768px) {
  .zigzag-banner {
    height: 45vh;
  }

  .zigzag-banner::after {
    height: 90px;
  }
}


/* Diagonal moving lines */
.diagonal-lines {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255,255,255,0.08) 0px,
    rgba(255,255,255,0.08) 1px,
    transparent 1px,
    transparent 12px
  );
  opacity: 0.4;
  animation: diagonalMove 25s linear infinite;
}

/* Animation */
@keyframes diagonalMove {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 400px 400px;
  }
}


.zigzag-banner {
  position: relative;
  height: 60vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0b0f1a;
}

/* Background image */
.inner-banner__bg {
  position: absolute;
  inset: 0;
  background: url('assets/images/background/page-title.jpg') center/cover no-repeat;
  z-index: 1;
}

/* Dark overlay */
.inner-banner__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(11,15,26,0.9),
    rgba(11,15,26,0.55),
    rgba(11,15,26,0.25)
  );
}

/* ✨ Animated light sweep */
.banner-light {
  position: absolute;
  inset: -50%;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,0.08) 45%,
    rgba(255,255,255,0.18) 50%,
    rgba(255,255,255,0.08) 55%,
    transparent 70%
  );
  z-index: 2;
  animation: lightSweep 10s linear infinite;
}

/* Zig-zag bottom */
.zigzag-banner::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 140px;
  background: #16469D;
  clip-path: polygon(
    0 0,
    25% 40%,
    50% 0,
    75% 40%,
    100% 0,
    100% 100%,
    0 100%
  );
  z-index: 6;
}

/* Content */
.inner-banner__content {
  position: relative;
  z-index: 5;
  max-width: 720px;
}

.inner-banner__title {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
}

.inner-banner__breadcrumb {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: #ddd;
}

.inner-banner__breadcrumb li a {
  color: #fff;
  text-decoration: none;
}

/* Light sweep animation */
@keyframes lightSweep {
  from {
    transform: translateX(-40%) rotate(0deg);
  }
  to {
    transform: translateX(40%) rotate(0deg);
  }
}

/* Logo */
.banner-logo {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 7;
  background: #fff;
  padding: 16px;
  border-radius: 50%;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.banner-logo img {
  width: 70px;
}

/* Responsive */
@media (max-width: 768px) {
  .zigzag-banner {
    height: 45vh;
  }

  .zigzag-banner::after {
    height: 90px;
  }
}


/* 🍎 Apple-style grain texture */


/* .zigzag-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('assets/images/noise.png');
  background-repeat: repeat;
  opacity: 0.08; 
  z-index: 3;
  pointer-events: none;
  animation: grainMove 8s steps(10) infinite;
} */


.inner-banner__title {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.one-line-title {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;     /* 🔑 KEY LINE */
  flex-wrap: nowrap;       /* 🔑 KEY LINE */
}

.static-text {
  color: #fff;
  font-weight: 800;
}

.typed-text {
  color: #E01A22;
  font-weight: 600;
  border-right: 2px solid #E01A22;
  padding-right: 6px;
  animation: blinkCursor 0.8s infinite;
}

@keyframes blinkCursor {
  0%, 50%, 100% { border-color: #E01A22; }
  25%, 75% { border-color: transparent; }
}



/* Global 3D perspective */
.about-style6 {
  perspective: 1200px;
}

/* Initial hidden state */
.aos-3d {
  opacity: 0;
  transform:
    translateY(60px)
    rotateX(15deg)
    scale(0.96);
  transition:
    transform 0.9s cubic-bezier(.19,1,.22,1),
    opacity 0.9s ease;
  will-change: transform, opacity;
}

/* Active state */
.aos-3d.aos-active {
  opacity: 1;
  transform:
    translateY(0)
    rotateX(0deg)
    scale(1);
}

/* Image extra depth */
.about-style6__img .inner {
  transform-style: preserve-3d;
}

.about-style6__img img {
  border-radius: 14px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.25);
}

/* Feature card pop */
.single-features-box-style1 {
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.single-features-box-style1:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}




/* ============================================
   ENHANCED PROBLEM-SOLUTION SECTION v2
   Modern, dynamic, and visually striking
============================================ */
.problem-solution-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f9fafc 0%, #f0f4ff 100%);
  position: relative;
  overflow: hidden;
}

.problem-solution-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #16469D, #E01A22, #16469D);
  background-size: 200% 100%;
  animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 80px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: linear-gradient(135deg, rgba(23, 71, 158, 0.1), rgba(5, 150, 105, 0.1));
  border-radius: 50px;
  border: 1px solid rgba(23, 71, 158, 0.2);
  margin-bottom: 30px;
  font-weight: 600;
}

.badge-icon {
  font-size: 20px;
  animation: bounce 1.8s ease-in-out infinite;
}




.industry-challenges .section-header h2 {
  font-size: 3rem;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 20px;
  line-height: 1.2;
  background: linear-gradient(135deg, #fff, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #475569;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto;
}

/* Comparison Grid */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 80px;
}

@media (max-width: 992px) {
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

/* Cards */
.comparison-card {
  background: white;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid transparent;
}

.comparison-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
}

.comparison-card.problem {
  border-color: #fca5a5;
}

.comparison-card.solution {
  border-color: #a7f3d0;
}

/* Card Header */
.card-header {
  padding: 40px 40px 30px;
  border-bottom: 1px solid #e2e8f0;
}

.card-tag {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 24px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.problem .card-tag {
  background: #fee2e2;
  color: #dc2626;
}

.solution .card-tag {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  color: #16469D;
}

.card-icon-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
}

.card-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.problem .card-icon {
  background: linear-gradient(135deg, #f87171, #ef4444);
  color: white;
}

.solution .card-icon {
  background: linear-gradient(135deg, #16469D, #16469D);
  color: white;
}

.card-title-wrapper h3 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 5px 0;
}

.card-subtitle {
  color: #64748b;
  font-size: 0.95rem;
}

/* Card Items */
.card-items {
  padding: 30px 40px;
}

.card-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  margin-bottom: 15px;
  background: #f8fafc;
  border-radius: 20px;
  transition: all 0.3s ease, transform 0.3s ease;
  border: 1px solid transparent;
}

.card-item:hover {
  background: white;
  border-color: #e2e8f0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transform: translateX(5px) scale(1.01);
}

.item-icon {
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.icon-bg {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.problem .icon-bg {
  background: white;
  color: #ef4444;
  border: 2px solid #fecaca;
}

.solution .icon-bg {
  background: white;
  color: #16469D;
  border: 2px solid #a7f3d0;
}

.item-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.item-badge.benefit {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  color: #16469D;
}

.item-content {
  flex: 1;
}

.item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.item-header h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
}

.item-score {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.item-score.negative {
  background: #fee2e2;
  color: #dc2626;
}

.item-score.positive {
  background: #d1fae5;
  color: #16469D;
}

.item-content p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* Card Footer */
.card-footer {
  padding: 20px 40px;
  border-top: 1px solid #f1f5f9;
}

.warning-message,
.benefit-message {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.warning-message {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

.benefit-message {
  background: #f0fdf4;
  color: #16469D;
  border: 1px solid #a7f3d0;
}

/* Results Showcase */
.results-showcase {
  background: white;
  border-radius: 32px;
  padding: 60px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-top: 6px solid #16469D;
}

.results-header h3 {
  font-size: 2.4rem;
  font-weight: 900;
}

.results-header .highlight {
  color: #16469D;
  position: relative;
}

.results-header .highlight::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 10px;
  background: rgba(23, 71, 158, 0.15);
  z-index: -1;
}

/* Result Cards */
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.result-card {
  background: #f8fafc;
  border-radius: 24px;
  padding: 30px;
  text-align: center;
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
}

.result-card:hover {
  transform: translateY(-12px) scale(1.02);
  background: white;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  border-color: #16469D;
}

.result-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, #16469D, #16469D);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  box-shadow: 0 15px 35px rgba(23, 71, 158, 0.25);
}

/* CTA Button */
.btn-gradient {
  background: linear-gradient(135deg, #16469D, #16469D);
  color: white;
  border: none;
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 50px rgba(23, 71, 158, 0.3);
  color: white;
}

/* Responsive tweaks for small screens */
@media (max-width: 992px) {
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .card-icon-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .card-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .item-header {
    flex-direction: column;
    gap: 10px;
  }
  
  .results-showcase {
    padding: 40px;
  }
}

@media (min-width: 577px) {
 .showcase-section .tech-grid-pattern , .showcase-section .glow-orb{
    display:none;
  }
}

@media (max-width: 576px) {
  .section-header h2 {
    font-size: 1.6rem;
  }
  
  .comparison-card {
    border-radius: 20px;
  }
  
  .results-showcase {
    padding: 30px;
  }
  
  .result-card {
    padding: 25px;
  }

 

 
}


/* =========================================
   CLEAN INTEGRATED FUTURE WORKFLOW
========================================= */

.clean-workflow {
  padding: 60px 40px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Grid Layout */
.workflow-grid {
  display: grid;
  grid-template-columns: 1fr 220px 1fr;
  grid-template-rows: 1fr 220px 1fr;
  place-items: center;
  gap: 40px;
  position: relative;
  margin: 0 auto 40px;
  max-width: 900px;
}

/* =========================================
   CENTER HUB
========================================= */

.workflow-hub {
  grid-column: 2;
  grid-row: 2;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #16469D, #16469D);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 20px 60px rgba(16, 185, 129, 0.35);
  position:relative;
  z-index:99999;
}

.workflow-hub i {
  font-size: 28px;
  margin-bottom: 6px;
}

.workflow-hub span {
  font-size: 12px;
  letter-spacing: 0.5px;
}

/* =========================================
   DISCIPLINE CARDS
========================================= */

.discipline-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 22px;
  width: 180px;
  text-align: center;
  border: 2px solid #d1fae5;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.discipline-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(16, 185, 129, 0.25);
}

.discipline-card i {
  font-size: 26px;
  color: #16469D;
  margin-bottom: 10px;
}

.discipline-card h5 {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.discipline-card span {
  font-size: 12px;
  color: #16469D;
  font-weight: 600;
}

/* =========================================
   GRID POSITIONS
========================================= */

.design {
  grid-column: 2;
  grid-row: 1;
}

.hardware {
  grid-column: 3;
  grid-row: 2;
}

.software {
  grid-column: 2;
  grid-row: 3;
}

.manufacturing {
  grid-column: 1;
  grid-row: 2;
}

/* =========================================
   CONNECTING LINES
========================================= */

.workflow-grid::before {
  content: "";
  position: absolute;
  width: 60%;
  height: 2px;
  background: linear-gradient(to right, #a7f3d0, transparent);
  top: 50%;
}

.workflow-grid::after {
  content: "";
  position: absolute;
  height: 60%;
  width: 2px;
  background: linear-gradient(to bottom, #a7f3d0, transparent);
  left: 50%;
}

/* =========================================
   RESPONSIVE (MOBILE)
========================================= */

@media (max-width: 768px) {
  .workflow-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 20px;
  }

  .workflow-grid::before,
  .workflow-grid::after {
    display: none;
  }

  .workflow-hub {
    order: -1;
    margin-bottom: 20px;
  }

  .discipline-card {
    width: 100%;
    max-width: 280px;
  }
}


/* =========================================
   RESULTS SECTION FIX
========================================= */

/* Ensure proper stacking */
.results-showcase {
  position: relative;
  z-index: 1;
}

/* Section Title */
.results-header {
  margin-bottom: 60px;   /* more breathing room */
}

.results-header h3 {
  line-height: 1.3;
}

/* Prevent overlap with charts */
.results-comparison {
  margin-top: 40px;      /* pushes charts down */
  margin-bottom: 60px;
  align-items: flex-end; /* bars align cleanly */
}

/* Chart container */
.comparison-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 260px;         /* FIXED vertical space */
  position: relative;
}

/* Chart bars */
.chart-bar {
  width: 100%;
  max-width: 120px;
  border-radius: 8px 8px 0 0;
  position: relative;
}

/* Labels stay inside bar area */
.bar-label {
  top: -22px;
}

.bar-value {
  bottom: -28px;
}

/* Title spacing */
.chart-title {
  margin-top: 50px;
}

/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {
  .results-comparison {
    margin-top: 20px;
    gap: 40px;
  }

  .comparison-chart {
    height: 220px;
  }
}


/* ======================
   STEP ICON (ONLY SCALE)
====================== */
.step-dot{
  width:46px;
  height:46px;
  border-radius:50%;
  background:#fff;
  border:2px solid #d6dbe6;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.step-dot i{
  font-size:18px;
  color:#6b7280;
  transition:font-size 0.25s ease, color 0.25s ease;
}

/* ONLY grow icon */
.step-dot:hover,
.step-dot.active{
  transform:scale(1.25);
  border-color:#16469D;
  box-shadow:0 8px 20px rgba(37,99,235,0.25);
}

.step-dot:hover i,
.step-dot.active i{
  font-size:22px;
  color:#16469D;
}

/* ======================
   CARDS (NO MOVEMENT)
====================== */
.method-card{
  opacity:0.6;
  transition:opacity 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.method-card.active{
  opacity:1;
  border:2px solid #16469D;
  box-shadow:0 18px 35px rgba(37,99,235,0.15);
}


/* Make sure hero text is ALWAYS visible */
.hero-title{
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  color: #ffffff !important;              /* IMPORTANT: force visible text */
  -webkit-text-fill-color: initial !important; /* IMPORTANT: prevent invisible text */
}

/* Apply gradient ONLY to the span (safe + reliable) */
.gradient-text{
  background: linear-gradient(135deg, #ffffff 0%, #16469D 50%, #E01A22 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}

/* Reduce the giant empty panel height once heading appears */
.product-design-hero .col-lg-7::before{
  inset: -14px !important;
  border-radius: 22px !important;
}


.product-design-hero .container,
.product-design-hero .row{
  position: relative;
  z-index: 2;
}




/* ---------- HERO LAYOUT FIX (Bootstrap-safe) ---------- */
.product-design-hero{
  position: relative;
  padding: 170px 0 110px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-row{
  min-height: 520px; /* keeps hero balanced */
}

.hero-content{
  position: relative;
  z-index: 2;
}

/* Title - force visible (prevents gradient causing invisible text) */
.hero-title{
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
  color: #eafff6 !important;
  -webkit-text-fill-color: initial !important;
}

.hero-accent{
  color: #a7f3d0;
  font-size: 3.5rem;
}

/* Right side should actually take space */
.hero-visual{
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* IMPORTANT: remove absolute positioning */
.hero-3d-container{
  position: relative !important;
  right: auto !important;
  top: auto !important;
  transform: none !important;

  width: 100%;
  max-width: 460px;
  height: 420px;

  border-radius: 24px;
  background:
    radial-gradient(circle at 30% 30%, rgba(76,201,240,0.10), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(167,243,208,0.08), transparent 55%);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Cube */
.hero-cube{
  width: 210px;
  height: 210px;
  transform-style: preserve-3d;
  animation: rotateCube 25s infinite linear;
  opacity: 0.75;
}

/* Keep your cube faces, but ensure visibility */
.cube-face{
  border-radius: 16px;
  backface-visibility: hidden;
}

/* Mobile fixes */
@media (max-width: 991px){
  .product-design-hero{
    min-height: auto;
    padding: 140px 0 70px;
  }
  .hero-title{ font-size: 2.6rem; }
  .hero-accent{ font-size: 2.3rem; }
  .hero-3d-container{
    margin-top: 28px;
    height: 320px;
    max-width: 520px;
  }
}



/* header is already fixed, ok */

/* Progress line - always visible */
.scroll-line{
  position: fixed;      /*  not absolute */
  top: 0;               /*  show at top of page */
  left: 0;
  height: 3px;
  width: 0%;
  display: block;
  background: #0b3c8c;  /* blue line */
  z-index: 999999;
  pointer-events: none;
}




.scroll-line{ background: red !important; height: 6px !important; }






.scroll-line{ background: red !important; height: 6px !important; }






/* IMAGE WRAPPER */
.image-anim-wrap {
  position: relative;
  perspective: 1200px;
}

/* IMAGE BOX */
.single-box {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

/* IMAGE */
.single-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

/* FLOATING MOTION */
.floating-img {
  animation: floatY 6s ease-in-out infinite;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

/* STAGGER EFFECT */
.delay-100 { animation-delay: 0.1s; }
.delay-300 { animation-delay: 0.3s; }

/* HOVER 3D TILT */
.single-box:hover {
  transform: rotateY(-8deg) rotateX(6deg) translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

.single-box::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  background: linear-gradient(
    120deg,
    rgba(0,180,255,0.6),
    rgba(0,80,255,0.2),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.single-box:hover::after {
  opacity: 1;
}

.card-3d {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  color: #fff;
}

/* IMAGE LAYER */
.card-3d::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--card-bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  transition: transform 1s ease;
  z-index: 1;
}

/* OVERLAY LAYER */
.card-3d::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,15,30,0.75),
    rgba(10,15,30,0.9)
  );
  transition: opacity 0.5s ease;
  z-index: 2;
}

/* CONTENT ABOVE */
.card-3d > * {
  position: relative;
  z-index: 3;
}


.card-hover:hover::before {
  transform: scale(1.25);
}

.card-hover:hover::after {
  opacity: 0.35;   /* 🔥 IMAGE BECOMES CLEAR */
}



.heroThumbs.style2 {
    bottom: 10px!important;
}



.utility-link:hover i {
    transform: scaleX(1);
}


.hero-main-content .highlight-text {
    color: #E01A22;
    font-weight: 600;
    margin-top: 1rem;
    padding-left: 1rem;
    border-left: 4px solid #E01A22;
}

.clickable-arrow {
    display: inline-block;
    cursor: pointer;
    outline: none;
    transition: transform 0.3s ease;
}

/* Slide left‑to‑right when row is hovered */
.service-table-row:hover .clickable-arrow {
    transform: translateX(6px);
}

/* Rotate 360° on click (triggered by JavaScript) */
.clickable-arrow.rotate-effect i {
    animation: spin 0.5s ease-in-out;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}



/* === innovation-showcase specific styles === */
.innovation-showcase {
  padding: 80px 0;
  background: #ffffff;
  font-family: 'Inter', sans-serif;
}

.showcase-header {
  text-align: center;
  margin-bottom: 3rem;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: #16469D;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3rem;
}

.image-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 40px -20px rgba(0,0,0,0.3);
  transform: rotate(2deg);
  transition: transform 0.3s;
}
.image-wrapper:hover {
  transform: rotate(0deg) scale(1.02);
}
.showcase-img {
  width: 100%;
  height: auto;
  display: block;
}

.showcase-title {
  font-size: 26px;
  font-weight: 700;
  color: #16469D;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.showcase-subtitle {
  font-size: 1.2rem;
  color: #2d3748;
  margin-bottom: 2rem;
}
.accent {
  color: #E01A22;
  font-weight: 600;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.spec-item {
  background: #f8fafc;
  border-radius: 16px;
  padding: 1.2rem 1rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border: 1px solid #edf2f7;
  transition: all 0.2s;
}
.spec-item:hover {
  background: #ffffff;
  border-color: #16469D;
  box-shadow: 0 8px 20px rgba(23,71,158,0.1);
}
.spec-item i {
  font-size: 1.8rem;
  color: #16469D;
  flex-shrink: 0;
}
.spec-item div {
  display: flex;
  flex-direction: column;
}
.spec-item strong {
  font-size: 1rem;
  font-weight: 600;
  color: #0b1a33;
}
.spec-item span {
  font-size: 0.9rem;
  color: #4a5b6e;
}
.full-width {
  grid-column: span 2;
}

.showcase-footer {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.showcase-description {
  font-size: 1.1rem;
  color: #2d3748;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.btn-outline-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #16469D;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #16469D;
  transition: all 0.3s;
}
.btn-outline-secondary:hover {
  background: #16469D;
  color: #fff;
  transform: translateY(-3px);
}

/* responsive */
@media (max-width: 992px) {
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .spec-grid {
    grid-template-columns: 1fr;
  }
  .full-width {
    grid-column: span 1;
  }
}

.hero-main-content .highlight-text {
    color: #E01A22;
    font-weight: 600;
    margin-top: 1rem;
    padding-left: 1rem;
    border-left: 4px solid #E01A22;
}
		/* Innovation specific styles */
		.innovation-hero .btn-outline-secondary {
			background: transparent;
			color: #16469D;
			padding: 1rem 2rem;
			border-radius: 50px;
			font-weight: 600;
			text-decoration: none;
			border: 2px solid #16469D;
			transition: all 0.3s;
			display: inline-flex;
			align-items: center;
			gap: 10px;
			margin-left: 1rem;
		}
		
		.innovation-hero .btn-outline-secondary:hover {
			background: #16469D;
			color: white;
			transform: translateY(-2px);
		}
		
		.innovation-cta {
			display: flex;
			flex-wrap: wrap;
			gap: 1rem;
			margin-top: 2rem;
		}
		
		.innovation-platform {
			padding: 80px 0;
			background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
		}
		
		.platform-badge {
			margin-bottom: 1.5rem;
		}
		
		.platform-badge .badge {
			background: #16469D;
			color: white;
			padding: 0.5rem 1.5rem;
			border-radius: 50px;
			font-weight: 600;
			font-size: 0.9rem;
			letter-spacing: 1px;
		}
		
		.platform-title {
			font-size: 2.5rem;
			font-weight: 700;
			color: #0b1a33;
			margin-bottom: 1.5rem;
		}
		
		.platform-subtitle {
			font-size: 1.2rem;
			color: #2d3748;
			margin-bottom: 1.5rem;
			font-weight: 500;
		}
		
		.platform-features {
			list-style: none;
			padding: 0;
			margin-bottom: 2rem;
		}
		
		.platform-features li {
			margin-bottom: 1rem;
			font-size: 1.1rem;
			display: flex;
			align-items: center;
			gap: 10px;
		}
		
		.platform-features li i {
			color: #16469D;
			font-size: 1.2rem;
		}
		
		.platform-description {
			color: #4a5b6e;
			margin-bottom: 2rem;
			font-size: 1.1rem;
			line-height: 1.6;
		}
		
		.platform-link {
			display: inline-flex;
			align-items: center;
			gap: 10px;
			color: #16469D;
			font-weight: 600;
			text-decoration: none;
			padding: 1rem 2rem;
			border: 2px solid #16469D;
			border-radius: 50px;
			transition: all 0.3s;
		}
		
		.platform-link:hover {
			background: #16469D;
			color: white;
			transform: translateY(-2px);
		}
		
		.platform-image {
			position: relative;
			border-radius: 20px;
			overflow: hidden;
			box-shadow: 0 20px 40px rgba(0,0,0,0.1);
		}
		
		.platform-image img {
			width: 100%;
			transition: transform 0.5s;
		}
		
		.platform-image:hover img {
			transform: scale(1.05);
		}
		
		.image-accent {
			position: absolute;
			bottom: -20px;
			right: -20px;
			width: 200px;
			height: 200px;
			background: rgba(225,27,34,0.1);
			border-radius: 50%;
			z-index: -1;
		}
		
		.value-creation {
			padding: 20px 0;
			background: white;
		}
		
		.value-card {
			background: #f8fafc;
			padding: 2rem;
			border-radius: 16px;
			text-align: center;
			transition: all 0.3s;
			border: 1px solid #e2e8f0;
			height: 100%;
		}
		
		.value-card:hover {
			transform: translateY(-10px);
			box-shadow: 0 20px 40px rgba(23,71,158,0.1);
			border-color: #16469D;
		}
		
		.value-card i {
			font-size: 2.5rem;
			color: #16469D;
			margin-bottom: 1rem;
		}
		
		.value-card h4 {
			font-size: 1.2rem;
			font-weight: 600;
			color: #0b1a33;
			margin: 0;
		}
		
		.value-summary {
			margin-top: 2rem;
			font-size: 1.2rem;
			color: #E01A22;
			font-weight: 600;
			padding: 1.5rem;
			background: #f8fafc;
			border-radius: 50px;
		}
		
		@media (max-width: 768px) {
			.innovation-cta {
				flex-direction: column;
			}
			.innovation-hero .btn-outline-secondary {
				margin-left: 0;
			}
			.platform-title {
				font-size: 2rem;
			}
		}











   





       


        @media (max-width: 767px) {


  .container {
    padding-left: 15px;
    padding-right: 15px;
  }



  .col-xl-3, .col-xl-9 {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }

 

  .sec-title.withtext {
    text-align: center;
  }

  .sec-title .sub-title h4 {
    font-size: 1rem;
  }

  .sec-title h2 {
    font-size: 1.75rem;
  }



  .swiper {
    padding-bottom: 2rem;
  }

 

  .img-box img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .case-studies-title h3 {
    font-size: 1rem;
    margin-top: 0.75rem;
  }

  /* Custom navigation arrows positioning */
  .swiper-navigation-custom {
    position: absolute;
    bottom: 0;
    top: auto;
    transform: none;
    justify-content: center;
    gap: 1rem;
    width: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .swiper-navigation-custom button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .swiper-navigation-custom button .icon-right-arrow-2,
  .swiper-navigation-custom button .icon-right-arrow-21 {
    font-size: 1rem;
  }
}





/* CSS for 320px Maximum Screens */
@media (max-width: 320px) {
  .ltts-footer__top {
    padding: 30px 0 20px;
  }

  .ltts-container {
    padding: 0 12px;
  }

  .ltts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ltts-col {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
  }

  .ltts-col:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .ltts-title {
    font-size: 14px;
    margin-bottom: 12px;
    cursor: pointer;
    justify-content: space-between;
    display: flex;
    align-items: center;
    font-weight: 600;
  }

  .ltts-title .ext {
    display: none;
  }

  /* Chevron indicator */
  .ltts-title::after {
    content: "▼";
    font-size: 8px;
    transition: transform 0.3s ease;
    color: #00d9ff;
  }

  .ltts-col.open .ltts-title::after,
  .ltts-col.active .ltts-title::after {
    transform: rotate(180deg);
  }

  .ltts-row-toggle {
    font-size: 12px;
    padding: 8px 0;
    display: block;
    color: #b0b0d0;
    text-decoration: none;
  }

  button.ltts-row-toggle {
    font-size: 12px;
    width: 100%;
    text-align: left;
    background: #1a1a2e;
    border: none;
    color: #b0b0d0;
    cursor: pointer;
    padding: 8px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .chev {
    font-size: 9px;
    transition: transform 0.3s ease;
  }

  button.ltts-row-toggle[aria-expanded="true"] .chev {
    transform: rotate(180deg);
  }

  .ltts-sublist {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    padding-left: 10px;
  }

  .ltts-col.active .ltts-sublist {
    max-height: 400px;
    opacity: 1;
    margin-top: 8px;
  }

  .ltts-sublist a {
    font-size: 11px;
    padding: 6px 0;
    display: block;
    color: #8a8ab0;
    text-decoration: none;
  }

  .ltts-sublist a:hover {
    color: #00d9ff;
    transform: translateX(3px);
  }

  .ltts-spacer {
    height: 8px;
  }

  /* Footer Bottom */
  .ltts-footer__bottom {
    padding: 20px 0;
  }

  .ltts-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .ltts-brand img {
    height: 28px;
    width: auto;
  }

  .ltts-legal {
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
  }

  .ltts-legal a {
    font-size: 9px;
    padding: 2px 0;
    color: #b0b0d0;
    text-decoration: none;
  }

  .ltts-social {
    gap: 14px;
    justify-content: center;
    display: flex;
  }

  .ltts-social-link {
    font-size: 13px;
    color: #b0b0d0;
    transition: color 0.3s ease;
  }

  .ltts-social-link:hover {
    color: #00d9ff;
  }

 
}

.banner-btn .btn-primary {
    width:auto!important;
}










/* \home-css.css */
:root {
		--unique-blue-primary: #2b6cb0;
		--unique-blue-deep: #2c5282;
		--unique-teal-accent: #0c7c7c;
		--unique-violet-accent: #805ad5;
		--unique-gold-accent: #d69e2e;
		--unique-coral-accent: #ed8936;
		--unique-mint-accent: #38a169;
		--unique-indigo-accent: #5a67d8;
		--unique-aqua-accent: #00b5d8;
		--unique-dark-base: #1a202c;
		--unique-light-base: #f7fafc;
		--unique-card-surface: #ffffff;
		--unique-text-dark: #2d3748;
		--unique-text-light: #718096;
		--unique-shadow-large: 0 20px 45px rgba(0, 0, 0, 0.15);
		--unique-shadow-xlarge: 0 25px 55px rgba(0, 0, 0, 0.2);
		--unique-border-curve: 22px;
	}
	/* Unique section identifier */
	
	#unique-capabilities-2024 {
		padding: 15px 0;
		background: linear-gradient(145deg, rgba(247, 250, 252, 1) 0%, rgba(235, 248, 255, 0.95) 50%, rgba(233, 240, 255, 0.95) 100%);
		position: relative;
		overflow: hidden;
		isolation: isolate;
	}
	/* Exclusive background animation */
	
	.unique-dynamic-background {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: radial-gradient(circle at 15% 25%, rgba(43, 108, 176, 0.07) 0%, transparent 55%), radial-gradient(circle at 85% 75%, rgba(128, 90, 213, 0.07) 0%, transparent 55%), radial-gradient(circle at 35% 85%, rgba(12, 124, 124, 0.07) 0%, transparent 55%);
		z-index: -1;
		animation: uniqueBgFloat 25s infinite alternate ease-in-out;
	}
	
	@keyframes uniqueBgFloat {
		0% {
			transform: translate(0, 0) scale(1) rotate(0deg);
		}
		50% {
			transform: translate(20px, 15px) scale(1.05) rotate(1deg);
		}
		100% {
			transform: translate(-15px, 10px) scale(1.08) rotate(-1deg);
		}
	}
	/* Exclusive connecting line */
	
	.unique-connector {
		position: absolute;
		left: 50%;
		top: 0;
		width: 3px;
		height: 0;
		background: linear-gradient(to bottom, transparent, var(--unique-blue-primary), var(--unique-teal-accent), var(--unique-violet-accent), transparent);
		z-index: 0;
		opacity: 0.4;
		animation: uniqueLineExpand 2.2s ease-out forwards;
		animation-delay: 0.8s;
		filter: blur(0.5px);
	}
	
	@keyframes uniqueLineExpand {
		0% {
			height: 0;
			top: 0;
			opacity: 0;
		}
		100% {
			height: 100%;
			top: 0;
			opacity: 0.4;
		}
	}
	
	.unique-container-wrapper {
		position: relative;
		z-index: 1;
	}
	/* Exclusive Image Gallery */
	
	.unique-visual-showcase {
		position: relative;
		height: 720px;
		width: 100%;
		perspective: 1400px;
	}
	
	.unique-visual-card {
		position: absolute;
		border-radius: var(--unique-border-curve);
		overflow: hidden;
		box-shadow: var(--unique-shadow-large);
		transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
		border: 12px solid white;
		background: white;
	}
	
	.unique-visual-primary {
		width: 72%;
		height: 62%;
		top: 4%;
		left: 4%;
		z-index: 3;
		transform: rotate(-5deg);
	}
	
	.unique-visual-secondary {
		width: 62%;
		height: 52%;
		bottom: 8%;
		right: 4%;
		z-index: 2;
		transform: rotate(6deg);
	}
	
	.unique-visual-tertiary {
		width: 58%;
		height: 48%;
		top: 42%;
		left: 18%;
		z-index: 1;
		transform: rotate(-3deg);
	}
	
	.unique-visual-card:hover {
		transform: scale(1.06) rotate(0deg) !important;
		z-index: 20 !important;
		box-shadow: 0 40px 80px rgba(0, 0, 0, 0.22);
		border-width: 8px;
	}
	
	.unique-visual-card img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
	}
	
	.unique-visual-card:hover img {
		transform: scale(1.15);
	}
	/* Exclusive Content Layout */
	
	.unique-content-area {
		padding-left: 10px;
		position: relative;
	}
	
	.unique-section-badge {
		display: inline-flex;
		align-items: center;
		background: linear-gradient(90deg, #2b6cb0, #805ad5);
		color: white;
		padding: 14px 32px;
		border-radius: 100px;
		font-size: 16px;
		font-weight: 700;
		letter-spacing: 1.6px;
		margin-bottom: 40px;
		box-shadow: 0 12px 35px rgba(43, 108, 176, 0.35);
		position: relative;
		overflow: hidden;
		transition: all 0.45s ease;
		border: 2px solid rgba(255, 255, 255, 0.3);
	}
	
	.unique-section-badge:hover {
		transform: translateY(-6px);
		box-shadow: 0 18px 40px rgba(43, 108, 176, 0.45);
		letter-spacing: 2px;
	}
	
	.unique-main-heading {
		font-family: 'Outfit', sans-serif;
		font-size: 3.2rem;
		font-weight: 900;
		margin-bottom: 10px;
		line-height: 1.15;
		color: var(--unique-dark-base);
		position: relative;
		text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.05);
	}
	
	.unique-main-heading strong {
		background: linear-gradient(90deg, #ff4757, #16469D);
		-webkit-background-clip: text;
		background-clip: text;
		color: transparent;
		position: relative;
		display: inline-block;
		background-size: 200% auto;
		animation: uniqueGradientShift 5s ease-in-out infinite alternate;
	}
	
	@keyframes uniqueGradientShift {
		0% {
			background-position: 0% 50%;
		}
		100% {
			background-position: 100% 50%;
		}
	}
	
	.unique-main-heading strong::after {
		content: '';
		position: absolute;
		bottom: 10px;
		left: 0;
		width: 100%;
		height: 10px;
		background: linear-gradient(90deg, rgba(43, 108, 176, 0.2), rgba(128, 90, 213, 0.2), rgba(12, 124, 124, 0.2));
		border-radius: 5px;
		z-index: -1;
		filter: blur(4px);
	}
	/* Exclusive Capabilities List */
	
	.unique-capabilities-grid {
		list-style: none;
		padding: 0;
		position: relative;
		counter-reset: capability-counter;
	}
	
	.unique-capabilities-grid li {
		display: flex;
		align-items: center;
		background: var(--unique-card-surface);
		border-radius: var(--unique-border-curve);
		padding: 10px;
		margin-bottom: 10px;
		box-shadow: 0 14px 35px rgba(0, 0, 0, 0.09);
		transition: all 0.45s cubic-bezier(0.19, 1, 0.22, 1);
		border-left: 6px solid transparent;
		position: relative;
		overflow: hidden;
		counter-increment: capability-counter;
	}
	
	.unique-capabilities-grid li:hover::before {
		transform: scale(1.1) rotate(15deg);
	}
	
	.unique-capabilities-grid li:hover {
		transform: translateX(18px);
		box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
	}
	/* Unique sequential icons - each distinct */
	
	.unique-icon-wrapper {
		width: 55px;
		height: 55px;
		border-radius: 22px;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-right: 28px;
		flex-shrink: 0;
		transition: all 0.55s cubic-bezier(0.19, 1, 0.22, 1);
		position: relative;
		overflow: hidden;
	}
	
	.unique-icon-wrapper i {
		font-size: 24px;
		z-index: 1;
		transition: all 0.4s ease;
	}
	/* Each capability item with unique styling */
	
	.unique-capabilities-grid li:nth-child(1) .unique-icon-wrapper {
		background: linear-gradient(135deg, rgba(43, 108, 176, 0.12), rgba(12, 124, 124, 0.06));
		border: 2px solid rgba(43, 108, 176, 0.25);
		box-shadow: 0 12px 30px rgba(43, 108, 176, 0.2);
	}
	
	.unique-capabilities-grid li:nth-child(1) .unique-icon-wrapper i {
		color: var(--unique-blue-primary);
	}
	
	.unique-capabilities-grid li:nth-child(1):hover .unique-icon-wrapper {
		background: linear-gradient(135deg, var(--unique-blue-primary), var(--unique-teal-accent));
		transform: scale(1.18) rotate(12deg);
		box-shadow: 0 18px 40px rgba(43, 108, 176, 0.35);
	}
	
	.unique-capabilities-grid li:nth-child(1):hover .unique-icon-wrapper i {
		color: white;
		transform: scale(1.12);
	}
	
	.unique-capabilities-grid li:nth-child(1):hover {
		border-left-color: var(--unique-blue-primary);
	}
	
	.unique-capabilities-grid li:nth-child(2) .unique-icon-wrapper {
		background: linear-gradient(135deg, rgba(214, 158, 46, 0.12), rgba(237, 137, 54, 0.06));
		border: 2px solid rgba(214, 158, 46, 0.25);
		box-shadow: 0 12px 30px rgba(214, 158, 46, 0.2);
	}
	
	.unique-capabilities-grid li:nth-child(2) .unique-icon-wrapper i {
		color: var(--unique-gold-accent);
	}
	
	.unique-capabilities-grid li:nth-child(2):hover .unique-icon-wrapper {
		background: linear-gradient(135deg, var(--unique-gold-accent), var(--unique-coral-accent));
		transform: scale(1.18) rotate(-12deg);
		box-shadow: 0 18px 40px rgba(214, 158, 46, 0.35);
	}
	
	.unique-capabilities-grid li:nth-child(2):hover .unique-icon-wrapper i {
		color: white;
		transform: scale(1.12);
	}
	
	.unique-capabilities-grid li:nth-child(2):hover {
		border-left-color: var(--unique-gold-accent);
	}
	
	.unique-capabilities-grid li:nth-child(3) .unique-icon-wrapper {
		background: linear-gradient(135deg, rgba(128, 90, 213, 0.12), rgba(90, 103, 216, 0.06));
		border: 2px solid rgba(128, 90, 213, 0.25);
		box-shadow: 0 12px 30px rgba(128, 90, 213, 0.2);
	}
	
	.unique-capabilities-grid li:nth-child(3) .unique-icon-wrapper i {
		color: var(--unique-violet-accent);
	}
	
	.unique-capabilities-grid li:nth-child(3):hover .unique-icon-wrapper {
		background: linear-gradient(135deg, var(--unique-violet-accent), var(--unique-indigo-accent));
		transform: scale(1.18) rotate(10deg);
		box-shadow: 0 18px 40px rgba(128, 90, 213, 0.35);
	}
	
	.unique-capabilities-grid li:nth-child(3):hover .unique-icon-wrapper i {
		color: white;
		transform: scale(1.12);
	}
	
	.unique-capabilities-grid li:nth-child(3):hover {
		border-left-color: var(--unique-violet-accent);
	}
	
	.unique-capabilities-grid li:nth-child(4) .unique-icon-wrapper {
		background: linear-gradient(135deg, rgba(56, 161, 105, 0.12), rgba(12, 124, 124, 0.06));
		border: 2px solid rgba(56, 161, 105, 0.25);
		box-shadow: 0 12px 30px rgba(56, 161, 105, 0.2);
	}
	
	.unique-capabilities-grid li:nth-child(4) .unique-icon-wrapper i {
		color: var(--unique-mint-accent);
	}
	
	.unique-capabilities-grid li:nth-child(4):hover .unique-icon-wrapper {
		background: linear-gradient(135deg, var(--unique-mint-accent), var(--unique-teal-accent));
		transform: scale(1.18) rotate(-10deg);
		box-shadow: 0 18px 40px rgba(56, 161, 105, 0.35);
	}
	
	.unique-capabilities-grid li:nth-child(4):hover .unique-icon-wrapper i {
		color: white;
		transform: scale(1.12);
	}
	
	.unique-capabilities-grid li:nth-child(4):hover {
		border-left-color: var(--unique-mint-accent);
	}
	
	.unique-capabilities-grid li:nth-child(5) .unique-icon-wrapper {
		background: linear-gradient(135deg, rgba(90, 103, 216, 0.12), rgba(128, 90, 213, 0.06));
		border: 2px solid rgba(90, 103, 216, 0.25);
		box-shadow: 0 12px 30px rgba(90, 103, 216, 0.2);
	}
	
	.unique-capabilities-grid li:nth-child(5) .unique-icon-wrapper i {
		color: var(--unique-indigo-accent);
	}
	
	.unique-capabilities-grid li:nth-child(5):hover .unique-icon-wrapper {
		background: linear-gradient(135deg, var(--unique-indigo-accent), var(--unique-violet-accent));
		transform: scale(1.18) rotate(14deg);
		box-shadow: 0 18px 40px rgba(90, 103, 216, 0.35);
	}
	
	.unique-capabilities-grid li:nth-child(5):hover .unique-icon-wrapper i {
		color: white;
		transform: scale(1.12);
	}
	
	.unique-capabilities-grid li:nth-child(5):hover {
		border-left-color: var(--unique-indigo-accent);
	}
	
	.unique-capabilities-grid li:nth-child(6) .unique-icon-wrapper {
		background: linear-gradient(135deg, rgba(12, 124, 124, 0.12), rgba(56, 161, 105, 0.06));
		border: 2px solid rgba(12, 124, 124, 0.25);
		box-shadow: 0 12px 30px rgba(12, 124, 124, 0.2);
	}
	
	.unique-capabilities-grid li:nth-child(6) .unique-icon-wrapper i {
		color: var(--unique-teal-accent);
	}
	
	.unique-capabilities-grid li:nth-child(6):hover .unique-icon-wrapper {
		background: linear-gradient(135deg, var(--unique-teal-accent), var(--unique-mint-accent));
		transform: scale(1.18) rotate(-14deg);
		box-shadow: 0 18px 40px rgba(12, 124, 124, 0.35);
	}
	
	.unique-capabilities-grid li:nth-child(6):hover .unique-icon-wrapper i {
		color: white;
		transform: scale(1.12);
	}
	
	.unique-capabilities-grid li:nth-child(6):hover {
		border-left-color: var(--unique-teal-accent);
	}
	
	.unique-capabilities-grid h5 {
		font-family: 'Outfit', sans-serif;
		font-size: 1.1rem;
		font-weight: 800;
		margin-bottom: 10px;
		color: var(--unique-dark-base);
		transition: color 0.35s ease;
		letter-spacing: 0.3px;
	}
	
	.unique-capabilities-grid li:hover h5 {
		background: linear-gradient(90deg, #2b6cb0, #805ad5);
		-webkit-background-clip: text;
		background-clip: text;
		color: transparent;
	}
	
	.unique-capabilities-grid p {
		color: #000;
		font-size: 0.8rem;
		margin: 0;
		line-height: 1.5;
	}
	/* Unique progress indicator */
	
	.unique-progress-indicator {
		position: absolute;
		right: 35px;
		top: 50%;
		transform: translateY(-50%);
		font-family: 'Outfit', sans-serif;
		font-weight: 800;
		color: var(--unique-text-light);
		font-size: 1rem;
		opacity: 0;
		transition: opacity 0.35s ease, transform 0.35s ease;
	}
	
	.unique-capabilities-grid li:hover .unique-progress-indicator {
		opacity: 1;
		transform: translateY(-50%) translateX(5px);
	}
	/* Responsive design with unique names */
	
	@media (max-width: 1200px) {
		.unique-visual-showcase {
			height: 650px;
		}
		.unique-content-area {
			padding-left: 45px;
		}
	}
	
	@media (max-width: 992px) {
		.unique-visual-showcase {
			height: 550px;
			margin-bottom: 70px;
		}
		.unique-content-area {
			padding-left: 0;
		}
		.unique-main-heading {
			font-size: 2.8rem;
		}
		.unique-icon-wrapper {
			width: 75px;
			height: 75px;
			margin-right: 25px;
		}
		.unique-icon-wrapper i {
			font-size: 32px;
		}
		.unique-capabilities-grid li {
			padding: 28px;
		}
	}
	
	@media (max-width: 768px) {
		#unique-capabilities-2024 {
			padding: 90px 0;
		}
		.unique-visual-showcase {
			height: 450px;
		}
		.unique-visual-card {
			width: 88% !important;
		}
		.unique-main-heading {
			font-size: 2.5rem;
		}
		.unique-icon-wrapper {
			width: 65px;
			height: 65px;
			margin-right: 20px;
		}
		.unique-icon-wrapper i {
			font-size: 28px;
		}
		.unique-capabilities-grid li {
			padding: 24px;
		}
		.unique-capabilities-grid h5 {
			font-size: 1.3rem;
		}
		.unique-capabilities-grid p {
			font-size: 0.9rem;
		}
	}
	
	@media (max-width: 576px) {
		.unique-capabilities-grid li {
			flex-direction: column;
			text-align: center;
		}
		.unique-icon-wrapper {
			margin-right: 0;
			margin-bottom: 25px;
		}
		.unique-capabilities-grid li::before {
			top: -12px;
			right: -12px;
			width: 45px;
			height: 45px;
			font-size: 1.1rem;
		}
	}

	.industries .sec-title {
		margin-bottom: 0px;
		padding-bottom: 0px;
	}

	.bottom-space {
		margin-bottom: 50px;
	}

	/* Base Styles */
.tech-gradient-section {
    position: relative;
    padding: 40px 0;
    background: linear-gradient(135deg, #f4f7fb 0%, #e9eef6 100%);
    overflow: hidden;
}

/* Light Version Specific */
.tech-gradient-section.light-version {
    background: linear-gradient(135deg, #f4f7fb 0%, #e9eef6 100%);
}


/* Section Header */
.section-header {
    position: relative;
    z-index: 2;
}

.section-title {
    color: #16469D;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-gradient {
    background: linear-gradient(90deg, #3b82f6, #ef4444);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Tech Cards */
.tech-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 16px;
    padding: 40px 30px;
    height: 100%;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.08) 0%, rgba(239, 68, 68, 0.04) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tech-card:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-8px);
    border-color: rgba(148, 163, 184, 0.4);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.08),
        0 0 40px rgba(96, 165, 250, 0.15);
}

.tech-card:hover::before {
    opacity: 1;
}

.tech-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #ffffff;
    font-size: 28px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Card-specific icon backgrounds */
.tech-card:nth-child(1) .tech-icon {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.tech-card:nth-child(2) .tech-icon {
    background: linear-gradient(135deg, #ef4444, #f87171);
}

.tech-card:nth-child(3) .tech-icon {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.tech-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        transparent 30%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.tech-card h3 {
    color: #1e293b;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.tech-card p {
    color: #475569;
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .tech-gradient-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .tech-card {
        padding: 35px 25px;
    }
    
    .tech-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .tech-card h3 {
        font-size: 20px;
    }
    
    .tech-card p {
        font-size: 15px;
    }
    
    .glow-orb {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 767px) {
    .tech-gradient-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .row.g-4 {
        gap: 20px !important;
    }
    
    .tech-card {
        padding: 30px 20px;
        margin-bottom: 0;
    }
    
    .tech-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .tech-card h3 {
        font-size: 19px;
    }
    
    .tech-card p {
        font-size: 15px;
    }
    
    .glow-orb {
        width: 250px;
        height: 250px;
        filter: blur(60px);
    }
}

@media (max-width: 575px) {
    .tech-gradient-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .tech-card {
        padding: 25px 20px;
    }
    
    .tech-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 15px;
        border-radius: 12px;
    }
    
    .tech-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .tech-card p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .glow-orb {
        width: 200px;
        height: 200px;
        filter: blur(50px);
    }
}

@media (max-width: 375px) {
    .section-title {
        font-size: 24px;
    }
    
    .tech-card {
        padding: 20px 15px;
    }
    
    .tech-card h3 {
        font-size: 17px;
    }
    
    .tech-card p {
        font-size: 13px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .tech-card:hover {
        transform: none;
    }
    
    .tech-card:hover {
        transform: none;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }
}
	

/* =========================================
   COMPACT SP-CONTACT SECTION
========================================= */
	
	
	/* ================================
   SECTION BASE
================================ */
	
	.geometric-services {
		position: relative;
		padding: 100px 0;
		overflow: hidden;
		background: radial-gradient(circle at top left, #eef2ff, #f8fafc 60%);
		font-family: "Inter", system-ui, sans-serif;
	}
	/* ================================
   BACKGROUND EFFECT
================================ */
	
	.geometric-background {
		position: absolute;
		inset: 0;
		z-index: 0;
		pointer-events: none;
	}
	
	.geo-shape {
		position: absolute;
		border-radius: 50%;
		filter: blur(60px);
		opacity: 0.45;
		animation: float 14s infinite alternate ease-in-out;
	}
	
	.text-red {
		color: #ff4757;
	}
	
	.geo-1 {
		width: 360px;
		height: 360px;
		background: #3b82f6;
		top: -100px;
		left: -120px;
	}
	
	.geo-2 {
		width: 420px;
		height: 420px;
		background: #22c55e;
		bottom: -120px;
		right: -140px;
		animation-delay: 2s;
	}
	
	.geo-3 {
		width: 260px;
		height: 260px;
		background: #6366f1;
		top: 40%;
		left: 55%;
		animation-delay: 4s;
	}
	
	@keyframes float {
		from {
			transform: translateY(0px);
		}
		to {
			transform: translateY(-40px);
		}
	}
	/* ================================
   CONTAINER LAYERING
================================ */
	
	.geometric-services .container {
		position: relative;
		z-index: 2;
	}
	/* ================================
   HEADER
================================ */
	
	.geo-header {
		text-align: center;
		margin-bottom: 70px;
	}
	
	.geo-title {
		font-size: 46px;
		font-weight: 800;
		color: #0f172a;
		letter-spacing: -0.02em;
	}
	/* ================================
   GRID LAYOUT
================================ */
	
	.geo-content-grid {
		display: grid;
		grid-template-columns: 360px 1fr;
		gap: 40px;
	}
	/* ================================
   LEFT NAV PANEL
================================ */
	
	.service-nav {
		background: rgba(255, 255, 255, 0.7);
		backdrop-filter: blur(14px);
		border-radius: 20px;
		padding: 30px;
		border: 1px solid rgba(255, 255, 255, 0.6);
		box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
	}
	
	.nav-title {
		font-size: 18px;
		font-weight: 700;
		color: #1e293b;
		margin-bottom: 25px;
	}
	
	.nav-items {
		display: flex;
		flex-direction: column;
		gap: 12px;
	}
	
	.nav-item {
		background: transparent;
		border: 1px solid #e5e7eb;
		border-radius: 14px;
		padding: 16px 18px;
		display: flex;
		align-items: center;
		gap: 14px;
		cursor: pointer;
		font-size: 14px;
		color: #334155;
		transition: all 0.35s ease;
	}
	
	.nav-number {
		font-weight: 700;
		color: #64748b;
	}
	
	.nav-arrow {
		margin-left: auto;
		opacity: 0.4;
		transition: transform 0.3s ease;
	}
	
	.nav-item:hover {
		background: #f8fafc;
		transform: translateX(6px);
	}
	
	.nav-item.active {
		background: linear-gradient(135deg, #16469D, #22c55e);
		color: white;
		border-color: transparent;
		box-shadow: 0 15px 30px rgba(37, 99, 235, 0.35);
	}
	
	.nav-item.active .nav-number,
	.nav-item.active .nav-arrow {
		color: white;
		opacity: 1;
	}
	
	.nav-item.active .nav-arrow {
		transform: translateX(4px);
	}
	/* ================================
   DETAILS PANEL
================================ */
	

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1200px!important;
    }
}
	.service-details {
		position: relative;
	}
	
	.detail-card {
		display: none;
		background: rgba(255, 255, 255, 0.85);
		backdrop-filter: blur(16px);
		border-radius: 26px;
		padding: 45px;
		border: 1px solid rgba(255, 255, 255, 0.6);
		box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1);
		animation: fadeUp 0.45s ease;
	}
	
	.detail-card.active {
		display: block;
	}
	
	@keyframes fadeUp {
		from {
			opacity: 0;
			transform: translateY(15px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}
	
	.detail-title {
		font-size: 32px;
		font-weight: 800;
		color: #0f172a;
		margin-bottom: 20px;
	}
	/* ================================
   HIGHLIGHT
================================ */
	
	.detail-highlight {
		background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(34, 197, 94, 0.08));
		border-left: 4px solid #22c55e;
		padding: 20px 24px;
		border-radius: 14px;
		color: #065f46;
		font-size: 16px;
		margin-bottom: 35px;
	}
	/* ================================
   CONTENT
================================ */
	
	.detail-content {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}
	
	.content-title {
		font-size: 16px;
		font-weight: 700;
		color: #1e293b;
		margin-bottom: 12px;
	}
	
	.content-list li {
		margin-bottom: 10px;
		color: #475569;
	}
	
	.value-statement {
		background: #f1f5f9;
		padding: 18px;
		border-radius: 14px;
		color: #0f172a;
		font-weight: 600;
	}
	
	.text-decoration-none {
		text-decoration: none;
	}
	/* ================================
   RESPONSIVE
================================ */
	
	@media (max-width: 992px) {
		.geo-content-grid {
			grid-template-columns: 1fr;
		}
	}




	.hero-2 .th-hero-bg:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgb(11 20 34 / 0%)!important;
    border-radius: 24px;
}

 /* Services Slider Styles - Only 3 items showing one after another */
        
/* \common.css */
.sp-mb-30 {
    margin-bottom: 30px;
}
/* Heading Section */

.banner-title-heading {
    margin:10px 0px;
}

.banner-title-heading h2 {
    font-size:36px!important;
    color:#16469D;
}

/* ================
   Our Latest Insights
   ================ */
.insights-area {
  padding: 40px 0;
  background: #ecf0f0;
}

.insights-header {
  margin-bottom: 40px;
}

.insights-title { text-align:center;
  font-size: 32px;
  line-height: 1.25;
  color: #003a78; /* deep blue similar to LTTS */
  font-weight: 700;
}

/* Swiper wrapper */
.insights-slider {
  position: relative;
  padding-bottom: 40px;
}

.insights-slider .swiper-slide {
  height: auto;
  display: flex;
}

/* Cards */
.insight-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 0 1px #e4e7eb;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* image-type cards */
.insight-card--image .insight-media {
  position: relative;
  overflow: hidden;
}

.insight-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: cover;
}

.insight-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 12px;
  font-size: 12px;
  border-radius: 999px;
  background: #16469D;
  color: #ffffff;
  font-weight: 600;
}

/* overlay title for image cards */
.insight-content--overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0));
}

.insight-content--overlay .insight-heading {
  color: #ffffff;
}

/* text-only card */
.insight-card--text {
  background: #f6f7fb;
  padding: 26px 28px;
}

.insight-card--text .insight-media--flat {
  margin-bottom: 10px;
  position: relative;
}

.insight-card--text .insight-tag {
  position: static;
  display: inline-block;
  background: #00c1a3;
  color: #ffffff;
}

.insight-content {
  padding: 0;
}

.insight-heading {
  font-size: 20px;
  line-height: 1.4;
  color: #003a78;
  margin-bottom: 12px;
  font-weight: 700;
  padding:10px 0px 0px 0px;
}

.insight-text {
  font-size: 14px;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 18px;
}

.insight-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 8px;
  background: #003a78;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

/* arrows */
.insights-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.insights-arrow {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.insights-arrow:hover {
  background: #003a78;
  color: #ffffff;
  border-color: #003a78;
}



/* responsive tweaks */
@media (max-width: 767px) {
  .insights-title { text-align:center;
    font-size: 26px;
  }

  .insight-card--text {
    padding: 22px 20px;
  }

 



 

  
}






.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  margin-top: 16px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  color: #E01A22;
  background: transparent;
  border: 1.5px solid #E01A22;
  border-radius: 40px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.read-more-btn .btn-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.read-more-btn:hover {
  background: #E01A22;
  color: white;
  border-color: #E01A22;
  box-shadow: 0 4px 12px rgba(225, 27, 34, 0.2);
}

.read-more-btn:hover .btn-icon {
  transform: translateX(4px);
}












/* Container for the entire grid section */
.zp-grid {
  max-width: 1200px !important;         /* adjust as needed */
  margin-left: auto!important;
  margin-right: auto!important;
  padding: 0 15px!important;           /* consistent with Bootstrap container */
}

/* Each row is a flex container that wraps */
.zp-row {
  display: flex!important;
  flex-wrap: wrap!important;
  justify-content: center!important;  /* centers all cards horizontally as a group */
  gap: 24px!important;                /* space between cards */
  margin-bottom: 40px!important;     /* space between rows */
}

/* Card styling – flexible width, fixed minimum */
.zp-card {
  flex: 0 0 calc(33.333% - 24px)!important; /* three columns minus gap */
  min-width: 250px!important;               /* prevents cards from getting too narrow */
  /* your existing card styles here */
}

/* Tablet: switch to two columns */
@media (max-width: 991px) {
  .zp-card {
    flex: 0 0 calc(50% - 24px)!important;  /* two columns minus gap */
  }
}

/* Mobile: single column */
@media (max-width: 575px) {
  .zp-card {
    flex: 0 0 100%!important;
  }
}






/* Hide mobile dropdown on desktop */
.wwd-mobile-dropdown {
  display: none;
}

/* Hide desktop tabs on mobile/tablet */


/* Style the dropdown to look consistent with your design */
.wwd-mobile-select {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  background-color: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  cursor: pointer;
}

.wwd-mobile-select:focus {
  outline: none;
  border-color: #E01A22;
  box-shadow: 0 0 0 3px rgba(225, 27, 34, 0.1);
}




/* Dropdown styling */
.wwd-mobile-select {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  background-color: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  cursor: pointer;
}

.wwd-mobile-select:focus {
  outline: none;
  border-color: #E01A22;
  box-shadow: 0 0 0 3px rgba(225, 27, 34, 0.1);
}

/* Ensure content area is visible on mobile */


/* Tab content visibility (already present but keep) */
.wwd-ctab-content {
  display: none;
}
.wwd-ctab-content.wwd-ctab-show {
  display: block;
}



 @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
    
    /* Mobile Responsive Styles */
    @media (max-width: 1024px) {
      .approach-tools-grid {
        gap: 2rem !important;
      }
      
      .step-card {
        width: calc(50% - 1rem) !important;
        min-width: 180px !important;
      }
    }
    
    @media (max-width: 768px) {
      .approach-tools-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
      }
      
      .step-card {
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto !important;
      }
      
      .steps-row {
        justify-content: center !important;
        gap: 1rem !important;
        margin-bottom: 1rem !important;
      }
      
      .tools-grid {
        grid-template-columns: 1fr !important;
        gap: 0.8rem !important;
      }
      
      /* Adjust padding for cards */
      .approach-tools-grid > div {
        padding: 1.5rem !important;
      }
      
      /* Adjust heading sizes */
      .approach-tools-grid h3 {
        font-size: 1.5rem !important;
      }
      
      /* Adjust icon containers */
      .approach-tools-grid > div > div:first-child {
        margin-bottom: 1.5rem !important;
      }
    }
    
    @media (max-width: 480px) {
      .step-card {
        max-width: 100% !important;
        height: auto !important;
        min-height: 90px !important;
        padding: 0.8rem !important;
      }
      
      .step-card span:first-child {
        font-size: 1.2rem !important;
      }
      
      .step-card span:last-child {
        font-size: 0.7rem !important;
      }
      
      .tools-grid > div {
        padding: 1rem !important;
      }
      
      .tools-grid i {
        font-size: 1.2rem !important;
      }
      
      .approach-tools-grid > div {
        border-radius: 32px !important;
      }
      
      .approach-tools-grid h3 {
        font-size: 1.3rem !important;
      }
      
      .approach-tools-grid > div > div:first-child > div {
        width: 40px !important;
        height: 40px !important;
      }
      
      .approach-tools-grid > div > div:first-child i {
        font-size: 1.2rem !important;
      }
    }









@media (min-width: 768px) { 
 .case-studies-carousel.owl-carousel .owl-stage-outer {
    margin-right: -390px;
}

}


    @media (max-width: 767px) {

  .banner-title-heading h2 {
    font-size:20px!important;
   
}

.ltts-footer {
   
    margin-top: 0px!important;
   
}

}
/* \menu.css */

.platform-overview-sticky {
  position: sticky !important;
  top: 80px !important;
  z-index: 1000 !important;
}

/* ============================================
   HEADER & NAVIGATION (DESKTOP FIRST)
============================================ */
#header, header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  transition: var(--transition);
  position: relative;
}

/* Sticky header */
#header.is-sticky, header.scrolled {
  background: #0b3c8c;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  animation: slideDown 0.35s ease;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

/* Normal state text color */
#header .nav-links > li > .nav-link,
.nav-links > li > .nav-link,
#header .nav-links > li > a {
  color: #0b1b2b;
  transition: color 0.25s ease, background 0.25s ease;
}

/* Sticky state text color */
#header.is-sticky .nav-links > li > .nav-link,
#header.is-sticky .nav-links > li > a {
  color: #ffffff;
}

/* Logo */
.logo {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.logo:hover { transform: scale(1.05); }
.logo span { color: var(--accent); }
.logo i { margin-right: 10px; font-size: 32px; }
.desktop-logo {
  width: 130px;
  height: auto;
  margin-right: 8px;
  vertical-align: middle;
  transition: var(--transition);
}

/* Navigation links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  position: static;
  margin-bottom: 0px;
}
.nav-links li { position: relative; }
.nav-links > li > .nav-link {
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px 0;
}
.nav-links > li > .nav-link:hover { color: var(--primary); }
.nav-links > li > .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.35s ease;
}
.nav-links > li > .nav-link:hover::after { width: 100%; }

/* Nav link with icon */
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  letter-spacing: 0.2px;
}
.nav-icon {
  font-size: 14px;
  line-height: 1;
  color: var(--primary);
  opacity: 0.9;
  transition: transform 0.25s ease, color 0.25s ease, opacity 0.25s ease;
  position: relative;
}
.nav-icon::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: rgba(0,0,0,0.12);
}
#header.is-sticky .nav-icon::after { background: rgba(255,255,255,0.25); }
.nav-link:hover .nav-icon {
  transform: translateY(-1px) scale(1.08);
  color: var(--accent);
  opacity: 1;
}
#header.is-sticky .nav-icon { color: rgba(255, 255, 255, 0.85); }
#header.is-sticky .nav-link:hover .nav-icon { color: #ffffff; }

/* Dropdown icon */
.dropdown-icon {
  margin-left: 6px;
  font-size: 11px;
  opacity: 0.7;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.has-megamenu:hover .dropdown-icon {
  transform: rotate(180deg);
  opacity: 1;
}

/* Mega menu */
.has-megamenu { position: static !important; }
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 9999;
  padding: 5px 0 30px;
  max-height: calc(100vh - 80px);
  overflow: visible;
}
.mega-menu.active,
.has-megamenu:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#header .mega-menu,
#header.is-sticky .mega-menu {
  background: #ffffff !important;
}
#header .mega-menu a,
#header.is-sticky .mega-menu a {
  color: #111 !important;
}

.mega-menu-panel {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: #ffffff !important;
  animation: fadeInUp 0.4s ease-out;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Left sidebar */
.mega-menu-sidebar {
  width: 25%;
  background: linear-gradient(180deg, #f5f7fb 0%, #f0f4ff 100%);
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid rgba(148, 163, 184, 0.3);
  position: relative;
  overflow: hidden;
}
.mega-menu-sidebar::before {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 170px;
  height: 170px;
  background-image: url("assets/solidpro-logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.06;
  pointer-events: none;
}
.mega-sidebar-item {
  border: none;
  background: transparent;
  color: #1e293b;
  display: flex;
  align-items: center;
  text-align: left;
  padding: 10px 10px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  transition: var(--transition);
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.mega-sidebar-item::before {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(11, 60, 140, 0.1), transparent);
  transition: left 0.6s ease;
}
.mega-sidebar-item:hover::before { left: 100%; }
.sidebar-item-content {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
  width: 100%;
}
.mega-sidebar-item .icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 86, 179, 0.1);
  transition: var(--transition);
  flex-shrink: 0;
}
.mega-sidebar-item .icon i {
  color: var(--primary);
  font-size: 15px;
  transition: var(--transition);
}
.mega-sidebar-item .text { flex: 1; transition: var(--transition); }
.mega-sidebar-item .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  flex-shrink: 0;
}
.mega-sidebar-item .arrow i {
  font-size: 10px;
  opacity: 0;
  transform: translateX(-4px);
  transition: var(--transition);
  color: var(--primary);
}
.mega-sidebar-item:hover,
.mega-sidebar-item.active {
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.mega-sidebar-item:hover .icon,
.mega-sidebar-item.active .icon {
  background: var(--primary);
  transform: scale(1.1);
}
.mega-sidebar-item:hover .icon i,
.mega-sidebar-item.active .icon i { color: #ffffff; }
.mega-sidebar-item:hover .text,
.mega-sidebar-item.active .text {
  color: var(--primary);
  font-weight: 600;
}
.mega-sidebar-item:hover .arrow i,
.mega-sidebar-item.active .arrow i {
  opacity: 1;
  transform: translateX(0);
}

/* Middle column */
.mega-menu-main {
  width: 37%;
  padding: 20px 26px;
  background: radial-gradient(circle at top left, #f9fbff 0, #ffffff 55%);
}
.mega-category-items {
  display: none;
  flex-direction: column;
  gap: 6px;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.mega-category-items.active { display: flex; }
.category-link {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 0 10px 24px;
  font-size: 14px;
  text-decoration: none;
  color: #1f2933 !important;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.35);
  transition: var(--transition);
  gap: 12px;
}
.category-link:last-child { border-bottom: none; }
.category-link i {
  width: 18px;
  text-align: center;
  color: var(--primary);
  font-size: 14px;
  transition: var(--transition);
}
.category-link:hover {
  color: var(--primary) !important;
  transform: translateX(8px);
}
.category-link:hover i {
  color: var(--accent);
  transform: scale(1.2);
}

/* Right column */
.mega-menu-right {
  flex: 1;
  padding: 20px 22px 20px 0;
  background: linear-gradient(120deg, #e0ecff 0%, #f7f9ff 40%, #ffffff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mega-category-card {
  display: none;
  border-radius: 14px;
  overflow: hidden;
  max-width: 380px;
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.25);
  position: relative;
  animation: cardFadeIn 0.4s ease;
}
@keyframes cardFadeIn {
  from { opacity: 0; transform: translateY(15px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.mega-category-card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 210px;
  height: 210px;
  transform: translate(-50%, -50%);
  background-image: url("assets/solidpro-logo.png");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.06;
  pointer-events: none;
}
.mega-category-card.active { display: flex; flex-direction: column; }
.mega-card-image {
  height: 150px;
  background-size: cover;
  background-position: center;
  opacity: 0.9;
  position: relative;
}
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(11, 60, 140, 0.3), rgba(11, 60, 140, 0.8));
}
.mega-card-content {
  padding: 18px 18px 16px;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.95);
}
.mega-card-content h4 {
  font-size: 16px;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
}
.card-icon { font-size: 16px; color: var(--accent) !important; }
.mega-card-content p {
  margin: 0 0 12px;
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}
.mega-card-link {
  font-size: 13px;
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(11, 60, 140, 0.1);
  border-radius: 6px;
  transition: var(--transition);
}
.mega-card-link:hover {
  background: rgba(11, 60, 140, 0.2);
  gap: 10px;
  transform: translateX(5px);
}
.arrow-animate { font-size: 11px; transition: transform 0.3s ease; }
.mega-card-link:hover .arrow-animate { transform: translateX(4px); }

/* Utilities & Contact button */
.nav-utilities {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 18px;
}
.nav-utilities .divider {
  width: 1px;
  height: 18px;
  background: rgba(0, 123, 255, 0.35);
}
.utility-link {
  display: flex;
  align-items: center;
  gap: 6px !important;
  padding: 6px 10px !important;
  font-size: 14px;
  font-weight: 500;
  color: #0b3c8c;
  background: transparent;
  border: 1px solid rgba(30, 107, 214, 0.55);
  border-radius: 4px;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  text-decoration: none;
}
.utility-link i { font-size: 13px; }
.utility-link:hover {
  color: #d32f2f;
  background: rgba(211, 47, 47, 0.08);
  border-color: #d32f2f;
}
.contact-btn {
  background: linear-gradient(135deg, #E01A22, #ff3b30) !important;
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 12px !important;
  margin-left: 10px !important;
  box-shadow: 0 4px 15px rgba(225, 27, 34, 0.3) !important;
  transition: var(--transition) !important;
}
.contact-btn:hover {
  background: linear-gradient(135deg, #ff3b30, #E01A22) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(225, 27, 34, 0.4) !important;
}
#header.is-sticky .contact-btn {
  background: linear-gradient(135deg, #ff3b30, #ff5e55) !important;
}

/* Progress line */
.scroll-line {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  display: block;
  background: linear-gradient(90deg, var(--primary), var(--accent)) !important;
  z-index: 999999;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(11, 60, 140, 0.5);
}
#header.scrolled .scroll-line {
  background: #ffffff; /* white line on blue header */
}

/* Page wrapper */
.page-wrapper { padding-top: 0px; }

/* ============================================
   MOBILE MENU (HIDDEN ON DESKTOP)
============================================ */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  padding: 0.5rem;
  transition: var(--transition);
  border-radius: 8px;
  background: rgba(11, 60, 140, 0.1);
  z-index: 10001;
  position: relative;
  pointer-events: auto;
}
.mobile-menu-btn:hover {
  background: rgba(11, 60, 140, 0.2);
  transform: scale(1.05);
}

/* Mobile overlay & panel (unique class ltts-mmenu) */
.ltts-mmenu-overlay {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, 0.6) !important;
  backdrop-filter: blur(10px) !important;
  z-index: 999 !important;
  animation: ltts-mmenu-fadeIn 0.3s ease !important;
}
@keyframes ltts-mmenu-fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.ltts-mmenu {
  position: fixed !important;
  right: 0 !important;
  top: 0 !important;
  width: 100% !important;
  max-width: 400px !important;
  height: 100vh !important;
  background: #ffffff !important;
  display: flex !important;
  flex-direction: column !important;
  z-index: 1000 !important;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2) !important;
  animation: ltts-mmenu-slideIn 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
}
@keyframes ltts-mmenu-slideIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}
.ltts-mmenu-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 1rem 1.5rem !important;
  background: linear-gradient(135deg, #16469D, #0e2d66) !important;
  color: white !important;
}
.ltts-mmenu-logo img { height: 32px !important; filter: brightness(0) invert(1) !important; }
.ltts-mmenu-header-actions {
  display: flex !important;
  gap: 0.75rem !important;
  align-items: center !important;
}
.ltts-mmenu-lang-switch {
  background: rgba(255, 255, 255, 0.2) !important;
  border: none !important;
  color: white !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  padding: 0.4rem 1rem !important;
  border-radius: 40px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}
.ltts-mmenu-lang-switch:hover {
  background: rgba(255, 255, 255, 0.3) !important;
  transform: scale(1.02) !important;
}
.ltts-mmenu-close {
  background: rgba(255, 255, 255, 0.2) !important;
  border: none !important;
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  font-size: 1.2rem !important;
  color: white !important;
}
.ltts-mmenu-close:hover {
  background: rgba(255, 255, 255, 0.35) !important;
  transform: rotate(90deg) !important;
}
.ltts-mmenu-search-wrapper {
  position: relative !important;
  margin: 1rem 1.5rem !important;
}
.ltts-mmenu-search-icon {
  position: absolute !important;
  left: 14px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: #9ca3af !important;
  font-size: 1rem !important;
  pointer-events: none !important;
}
.ltts-mmenu-search-input {
  width: 100% !important;
  padding: 0.7rem 0.7rem 0.7rem 2.5rem !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 50px !important;
  background: #f9fafb !important;
  outline: none !important;
  transition: all 0.2s ease !important;
  font-size: 0.95rem !important;
}
.ltts-mmenu-search-input:focus {
  border-color: #16469D !important;
  box-shadow: 0 0 0 3px rgba(23, 71, 158, 0.1) !important;
  background: white !important;
}
.ltts-mmenu-content {
  flex: 1 !important;
  overflow-y: auto !important;
  padding: 0 !important;
}
.ltts-mmenu-content::-webkit-scrollbar { width: 4px !important; }
.ltts-mmenu-content::-webkit-scrollbar-track { background: #f1f1f1 !important; }
.ltts-mmenu-content::-webkit-scrollbar-thumb { background: #16469D !important; border-radius: 4px !important; }
.ltts-mmenu-list,
.ltts-mmenu-nested-ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.ltts-mmenu-list > .ltts-mmenu-list-item { border-bottom: 1px solid #f0f0f0 !important; }
.ltts-mmenu-nested-list {
  overflow: hidden !important;
  transition: max-height 0.3s ease-out !important;
  max-height: 0 !important;
  background: #fafbff !important;
}
.ltts-mmenu-nested-list.ltts-mmenu-expanded { max-height: 2000px !important; }
.ltts-mmenu-nested-list .ltts-mmenu-item { padding-left: 48px !important; }
.ltts-mmenu-nested-list .ltts-mmenu-nested-list .ltts-mmenu-item { padding-left: 72px !important; }
.ltts-mmenu-nested-list .ltts-mmenu-nested-list .ltts-mmenu-nested-list .ltts-mmenu-item { padding-left: 96px !important; }
.ltts-mmenu-item {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 14px 20px !important;
  width: 100% !important;
  border: none !important;
  background: transparent !important;
  text-decoration: none !important;
  color: #1e293b !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  box-sizing: border-box !important;
}
.ltts-mmenu-item:hover {
  background: #f1f5f9 !important;
  padding-left: 24px !important;
}
.ltts-mmenu-item.ltts-mmenu-active {
  background: linear-gradient(90deg, #eef2ff, #ffffff) !important;
  color: #16469D !important;
  border-left: 4px solid #16469D !important;
  padding-left: 20px !important;
}
.ltts-mmenu-item.ltts-mmenu-active .ltts-mmenu-left i { color: #16469D !important; }
.ltts-mmenu-left {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  text-align:left;
}
.ltts-mmenu-left i {
  width: 24px !important;
  font-size: 1.2rem !important;
  color: #16469D !important;
  transition: transform 0.2s ease !important;
}
.ltts-mmenu-item:hover .ltts-mmenu-left i { transform: scale(1.1) !important; }
.ltts-mmenu-arrow {
  color: #94a3b8 !important;
  font-size: 0.8rem !important;
  transition: transform 0.2s ease !important;
}
.ltts-mmenu-item:hover .ltts-mmenu-arrow { transform: translateX(2px) !important; }

/* ============================================
   FLIP CARDS (CAPABILITIES)
============================================ */
.capabilities-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 30px !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 15px !important;
}
.capability-card {
  flex: 0 0 calc(33.333% - 30px) !important;
  min-width: 260px !important;
  position: relative;
  height: 420px;
  perspective: 1500px;
  overflow: hidden;
  transition: height 0.3s ease;
}
.card-surface {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(4px);
  border-radius: 32px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
}
.card-content {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.23,1,0.32,1);
  transform-style: preserve-3d;
}
.capability-card:hover .card-content { transform: rotateY(180deg); }
.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 32px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
  overflow-y: auto;
}
.card-front {
  background: linear-gradient(145deg, #ffffff, #fafcff);
  border: 1px solid rgba(225,27,34,0.1);
  justify-content: center;
  align-items: center;
  text-align: center;
}
.card-back {
  background: #0a1a2f;
  color: white;
  transform: rotateY(180deg);
  justify-content: center;
}
.card-back ul { list-style: none; padding: 0; margin-top: 1rem; }
.card-back li { margin-bottom: 0.6rem; font-size: 0.95rem; display: flex; align-items: center; gap: 0.5rem; }
.card-back i { color: #E01A22; width: 1.4rem; }
.capability-icon i { font-size: 2.8rem; color: #E01A22; margin-bottom: 1rem; }
.capability-tagline {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #E01A22;
  margin: 0.5rem 0 1rem;
}
.capability-preview { display: none !important; }
.explore-hint {
  margin-top: auto;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  background: #E01A22;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 50px;
  padding: 5px 20px;
}
.card-number {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(225,27,34,0.08);
  z-index: 2;
}
.card-corner {
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
  width: 30px;
  height: 30px;
  border-left: 2px solid #E01A22;
  border-bottom: 2px solid #E01A22;
  opacity: 0.3;
}
.capabilities-cta { text-align: center; margin-top: 3rem; }
.cta-text { font-size: 1.2rem; margin-right: 1rem; }
.cta-link {
  background: #E01A22;
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 40px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.capabilities-mesh { position: absolute; inset: 0; pointer-events: none; }

.threerow-inner .capabilities-grid,
.fourrow-inner .capabilities-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
}

/* ============================================
   CTA BANNER
============================================ */
.zi-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #0b1a33, #16469D);
  border-radius: 50px;
  padding: 2rem 3rem;
  margin: 3rem 0;
  box-shadow: 0 20px 40px -15px rgba(23,71,158,0.4);
  position: relative;
  z-index: 30;
  overflow: hidden;
}
.zi-cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
  animation: zi-cta-shine 6s infinite linear;
}
@keyframes zi-cta-shine {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}



/* ============================================
   OTHER UTILITIES
============================================ */
.clickable-arrow {
  display: inline-block;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.clickable-arrow:active { transform: scale(1.2); }
.arrow-clicked { animation: arrowPulse 0.3s ease; }
@keyframes arrowPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}



/* Integration Blueprint (inline styles overrides) */
.integration-blueprint [style*="background: white"],
.integration-blueprint [style*="background: #f8fafc"],
.integration-blueprint .container > div > div:first-child > div > div > div {
  transition: all 0.3s ease !important;
}

/* ============================================
   RESPONSIVE MEDIA QUERIES (DESKTOP-FIRST)
============================================ */
@media (max-width: 1200px) {
  .mega-menu-panel { max-width: 1000px; }
}

@media (max-width: 1024px) {
  .mobile-menu-btn { display: block; }
  .nav-links {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 1001;
    overflow-y: auto;
    padding: 80px 20px 40px;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .nav-links.active {
    display: flex !important;
    transform: translateX(0);
  }
  .nav-links li { width: 100%; margin: 0; border-bottom: 1px solid #f0f0f0; }
  .nav-link {
    padding: 15px 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
  }
  .mega-menu {
    display: none !important;
    position: static;
    transform: none;
    margin-top: 1rem;
    box-shadow: none;
    border: 1px solid #eee;
  }
  .has-megamenu.active .mega-menu { display: block !important; }
  .mega-menu-panel { flex-direction: column !important; padding: 15px !important; }
  .mega-menu-sidebar,
  .mega-menu-main,
  .mega-menu-right { width: 100% !important; }
  .mega-menu-right { display: none; }
  .mega-sidebar-item { width: 100%; text-align: left; }
  .mega-category-items { display: none; padding-left: 16px; }
  .mega-category-items.active { display: block; }
  .contact-btn { margin-left: 0 !important; margin-top: 10px !important; }
  .nav-utilities { justify-content: center; margin-top: 16px; }

  /* Integration blueprint tablet */
  .integration-blueprint {
    padding: 4rem 0 !important;
    overflow-x: hidden !important;
  }
  .integration-blueprint .container > div {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .integration-blueprint [style*="background: white"] { padding: 2rem !important; }
  .integration-blueprint .container > div > div:first-child > div > div {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
    justify-items: center !important;
  }
  .integration-blueprint .container > div > div:first-child > div > div > div {
    width: 100% !important;
    max-width: 180px !important;
    min-height: 100px !important;
    padding: 1rem !important;
  }
  .integration-blueprint .container > div > div:last-child > div:last-child {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }
  .integration-blueprint h3 { font-size: 1.5rem !important; }

  /* Engagement flow tablet */
  .entry-points {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .entry-card { padding: 1.5rem 1rem; }
  .entry-card h3 { font-size: 1.2rem; }
  .entry-card p { font-size: 0.85rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .service-item { font-size: 0.85rem; padding: 0.6rem 0.8rem; }
  .flow-connector .connector-text { font-size: 0.75rem; padding: 0 0.5rem; }
  .closing-message p:first-child { font-size: 1.2rem; }

  
}




@media (max-width: 992px) {
  .mega-menu-panel { max-width: 100%; margin: 0 16px; flex-direction: column; }
  .mega-menu-sidebar {
    flex-direction: row;
    overflow-x: auto;
    padding: 15px;
  }
  .mega-sidebar-item { flex-shrink: 0; min-width: 200px; }
  .capabilities-grid .capability-card:nth-child(5),
  .capabilities-grid .capability-card:nth-child(6) { grid-column: auto !important; }
  .capability-card { flex: 0 0 calc(50% - 30px) !important; }
}

@media (max-width: 900px) {
  .zi-cta-banner {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem;
  }
}




@media (max-width: 768px) {

  .zi-cta-banner {

  margin: 0rem 0;

}

  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    gap: 0;
  }
  .nav-links.active { display: flex; }
  .nav-links li { margin-left: 0; width: 100%; }
  .nav-links > li > .nav-link { padding: 12px 15px; border-bottom: 1px solid #eee; }
  .mobile-menu-btn { display: block; }
  .mega-menu { display: none !important; }
  .has-megamenu.active .mega-menu { display: block !important; }
  .contact-btn { margin-left: 0 !important; margin-top: 10px !important; }
  .capability-card { height: 460px; }
  

  /* Integration blueprint mobile */
  .integration-blueprint {
    padding: 3rem 0 !important;
    overflow-x: hidden !important;
  }
  .integration-blueprint .container { padding: 0 1rem !important; }
  .integration-blueprint .container > div {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  .integration-blueprint [style*="background: white"] {
    padding: 1.5rem !important;
    border-radius: 32px !important;
  }
  .integration-blueprint [style*="background: white"]:first-child > div:first-child { margin-bottom: 1.5rem !important; }
  .integration-blueprint [style*="background: white"]:first-child h3 { font-size: 1.5rem !important; }
  .integration-blueprint [style*="background: white"]:first-child > div:first-child > div:first-child {
    width: 45px !important;
    height: 45px !important;
  }
  .integration-blueprint [style*="background: white"]:first-child > div:first-child > div:first-child i { font-size: 1.2rem !important; }
  .integration-blueprint .container > div > div:first-child > div > div {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
  }
  .integration-blueprint .container > div > div:first-child > div > div > div {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 80px !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    gap: 1rem !important;
    padding: 1rem 1.5rem !important;
    background: #f0f4fe !important;
    border-radius: 20px !important;
  }
  .integration-blueprint .container > div > div:first-child > div > div > div span:first-child {
    font-size: 1.3rem !important;
    min-width: 40px !important;
  }
  .integration-blueprint .container > div > div:first-child > div > div > div span:last-child {
    text-align: left !important;
    font-size: 0.85rem !important;
    flex: 1 !important;
  }
  .integration-blueprint [style*="background: white"]:last-child h3 { font-size: 1.5rem !important; }
  .integration-blueprint [style*="background: white"]:last-child > div:first-child > div:first-child {
    width: 45px !important;
    height: 45px !important;
  }
  .integration-blueprint [style*="background: white"]:last-child > div:first-child > div:first-child i { font-size: 1.2rem !important; }
  .integration-blueprint .container > div > div:last-child > div:last-child {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
  }
  .integration-blueprint [style*="background: #f8fafc"] {
    padding: 1rem !important;
    border-radius: 20px !important;
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
  }
  .integration-blueprint [style*="background: #f8fafc"] i {
    font-size: 1.2rem !important;
    margin-bottom: 0 !important;
    min-width: 30px !important;
  }
  .integration-blueprint [style*="background: #f8fafc"] > div {
    margin-bottom: 0 !important;
    flex: 1 !important;
  }
  .integration-blueprint > div:first-child,
  .integration-blueprint > div:nth-child(2) { display: none !important; }
  
  

  /* Engagement flow mobile */
  .engagement-flow { margin-top: 1rem; }
  .entry-points { grid-template-columns: 1fr; gap: 1rem; }
  .entry-card {
    padding: 1.2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .entry-icon { font-size: 2rem; margin-bottom: 0.5rem; }
  .entry-card h3 { font-size: 1.2rem; margin-bottom: 0.25rem; }
  .entry-card p { font-size: 0.85rem; }
  .flow-connector {
    flex-direction: column;
    gap: 0.5rem;
    margin: 1.5rem 0;
  }
  .connector-line { display: none; }
  .connector-text {
    font-size: 0.75rem;
    padding: 0;
    white-space: normal;
    text-align: center;
    background: transparent;
  }
  .execution-services {
    padding: 1.5rem 1rem;
    margin: 1rem 0;
  }
  .execution-badge { font-size: 0.65rem; margin-bottom: 1rem; }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .service-item {
    font-size: 0.8rem;
    padding: 0.6rem 0.5rem;
    text-align: center;
  }
  .closing-message {
    padding: 1.5rem 1rem;
    margin-top: 1.5rem;
  }
  .closing-message p:first-child { font-size: 1.1rem; }
  .closing-sub { font-size: 0.8rem; }
}

@media (max-width: 600px) {
  .zi-cta-banner { padding: 1.5rem; }

  .capability-card { height: 460px; }
}

@media (max-width: 576px) {
  .capability-card { flex: 0 0 100% !important; }
  .services-grid { grid-template-columns: 1fr; gap: 0.6rem; }
  .service-item { font-size: 0.85rem; padding: 0.7rem; }
  .entry-card { padding: 1rem; }
  .entry-icon { font-size: 1.8rem; }
  .entry-card h3 { font-size: 1.1rem; }
}

@media (max-width: 480px) {
  .ltts-mmenu { max-width: 100% !important; }
  .ltts-mmenu-header { padding: 0.75rem 1rem !important; }
  .ltts-mmenu-search-wrapper { margin: 0.75rem 1rem !important; }
  .ltts-mmenu-item { padding: 12px 16px !important; }
  .ltts-mmenu-nested-list .ltts-mmenu-item { padding-left: 40px !important; }
  .ltts-mmenu-nested-list .ltts-mmenu-nested-list .ltts-mmenu-item { padding-left: 60px !important; }
  .ltts-mmenu-nested-list .ltts-mmenu-nested-list .ltts-mmenu-nested-list .ltts-mmenu-item { padding-left: 80px !important; }

  /* Integration blueprint small mobile */
  .integration-blueprint { padding: 2rem 0 !important; }
  .integration-blueprint [style*="background: white"] { padding: 1.25rem !important; border-radius: 28px !important; }
  .integration-blueprint [style*="background: white"]:first-child h3,
  .integration-blueprint [style*="background: white"]:last-child h3 { font-size: 1.3rem !important; }
  .integration-blueprint [style*="background: white"]:first-child > div:first-child,
  .integration-blueprint [style*="background: white"]:last-child > div:first-child {
    gap: 0.75rem !important;
    margin-bottom: 1.5rem !important;
  }
  .integration-blueprint .container > div > div:first-child > div > div > div { padding: 0.875rem 1.25rem !important; }
  .integration-blueprint .container > div > div:first-child > div > div > div span:first-child {
    font-size: 1.2rem !important;
    min-width: 35px !important;
  }
  .integration-blueprint .container > div > div:first-child > div > div > div span:last-child { font-size: 0.8rem !important; }
  .integration-blueprint [style*="background: #f8fafc"] { padding: 0.875rem !important; }
  .integration-blueprint [style*="background: #f8fafc"] > div { font-size: 0.85rem !important; }
  .geometric-approach .img-box3,
  #smooth-wrapper .visual-wrapper { display: none !important; }


  
}



@media (max-width: 767px) and (orientation: landscape) {
  .integration-blueprint { padding: 2rem 0 !important; }
  .integration-blueprint .container > div > div:first-child > div > div > div { min-height: 70px !important; }
  .integration-blueprint [style*="background: #f8fafc"] { padding: 0.75rem !important; }
}

/* Desktop styles (min-width 1025px) */
@media (min-width: 1025px) {
  .mobile-menu-btn { display: none; }
  .nav-links { display: flex; }
  .mobile-mega-menu { display: none; }
  .category-list { width: 100%; }
  .threerow-inner .capabilities-grid,
  .fourrow-inner .capabilities-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)) !important;
  }
}

@media (min-width: 1026px) and (max-width: 1198px) {

.nav-utilities {
  display:none;
}

}




.parallax-slider .panel {
	transform: translateX(0%)!important;
}

.slider-home-heading .button {
	display:none;
}


@media (min-width: 992px) and (min-width: 1199px) {

.container {
  max-width: 1190px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
}

