/* =====================================
   SERVICES HERO SECTION
===================================== */

.services-hero{
  position:relative;
  padding-top:30px;
  background:linear-gradient(180deg,var(--bg),#0f3e40 60%);
  min-height:600px;
  overflow:hidden;
  z-index:1;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.services-hero .container{
  width:100%;
  max-width:1200px;
  margin:auto;
  padding:0 40px;

}

.services-hero-inner{
  max-width:var(--container);
  margin:0 auto;
  display:flex;
  gap:32px;
  padding:40px 20px;
  align-items:flex-start;
  position:relative;
  z-index:2;
}

.services-hero-copy{
  flex:1;
  color:var(--white);
}

.services-hero-copy h1{
  font-size:70px;
  line-height:1.05;
  font-weight:700;
  margin:12px 0 18px;
  letter-spacing:-0.6px;
}
.h2{color: var(--muted);
    font-size: 16px;
    margin-bottom: 18px;}

.services-lead{
  color:var(--muted);
  font-size:16px;
  margin-bottom:18px;
}

/* ---------- LIST ---------- */
.ph-list{
  list-style:none;
  padding:0;
  margin:0 0 28px;
}

.ph-list li{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  color:#e5f3f3;
  margin-bottom:10px;
}

.ph-list img{
  width:18px;
}

/* ---------- BUTTON ---------- */
.services-hero-btn-row {
    display: flex;
    align-items: center;
    gap: 18px;
}

.services-hero-btn-row .btn-primary {
    background: transparent;
    color: var(--white);
    border: 2px solid #9fc24a;}

    @media(max-width:768px){

  /* HERO */
  .services-hero{
    min-height:auto;
    padding:80px 0 40px;
  }

  .services-hero-inner{
    flex-direction:column;
  }

  .services-hero-copy h1{
    font-size:28px;
    line-height:1.3;
  }

  .services-lead{
    font-size:14px;
  }
}


/* ================= PRODUCT INSIGHT ================= */

.product-insight {
  padding: 100px 20px;
  
}

.pi-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

/* ================= LEFT CONTENT ================= */

.pi-content {
  flex: 1;
}

.pi-title {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 22px;
  color: #000;
}

.pi-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 18px;
}

/* ================= STATS ================= */

.pi-stats {
  display: flex;
  gap: 80px;
  margin-top: 30px;
}

.pi-stats h3 {
  font-size: 34px;
  color: #8fc24b;
  margin: 0 0 6px;
}

.pi-stats span {
  font-size: 14px;
  color: #666;
}

/* ================= RIGHT CARD ================= */

.pi-card {
  flex: 1;
  background: #eaf4f7;
  border-radius: 28px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
    width: 100%;
  max-width: 340px;
}

/* ================= IMAGE STACK ================= */

.pi-image-stack {
  position: relative;
  width: 100%;
  max-width: 340px;
  height: 420px;
  margin-bottom: 18px;
}

/* COMMON IMAGE STYLE */
.pi-image {
  position: absolute;
  left: 0;
  width: 100%;
  height: 320px;
  border-radius: 22px;
  overflow: hidden;
}

/* IMAGE */
.pi-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.pi-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 62, 64, 0.55);
  z-index: 1;
}

/* TEXT */
.pi-image span {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  z-index: 2;
}

/* STACK POSITIONS */
.img-1 {
  top: 0;
  z-index: 1;
}

.img-2 {
  top: 70px;
  z-index: 2;
}

.img-3 {
  top: 140px;
  z-index: 3;
}

/* ================= CARD DESCRIPTION ================= */

.pi-card-desc {
  font-size: 13px;
  color: #555;
  text-align: center;
  line-height: 1.6;
  max-width: 260px;
  margin-top: 2px;
}

/* ================= MOBILE ================= */@media (max-width: 768px) {

  /* SECTION PADDING */
  .product-insight {
    padding: 40px 16px;   /* outer spacing */
  }

  /* MAIN CONTAINER */
  .pi-container {
    flex-direction: column;
    gap: 32px;
    padding: 0 12px;      /* 🔥 THIS creates left & right space like Figma */
  }

  /* LEFT CONTENT */
  .pi-title {
    font-size: 24px;
    line-height: 1.3;
  }

  .pi-desc {
    font-size: 14px;
    line-height: 1.7;
  }

  /* STATS */
  .pi-stats {
    gap: 32px;
    margin-top: 20px;
  }

  .pi-stats h3 {
    font-size: 24px;
  }

  /* CARD */
  .pi-card {
    width: 100%;
    max-width: 100%;        /* prevent edge sticking */
    padding: 16px;
    border-radius: 22px;
    margin: 0 auto;         /* ✅ center card */
  }

  /* IMAGE STACK */
  .pi-image-stack {
    width: 100%;
    max-width: 100%;
    height: 320px;
    margin: 0 auto 12px;
  }

  .pi-image {
    height: 220px;
  }

  .img-2 {
    top: 55px;
  }

  .img-3 {
    top: 110px;
  }

  .pi-image span {
    font-size: 13px;
  }

  .pi-card-desc {
    font-size: 12px;
    line-height: 1.6;
    text-align: center;
    padding: 0 8px;        /* 🔥 inner text spacing */
  }
}

/* ================= INDUSTRY SOLUTIONS ================= */

.industry-solutions {
  padding: 100px 20px;
margin-top: 0px;
}

.is-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */

.is-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.is-header h2 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #000;
}

.is-header p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

/* GRID */

.is-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* CARD */

.is-card {
  background: linear-gradient(180deg, #dfe5ea 0%, #a7b3bf 100%);
  border-radius: 20px;
  padding: 24px;
  min-height: 180px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* FULL WIDTH CARD */
.is-card-wide {
  grid-column: span 2;
  min-height: 200px;
}

/* ICON */

.is-icon {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 36px;
  height: 36px;
  background: #f6fbfc;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* ICON IMAGE */
.is-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
/* TEXT */

.is-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.is-card p {
  font-size: 13px;
  color: #eef3f6;
  line-height: 1.6;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  /* SECTION PADDING (matches Figma) */
  .industry-solutions {
    padding: 48px 16px;
  }

  /* HEADER */
  .is-header {
    text-align: center;
    margin-bottom: 36px;
  }

  .is-header h2 {
    font-size: 22px;
    line-height: 1.4;
  }

  .is-header p {
    font-size: 14px;
    line-height: 1.7;
  }

  /* GRID → SINGLE COLUMN */
  .is-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* 🔴 IMPORTANT FIX */
  .is-card,
  .is-card-wide {
    grid-column: auto !important;   /* remove span */
    width: 100%;
    min-height: 140px;
    padding: 20px;
  }

  /* ICON */
  .is-icon {
    width: 32px;
    height: 32px;
    top: 14px;
    left: 14px;
  }

  .is-icon img {
    width: 16px;
    height: 16px;
  }

  /* TEXT */
  .is-card h4 {
    font-size: 14px;
  }

  .is-card p {
    font-size: 12px;
  }
}

.process-section {
margin-top: 60px !important;
}


/* ================= FEATURES SECTION ================= *//* ================= FEATURES SECTION ================= */
.features-section {
 
  padding: 100px 0;
  overflow: hidden;
}

/* Header only centered */
.features-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.features-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}

.features-header h2 {
  font-size: 56px;
  font-weight: 700;
  color: #000;
}

.features-header p {
  font-size: 15px;
  color: #000000;
}

/* ================= MAIN WRAP ================= */

.features-wrap {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 460px;
}

/* IMAGE — TOUCH LEFT EDGE */

.features-image {
  width: 60vw;
  max-width: 760px;
  height: 420px;
  border-radius: 0 28px 28px 0;
  overflow: hidden;
}

.features-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CARD — OVERLAP IMAGE */

.feature-card {
  position: absolute;
  left: calc(60vw - 120px);
  background: #ffffff;
  width: 380px;
  padding: 32px;
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  z-index: 5;

  /* 🔥 RIGHT ALIGN TEXT */
  text-align: right;
}
/* LINE */
.feature-card {
  position: absolute;
  background: #ffffff;
  width: 380px;
  padding: 32px 36px 32px 32px; /* extra right padding */
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  text-align: right;
}

/* VERTICAL LINE */
.feature-card::after {
  content: "";
  position: absolute;
  top: 32px;
  right: 0;
  width: 4px;
  height: 64px; /* height like figma */
  background: #0f3e40;
  border-radius: 4px;
}

/* CARD TEXT */

.feature-card h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #000;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
}

/* ARROWS — FLOATING OVER IMAGE */

.feature-arrows {
  position: absolute;
  left: calc(60vw - 60px);
  top: -18px;
  display: flex;
  gap: 10px;
  z-index: 6;
}

.arrow-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid #cfe3d2;
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}


@media (max-width: 768px) {

  .features-section {
    padding: 48px 16px;
  }

  .features-wrap {
    flex-direction: column;
    align-items: center;
  }
  .features-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #000;
}

  /* IMAGE */

  .features-image {
    width: 100%;
    max-width: 320px;
    border-radius: 22px;
  }

  /* BLUE LINE BELOW IMAGE (FIGMA STYLE) */

  .features-image::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background: #0f3e40;
    margin: 14px auto 0;
  }

  /* CARD BELOW IMAGE */

  .feature-card {
    position: static;
    transform: none;
    width: 100%;
    max-width: 320px;
    height: auto;
    margin-top: 18px;
    text-align: center;
    padding: 24px;
  }

  .feature-scroll {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  /* REMOVE VERTICAL SCROLLER ON MOBILE */

  .feature-line,
  .scroll-indicator {
    display: none;
  }

  /* ARROWS BELOW CARD */

  .feature-arrows {
    position: static;
    margin-top: 18px;
    justify-content: center;
  }
}

/* ================= SECTION ================= */

.industry-section {

  
  padding: 80px 20px;
}

.industry-container {
  max-width: 1100px;
  margin: auto;
}

/* ================= HEADER ================= */

.industry-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.industry-header h2 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #000;
}

.industry-header p {
  font-size: 14px;
  color: #666;
}

/* ================= GRID ================= */

.industry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ================= CARD ================= */

.industry-card {
  position: relative;
  height: 360px;
  border-radius: 22px;
  overflow: hidden;
  display: block;
  text-decoration: none;
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ================= OVERLAY ================= */

.industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.15)
  );
  padding: 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.industry-overlay h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  max-width: 220px;
}

.industry-overlay p {
  font-size: 12px;
  opacity: 0.9;
  max-width: 260px;
}

.industry-overlay .arrow {
  position: absolute;
  right: 18px;
  top: 18px;
  font-size: 18px;
}

/* ================= LABEL CARD ================= */

.label-card .industry-label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px 18px;
  background: rgba(15, 62, 64, 0.85);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .industry-section {
    padding: 48px 16px;
  }

  .industry-header h2 {
    font-size: 24px;
  }

  .industry-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .industry-card {
    height: 260px;
  }

  .industry-overlay h4 {
    font-size: 16px;
  }

  .industry-overlay p {
    font-size: 12px;
  }
}

/* ---------- CLIENT LOGOS / MARQUEE ---------- */

.client-logos-section{
  max-width:1150px;
  width:100%;
  margin:80px auto;
  display:flex;
  align-items:center;
  gap:40px;
}

.client-logos-left h4{
  font-size:32px;
  font-weight:700;
  color:#000;
  white-space:nowrap;
}

.client-logos-right{
  flex:1;
  overflow:hidden;
}

.logo-slider{
  width:100%;
  overflow:hidden;
  position:relative;
}

.logo-slider-track{
  display:inline-flex;
  align-items:center;
  white-space:nowrap;
  animation:logo-scroll 16s linear infinite;
}

.logo-slider-track img{
  height:70px;
  margin-right:60px;
  opacity:0.9;
  object-fit:contain;
  transition:0.3s ease;
}

/* Animation */
@keyframes logo-scroll{
  0%{ transform:translateX(0); }
  100%{ transform:translateX(-50%); }
}

@media (max-width: 768px) {
  .client-logos-section{
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .client-logos-left{
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .client-logos-left h4{
    text-align: center;
  }
}
/* ================= TESTIMONIAL ================= */
.testimonial-section{
  padding:100px 20px;
  
}

.testimonial-title{
  text-align:center;
  font-size:48px;
  font-weight:700;
  margin-bottom:80px;
  color:#000;
}

/* LAYOUT */
.testimonial-wrap{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns: 1fr 1.2fr 1.5fr;
  align-items:center;
  gap:60px;
}

/* AUTHOR */
.testimonial-author h4{
  font-size:32px;
  font-weight:700;
  line-height:1.2;
  margin-bottom:10px;
  color:#000;
}

.testimonial-author p{
  font-size:14px;
  color:#555;
}

/* SOCIALS */
.testimonial-socials{
  display:flex;
  gap:12px;
  margin-top:16px;
}

.testimonial-socials a{
  width:34px;
  height:34px;
  border-radius:50%;
  background:#9acd32;
  display:flex;
  align-items:center;
  justify-content:center;
}

.testimonial-socials img{
  width:16px;
  height:16px;
  filter:brightness(0) invert(1);
}

/* IMAGE */
.testimonial-image{
  display:flex;
  justify-content:center;
}

.testimonial-image img{
  width:100%;
  max-width:360px;
  height:420px;
  border-radius:28px;
  object-fit:cover;
}

/* CONTENT */
.testimonial-content{
  position:relative;
  font-size:16px;
  line-height:1.8;
  color:#555;
}

.quote-icon{
  width:46px;
  margin-bottom:20px;
}
/* ================= MOBILE FIX (FIGMA MATCH) ================= */
@media (max-width: 768px){

  .testimonial-section{
    padding:48px 20px;           /* Figma-like side padding */
   
  }

  .testimonial-title{
    font-size:22px;
    line-height:1.3;
    text-align:left;             /* matches figma */
    margin-bottom:20px;
  }

  .testimonial-wrap{
    display:flex;
    flex-direction:column;
    gap:24px;                    /* consistent vertical spacing */
    padding:0;
  }

  /* CONTENT */
  .testimonial-content{
    order:1;
    font-size:14px;
    line-height:1.6;
    color:#6b6b6b;
  }

  /* AUTHOR */
  .testimonial-author{
    order:2;
   
    text-align:left; 
  }

  .testimonial-author h4{
    font-size:14px;
    font-weight:600;
   
    text-align: left;
    white-space:normal;          /* allow wrap like figma */
  }

  .testimonial-author span,
  .testimonial-author p{
    font-size:12px;
    color:#8a8a8a;
  }

  /* IMAGE */
 .testimonial-image{
    order:3;
    width:100%;
    
  }

  .testimonial-image img{
    display:block;
    width:100%;
    max-width:340px;
    margin-left:auto;
    margin-right:auto;   /* 🔥 forces equal left & right */
    border-radius:16px;
  }


  /* QUOTE ICON */
  .testimonial-quote{
    font-size:28px;
    margin-bottom:8px;
  }

  /* HIDE SOCIAL ICONS */
  .testimonial-socials{
    display:none;
  }
}

@media (max-width:768px){
  .testimonial-author h4 br{
    display:none;
  }

  .testimonial-author h4{
    white-space:nowrap;
  }
}
@media (max-width:768px){
  .testimonial-wrap{
    align-items:flex-start;  /* ✅ FORCE LEFT */
  }
}