
/* =========================
   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;
}









