/* ==========================================================================
   Fast Info Hub — Landing Page Styles
   Font: Plus Jakarta Sans
   ========================================================================== */

:root {
  --navy-900: #001A2B;
  --navy-800: #032641;
  --navy-hero-1: #051C33;
  --navy-hero-2: #0A2E4E;
  --blue-600: #0B84FF;
  --blue-500: #2196F3;
  --blue-400: #4FC3F7;
  --blue-100: #E8F3FF;
  --blue-050: #F3F9FF;
  --card-heading: #005386;
  --body-text: #505050;
  --green: #1FAE5A;
  --border-light: #E6ECF1;
  --shadow-soft: 0 10px 30px rgba(0, 26, 43, 0.08);
  --shadow-card: 0 8px 24px rgba(0, 26, 43, 0.07);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--body-text);
  background-color: #ffffff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
}

/* ---------- Common Typography ---------- */

.section-heading {
  font-size: 32px;
  line-height: 42px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 18px;
  line-height: 25px;
  font-weight: 400;
  color: var(--body-text);
}

.section-heading-wrap {
  max-width: 720px;
  margin: 0 auto 56px;
}

.eyebrow {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-600);
  letter-spacing: 0.3px;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.heading-underline {
  width: 64px;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-600), var(--blue-400));
  border-radius: 4px;
  margin: 0 0 24px;
}

.text-center .heading-underline,
.industries-section .heading-underline {
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */

.hero-section {
    background-image: url("https://www.fastinfohub.com/assets-new/images/fhnew/hero-bg.webp");
  background-size: cover;
  background-position: center;
  padding: 60px 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-shapes .shape {
  position: absolute;
  background: linear-gradient(135deg, rgba(11, 132, 255, 0.55), rgba(79, 195, 247, 0.15));
  transform: skewX(-18deg);
}

.shape-1 {
  width: 140px;
  height: 480px;
  top: -60px;
  right: 22%;
  opacity: 0.85;
}

.shape-2 {
  width: 90px;
  height: 380px;
  top: 40px;
  right: 12%;
  background: linear-gradient(135deg, rgba(79, 195, 247, 0.35), rgba(79, 195, 247, 0.05));
}

.shape-3 {
  width: 60px;
  height: 280px;
  bottom: -40px;
  right: 32%;
  background: linear-gradient(135deg, rgba(11, 132, 255, 0.3), transparent);
}

.hero-content {

  z-index: 2;
}


.hero-callout {
  background-image: url("https://www.fastinfohub.com/assets-new/images/fhnew/hero-heading-bg.webp");
  padding: 38px 34px 34px;
  background-size: cover;
  background-position: top;

}

.hero-badge {
  position: absolute;
  top: -16px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #EAF4FF;
  border: 1px solid #BFDDFF;
  color: #12314F;
  font-size: 12.5px;
  font-weight: 700;
  padding: 7px 16px 7px 13px;
  border-radius: 30px;
  margin-bottom: 0;
  box-shadow: 0 6px 14px rgba(10, 60, 120, 0.16);
  white-space: nowrap;
  z-index: 2;
}

.hero-badge svg path {
  fill: #5B7FFF;
}

.hero-heading {
    font-size: 40px;
    line-height: 50px;
    font-weight: 500;
    color: #000C14;
    margin-bottom: 0;
    margin-top: 12px;
}

.text-blue {
  background: linear-gradient(90deg, #0369C8, #009EFF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-desc {
  font-size: 18px;
  line-height: 25px;
  color: #C9C9C9;
  margin-bottom: 28px;
  margin-top: 24px;
  font-weight: 500;
}

.btn-primary-custom {
  color: #ffffff;
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  padding: 6px 16px;
  overflow: visible;
  transition: filter 0.2s ease, transform 0.2s ease;
  background-image: url("https://www.fastinfohub.com/assets-new/images/fhnew/button.webp");
  background-size: cover;
}

.btn-primary-custom:hover {
  filter: brightness(1.08);
  color: #fff;
  transform: translateY(-2px);
}

.btn-chevrons {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -2px;
}

.btn-accent {
  width: 14px;
  align-self: stretch;
  border-radius: 3px;
  background: linear-gradient(135deg, #2FD8B8, #1FAE5A);
  transform: skewX(-12deg);
  margin-left: 6px;
}

.btn-text-link {
  color: #FFF2AA;
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  padding: 8px;
  border-bottom:dashed 1px #FFF2AA;
  transition: opacity 0.2s ease;
}

.btn-text-link:hover {
  color: #ffffff;
  opacity: 0.8;
}

.hero-trust-box {
     margin-top: 24px;
    color: #EAEAEA;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 0px;
}

.hero-trust-box strong {
  color: #ffffff;
  font-weight: 700;
}

.hero-image-wrap {
  position: relative;
  z-index: 1;
  min-height: 1px;
}

/* ==========================================================================
   2. CLIENT LOGO STRIP
   ========================================================================== */

.client-strip-section {
  padding: 0;
  margin-top: -40px;
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}

.client-strip-card {
  background: #ffffff;
  padding: 28px 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px 40px;
  border-radius:10px;
}

.client-label {
  font-weight: 700;
  font-size: 15px;
  color: var(--navy-900);
  white-space: nowrap;
  padding-right: 32px;
  border-right: 1px solid var(--border-light);
}

.client-logos {
  display: flex;
  flex: 1;
  gap: 24px;
}



/* ==========================================================================
   3. SERVICES SECTION
   ========================================================================== */

/* .digital-solutions{
    background:#ffffff;
    padding:70px 0;
} */

/* Section Heading */

/* .section-title{
    max-width:760px;
    margin:auto;
} */

.small-title{
        font-size: 18px;
    font-weight: 600;
    color: #005386;
    margin-bottom: 10px;
    line-height: 25px;
}

.section-title h2{
    font-size:32px;
    line-height:42px;
    font-weight:700;
    color:#000C14;
    margin-bottom:15px;
    margin-top:12px;
}

.section-title p{
    font-size:16px;
    line-height:28px;
    color:#666;
    margin:0 auto;
    max-width: 784px;
}

/* Cards */

.solution-card{
    background:#fff;
    border:1px solid #e9ecef;
    border-radius:12px;
    padding:22px;
    height:100%;
    transition:.35s;
    box-shadow:0 2px 8px rgba(0,0,0,.05);
}

.solution-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.card-top{
    display:flex;
    align-items:center;
    margin-bottom:18px;
}

.card-top img{
    width:42px;
    height:42px;
    object-fit:contain;
    margin-right:12px;
}

.card-top h3{
    margin:0;
    font-size:21px;
    line-height:31px;
    font-weight:500;
    color:#005386;
}

.solution-card p{
    font-size:16px;
    line-height:28px;
    color:#555;
    margin-bottom:22px;
}

.solution-card a{
    text-decoration:none;
    color:#000;
    font-size:16px;
    font-weight:600;
}

.solution-card a:hover{
    color:#0d6efd;
}

.read-more{
    display:inline-block;
    margin-top:5px;
    color:#0d6efd;
    font-size:15px;
    font-weight:600;
    text-decoration:none;
    cursor:pointer;
    transition:.3s;
}

.read-more:hover{
    color:#084298;
}

.hide-text{
    display:none;
}

.read-more[aria-expanded="true"] .show-text{
    display:none;
}

.read-more[aria-expanded="true"] .hide-text{
    display:inline;
}

.service-list{
    margin:15px 0;
    padding-left:18px;
}

.service-list li{
    font-size:15px;
    color:#555;
    line-height:28px;
}






/* ==========================================================================
   4. ROADMAP SECTION
   ========================================================================== */

.roadmap-section{
  background-image:url("https://www.fastinfohub.com/assets-new/images/fhnew/your-roadmap-bg.webp");
  padding: 80px 0;
  background-size: cover;
}

/* Heading */

.roadmap-section .section-title{
    max-width:760px;
    margin:0 auto 45px;
}

.roadmap-section .section-title h2{
    font-size:36px;
    line-height:46px;
    color:#001A2B;
    font-weight:700;
    margin-bottom:12px;
}

.roadmap-section .section-title p{
    font-size:16px;
    line-height:28px;
    color:#666;
    margin:0;
}

/* ==========================================================================
   5. INDUSTRIES SECTION
   ========================================================================== */

.industries-section{
    background:#00111C;
    padding:80px 0;
}

.industries-section .section-title{
    margin-bottom:45px;
}

.industries-section .section-title h2{
    color:#fff;
    font-size:36px;
    font-weight:700;
    margin-bottom:15px;
}

.industries-section .section-title span{
    width:70px;
    height:3px;
    background:#1E90FF;
    display:block;
    margin:auto;
    border-radius:50px;
}

/* Cards */

.industry-card{
    position:relative;
    overflow:hidden;
    transition:.35s;
    background:#fff;
}

.industry-card img{
    width:100%;
    object-fit:cover;
    transition:.4s;
    display:block;
}

.industry-card:hover img{
    transform:scale(1.08);
}

.industry-name{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    background:#2F63E8;
    color:#fff;
    text-align:center;
    padding:10px 5px;
    font-size:15px;
    font-weight:500;
}

.industry-card:hover{
    transform:translateY(-6px);
}

/* Button */

.industry-btn{
    display:inline-block;
    color:#fff;
    font-size:16px;
    text-decoration:none;
    transition:.3s;
    cursor:pointer;
}

.industry-btn:hover{
    color:#2F63E8;
}

.hide-text{
    display:none;
}

.industry-btn.active .show-text{
    display:none;
}

.industry-btn.active .hide-text{
    display:inline;
}



/* ==========================================================================
   6. TRUSTED PARTNER SECTION
   ========================================================================== */

/* .trusted-section {
  position: relative;
  background: var(--blue-050);
  overflow: hidden;
  padding: 80px 0;
}

.trusted-shape {
  position: absolute;
  top: 0;
  right: -10%;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11, 132, 255, 0.18), rgba(79, 195, 247, 0.06));
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

.trusted-image-wrap,
.trusted-content {
  position: relative;
  z-index: 1;
}

.trusted-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 32px;
}

.trusted-checklist li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 17px;
  font-weight: 500;
  color: var(--navy-900);
  margin-bottom: 18px;
}

.check-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
} */

/* ==========================================================================
   7. REAL RESULTS SECTION
   ========================================================================== */

.results-section{
    padding:80px 0;
    background:#ffffff;
}

.results-left h2{
    font-size:31px;
    line-height:41px;
    font-weight:700;
    color:#001A2B;
    margin-bottom:18px;
    max-width:620px;
}

.heading-line{
    width:80px;
    height:3px;
    background:#16B8FF;
    margin-bottom:28px;
}

.results-left h4{
    font-size:22px;
    font-weight:700;
    color:#001A2B;
    margin-bottom:35px;
}

/*==========================
Result Item
==========================*/

.result-box{
    margin-bottom:26px;
}

.result-box:last-child{
    margin-bottom:0;
}

.result-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:10px;
}

.result-left{
    display:flex;
    align-items:flex-start;
    gap:15px;
}

.number{
    width:22px;
    height:22px;
    background:#31AFFF;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    font-weight:700;
    flex-shrink:0;
    margin-top:3px;
}

.result-left h5{
    margin:0;
    font-size:17px;
    color:#001A2B;
    font-weight:600;
}

.result-left p{
    margin:4px 0 0;
    color:#666;
    font-size:14px;
}

.percentage{
    color:#777;
    font-size:13px;
    font-weight:600;
}

/*==========================
Progress
==========================*/

.progress{
    height:4px;
    background:#E7E7E7;
    border-radius:20px;
    overflow:hidden;
}

.progress-bar{
    background:#1BA91D;
    border-radius:20px;
}

/*====================================================
FORM
====================================================*/

.expert-form{
    max-width:420px;
    margin-left:auto;
    background:#fff;
    padding:28px;
    border-radius:16px;
    box-shadow:0 5px 25px rgba(0,0,0,.12);
}

.cstmm_coll{
  margin-top:0px;
}

.expert-form h3{
    text-align:center;
    font-size:30px;
    color:#001A2B;
    margin-bottom:25px;
    font-weight:700;
}

.expert-form .form-control,
.expert-form .form-select{

    height:50px;
    border:1px solid #D8D8D8;
    border-radius:8px;
    font-size:15px;
    box-shadow:none;

}

.expert-form .form-control:focus,
.expert-form .form-select:focus{

    border-color:#1E90FF;
    box-shadow:none;

}

/*==========================
Captcha
==========================*/

.captcha-box{

    display:flex;
    align-items:center;
    gap:10px;
    margin-top:10px;

}

.captcha-box img{

    width:120px;
    height:42px;
    object-fit:cover;
    border-radius:4px;
    border:1px solid #ddd;

}

.captcha-box .form-control{

    flex:1;
    height:42px;

}

/*==========================
Checkbox
==========================*/

.form-check{

    font-size:12px;
    color:#666;
    line-height:20px;

}

.form-check-input{

    margin-top:4px;

}

/*==========================
Button
==========================*/

.submit-btn{

    width:100%;
    height:52px;
    border:none;
    border-radius:30px;
    color:#fff;
    font-size:18px;
    font-weight:600;
    cursor:pointer;

    background:linear-gradient(90deg,#052D52,#179CFF);

    transition:.35s;

}

.submit-btn:hover{

    transform:translateY(-2px);

}



.tech-partners-section{
    padding:70px 0;
    background:#fff;
}

.tech-partners-section .section-title{
    margin-bottom:40px;
}

.tech-partners-section h2{
    font-size:40px;
    line-height:52px;
    color:#001A2B;
    font-weight:700;
    margin:0;
}

.tech-logo-slider .item{
    height:70px;
    display:flex;
    justify-content:center;
    align-items:center;
}

.tech-logo-slider img{
    max-width:170px;
    max-height:52px;
    width:auto;
    height:auto;
    transition:.35s;
    filter:grayscale(0%);
}

.tech-logo-slider .item:hover img{
    transform:scale(1.08);
}

.tech-logo-slider .owl-stage{
    display:flex;
    align-items:center;
}

.tech-logo-slider .owl-item{
    display:flex;
    justify-content:center;
}

/* Responsive */

@media(max-width:991px){

.tech-partners-section{
    padding:60px 0;
}

.tech-partners-section h2{

    font-size:32px;
    line-height:44px;

}

.tech-logo-slider img{

    max-width:145px;

}

}

@media(max-width:767px){

.tech-partners-section{
    padding:50px 0;
}

.tech-partners-section h2{

    font-size:26px;
    line-height:36px;

}

.tech-partners-section .section-title{

    margin-bottom:30px;

}

.tech-logo-slider .item{

    height:60px;

}

.tech-logo-slider img{

    max-width:120px;
    max-height:42px;

}

}

/*====================================================
Responsive
====================================================*/

@media(max-width:991px){

.results-section{
    padding:60px 0;
}

.results-left{
    margin-bottom:40px;
}

.results-left h2{

    font-size:34px;
    line-height:46px;

}

.expert-form{

    margin:auto;

}

}

@media(max-width:767px){

.results-section{
    padding:50px 0;
}

.results-left h2{

    font-size: 24px;
    line-height: 34px;

}
.tech-partners-section {
      padding: 20px 0 !important;
}

.results-left h4{

    font-size:20px;
    margin-bottom:25px;

}

.result-left h5{

    font-size:15px;

}

.result-left p{

    font-size:13px;

}

.expert-form{

    padding:20px;

}

.expert-form h3{

    font-size:26px;

}

.captcha-box{

    flex-direction:column;
    align-items:stretch;

}

.captcha-box img{

    width:100%;
    height:48px;

}

}

/* ==========================================================================
   8. TECHNOLOGY PARTNERS
   ========================================================================== */

.tech-partners-section {
  padding: 80px 0;
}

.tech-partners-section .section-heading {
  margin-bottom: 40px;
}

.tech-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.tech-logos img {
  height: 34px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  filter: grayscale(0%);
}

/* ==========================================================================
   9. CTA BANNER
   ========================================================================== */

/* .cta-banner-section {
  padding: 80px 0;
} */

.cta-banner-card {
  background-image: url("https://www.fastinfohub.com/assets-new/images/fhnew/free-ai-section-bg.webp");
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-heading {
  font-size: 32px;
  line-height: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.cta-desc {
  font-size: 18px;
  line-height: 25px;
  color: #C6D4E0;
  max-width: 560px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
}

.btn-cta {
  display: inline-block;
  background: var(--blue-600);
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 30px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-cta:hover {
  background-color: #0aa0b8;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ==========================================================================
   10. INSIGHTS SECTION
   ========================================================================== */

.insights-section {
  padding: 80px 0;
}

.insights-section .section-heading {
  margin-bottom: 48px;
}

.insight-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.insight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 26, 43, 0.12);
}

.insight-image-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.insight-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insight-title {
  font-size: 18px;
  line-height: 25px;
  font-weight: 700;
  color: var(--navy-900);
  padding: 20px 20px 8px;
  margin-bottom: 0;
}

.insight-desc {
  font-size: 15px;
  line-height: 22px;
  color: var(--body-text);
  padding: 0 20px 24px;
  margin-bottom: 0;
  flex-grow: 1;
}

.insights-view-more {
  margin-top: 48px;
}

.view-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  color: var(--blue-600);
  border-bottom: 2px solid var(--blue-600);
  padding-bottom: 4px;
  transition: gap 0.2s ease;
}

.view-more-link:hover {
  color: var(--blue-600);
  gap: 12px;
}
.fib_holder{
    padding: 10px 50px;
}
.trusted-partner-imgg{
  display:none;
}

  .footer_section {
    background-image: url("https://www.fastinfohub.com/assets-new/images/fhnew/footer-bg.webp");
    background-size: cover;
    background-repeat: no-repeat;
    
  }

  .footer_section_one p, .footer_h4, .footer_section_two_left ul li a, .fstr_one ul li a, .fstr_two p, .copyright_footer_left p, .copyright_footer_right ul li a, .copyright_footer_right ul li a,.footer_section_one .footer_menu ul li a  {
    color: #ffffff !important;
  }






/* ==========================================================================
   RESPONSIVE — Mobile (320px – 767px)
   ========================================================================== */

@media (max-width: 767px) {


  .hero-section {
    padding: 48px 0 64px;
    text-align: center;
  }

  .roadmap-section {
    padding: 40px 0;
  }

  .hero-badge {
    font-size: 12px;
    padding: 7px 14px;
  }

  .hero-heading {
    font-size: 30px;
    line-height: 38px;
    max-width: 100%;
  }

  .hero-desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .fib_holder {
    padding: 10px 20px;
}

  .hero-shapes {
    opacity: 0.5;
  }

  .expert-modal-close {
        top: 6px !important;
    right: 10px !important;
  }



  .section-heading {
    font-size: 24px;
    line-height: 32px;
  }

  .section-desc {
    font-size: 16px;
    line-height: 23px;
  }

  .section-heading-wrap {
    margin-bottom: 36px;
  }

  .client-strip-section {
    margin-top: -32px;
  }

  .client-logos {
    justify-content: center;
    gap: 20px 28px;
  }

  .hero-callout {
  background-image: url("https://www.fastinfohub.com/assets-new/images/fhnew/hero-card-mob.webp");
  padding: 38px 34px 34px;
  background-size: cover;
  background-position: top;

}

.hero-section {
  background-image: url("https://www.fastinfohub.com/assets-new/images/fhnew/hero-mobile-bg.webp");
}

.roadmap-section{
  display: none;

}
.trusted-partner-img{
  display: none;
}
.trusted-partner-imgg{
  display: block;
}

    .client-strip-card{
        overflow:hidden;
    }

    .client-logo-slider.mobile-slider{
        display:flex !important;
        flex-wrap:nowrap !important;
        gap:0 !important;
        transition:transform .6s ease !important;
        width:100% !important;
        overflow:visible !important;
    }

.client-logo-slider.mobile-slider .client-logo-item{
    flex: 0 0 100% !important;
    min-width: 100% !important;
    display:flex !important;
    justify-content:center !important;
    align-items:center !important;
    padding:0 20px;
    box-sizing:border-box;
}

.client-logo-slider.mobile-slider .client-logo-item img{
    display:block !important;
    max-width:180px !important;
    max-height:50px !important;
    width:auto !important;
    height:auto !important;
    object-fit:contain !important;
}

  .service-card {
    padding: 24px 20px;
  }

  .service-title {
    font-size: 20px;
    line-height: 28px;
  }

  .roadmap-step {
    font-size: 15px;
    padding: 12px 18px;
    gap: 12px;
    clip-path: none;
    border-radius: 10px;
  }

  .industries-grid {
    row-gap: 16px !important;
  }

  .industry-label {
    font-size: 13px;
    padding: 8px 6px;
  }

  .trusted-shape {
    display: none;
  }

  .cta-banner-card {
    padding: 40px 24px;
  }



  .cta-heading {
    font-size: 24px;
    line-height: 32px;
  }

  .tech-logos {
    gap: 28px;
  }

  .tech-logos img {
    height: 26px;
  }

  .progress-track {
    margin-left: 0;
  }

  .result-header {
    gap: 12px;
  }
      .digital-solutions{
        padding: 0;
    }

    .small-title{
        font-size:16px;
    }
    .roadmap-section .section-title h2, .industries-section .section-title h2{
      font-size: 26px;
      line-height: 36px;
    }
    .industries-section {
      padding: 20px 0;
    }

    .section-title h2{
        font-size:26px;
        line-height:36px;
    }

    .section-title p{
        font-size:15px;
        line-height:26px;
    }

    .solution-card{
        padding:20px;
    }

    .card-top{
        margin-bottom:15px;
    }

    .card-top img{
        width:38px;
        height:38px;
    }

    .card-top h3{
        font-size:20px;
        line-height:28px;
    }

    .solution-card p{
        font-size:15px;
        line-height:25px;
        margin-bottom:18px;
    }
}