/*
 * Combined stylesheet for Alluring Infotech Solutions
 * Source: static/css/style.css + all inline <style> blocks previously in test_index.html
 * - Dead/unused CSS rules (selectors matching no element/class in the HTML or JS) removed
 * - Exact duplicate rules removed
 * - Every rule is tagged with a comment showing which page section it belongs to
 *   ("Global ..." = shared/utility class used in more than one section)
 */

/* ======================== GLOBAL ======================== */

/* Global */

:root {
    --primary: #06A3DA;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;

	--rotate-speed: 40;
	--count: 6;
	--easeInOutSine: cubic-bezier(0.37, 0, 0.63, 1);
	--easing: cubic-bezier(0.000, 0.37, 1.000, 0.63);

  --navy: #071233;
  --navy-deep: #050d1f;
  --blue: #06A3DA;
  --blue-light: #0dcaf0;
  --white: #ffffff;


  --ais-bg-card-hover: #f8fafc;

  --text-primary: #071233;
  --text-secondary: #475569;
  --text-muted: #64748b;

  --ais-text: var(--text-primary);
  --ais-text-muted: var(--text-secondary);
  --ais-accent: var(--blue);
  --ais-accent-2: var(--blue-light);
  --ais-border: rgba(6, 163, 218, 0.15);

  --font-main: "Segoe UI", system-ui, sans-serif;
}

.bg-primary {
        background-color: var(--navy) !important;
}

h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 900 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 900 !important;
}

.btn {
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}


.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (min-width: 992px) {
  .navbar-dark .navbar-nav .nav-link:hover::before,
      .navbar-dark .navbar-nav .nav-link.active::before {
          width: 100%;
          left: 0;
      }
}

.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}





body {
    background: var(--light);
    color:white;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width:10px !important;
  height:8px !important;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  background:#050d1f !important;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background:linear-gradient(180deg, #06A3DA, #0dcaf0) !important;
  border-radius:10px;
  border:2px solid #050d1f;
  background-clip:padding-box;
  transition:background .3s ease;
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
  background:linear-gradient(180deg, #0dcaf0, #06A3DA) !important;
  background-clip:padding-box;
  box-shadow:0 0 10px rgba(6,163,218,.6);
}

html::-webkit-scrollbar-corner,
body::-webkit-scrollbar-corner {
  background:#050d1f !important;
}

html {
  scrollbar-width:thin;
  scrollbar-color:#06A3DA #050d1f;
}

#rotul:hover * {
	animation-play-state: paused;
}

svg {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}

@keyframes pulseGlow {
	from {
		background-size: 60%;
	}
	to {
		background-size: 100%;
	}
}

@media (max-width: 768px) {
  .sampleforImgprocess>img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      left: 0;
      }
  .carousel-item .badge {
      font-size: 0.8rem;
      padding: 0.4rem 0.8rem;
      }
  .btn-primary {
      font-size: 0.9rem;
      padding: 0.45rem 1rem;
    }
  a.btn.btn-lg.btn-primary.rounded {
      bottom: -24px;
      opacity:1;
      width: 7rem;
      left: 9rem;
          }
}

@media (min-width: 1200px) {
  /* Global / Bootstrap utility (not tied to one section) */
  h1, .h1 {
        font-size: 1.5rem;
    }
}

/*.py-5 {*/
/*    padding-top: 1rem !important;*/
/*    padding-bottom: 3rem !important;*/
/*}*/

.service-item > * {
            position: relative;
            z-index: 2;
        }

a.btn.btn-lg.btn-primary.rounded {
            margin-bottom: 1rem;
        }

h5, .h5 {
    font-size: 2rem;
}

.service-item h4, .service-item p, .service-item .btn {
    margin-top: calc(-2rem + 0.5rem);
}

.text-primary {
    font-size: 1.3rem;
    color: #06A3DA !important;
}

.btn-primary {
  border: 1px solid #104e8b;
  color: white;
  font-size: 1rem;
  padding: 0.55rem 1.3rem;
  border-radius: 0.5rem;
  box-shadow: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #1865b2;
  color: #ffffff;
  transform: scale(1.03);
}

.sample-image-wrapper img,video {
  width: 100%;
  height: 26rem;
  object-fit: cover;
  display: block;
  border-radius: 1rem;
}

.carousel-item .badge {
  font-size: 0.9rem;
  background-color: rgba(255, 255, 255, 0.1);
   color: white;
  padding: 0.45rem 0.9rem;
  border-radius: 0.5rem;
  margin-right: 0.5rem;
  border: 1px solid #66b2ff;
}

.about-content h2 {
        font-size: 2rem;
    margin-bottom: 10px;
    border-bottom: 1px solid #007bff;
    display: inline-block;
    padding-bottom: 5px;
    }

.about-content ul {
        padding-left: 18px;
        list-style: disc;
        margin-bottom: 20px;
        color: #ddd;
    }

.about-content ul li {
        margin-bottom: 10px;
    }

html {
    width: 100%;
}

html, body {
  overflow-x: hidden;
}

@media (max-width: 375px) {
  a.btn.btn-lg.btn-primary.rounded {
      left:30%;
  }
  .service-item a.btn {
      left:0;
      margin-left:0;
  }
  html {
      width: 100%;
  }
  .model-name,span {
  font-size: 0.7rem;
  }
  div#void {
      margin-block: 50rem;
  }
  .sampleforImgprocess>img {
      width: 25rem;
      top: 0rem;
      height: 29rem;
      object-fit: fill;
      display: block;
      left: 0rem;
  }
  .sample-image-wrapper img, video {
      object-fit: contain;
  }
  h1.fw-bold.text-primary.text-uppercase {
  font-size:1.5rem;
  }
  h5.mb-0 {
  font-size:1.00rem;

  }
}

@media (min-width: 375px) and (max-width: 767px) {
  .container.py-5 {
          padding-inline: 1rem;
          max-width: unset;
      }
  #header-carousel .carousel-item img {
              height: 38rem;
              }
  .btn-primary {
              font-size: 0.9rem;
              padding: 0.45rem 1rem;
            }
  div#void {
              margin-block: 46rem;
          }
  .sampleforImgprocess>img {
              width: 25rem;
              top: 0;
              height: 29rem;
              object-fit: fill;
              display: block;
              left: 0;
          }
}

@media (min-width: 767px) and (max-width: 1023px) {
  .container.py-5 {
              padding-inline: 1rem;
              max-width: unset;
          }
  div#void {
      margin-block: 0;
  }
  .about-content h3, .about-content h1 {
      font-size: large;
  }
  video,.sample-image-wrapper img {
      object-fit: contain;
      }
  .sample-image-wrapper img, video {
      width: 100%;
    height: 15rem;
      object-fit:fill;

    }
  .col-lg-3.col-md-6.pt-0.pt-lg-5.mb-5 {
      padding-top: 3rem !important;
  }
  .carousel-item p {
      font-size: 1rem;}
  .carousel-item h3 {
      font-size: 1.5rem;}
}

@media (min-width: 1023px) and (max-width: 1300px) {
  .about-content h3, .about-content h1 {
      font-size: x-large;
  }
  .sample-image-wrapper img, video {
      width: 100%;
      height: 21rem;}
}

@media (min-width: 500px) {
  /* Global utility -> used in: Topbar, Technologies Section, FAQ Section, Footer */
  .container-fluid.py-5 {
    display: flex;
    justify-content: center;
}
}

.card.service-item:hover .icon i {
  animation: zoomBounce 0.8s ease-in-out infinite;
}

.owl-theme .owl-controls .owl-buttons div {
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    background: #34363b;
    opacity: 1;
    padding: 0;
    cursor: pointer;
}

.tech-card .slide {
  width: 100%;
  height: 100%;
  transition: 0.5s;
}

@media (min-width: 1300px) and (max-width: 1400px) {
  .techcontainer {
        gap: 2.8rem;
    }

    }

.loader {
  scale: 3;
  height: 50px;
  width: 40px;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #091e3e;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@media (min-width: 350px) and (max-width: 767px) {
  /* Global / Bootstrap utility (not tied to one section) */
  .loader {
    scale: 1.3;
      width: 100%;
      height: 100%;
      left:-3%;
}
}

@media (min-width: 768px) and (max-width: 1023px) {
  /* Global / Bootstrap utility (not tied to one section) */
  .loader {
    scale: 2;
      width: 100%;
      height: 100%;

}
}

body {

  font-family: var(--font-main);
  margin: 0;
  padding: 0;
}

.section-title {
    position: relative;
    z-index: 1;
}

.section-title h5,
.section-title span {
    color: var(--blue) !important;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.section-title h1,
.section-title h2,
.section-title h3 {
    color: var(--text-primary) !important;
    font-weight: 700;
}

.section-title::after {
    background: var(--blue) !important;
}

#csxCaseStudy .carousel-item .row {
    min-height: 460px;
    align-items: flex-start !important;
  }

@media (max-width: 991px) {
  #csxCaseStudy .carousel-item .row {
        min-height: auto;
      }
}

.services-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
  opacity: 0;
  transform: translateY(24px);
  animation: riseIn .7s ease forwards;
}

.eyebrow {
  color: var(--blue);
  font-weight: 700;
  letter-spacing: .12em;
  font-size: 13px;
  text-transform: uppercase;
}

.services-header h2 {
  color: var(--ais-accent);
  font-size: clamp(28px, 4vw, 40px);
  margin: 10px 0 16px;
}

/*.underline {*/
/*  width: 64px;*/
/*  height: 3px;*/
/*  background: linear-gradient(90deg, var(--blue), var(--blue-light));*/
/*  margin: 0 auto;*/
/*  border-radius: 4px;*/
/*}*/

.underline {
    width: 80px;
    height: 3px;
    margin: 0 auto;
    border-radius: 2px;
    background: linear-gradient(90deg, #03A9F4, #ffffff, #03A9F4);
    background-size: 200% 100%;
    animation: sweepLine 3s linear infinite;
}
@keyframes sweepLine {
    to { background-position: -200% 0; }
}




.tab-btn-dot.active {
  height: 10px;
  width: 10px;
  background-color: var(--ais-accent);
  box-shadow: 0 0 0 4px rgba(6,163,218,.18), 0 0 12px 2px rgba(6,163,218,.6);
  animation: dotPop .4s cubic-bezier(.34,1.56,.64,1);
}

.tab-btn-dot.active::before {
  width: 18px;
}

@keyframes dotPop {
  0% { transform: scale(0); }
  70% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

.tab-btn.active {
  color: var(--white);
  background: rgba(6,163,218,.08);
    border-radius: 14px 70px 70px 14px;
}

.tab-btn.active .tab-icon {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  box-shadow: 0 8px 20px -6px rgba(6,163,218,.7);
  transform: scale(1.06);
  animation: pulseGlow 2.4s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 8px 20px -6px rgba(6,163,218,.7); }
  50% { box-shadow: 0 8px 28px -4px rgba(6,163,218,1); }
}

.tab-btn.active .tab-indicator { transform: scaleY(1); }

.panel-content.active {
  display: block;
  animation: fadeSlide .5s cubic-bezier(.4,0,.2,1);
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateX(16px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 860px) {
  .tab-btn.active .tab-indicator { transform: scaleX(1); }
}

@media (max-width: 560px) {
  .services-header { margin-bottom: 36px; }
  .services-header h2 { font-size: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  /* Global (tag / :root / reset) */
  * { animation: none !important; transition: none !important; }
}

/* End of Global */



/* ======================== HERO / HEADER CAROUSEL + SCROLL STRIP ======================== */

/* Hero / Header Carousel + Scroll Strip */

/* ======================== BASE STYLES ======================== */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}




.p-3 .btn.slideInLeft {
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.p-3 .btn.slideInRight {
    animation: fadeInUp 0.8s ease-out 0.65s both;
}





.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 13%);
    z-index: 1;
}

.header-para {
    margin-bottom: 50px;
}

h1.display-1.mb-md-4.animated {
    font-size: 4rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

h1.display-1.mb-md-4.animated {
    font-size: 4rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
    background: linear-gradient(90deg, #fff 0%, var(--ais-accent) 25%, #fff 50%, var(--ais-accent) 75%, #fff 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 15s linear infinite;
}

@keyframes gradientMove{ 0%{ background-position:0% 0; } 100%{ background-position:300% 0; } }

.carousel-item .hero-subtext {
    font-size: 1rem;
    font-weight: 400;
    color: #94a3b8;
    letter-spacing: 0.01em;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

#header-carousel .carousel-item img {
    height: 87vh;
    position: relative;
    overflow: hidden;
}

.scroll-strip {
    background: rgb(0 0 0 / 0%);
    overflow: hidden;
    padding: 10px 0;
    z-index: 10;
}

.scroll-content-wrapper {
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    width: 100%;
    position: relative;
}

.scroll-content {
    display: flex;
    gap: 1rem;
    white-space: nowrap;
    animation: scroll-left 50s linear infinite;
}

.scroll-content a {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #03A9F4;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.scroll-content a:hover {
    background: #03a9f4;
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 6px 40px rgba(255, 255, 255, 0.2);
}

.headvideo {
    position: relative;
    width: 100vw;
    height: 100vh;
    max-height: 100%;
    min-height: 640px;
    overflow: hidden;
}

.webgl {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    outline: none;
    z-index: -1;
}

.p-3 {
    width: 72%;
    position: absolute;
    color: #cbc8c8;
    z-index: 999;
    text-align: center;
}

.p-3 .btn {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.p-3 .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(3, 169, 244, 0.4);
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes zoomBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* ======================== MEDIA QUERIES ======================== */

@media (min-width: 768px) {
  .p-3 {
        width: 100%;
        position: absolute;
        color: #cbc8c8;
        z-index: 999;
        text-align: center;
        right: unset;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .p-3 {
        width: 100%;
        position: absolute;
        color: #cbc8c8;
        z-index: 999;
  }

  h1.display-1.mb-md-4.animated {
        font-size: 3rem;
  }

  .carousel-item .hero-subtext {
        font-size: 0.95rem;
        max-width: 90%;
  }
}

@media (min-width: 767px) and (max-width: 1023px) {
  .carousel-caption {
        padding-bottom: 4.25rem;
  }
}

@media (min-width: 767px) and (max-width: 991px) {
  .p-3 h5 {
        margin-bottom: 2rem;
  }
}

@media (min-width: 631px) and (max-width: 767px) {
  .p-3 {
        position: absolute;
        color: #cbc8c8;
        z-index: 999;
        text-align: center;
        width: 99%;
        right: 0;
  }

  h1.display-1.mb-md-4.animated {
        font-size: 2rem;
        font-weight: 600;
  }

  .carousel-item .hero-subtext {
        font-size: 0.9rem;
        max-width: 92%;
        margin-bottom: 1.5rem;
  }
}

@media (max-width: 767px) {
  h1.display-1.mb-md-4.animated br {
        display: none;
  }
}

@media (max-width: 630px) {
  .headvideo {
        position: relative;
        width: 100%;
        height: 42rem;
        overflow: hidden;
  }

  .p-3 {
        width: 100%;
      font-size: 2rem;
        position: absolute;
        right: 0;
        color: aliceblue;
        z-index: 999;
        text-align: center;
  }
  .carousel-item p{
      font-size: 12px;
  }

  h1.display-1.mb-md-4.animated {
        font-size: 1.75rem;
        font-weight: 700;
        line-height: 1.3;
  }

  .carousel-item .hero-subtext {
        font-size: 0.85rem;
        padding: 0 10px;
        line-height: 1.6;
        margin-bottom: 1.25rem;
  }
}

@media (max-width: 576px) {
  h1.display-1.mb-md-4.animated {
        font-size: 2rem;
        font-weight: 800 !important;
  }

  .carousel-item .hero-subtext {
        font-size: 0.8rem;
        padding: 0 8px;
  }
}
/* End of Hero / Header Carousel + Scroll Strip */

/* ======================== PROOF / TRUST SECTION ======================== */

/* Proof / Trust Section */

.proof-section {
  padding: 90px 0px;
  position: relative;
  overflow: hidden;
  /*background: var(--white);*/
}



.metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.metric-card {
  background: linear-gradient(160deg, var(--navy) 0%, var(--dark) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
  box-shadow: 0 10px 25px rgba(9, 30, 62, 0.25);
}
.metric-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 163, 218, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity .35s ease;
}
.metric-card:hover {
  transform: translateY(-8px);
  border-color: var(--blue);
  box-shadow: 0 20px 40px rgba(6, 163, 218, 0.25);
}
.metric-card:hover::after { opacity: 1; }
.metric-card i {
  font-size: 1.6rem;
  color: var(--blue-light);
  display: block;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.metric-card .stats{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.metric-card .num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
}
.metric-card .stats span {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--blue-light);
}
.metric-card .lbl {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 6px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.metric-card .sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
  position: relative;
  z-index: 1;
}

.proof-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(6, 163, 218, 0.3), transparent);
}

.logo-strip-label {
  width: 100%;
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.logo-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 44px;
  flex-wrap: wrap;
}

.logo-strip span {
  font-weight: 700;
  font-size: 16px;
  color: var(--text-muted);
  transition: color .3s ease, transform .3s ease;
}

.logo-strip span:hover {
  color: var(--blue);
  transform: translateY(-3px);
}

@media (max-width:900px) {

  .metrics-row { grid-template-columns: repeat(2, 1fr); }
}

/* End of Proof / Trust Section */

/* ======================== SERVICES SECTION ======================== */

/* Services Section */

.services-section {
  padding: 90px 90px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .03;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.services-shell {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  background: var(--navy);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(7,18,51,.35);
  opacity: 0;
  transform: translateY(30px);
  animation: riseIn .8s .15s ease forwards;
  position: relative;
  isolation: isolate;
}

.services-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, #000 40%, transparent 100%);
  pointer-events: none;
  animation: gridDrift 22s linear infinite;
}

@keyframes gridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 68px 68px, 68px 68px; }
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
  pointer-events: none;
  opacity: .5;
}

.glow-orb.o1 {
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(6,163,218,.55), transparent 70%);
  top: -120px; right: -80px;
  animation: driftA 14s ease-in-out infinite;
}

.glow-orb.o2 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(13,202,240,.4), transparent 70%);
  bottom: -100px; left: 20%;
  animation: driftB 18s ease-in-out infinite;
}

.glow-orb.o3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(6,163,218,.3), transparent 70%);
  top: 30%; right: 30%;
  animation: driftA 20s ease-in-out infinite reverse;
}

@keyframes driftA {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-30px, 25px) scale(1.12); }
}

@keyframes driftB {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(25px, -20px) scale(1.08); }
}

.services-tabs {
  border-right: 1px solid rgba(255,255,255,.08);
  padding: 24px 16px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
    justify-content: space-evenly;
}

.left-svc-tab {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.tab-btn-dot {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: rgba(255,255,255,.15);
  margin-right: -22px;
  position: relative;
  transition: all .35s cubic-bezier(.4,0,.2,1);
}

.tab-btn-dot::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 50%;
  width: 0;
  height: 1px;
  background: var(--ais-accent);
  transform: translateY(-50%);
  transition: width .35s ease;
}

.tab-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 30px 14px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 14px;
  cursor: pointer;
  text-align: left;
  color: rgba(255,255,255,.65);
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  position: relative;
  transition: color .3s ease, background .3s ease, border-color .3s ease, transform .3s ease;
}

.tab-btn:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.1);
  transform: translateX(2px);
}

.tab-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.06);
  font-size: 18px;
  transition: background .35s ease, transform .35s ease, box-shadow .35s ease;
}

.tab-indicator {
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 3px;
  border-radius: 4px;
  background: var(--blue);
  transform: scaleY(0);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}

.services-panel {
  padding: 44px 48px;
  position: relative;
  z-index: 1;
  min-height: 480px;
}

.panel-content {
  display: none;
}

.panel-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.panel-title-row h3 {
  color: var(--white);
  font-size: 28px;
}

.badge {
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
}

.panel-tagline {
  color: var(--blue-light);
  font-weight: 600;
  margin-bottom: 14px;
  font-size: 15px;
}

.panel-desc {
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 32px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 32px;
  max-height: 32vh;
    min-height: 32vh;
  overflow-y: auto;
  padding-right: 8px;
  scroll-behavior: smooth;
}

/* custom scrollbar - theme match */
.service-grid::-webkit-scrollbar{
    width: 6px;
}
.service-grid::-webkit-scrollbar-track{
    background: transparent;
}
.service-grid::-webkit-scrollbar-thumb{
    background: rgba(6,163,218,.35);
    border-radius: 999px;
}
.service-grid::-webkit-scrollbar-thumb:hover{
    background: rgba(6,163,218,.6);
}



.service-card {
  --mx: 50%;
  --my: 50%;
  background:
    radial-gradient(circle at 100% 0%, rgba(6,163,218,.08), transparent 55%),
    rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 22px;
  position: relative;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.4,0,.2,1), background .35s ease, border-color .35s ease, box-shadow .35s ease;
  cursor: pointer;
  opacity: 0;
  transform: translateY(18px);
  animation: cardIn .55s cubic-bezier(.4,0,.2,1) forwards;
      /* NEW: replaces height: 28vh */
  min-height: clamp(160px, 22vw, 220px);
  display: flex;
  flex-direction: column;
}

.service-card .spotlight {
  position: absolute;
  inset: 0;
  background: radial-gradient(180px circle at var(--mx) var(--my), rgba(13,202,240,.16), transparent 65%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}

.service-card:hover .spotlight { opacity: 1; }

.service-card:nth-child(1) { animation-delay: .05s; }

.service-card:nth-child(2) { animation-delay: .15s; }

.service-card:nth-child(3) { animation-delay: .25s; }

@keyframes cardIn {
  to { opacity: 1; transform: translateY(0); }
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-light), transparent);
  transform: scaleX(0);
  transition: transform .45s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,.08), transparent);
  transform: skewX(-20deg);
  transition: left .7s ease;
  pointer-events: none;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover::after { left: 130%; }

.service-card:hover {
  transform: translateY(-6px);
  background:
    radial-gradient(circle at 100% 0%, rgba(6,163,218,.16), transparent 55%),
    rgba(6,163,218,.08);
  border-color: var(--ais-border);
  box-shadow: 0 16px 32px -14px rgba(6,163,218,.45);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(6,163,218,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
  transition: background .35s ease, transform .35s ease;
  animation: iconFloat 3.6s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.service-card:hover .card-icon {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  transform: rotate(-6deg) scale(1.08);
  animation-play-state: paused;
}

.service-card h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 8px;
}

.service-card p {
  color: rgba(255,255,255,.55);
  font-size: 13.5px;
  line-height: 1.6;
  margin-bottom: 12px;
  flex-grow: 1;
}



.card-link {
  color: var(--blue-light);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .25s ease;
      margin-top: auto;
}

.service-card:hover .card-link { gap: 10px; }

.explore-btn {
  background: linear-gradient(90deg, var(--blue), var(--blue-light), var(--blue));
  background-size: 200% 100%;
  color: var(--white);
  border: none;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  animation: btnShift 4s ease-in-out infinite;
}

@keyframes btnShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.explore-btn::after {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 30%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-20deg);
  animation: btnSweep 3s ease-in-out infinite;
}

@keyframes btnSweep {
  0% { left: -60%; }
  50%, 100% { left: 140%; }
}

.explore-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px -10px rgba(6,163,218,.6);
}

@keyframes riseIn {
  to { opacity: 1; transform: translateY(0); }
}


@media (max-width: 1024px) {
    .service-grid{
            grid-template-columns: repeat(2, 1fr);
    }
    .services-tabs{
            height: 80vh;
    }

}

@media (max-width: 1180px) {
  /* Services Section */
  .services-shell { max-width: 92%; grid-template-columns: 260px 1fr; }

  /* Services Section */
  .services-panel { padding: 40px 36px; }
}

@media (max-width: 860px) {
  .services-section { padding: 64px 16px; }
  .services-shell {
      grid-template-columns: 1fr;
      max-width: 100%;
      border-radius: 20px;
    }
  .services-tabs {
      display: flex;
      gap: 6px;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      border-right: none;
      border-bottom: 1px solid rgba(255,255,255,.08);
      padding: 14px;
      scrollbar-width: thin;
    }
  .services-tabs::-webkit-scrollbar { height: 4px; }
  .services-tabs::-webkit-scrollbar-thumb { background: rgba(255,255,255,.2); border-radius: 4px; }
  .services-tabs { gap: 8px; }
  .tab-btn {
      flex: 0 0 auto;
      min-width: 200px;
      margin-bottom: 0;
      padding: 12px 14px;
    }
  .glow-orb { filter: blur(50px); opacity: .35; }
  .glow-orb.o1 { width: 220px; height: 220px; }
  .glow-orb.o2 { width: 180px; height: 180px; }
  .glow-orb.o3 { display: none; }
  .tab-indicator { top: auto; bottom: 0; left: 8px; right: 8px; width: auto; height: 3px; transform: scaleX(0); }
  .tab-icon { width: 38px; height: 38px; min-width: 38px; font-size: 16px; }
  .services-panel { padding: 32px 24px; min-height: unset; }
  .panel-title-row h3 { font-size: 24px; }
  .service-grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; }
  .service-grid { max-height: none; overflow-y: visible; }
}

@media (max-width: 768px){
    .services-tabs{
        height: auto;
    }
}

@media (max-width: 560px) {
  .services-section { padding: 48px 12px; }
  .services-shell { border-radius: 16px; }
  .services-tabs { padding: 10px; }
  .tab-btn { min-width: 168px; font-size: 13.5px; gap: 10px; padding: 10px 12px; }
  .tab-icon { width: 34px; height: 34px; min-width: 34px; font-size: 15px; border-radius: 8px; }
  .services-panel { padding: 24px 18px; }
  .panel-title-row { gap: 10px; margin-bottom: 6px; }
  .panel-title-row h3 { font-size: 20px; }
  .badge { font-size: 11px; padding: 4px 10px; }
  .panel-tagline { font-size: 13.5px; }
  .panel-desc { font-size: 14px; margin-bottom: 24px; }
  .service-grid { grid-template-columns: 1fr; gap: 12px; margin-bottom: 24px; }
  .service-card { padding: 18px; }
  .card-icon { width: 38px; height: 38px; font-size: 17px; margin-bottom: 10px; }
  .explore-btn { width: 100%; justify-content: center; padding: 13px 20px; }
    .service-card {
    min-height: auto;
  }
}

@media (max-width: 380px) {
  /* Services Section */
  .tab-btn span:last-child { font-size: 13px; }

  /* Services Section */
  .panel-desc { max-width: 100%; }
}

/* End of Services Section */

/* ======================== INDUSTRIES SECTION ======================== */

/* Industries Section */
.ais-industries {
  position: relative;
  padding: 90px 24px;
  font-family: var(--font-main);
  overflow: hidden;
}

.ais-industries__inner {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.ais-industries__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .ais-industries__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .ais-industries__grid { grid-template-columns: 1fr; }
}

.ais-industries .ais-card {
  position: relative !important;
  background: linear-gradient(160deg, var(--navy) 0%, var(--dark) 100%) !important;
  border: 1px solid var(--ais-border) !important;
  border-radius: 14px !important;
  padding: 32px 26px !important;
  text-decoration: none !important;
  cursor: default !important;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  box-shadow: 0 12px 28px rgba(6, 163, 218, 0.10), 0 4px 10px rgba(9, 30, 62, 0.3);
  overflow: hidden;
}

/* top accent bar - always visible signature */
.ais-industries .ais-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.ais-card:hover::before { transform: scaleX(1); }

.ais-industries .ais-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% -10%, rgba(6, 163, 218, 0.18), transparent 55%);
  opacity: 1;
  pointer-events: none;
}

.ais-card:hover {
  transform: translateY(-10px);
  border-color: var(--blue) !important;
  box-shadow: 0 25px 50px rgba(6, 163, 218, 0.28), 0 8px 16px rgba(9, 30, 62, 0.35);
}

.ais-industries .ais-card .ais-card__icon {
  position: relative !important;
  z-index: 1;
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  border-radius: 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%) !important;
  box-shadow: 0 0 0 8px rgba(6, 163, 218, 0.08), 0 10px 22px rgba(6, 163, 218, 0.35);
  margin: 0 0 22px 0 !important;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.ais-card:hover .ais-card__icon {
  transform: scale(1.1) rotate(-6deg);
  box-shadow: 0 0 0 10px rgba(6, 163, 218, 0.14), 0 14px 26px rgba(6, 163, 218, 0.45);
}

.ais-industries .ais-card .ais-card__icon svg {
  position: relative;
  width: 26px !important;
  height: 26px !important;
  stroke: var(--white) !important;
  fill: none !important;
  stroke-width: 1.8 !important;
}

.ais-card__title {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: 0.2px;
}

.ais-card__desc {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}
/* End of Industries Section */

/* ======================== CASE STUDY SECTION ======================== */

/* Case Study Section */

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    color: var(--white);
}

@media (max-width: 768px) {
  .carousel-control-prev {
      left: -2rem;
      }
  .carousel-control-next {
      right: -2rem;
    }
  .carousel-item h3 {
      font-size: 1.25rem;
    }
  .carousel-item p {
      font-size: 0.95rem;
    }
}


h4.mb-3 {
            color: #ffffff;
        }

.mb-3 {
    font-size: 2rem;
    margin-bottom: 1rem !important;
}

.carousel-item img {
  position: relative;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 0 25px rgba(102, 178, 255, 0.25);
  overflow: hidden;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  filter: brightness(0.9);
}

.carousel-item img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 45px rgba(102, 178, 255, 0.6);
  filter: brightness(1);
}

.carousel-item h3 {
  font-size: 1.95rem;
  color: #66b2ff;
}

.carousel-item p {
  font-size: 16px;
  color: #e0e0e0;
}

.carousel-control-prev,
.carousel-control-next {
  width: auto;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.carousel-control-prev {
  left: -4rem;
}

.carousel-control-next {
  right: -4rem;
}

@media (max-width: 375px) {
  .sample {
      padding-top: 8rem !important;
  }
  .mb-3 {
      margin-block: 1rem !important;
  }
}

@media (min-width: 375px) and (max-width: 767px) {
  .sample {
              padding-top: 7rem !important;
          }
}

@media (min-width: 426px) and (max-width: 480px) {
  /* Case Study Section */
  .carousel-control-prev {
        left: -1.3rem;
    }

  /* Case Study Section */
  .carousel-control-next {
        right: -1.3rem;
    }
}

@media (min-width: 767px) and (max-width: 1023px) {
  .sample {
      padding-top: 6rem !important;
  }
}

@media (max-width:767px) {
  #sampleCarousel .carousel-control-prev,
  #sampleCarousel .carousel-control-next {
      top: 25%;
      transform: translateY(-50%);
      height: auto;
  }
  #projectsslider .carousel-item {
      margin-inline: 3%;
      position: relative;
      float: left;
      width: 94%;
      margin-right: -100%;
      backface-visibility: hidden;
      transition: transform .6s ease-in-out;
  }
  button.carousel-control-prev,
      button.carousel-control-next {
          padding-inline: 0.4rem;
      }
  .carousel-control-prev-icon,
      .carousel-control-next-icon {
      width: 3rem;
      height: 2rem;
      }
}

@media (min-width: 768px) and (max-width:1240px) {
  /* Case Study Section */
  .carousel-control-prev {
    left:-2.5rem;
    }

  /* Case Study Section */
  .carousel-control-next {
    right:-2.5rem;
}
}

@media (min-width: 768px) and (max-width: 1023px) {
  #sampleCarousel .carousel-control-prev,
  #sampleCarousel .carousel-control-next {
      top: 35%;
      transform: translateY(-50%);
      height: auto;
  }
}

#csxCaseStudy {
    /*background: var(--light);*/
    padding: 90px 90px;
    overflow: hidden;
  }

#csxCaseStudy .csx-section-title h5 {
    color: #06A3DA !important;
    letter-spacing: 2px;
    font-size: 15px;
    font-weight: 700;
  }

#csxCaseStudy .csx-section-title h4 {
    color: #091e3e;
    font-size: 38px;
    font-weight: 800;
  }

#csxCaseStudy .carousel-item {
    padding: 20px 0;
  }

#csxCaseStudy .col-lg-6 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

#csxCaseStudy .csx-image-wrapper {
    width: 100%;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #ffffff, #eef8ff);
    padding: 20px;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(9, 30, 62, .12);
    position: relative;
    overflow: hidden;
  }

#csxCaseStudy .csx-image-wrapper::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background: #06A3DA;
    opacity: .10;
    border-radius: 50%;
    top: -50px;
    right: -50px;
  }

#csxCaseStudy .csx-image-wrapper img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: none !important;
    object-fit: cover !important;
    border-radius: 22px;
    display: block;
    position: relative;
  }

#csxCaseStudy h3 {
    color: #06A3DA !important;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 25px;
  }

#csxCaseStudy .csx-case-block {
    height: 14vh;
    background: #ffffff;
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 18px;
    border-left: 4px solid #06A3DA;
    box-shadow: 0 10px 25px rgba(9, 30, 62, .06);
  }

#csxCaseStudy .csx-case-block h4 {
    color: #091e3e;
    font-weight: 800;
    margin-bottom: 8px;
  }

#csxCaseStudy .csx-case-block p {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
  }

#csxCaseStudy .csx-badge-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
  }

#csxCaseStudy .csx-badge {
    display: inline-flex;
    align-items: center;
    background: #e9f8ff;
    color: #091e3e;
    border: 1px solid rgba(6, 163, 218, .3);
    padding: 6px 14px !important;
    border-radius: 30px;
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    margin: 0 !important;
  }

#csxCaseStudy .csx-case-result {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--navy);
    color: white;
    padding: 13px 24px;
    border-radius: 40px;
    font-weight: 700;
    margin-top: 10px;
    width: max-content;
  }

#csxCaseStudy .csx-case-result i {
    color: #06A3DA;
    font-size: 20px;
  }

#csxCaseStudy .csx-btn {
    display: inline-block !important;
    margin-top: 30px !important;
    background: #06A3DA;
    border: none;
    padding: 13px 32px;
    border-radius: 50px !important;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
  }

#csxCaseStudy .csx-btn:hover {
    background: #091e3e;
    color: #ffffff;
  }

#csxCaseStudy #sampleCarousel {
    position: relative !important;
    z-index: 1;
  }

#csxCaseStudy .carousel-control-prev,
  #csxCaseStudy .carousel-control-next {
    position: absolute !important;
    top: 530px !important;
    bottom: auto !important;
    width: 40px !important;
    height: 40px !important;
    background: var(--ais-accent);
    margin: 0;
    border-radius: 50% !important;
    transform: translateY(-50%);
    opacity: 1;
    z-index: 5;
    box-shadow: 0 6px 18px rgba(9, 30, 62, .16);
    transition: box-shadow .2s ease, transform .2s ease;
  }

#csxCaseStudy .carousel-control-prev:hover,
  #csxCaseStudy .carousel-control-next:hover {
    box-shadow: 0 8px 22px rgba(9, 30, 62, .24);
    transform: translateY(-50%) scale(1.06);
  }

#csxCaseStudy .carousel-control-prev {
    left: 10px !important;
  }

#csxCaseStudy .carousel-control-next {
    right: 10px !important;
  }

#csxCaseStudy .carousel-control-prev-icon,
  #csxCaseStudy .carousel-control-next-icon {
    width: 20px;
    height: 20px;

  }


@media (max-width: 991px) {
  #csxCaseStudy {
        padding: 70px 20px;
      }
  #csxCaseStudy .csx-section-title h4 {
        font-size: 30px;
      }
  #csxCaseStudy .csx-image-wrapper {
        height: 300px;
        margin-bottom: 30px;
      }
  #csxCaseStudy h3 {
        font-size: 26px;
      }
  #csxCaseStudy .carousel-control-prev,
      #csxCaseStudy .carousel-control-next {
        top: 170px !important;
        width: 34px !important;
        height: 34px !important;
      }
  #csxCaseStudy .carousel-control-prev {
        left: -20px !important;
      }
  #csxCaseStudy .carousel-control-next {
        right: -20px !important;
      }
}

/* End of Case Study Section */

/* ======================== DELIVERY PROCESS SECTION ======================== */

/* Delivery Process Section */

.csx-delivery-process {
    padding: 90px 90px;
    /*background: var(--light);*/
    overflow: hidden;
}

.csx-delivery-cta {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(6, 163, 218, .35);
    transition: .3s;
}

.csx-delivery-cta:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(6, 163, 218, .45);
}

.csx-delivery-process .csx-section-title h5 {
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.csx-delivery-process .csx-section-title h2 {
    color: var(--dark);
    font-weight: 800;
    margin-bottom: 18px;
}

.csx-title-divider {
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

.csx-delivery-timeline {

    position: relative;
}

.csx-delivery-nodes {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 1100px;
    margin: 0 auto 10px;
    padding: 0 20px;
}

.csx-delivery-nodes::before {
    content: "";
    position: absolute;
    left: 40px;
    right: 40px;
    top: 50%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #7fd6f5, var(--primary));
    transform: translateY(-50%);
    z-index: 1;
}

.csx-delivery-node {
    position: relative;
    z-index: 2;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 800;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 6px rgba(6, 163, 218, .12), 0 8px 20px rgba(6, 163, 218, .25);
    transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s ease;
    animation: csxNodePulse 3s ease-in-out infinite;
}

.csx-delivery-node:nth-child(2) { animation-delay: .3s; }
.csx-delivery-node:nth-child(3) { animation-delay: .6s; }
.csx-delivery-node:nth-child(4) { animation-delay: .9s; }
.csx-delivery-node:nth-child(5) { animation-delay: 1.2s; }
.csx-delivery-node:nth-child(6) { animation-delay: 1.5s; }

@keyframes csxNodePulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(6, 163, 218, .12), 0 8px 20px rgba(6, 163, 218, .25); }
  50%      { box-shadow: 0 0 0 10px rgba(6, 163, 218, .18), 0 8px 26px rgba(6, 163, 218, .4); }
}

.csx-delivery-cards {
    display: flex;
    justify-content: space-between;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 16px;
}

.csx-delivery-item {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.csx-delivery-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    border-left: 2px dashed var(--primary);
    opacity: .6;
    transition: opacity .3s ease;
}
.csx-delivery-item:hover::before { opacity: 1; }

.csx-delivery-item:nth-child(odd)::before { height: 30px; }

.csx-delivery-item:nth-child(even)::before { height: 90px; }

.csx-delivery-item:nth-child(odd) .csx-delivery-card { margin-top: 30px; }

.csx-delivery-item:nth-child(even) .csx-delivery-card { margin-top: 90px; }

.csx-delivery-item:hover .csx-delivery-node {
    transform: scale(1.12);
}
.csx-delivery-nodes::before {
    content: "";
    position: absolute;
    left: 40px;
    right: 40px;
    top: 50%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #7fd6f5, var(--primary));
    background-size: 200% 100%;
    transform: translateY(-50%);
    z-index: 1;
    animation: csxLineFlow 4s linear infinite;
}
@keyframes csxLineFlow {
  0%   { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}


.csx-delivery-card {
    background: var(--navy);
    border-radius: 16px;
    padding: 28px 18px;
    text-align: center;
    color: #fff;
    width: 100%;
    max-width: 190px;
    box-shadow: 0 15px 30px rgba(9, 30, 62, .25);
    transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s ease, border-color .35s ease;
    border: 1px solid transparent;
}
.csx-delivery-item:hover .csx-delivery-card {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 45px rgba(6, 163, 218, .3);
    border-color: rgba(6, 163, 218, .4);
}

.csx-delivery-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--ais-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.csx-delivery-item:hover .csx-delivery-icon {
    transform: scale(1.15) rotate(-8deg);
}

.csx-delivery-title {
    font-weight: 800;
    margin-bottom: 4px;
}

.csx-delivery-subtitle {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
}

.csx-delivery-hr {
    width: 30px;
    border: 0;
    border-top: 2px solid var(--primary);
    opacity: .5;
    margin: 14px auto;
    transition: width .35s ease;
}
.csx-delivery-item:hover .csx-delivery-hr {
    width: 50px;
}

.csx-delivery-card p {
    font-size: 13px;
    color: #d7e3f5;
    margin: 0;
}

.csx-delivery-card h3{
    font-size: 20px;
    margin-top: 30px;
}

/* ===================== TABLET (≤991px) ===================== */
@media (max-width: 991px) {

    .csx-delivery-process { padding: 60px 40px; }

    /* Hide the top number strip — can't reliably stay aligned to
       cards once both wrap independently */
    .csx-delivery-nodes { display: none; }

    .csx-delivery-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px 16px;
        max-width: 720px;
        padding: 0;
        counter-reset: csxstep;
    }

    .csx-delivery-item {
        display: block;
        counter-increment: csxstep;
        position: relative;
    }

    .csx-delivery-item::before { display: none; } /* kill the old dashed connector */

    .csx-delivery-item:nth-child(odd) .csx-delivery-card,
    .csx-delivery-item:nth-child(even) .csx-delivery-card {
        margin-top: 0;
    }

    .csx-delivery-card {
        max-width: none;
        width: 100%;
        margin-top: 18px; /* room for the number badge */
    }

    /* auto-generated number badge, floating above each card */
    .csx-delivery-card::before {
        content: counter(csxstep, decimal-leading-zero);
        position: absolute;
        top: -16px;
        left: 50%;
        transform: translateX(-50%);
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: #fff;
        border: 2px solid var(--primary);
        color: var(--primary);
        font-weight: 800;
        font-size: 13px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 10px rgba(6, 163, 218, .25);
        z-index: 3;
    }
}

/* ===================== PHONE (≤576px) ===================== */
@media (max-width: 576px) {
    .csx-delivery-process { padding: 48px 20px; }

    .csx-delivery-cards {
        grid-template-columns: 1fr;
        max-width: 340px;
        gap: 40px;
    }

    .csx-delivery-card { padding: 26px 18px; }
}

/* End of Delivery Process Section */

/* ======================== TECHNOLOGIES SECTION ======================== */

/* Technologies Section */

@media (min-width: 375px) and (max-width: 767px) {
  .techmaindiv {
      padding: 40px 10px;
    }
  .techcardimg {
      width: 100%;
      height: auto;
      transform: none !important;
      margin-bottom: 10px;
    }
  .techcard1:hover .techcardimg,
    .techcard2:hover .techcardimg,
    .techcard3:hover .techcardimg,
    .techcard4:hover .techcardimg {
      transform: none !important;
      width: 100%;
      height: auto;
    }
  .button__icons {
      display: flex !important;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 1rem;
    }
  .button__icons a img {
      width: 2.5rem;
      height: 2.5rem;
    }
}

.techmaindiv {
  transform-style: preserve-3d;
  padding: 90px 90px;
}

.button__icons {
  display: none;
  margin-top: 3rem;
  gap: 10px;
  justify-content: center;
  align-items: center;
   width: 15rem;
}

.button__icons a img {
  width: 3rem;
  height: 3rem;
  transition: transform 0.6s;
}

.button__icons a img:hover {
  transform: scale(1.1);
}

.techcard1:hover .button__icons,
.techcard2:hover .button__icons,
.techcard3:hover .button__icons,
.techcard4:hover .button__icons {
  display: flex;
  width: 15rem;
  flex-wrap: wrap;
  margin-bottom:20px;

}

.techcard1 .techcardimg,
.techcard2 .techcardimg,
.techcard3 .techcardimg,
.techcard4 .techcardimg {
  width: 9rem;
  height: 16rem;
  position: relative;
  object-fit: contain;
  transform: rotateX(313deg) translateY(-29%);
  transition: transform 0.6s, width 0.6s, height 0.6s;
}

.techcard1:hover .techcardimg,
.techcard2:hover .techcardimg,
.techcard3:hover .techcardimg,
.techcard4:hover .techcardimg {
  transform: translateY(15px);
  width: 200px;
  height: 120px;
  object-fit: contain;
  transition: transform 0.3s, width 0.3s, height 0.3s;
}

.techcard3 .techcardimg {width:7rem;}

.techcard4 .techcardimg {width:13rem;}

@media (max-width: 1000px) {
  .techmaindiv {
      overflow-x: hidden;
      overflow-y: visible;
      padding: 60px 20px;
    }
  .techcard1 .techcardimg, .techcard2 .techcardimg, .techcard3 .techcardimg, .techcard4 .techcardimg {
      width: 100%;
      max-width: 8rem;
      height: 9rem;
      object-fit: contain;
      transform: none;
      margin: 0 auto;
    }
  .button__icons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-top: 1rem;
    }
  .techcard1:hover .techcardimg, .techcard2:hover .techcardimg, .techcard3:hover .techcardimg, .techcard4:hover .techcardimg {
                  width: 100%;
              max-width: 8rem;
              height: 9rem;
              object-fit: contain;
              transform: none;
              margin: 0 auto;
    }
}

.techcontainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6.5rem;
  margin-top: -50px;
  padding-bottom: 90px;
}

.tech-card {
  width: 250px;
  height: 200px;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s;

}

.tech-card:hover {
  transform: translateY(6px);
}

.techslide1 {
  position: relative;
  z-index: 1;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transform: translateY(100px);
  bottom:2rem;
  box-shadow: -2px 17px 25px rgb(0 0 0 / 86%);
  overflow:hidden;
  transition: background 0.3s ease-in-out;
}

.tech-card:hover .techslide1 {
  transform: translateY(33px);
  bottom:0;
}

.techslide1 .techcontent {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  display: grid;
}

.techslide2 {
  position: absolute;
  top: 12rem;
  left: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  padding: 20px 10px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  transform: translateY(-100px);
  z-index: 0;
  transition: 0.5s;
}

.tech-card:hover .techslide2 {
      transform: translateY(-37px);
    opacity: 1;
}

.button__icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.button__icons img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: transform 0.3s;
  filter: drop-shadow(2px 4px 6px black);
}

.button__icons img:hover {
  transform: scale(1.1);
}

.techcontent img {
     height:8rem;
     margin-bottom:1rem;
     }

@media (max-width: 1024px) {
  /* Technologies Section */
  .techcontainer {
            height:40rem auto;
            padding-bottom: 10rem;
            }
}

@media (max-width: 450px) {
  /* Technologies Section */
  .techcontainer {
            display: flex;
            align-items: center;
            gap: 5.5rem;
            flex-direction: column;
            justify-content: flex-start;

            }

  /* Technologies Section */
  .tech-card {
            margin-bottom:2rem;
            }

  /* Technologies Section */
  .tech-card:hover {
            margin-block:5rem;
            }
}

/* End of Technologies Section */

/* ======================== CUSTOMER REVIEWS / TESTIMONIALS ======================== */

/* Customer Reviews / Testimonials */
.feedback-testimonial-section {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  padding: 80px 20px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

/* Header & Badge Styling */
.feedback-section-header {
  text-align: center;
  margin-bottom: 40px;
}

.feedback-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eef2ff;
  border: 1px solid #dbe1fe;
  padding: 6px 16px;
  border-radius: 50px;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.06);
}

.feedback-star-icon {
  color: #2563eb;
  font-size: 11px;
}

.feedback-badge-text {
  color: #2563eb;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.feedback-section-header h2 {
  font-size: 38px;
  font-weight: 800;
  color: #0b132b;
  margin: 16px 0 8px;
  letter-spacing: -0.5px;
}

.feedback-subtitle {
  color: #64748b;
  font-size: 16px;
  margin: 0;
}

.feedback-header-line {
  width: 40px;
  height: 3px;
  background-color: #2563eb;
  margin: 14px auto 0;
  border-radius: 4px;
}

/* Carousel Layout */
.feedback-carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 1150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feedback-carousel-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.feedback-carousel-track.feedback-animating {
  opacity: 0.3;
  transform: scale(0.98);
}

/* Side Preview Cards */
.feedback-side-card {
  background: #ffffff !important;
  padding: 24px;
  width: 270px;
  height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 18px;
  opacity: 0.65;
  transform: scale(0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
  pointer-events: none;
  box-sizing: border-box;
}

.feedback-side-card .feedback-stars {
  color: #f59e0b;
  font-size: 12px;
  margin-bottom: 8px;
}

.feedback-quote-text {
  font-size: 12px;
  line-height: 1.6;
  color: #475569;
  height: 60px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin: 0;
}

.feedback-author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feedback-avatar-placeholder {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #334155;
  flex-shrink: 0;
}

.feedback-author-name {
  font-weight: 700;
  font-size: 13px;
  color: #0f172a;
}

.feedback-author-title {
  font-size: 11px;
  color: #2563eb;
}

/* Central Main Dark Card */
.feedback-main-card {
  position: relative;
  background: linear-gradient(145deg, #0a142f 0%, #040814 100%) !important;
  color: #ffffff !important;
  padding: 42px 48px 36px;
  width: 600px;
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(8, 18, 45, 0.45),
              0 0 50px rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 2;
  box-sizing: border-box;
}

/* Glowing Top-Left Quote Badge */
.feedback-quote-badge {
  position: absolute;
  top: -24px;
  left: 32px;
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-family: Georgia, serif;
  font-weight: 700;
  color: #ffffff;
  box-shadow: 0 0 25px rgba(37, 99, 235, 0.7);
  border: 3px solid #f4f8ff;
  line-height: 1;
  padding-top: 8px;
  box-sizing: border-box;
}

.feedback-stars-gold {
  color: #fbbf24;
  font-size: 16px;
  text-align: center;
  margin-top: 4px;
  letter-spacing: 3px;
}

/* Main Review Quote Text - Strictly Pure White */
.feedback-quote-text-lg {
  font-size: 17px;
  line-height: 1.65;
  text-align: center;
  color: #ffffff !important; /* Pure White */
  font-weight: 400;
  margin: 0;
  height: 105px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Divider Line */
.feedback-divider {
  position: relative;
  text-align: center;
  margin: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.feedback-diamond {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  color: #2563eb;
  font-size: 8px;
}

/* Footer of Main Card */
.feedback-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feedback-author-block {
  display: flex;
  align-items: center;
  gap: 14px;
}

.feedback-avatar-blue {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  box-shadow: 0 0 18px rgba(37, 99, 235, 0.5);
  flex-shrink: 0;
}

.feedback-author-name-lg {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.feedback-verified-tag {
  font-size: 11px;
  color: #38bdf8;
  font-weight: 600;
  display: inline-block;
  margin-top: 1px;
}

.feedback-author-role {
  margin: 2px 0 0;
  font-size: 12px;
  color: #94a3b8;
}

.feedback-vertical-line {
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, 0.12);
}

.feedback-stat-block {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feedback-stat-icon {
  width: 40px;
  height: 40px;
  background: rgba(37, 99, 235, 0.22);
  border: 1px solid rgba(37, 99, 235, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.feedback-stat-value {
  font-size: 24px;
  font-weight: 800;
  color: #38bdf8;
  line-height: 1;
}

.feedback-stat-label {
  font-size: 11px;
  color: #94a3b8;
  margin-top: 3px;
}

/* Navigation Buttons */
button.feedback-nav-btn {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  padding: 0 !important;
  margin: 0 !important;
  background: #ffffff !important;
  border: 1px solid #000000 !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  color: #0f172a !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-align: center !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08) !important;
  transition: all 0.2s ease !important;
  z-index: 10 !important;
  box-sizing: border-box !important;
}

.feedback-prev-btn { left: 0 !important; padding-right: 2px !important; }
.feedback-next-btn { right: 0 !important; padding-left: 2px !important; }

button.feedback-nav-btn:hover {
  background: #2563eb !important;
  color: #ffffff !important;
  border-color: #2563eb !important;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35) !important;
}

/* Pagination Dots */
.feedback-pagination-dots {
  display: flex;
  gap: 8px;
  margin: 32px 0 0;
}

.feedback-dot {
  width: 8px;
  height: 8px;
  background: #cbd5e1;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.feedback-dot.feedback-active {
  width: 24px;
  background: #2563eb;
  border-radius: 10px;
}

/* Bottom Features List */
.feedback-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1050px;
  width: 100%;
  border-top: 1px solid #e2e8f0;
  padding-top: 35px;
}

.feedback-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feedback-feature-icon {
  width: 44px;
  height: 44px;
  background: #eef2ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.feedback-feature-text {
  font-size: 13px;
  color: #64748b;
  line-height: 1.35;
}

.feedback-feature-text strong {
  color: #0f172a;
  font-weight: 700;
}

/* Responsive */
/*----for review card---*/
@media (max-width: 980px) {
  .feedback-side-card { display: none; }
  .feedback-main-card { width: 100%; max-width: 520px; height: auto; min-height: 350px; padding: 36px 28px; }
  .feedback-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .feedback-features-grid { grid-template-columns: 1fr; }
  .feedback-card-footer { flex-direction: column; align-items: flex-start; gap: 16px; display: none }
  .feedback-vertical-line { display: none; }

  /* give the wrapper room below the card for the arrows to sit in */
  .feedback-carousel-wrapper {
    flex-direction: column;
    padding-bottom: 64px;
  }

  /* move arrows from mid-card-height to below the card, spread apart */
  button.feedback-nav-btn.feedback-prev-btn,
  button.feedback-nav-btn.feedback-next-btn {
    top: auto !important;
    bottom: 0 !important;
    transform: none !important;
  }
 }

/* End of Customer Reviews / Testimonials */


/* End of Customer Reviews / Testimonials */

/* ======================== FAQ SECTION ======================== */

/* FAQ Section */

/* ==========================================
   AIS FAQ SECTION
   Fixed Scroll + Same Design (spacing fixed, 5 visible)
========================================== */

.aisfaq-section {
  padding: 90px 90px;
  position: relative;
  overflow: hidden;
}

/*.aisfaq-section::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: -100px;*/
/*  right: -100px;*/
/*  width: 300px;*/
/*  height: 300px;*/
/*  background: radial-gradient(*/
/*    circle,*/
/*    rgba(6, 163, 218, 0.10),*/
/*    transparent 70%*/
/*  );*/
/*  pointer-events: none;*/
/*}*/


/* =========================
   MAIN STRUCTURE
========================= */

.aisfaq-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 3.5rem;
  align-items: flex-start;
  justify-content: space-between;
}

/* =========================
   LEFT CONTENT
========================= */

.aisfaq-top {
  flex: 1 1 320px;
  max-width: 420px;
  text-align: center;
}

.aisfaq-title {
  font-size: 2.3rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #06A3DA;
  letter-spacing: 1.5px;
}

.aisfaq-title-accent {
  color: #0b213f;
}

.aisfaq-subtitle {
  font-size: 1.55rem;
  font-weight: 700;
  color: #0b213f;
  margin-top: .5rem;
  line-height: 1.3;
}

.aisfaq-underline {
  display: block;
  width: 60px;
  height: 4px;
  margin: 1.2rem auto 2.2rem;
  background: linear-gradient(
    90deg,
    #06A3DA,
    #3ee0ff
  );
  border-radius: 10px;
}

.aisfaq-image img {
  max-width: 100%;
  filter: drop-shadow(
    0 10px 25px rgba(6, 163, 218, .15)
  );
}

/* =========================
   RIGHT FAQ STRUCTURE
========================= */

.aisfaq-questions-outer {
  flex: 1 1 550px;
  position: relative;
  min-width: 0;
}

/* MAIN SCROLL BOX - sized to show exactly 5 items */
.aisfaq-questions {
  height: 440px;
  max-height: 440px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 15px;
  scrollbar-width: thin;
  scrollbar-color: #06A3DA rgba(6, 163, 218, .08);
}

/* accordion list: proper gap between cards so it doesn't look congested */
#aisfaqAccordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* =========================
   SCROLL BAR
========================= */

.aisfaq-questions::-webkit-scrollbar {
  width: 6px;
}

.aisfaq-questions::-webkit-scrollbar-track {
  background: rgba(6, 163, 218, .08);
  border-radius: 10px;
}

.aisfaq-questions::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    #06A3DA,
    #0b8fc0
  );
  border-radius: 10px;
}

/* =========================
   FAQ CARD
========================= */

.aisfaq-item {
  background: linear-gradient(
    145deg,
    #0e2a4d,
    #0a1f3d
  );
  border: 1px solid rgba(6, 163, 218, .15);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(11, 33, 63, .10);
  transition: .3s;
  flex-shrink: 0;
}

.aisfaq-item:hover {
  border-color: rgba(6, 163, 218, .55);
  box-shadow: 0 12px 28px rgba(6, 163, 218, .18);
  transform: translateY(-2px);
}

/* =========================
   QUESTION BUTTON
========================= */

.aisfaq-question {
  width: 100%;
  background: var(--navy);
  border: none;
  color: white;
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.4;
  padding: 1.1rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  cursor: pointer;
}

.aisfaq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(6, 163, 218, .15);
  border: 1px solid rgba(6, 163, 218, .3);
  color: #3ee0ff;
  flex-shrink: 0;
  transition: .35s;
}

.aisfaq-item:hover .aisfaq-icon {
  transform: scale(1.08);
}

.aisfaq-question[aria-expanded="true"] .aisfaq-icon {
  background: #06A3DA;
  color: white;
  transform: rotate(180deg);
}

/* =========================
   ANSWER
========================= */

.aisfaq-answer-wrap {
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.aisfaq-answer {
  padding: 1.1rem 1.5rem 1.4rem;
  color: #cfd8e3;
  font-size: .96rem;
  line-height: 1.7;
}

/* =========================
   BUTTON
========================= */

.aisfaq-btn-wrap {
  text-align: center;

}

.aisfaq-btn {
  display: inline-block;
  padding: .8rem 2.4rem;
  background: linear-gradient(
    90deg,
    #06A3DA,
    #0b8fc0
  );
  color: white;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: .3s;
}

.aisfaq-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(6, 163, 218, .35);
  color: white;
}

/* =========================
   SCROLL HINT
========================= */

.ais-scroll-indicator {
  margin-top: 15px;
  text-align: center;
  color: #06A3DA;
  font-size: 14px;
  font-weight: 600;
  animation: scrollMove 1.8s infinite;
}

@keyframes scrollMove {
  0%, 100% {
    transform: translateY(0);
    opacity: .5;
  }
  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width: 991px) {
  .aisfaq-wrapper {
    flex-direction: column;
    gap: 2.5rem;
  }

  .aisfaq-top {
    max-width: 100%;
  }

  .aisfaq-questions {
    height: 440px;
    max-height: 440px;
    overflow-y: auto;
  }
}

@media(max-width: 576px) {
  .aisfaq-section {
    padding: 3.5rem 1rem 4rem;
  }

  .aisfaq-title {
    font-size: 1.8rem;
  }

  .aisfaq-subtitle {
    font-size: 1.3rem;
  }

  .aisfaq-question {
    font-size: .95rem;
    padding: 1rem 1.1rem;
  }
}

/* End of FAQ Section */

/* ======================== FINAL CTA SECTION ======================== */

/* Final CTA Section */

.tech-cta-section {
    position: relative;
    padding: 90px 35px;
    text-align: center;
    overflow: hidden;
}

.tech-orb {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(6, 163, 218, 0.03);
    border: 1px solid rgba(6, 163, 218, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    box-shadow: 0 8px 32px rgba(6, 163, 218, 0.06);
    animation: float 6s ease-in-out infinite;
}

.tech-orb img { width: 50%; filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.1)); }

.cta-content {
    padding: 25px 25px;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    background: var(--navy);
    border-radius: 20px;
}

.cta-content h2 { color: var(--white); font-size: 44px; margin-bottom: 15px; }

.cta-content p { color: #d7e3f5; font-size: 16px; margin-bottom: 30px; }

.cta-buttons { display: flex; gap: 15px; justify-content: center; }

.cta-primary { background: var(--blue); color: var(--white); padding: 14px 30px; border-radius: 10px; text-decoration: none; font-weight: 600; transition: background .3s; }

.cta-primary:hover { background: var(--light); color: var(--ais-accent); border: 1px solid var(--ais-accent)}

.cta-secondary { border: 1px solid var(--blue); color: var(--blue); padding: 14px 30px; border-radius: 10px; text-decoration: none; font-weight: 600; background: transparent; transition: all .3s; }

.cta-secondary:hover { background: var(--ais-accent); color: var(--light) }

@media (max-width: 768px) {
  /* Final CTA Section */
  .tech-orb { display: none; }
}

/* End of Final CTA Section */

