body {
font-family: 'Poppins', sans-serif;
}

/* Hero section background */

.hero-section-light-g {
  background: radial-gradient(
    circle at top center,
    #d7e4f5 0%,
    #f3f7fb 50%,
    #ffffff 100%
  );
  background-blend-mode: lighten;
  padding-top: 80px !important;
}

.hero-section-dark-g {
  background: radial-gradient(ellipse at top center, rgba(9, 55, 125, 0.6) 0%, /* soft rich blue center */ rgba(5, 35, 90, 0.85) 25%, /* deep navy */ rgba(2, 20, 50, 0.95) 55%, /* very dark navy */ #0B0F19 85% /* pure black edges */);
  background-color: #000; /* fallback color */
  background-blend-mode: normal;
}

/* Badge (Top Text) */
.badge-custom {
  background: #f1f5f9;
  color: #111827;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 0.9rem;
  display: inline-block;
}

/* Heading (H1) */
.hero-title {
  font-size: 3.5rem; /* Adjust as needed */
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

/* Subtitle Paragraph */
.hero-subtitle {
  font-size: 1rem;
  color: #4b5563;
  max-width: 600px;
}

/* Buttons */
/*.btn-custom {
  background-color: #0b5ed7;
  color: #fff;
  padding: 12px 24px;
  border-radius: 9999px;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-custom:hover {
  background-color: #fff !important;
}*/

/* Divider */
.divider {
  width: 1px;
  height: 40px;
  background: #e5e7eb;
}

/* Stats Number */
.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #0b5ed7;
}

/* Stats Label */
.stat-label {
  font-size: 0.95rem;
  color: #9ca3af;
}

.hero-title {
font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.4;
  color: #111827;
  max-width: 600px;
  margin: 0 auto;
}

.hero-subtitle {
  font-size: 15px;
  max-width: 600px;
  line-height: 1.6;
  color: #0047AB;
}

.stats-wrapper {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
  padding: 30px 50px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
/*  margin-top: 12rem !important;
  margin-bottom: 12rem !important;*/
}
.has-special-padding{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding-top: 200px !important;
}

.stats-heading {
  font-size: 14px;
  color: #d0d0d0; 
  text-align: center;
  margin-bottom: 20px;
}

.stats-box {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #0045ad;
}

.ethics-card {
  background: rgba(255, 255, 255, 0.1); 
  padding: 20px;
  border-radius: 12px;
  color: #ffffff;
  backdrop-filter: blur(8px); 
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  min-height: 155px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.3);
}

.ethics-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.ethics-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: #ffffff;
}

.ethics-swiper {
  padding: 10px;
}

.enesco-slide {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-right: 30px;
  width: 38%;
}

/* Swiper pagination dots (like second image) */
.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  background: #fff;
  opacity: 1;
}

.ethics-section {
  position: relative;
  background: url('/client/assets/img/unesco/UNESCOBanner.png') no-repeat center/cover;
  border-radius: 20px;
  padding: 75px;
  overflow: hidden;
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;

}

.ethics-section:after{
      content: '';
    background: url(/client/assets/img/unesco/unescoB.png) no-repeat center / cover;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-size: auto;
    width: 46%;
    height: 100%;
    background-position: right;
    z-index: 2;
}
/*
.ethics-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 20px;
  z-index: 3;
}*/

.ethics-section > .row {
  position: relative;
  z-index: 2;
}

.ethics-section .col-lg-7 {
  padding-right: 20px;
}

/* Swiper fix for safe width */
.ethics-section .swiper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.ethics-swipper-div{
  height: 400px;
  margin-top: 35px;
}

/* Desktop (992px and above) */
@media (min-width: 992px) {
    .ethics-section-row {
        display: flex !important;
    }
    .ethics-section-info{
      width: 35%;
      margin-top: 40px;
    }
    .swipper-ethics-div{
      width:70%;
    }

    .case-study-row{
  display: flex;
}

.col-case-study1{
  width: 40%;
  padding-right: 38px;
}

.col-case-study2{
  width: 60%;
}
}

.ethics-section-info{
      position: relative;
      z-index: 3;
}

.ethics-section-content{
  font-size: 15px;
  font-family: 'poppins';
}

.swiper-pagination{
  bottom: 10px;
}

.learn-more-btn{
  background: #fff !important;
  color: #003785 !important;
  border-radius: 21px !important;
}

.service-offer-card{
  width: 416px;
  margin-right: 24px;
  border-radius: 20px;
  padding: 30px;
  background: #F2F7FF;
  height: 525px;
}

/* Extra card styling to match design */
.case-card {
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  width: 405px;
  height: 415px !important;
}

#casestudies.container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.case-card:hover {
  transform: translateY(-5px);
}

.case-card img {
  border-radius: 50%; /* Make logo/icon rounded if needed */
}

.view-case-study-btn{
    text-decoration: none;
    font-weight: 500 !important;
    margin-bottom: 15px;
}

.btn-light {
  background: #fff;
  color: #0d6efd;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: background 0.3s;
}

.btn-light:hover {
  background: #f8f9fa;
  color: #0b5ed7;
}

.swiper-pagination-bullet {
  background: #0d6efd;
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.swiper-pagination-bullet {
background: #fff !important;
opacity: 0.6;
}

#casestudies{
  border-radius: 20px;
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.case-study-content {
  padding-left: 54px;
  z-index: 5;
  margin-right: -12px;
}

.swiper-slide-case{
/*  width: 448px !important;*/
}
/*.gradient-wrapper {
background: linear-gradient(
to bottom,
rgba(255, 255, 255, 0) 0%,     
rgba(0, 51, 153, 0.03) 50%,     
rgba(0, 51, 153, 0.1) 70%,    
rgba(0, 51, 153, 0.3) 85%,    
rgba(0, 51, 153, 0.5) 100%     
);
padding: 60px 0; 
}*/

.gradiant-wrapper-light-g {
/*  background: linear-gradient(
    to top, 
    #d7e4f5 0%,        
    #f3f7fb 50%,       
    #ffffff 100%       
  );*/
  padding: 60px 0;
}

.after-gradient{
  position: relative;
}

.after-gradient::after{
 content: "";
 width: 100%;
 height: 700px;
 position: absolute;
 margin-top: -400px;
 bottom: 0;
 left:0;
  background: linear-gradient(
    to top, /* fade from bottom center upwards */
    #d7e4f5 0%,        /* light blue at bottom center */
    #f3f7fb 50%,       /* very soft near top */
    #ffffff 100%       /* pure white at the top */
  );
  z-index: -1;
}
.dark-mode .after-gradient::after{
/*   background: radial-gradient(
    circle at bottom center, 
    rgba(9, 55, 125, 0.6) 0%,     
    rgba(5, 35, 90, 0.85) 35%,    
    rgba(2, 20, 50, 0.95) 60%,    
    rgba(0, 0, 0, 1) 85%          
  );*/
  background: linear-gradient(0deg, rgba(9, 55, 125, 0.6) 0%, transparent);
}

.gradient-wrapper.gradiant-wrapper1 {
/*  background: radial-gradient(
    circle at bottom center, 
    rgba(9, 55, 125, 0.6) 0%,     
    rgba(5, 35, 90, 0.85) 35%,    
    rgba(2, 20, 50, 0.95) 60%,    
    rgba(0, 0, 0, 1) 85%          
  );
  background-color: #000; */
  background-blend-mode: normal;
  padding: 60px 0;
}

.case-study-swiper{
    height: 470px;
}

@media (max-width: 767.98px) {
.testimonials-bg{
  margin-bottom: 20px;
}

/* Extra card styling to match design */
.case-card {
  width: 95%;
}

.enesco-slide {
  width: 70% !important;
}

.resp-num{
  margin-top: -45px;
}

  .ethics-section{
    padding: 30px;
  }
  
  .case-study-content {
    padding-left: 0px;
  }
}

/*.service-card-btn1{
  margin-top: 45px;
}

.service-card-btn3{
  margin-top: 15px;
}*/

.future-ai-badge{
  background: #071936;
  color: #CBCDD0;
  box-shadow: 0 4px 8px #121212;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 0.9rem;
  display: inline-block;
}

.dark-hero-title{
  color: #fff;
}

.dark-hero-subtitle{
  color: #cfc4c4;
}

.dark-number-wrapper{
  /*background: #0F0b19;
  box-shadow: 0px 0px 6px 2px #27344e;*/
  background: #0B0F19;
  box-shadow: 0px 0px 20px 4px #232933;
}

.dd-service-card1 {
  background: #0E2038 !important;
}

.dark-case-card1{
  background: #000 !important;
}

.all-service-label{
  font-size: 2.2rem;
  font-weight: 600 !important;
  margin-bottom: 3.5rem !important;
  color: var(--si-breadcrumb-color) !important;
}

.service-home{
  color: #d4cccc !important 
}

.service-overlay{
  background-color: rgba(0, 0, 0, 0.4);
}

.service-list-card {
    min-height: 380px;
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-list-card:hover {
    transform: translateY(-5px);
}

.service-list-card-light {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08) !important;   
}

.service-list-card-dark {
  box-shadow: 0 4px 12px rgba(42, 54, 71, 0.3) !important;  
}

.view-all-services-btn {
    background: #003785;
    border: none;
    padding: 0.8rem 2rem;
    font-weight: 500;
}

.view-all-services-btn:hover{
  color: #fff;
  background-color: #003c91;
  border-color: #003c91;
}

/* Custom Bootstrap Gutter Overrides */
.services-wrapper{
  --si-gutter-x: 4rem;
  --si-gutter-y: 4.5rem;
}

.service-short-desc{
  margin-bottom: 4.5rem !important;
}

.service-div-card{
  margin-bottom: 58px;
  padding: 3.5rem !important;
}

.our-work-ethics-sec {
  margin-top: 8rem !important;
/*  margin-bottom: 30rem !important;*/
  padding-top: 3rem !important;
  padding-bottom: 8rem !important;
}

.tech-scroll-indicator {
  cursor: pointer;
}

.work-ethic-section-light {
    background: linear-gradient(to top, rgba(162, 188, 225, 0.15) 0%, rgba(255, 255, 255, 0.95) 100%);
    padding: 80px 0;
}

.work-ethic-section-dark {
  background: linear-gradient(to top, #021024 0%, #010b17 50%, #0B0F19 100%);
  padding: 80px 0;
  color: #ffffff;
}


.section-subtitle {
    font-size: 14px;
    color: #617085;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.dark-mode .section-subtitle {
    color: #25518D;
    font-size: 14px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
.ethic-card-light {
/*  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(162, 188, 225, 0.15) 100%);*/
    background: linear-gradient(145deg, rgba(255, 255, 255, 1) 0%, rgba(162, 188, 225, 0.3) 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); 
  border-radius: 20px;
  padding: 30px;
  transition: transform 0.3s ease;
  min-height: 275px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 100px;
}

/*
.ethic-card-dark {
  background: radial-gradient(circle at bottom right, #0b1d35 0%, #0a0f1c 40%, #000000 100%);
  box-shadow:
    12px 0 24px rgba(92, 124, 166, 0.25),
    0 0 24px rgba(92, 124, 166, 0.15),
    0 6px 12px rgba(92, 124, 166, 0.12),
    0 -6px 12px rgba(92, 124, 166, 0.08);
  border-radius: 20px;
  padding: 30px;
  transition: transform 0.3s ease;
  min-height: 275px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 100px;
  color: #ffffff;
}
*/
.ethic-card-dark {
  background: radial-gradient(circle at bottom right, #0B1A3C 0%, #02142A 60%, #010D1A 100%);
  box-shadow: 
  0 0 12px rgba(80, 120, 180, 0.30),  /* very soft outer glow */
  inset 0 0 8px rgba(80, 120, 180, 0.1);  
  border-radius: 20px;
  padding: 30px;
  transition: transform 0.3s ease;
  min-height: 275px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 100px;
  color: #ffffff;
}

.ethic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(11, 26, 60, 0.6); /* Stronger hover glow in blue */
}

.work-ethic-card-badge {
  color: #617085;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 13px;
  background: #EEF4FE;
  width: 50%;
  margin-bottom: 20px;
}

.work-ethic-card-badge-light {
    background: #EEF4FE;
}

.work-ethic-card-badge-dark {
    background: #2A2F39;
    color: #96A3B3;
}


.ethic-card-text-light {
  color: #1e1e1e;
  font-size: 21px;
  font-weight: 500;
  text-align: left;
}

.ethic-card-text-dark {
  color: #fff;
  font-size: 21px;
  font-weight: 500;
  text-align: left;
}

.service-card-light-g{
  background: linear-gradient(
      to bottom,
      rgba(255,255,255,1) 0%,      /* Pure white start */
      rgba(255,255,255,1) 55%,     /* Keep pure white until 50% */
      rgba(255,255,255,0.9) 65%,   /* Slight fade starts */
      rgba(255,255,255,0.6) 75%,   /* Gradual fade */
      rgba(255,255,255,0.3) 90%,   /* Almost transparent */
      transparent 100%             /* Fully clear at bottom */
  );
  margin-top: -2px;
}

.service-card-dark-g {
  background: linear-gradient(
      to bottom,
      rgba(0,0,0,1) 0%,        /* Pure black start */
      rgba(0,0,0,1) 55%,       /* Keep pure black until 55% */
      rgba(0,0,0,0.9) 65%,     /* Slight fade starts */
      rgba(0,0,0,0.6) 75%,     /* Gradual fade */
      rgba(0,0,0,0.3) 90%,     /* Almost transparent */
      transparent 100%         /* Fully clear at bottom */
  );
  margin-top: -2px;
}

.custom-transparent-btn {
    background-color: transparent;
    color: #fff; /* white text */
    border: 2px solid #fff; /* white border */
    transition: background-color 0.3s, color 0.3s;
}

.custom-transparent-btn:hover {
    background-color: #fff;
    color: #000; /* black text on hover */
}

.card-faq .faq-card-body,
.card-faq .faq-card-footer {
    z-index: 2; /* Make sure content stays above overlay */
    position: relative;
}


/* Custom circle arrow on right */
.faq-accordion-toggle-button::after {
/*    background-color: #fff !important;*/
  background-color: transparent !important;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.2) !important; 
    color: #000 !important;
}

.faq-accordion-toggle-button:not(.collapsed)::after {
  background-color: var(--si-accordion-btn-icon-box-active-bg) !important;
  
}

/*.faq-accordion-toggle-button:not(.collapsed)::after {
    background-image: none !important;
    transform: var(--si-accordion-btn-icon-transform);
}*/

.faq-card{
 border: none !important;
}

.faq-section {
/*  position: relative;*/
  z-index: 1;
/*  margin-top: 7rem !important;
  margin-bottom: 30rem !important;*/
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;/*
    background: linear-gradient(to top, #F8FAFD 0%, rgba(255, 255, 255, 0) 100%);*/
    pointer-events: none;
    z-index: 2;
}

.service-detail-knowledgeB-light{
/*  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(162, 188, 225, 0.15) 100%);*/
  background: linear-gradient(145deg, rgba(255, 255, 255, 1) 0%, rgba(162, 188, 225, 0.3) 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-detail-knowledgeB-dark{
  background: linear-gradient(145deg, #000 0%, #001e4a 100%);
  box-shadow: 0 4px 20px #243957;
}

/*

.methodology-card {
    background: rgba(255, 255, 255, 0.05); 
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    height: 80%; 
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    color: #fff;
    transition: transform 0.4s ease;
}*/
.service-details-intro-sec{
  padding-top: 7rem !important;
  padding-bottom: 7rem !important;
}

.methodology-card {
    backdrop-filter: blur(12px);     /* Frosted blur effect */
    border: 1px solid rgba(255, 255, 255, 0.15); /* Soft white border */
    border-radius: 16px;
    padding: 20px;
    height: 85%;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2); /* subtle dark shadow */
    background: rgba(102, 126, 170, 0.2);
}

.swiper-slide {
    display: flex;
    height: auto;
}

.swiper-wrapper {
    align-items: stretch; 
}


.methodology-step {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 5px 15px;
    color: #fff;
    font-size: 12px;
    border-radius: 20px;
    background: #667EAA;
    width: 80px;
}

.methodology-card h5 {
    color: #fff;
    font-size: 24px;
    margin-top:38%;
}

.methodology-card p {
    color: #ddd;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 30px;
}

.metho-swipper-wrapper{
  margin-top:30px;
}

.methodology-swiper-slide {
    width: 380px !important;
    margin-right: 60px !important;
}

.methodology-slide-wrapper{
  padding: 0px 40px 40px 40px;
}

/* Make only active (center) card taller */
.swiper-slide-active .methodology-card {
    transform: scale(1.05); /* slightly bigger */
    height: 400px; /* taller height for active card */
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);  
}

.swiper-pagination-methodology .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.swiper-pagination-methodology  {
  bottom: 0.25rem !important;
}

.swiper-pagination-methodology .swiper-pagination-bullet-active {
    opacity: 1;
    width: 20px;
    border-radius: 10px;
}

h3.text-white {
    position: relative;
    z-index: 10;
}

.stats-box-service {
    display: flex;
    justify-content: center;
    gap: 30px; /* space between items */
}

.service-details-benefits{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 12rem;
  padding-top: 8rem;
}

.service-brand-corousel{
  padding-top: 11rem !important;
/*  padding-bottom: 3rem !important;*/
}

.faq-section-light{
  background: linear-gradient(to top, #d7e4f5 0%, #f3f7fb 0% 0%, #ffffff 50%);
}

.faq-section-dark{
  background: linear-gradient(to top, #021024 0%, #010b17 50%, #0B0F19 100%);
}

.faq-section-dark .faq-card {
    background: transparent !important;
    border: none;
    box-shadow: none;
}

.faq-section-dark .accordion-item {
    background: transparent !important;
    border-bottom: 1px solid #444; /* thin gray line after each item */
    margin-bottom: 0; /* remove gap between items */
    border-radius: 0;
}

/*.faq-section-dark .faq-accordion-button::after {
    background-color: #000 !important;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.2) !important;
    color: #000 !important;
}*/

.faq-section-dark .faq-accordion-item {
  padding: 0 0.25rem 1rem;
  border-bottom: 1px solid #2f3449 !important;
}

.faq-section-light .faq-accordion-item {
  padding: 0 0.25rem 1rem;
  border-bottom: 1.50px solid #EEF6FF !important;
}

.accordion-button:not(.collapsed)::after {
    color: #000 !important;
}

/*.faq-card {
    background: linear-gradient(to top, #021024 0%, #010b17 50%, #000000 100%) !important;
    border: none;
    box-shadow: none;
}
*/
.stats-box-service {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

@media (max-width: 767px) {
  .faq-section .col-md-5,
  .faq-section .col-md-7 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .faq-section {
    margin-bottom: 45rem !important;
  }
 /* .service-list-hero-section{
    height: 11% !important;
  }*/
}
.service-list-hero-section{
  height: 17%;
}
.service-cat-dark{
  color: #679AE3 !important;
}

.work-ethic-heading{
  margin-bottom: 2rem !important;
  font-size: 2.5rem !important;
}

.hero-section-dark-g::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #0B0F19 100%);
  pointer-events: none;
  z-index: 2;
}

.home-hero-sec-container{
  padding-top:7rem !important;
  padding-bottom: 5rem !important;
  position: relative;
  z-index: 2;
}

.hero-section-light-g::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #fff 100%) !important;
  pointer-events: none;
  z-index: 1;
}

/*.home-flagship-section{
  padding-top: 12rem !important;
  padding-bottom: 12rem !important;
}*/

.service-detail-faq-card{
  min-height: 600px;
  max-height: 600px;
}

/*.stats-wrapper-section{
  margin-top: 12rem !important;
  margin-bottom: 12rem !important;
}
*/
/* Light Mode */
html:not(.dark-mode) .blog-section-fade::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom,
    rgba(255,255,255,0) 0%,      /* fully transparent at the top */
    rgba(255,255,255,0.6) 60%,  /* start blending */
    #ffffff 100%                /* solid white at the bottom */
  );
  pointer-events: none;
  z-index: 2;
}

/* Dark Mode */
/*html.dark-mode .blog-section-fade::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom,
    rgba(0,3,8,0) 0%,         
    rgba(0,3,8,0.6) 60%,     
    #000308 100%             
  );
  pointer-events: none;
  z-index: 2;
}*/

html.dark-mode .blog-auth-name{
  color: #5C87C3;
}

/*.single-scroller{
  scroll-snap-align: start;
}

.scroller{
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}
.navbar-sticky{
  position: sticky;
  top: 0;
  z-index: 99;
  background: white;
  box-shadow: 0 0 10px #ccc;
}*/

.navbar-sticky{
position: sticky;
top: 0;
height: 80px;
background: white;
z-index: 10;
}
.dark-mode .navbar-sticky{
  background: black;
}

.scroller {
height: calc(100vh); 
overflow-y: scroll;
scroll-snap-type: y mandatory;
scroll-behavior: smooth;
}

.single-scroller {
min-height: calc(100vh);
scroll-snap-align:start;
padding-top: 80px !important;
}
.scroll-header{
scroll-snap-align:start;
height: 80px;
}
.has-my-own-height{
  height: calc(100vh - 80px) !important;
}

.service-offer-card .pt-4 {
    min-height: 230px;
}

/*service list*/

.tech-hero-section {
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}


/* Typography */
.tech-breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.tech-breadcrumb-separator {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 8px;
}

.tech-breadcrumb-current {
    color: #fff;
    font-weight: 400;
    font-size: 14px;
}

.tech-hero-title {
  font-size: 3.4375rem;
  font-weight: 600 !important;
  color: #fff !important;
}

.tech-title-accent {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #00b7ff, #0099cc);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(0, 183, 255, 0.6);
    animation: accentGlow 2s ease-in-out infinite;
}

.tech-hero-description {
  color: #E0E6ED;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 520px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  font-family: poppins;
}

.tech-scroll-indicator {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 14px;
  margin-top: 2rem;
  font-weight: 500;
}

.scroll-arrow {
  animation: bounce 2s infinite;
}
.services_hero_left_sec{
  width: 85%;
  margin-left: 26px;
}

@media (max-width: 576px) {
  .tech-hero-title {
      font-size: 2rem;
  }
}

.service-detail-hero-left{
  width: 85%;
  margin-left: 20px;
}

.service-detail-title{
  font-size: 3.3rem;
  font-weight: 500 !important;
}

.right-card h2 {
  font-size: 2.3rem;
  font-weight: 500;
  color: #AFCBF1;
  line-height: 1.4;
}

.right-card p {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.right-card .btn-schedule {
  padding: 0.8rem 1.0rem;
  width: 180px;
  border-radius: 40px;
}

.equal-height-card {
  height: 580px !important; /* fixed height */
}

.case-study-btn-schedule{
  width: 150px;
  color: #FFF !important;
}

.get-ready-case-study{
  padding: 2.5rem !important;
}
.get-ready-case-study-left{
  padding: 1rem !important;
}

.caseStudy-yours{
  color: #fff;
  font-weight: 500 !important;
  font-size: 30px;
}
.equal-height-card {
  min-height: 460px;
}

.get-ready-case-study-cards {
  width: 47%; /* mobile default */
}

@media (min-width: 768px) {
  .get-ready-case-study-cards {
    width: 48% !important;
  }
}

.get-ready-case-study-cards {
  width: 47% !important;
}

@media (max-width: 768px) {
  .equal-height-card img {
    max-height: 160px;
  }
}

.custom-gap-x{
  display: flex;
   gap: 2.7rem;
}
/*.get-ready-case-study-cards{
  width: 48% !important;
}*/

.btn-contact-case-study{
  padding: 0.8rem 1.0rem;
  width: 180px;
  border-radius: 40px;
  color: #fff !important;
}

.result-driven-info{
  color: #679AE3 !important;
  width: 42%;
  margin: 0 auto;
}

.case-s-container{
  background: linear-gradient(to top, #d7e4f5 0%, #f3f7fb 50%, #ffffff 100%) !important;
  padding-bottom: 5rem !important ;
}

html.dark-mode .case-s-container{
  background: linear-gradient(to top, #021024 0%, #010b17 50%, #0B0F19 100%) !important;
  padding-bottom: 5rem !important;
}
/* Enhanced background image integration */
.tech-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      135deg, 
      rgba(0, 20, 40, 0.3) 0%, 
      rgba(0, 50, 100, 0.2) 50%, 
      rgba(0, 100, 200, 0.1) 100%
  );
  z-index: 0;
}

.left-gradient-overlay-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 43%;
  height: 100%;
  pointer-events: none;
}

.tech-scroll-indicator {
  font-weight: 500;
  font-size: 0.95rem;
  transition: opacity 0.3s;
}

.tech-scroll-indicator:hover {
  opacity: 0.8;
}



/*service list*/
.service-detail-hero-left{
  width: 82%;
  margin-left: 20px;
}

.service-detail-title{
  font-size: 3.3rem;
  font-weight: 500 !important;
}

.service-detail-des1{
 color:#E0E6ED; 
 margin-bottom: 60px !important;
}

/*case study details*/
  .case-s-container{
    background: linear-gradient(to top, #d7e4f5 0%, #f3f7fb 50%, #ffffff 100%) !important;
    padding-bottom: 5rem !important ;
    margin-top: 100px;
  }

  html.dark-mode .case-s-container{
    background: linear-gradient(to top, #021024 0%, #010b17 50%, #0B0F19 100%) !important;
    padding-bottom: 7rem !important;
  }


html.dark-mode .csd-card-body {
    background: #091A37;
    border-radius: 15px;
}

html.dark-mode .case-study-transform {
    background: linear-gradient(145deg, #000 0%, #001e4a 100%);
    box-shadow: 0 4px 20px #243957;
    padding: 40px !important;
}

  .csd-card {
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: none !important;
  }

  .csd-card-body{
    background: #F4F7FB;
    border-radius: 15px;
  }

  .csd-card-title {
    font-size: 1.4rem;
  }
  .case-study-transform{
    background: linear-gradient(145deg, rgba(255, 255, 255, 1) 0%, rgba(162, 188, 225, 0.3) 100%);
    padding: 40px !important;
  }

  .case-study-detail-contact-now{
    margin: 30px 0px 30px 0px !important;
  }

  .share-case-study{
    margin-top: 50px;
  }

.service-detail-hero-left{
  width: 85%;
  margin-left: 20px;
}

.service-detail-title{
  font-size: 3.3rem;
  font-weight: 500 !important;
}

.csd-tags-sec{
  margin-top: 30px;
}

.csd-tags{
  background: #D9E3F3;
  padding: 8px;
}

.csd-nav-text{
  font-size: 1rem;
  font-weight: 500;
  color: #C9DDEA !important;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #C9DDEA !important;
}
/*partners page*/
.partner-hero-subtitle {
    font-size: 13px !important;
}

html.dark-mode .partners-card-shadow{
  box-shadow: 0 0 20px rgba(0, 123, 255, 0.12) !important;
  background: #0B0F19 !important;
}

html.dark-mode .contact-card-shadow {
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.12) !important;
    background: #0B0F19 !important;
}

.contact-hero-subtitle {
  opacity: .60;
  max-width: 400px !important;
  font-size: 15px !important;
}

.contact-form-label{
  font-weight: 500 !important;
}

.contact-form-div{
  max-width: 765px; 
  margin: 45px 0px 45px 45px; 
  background: white; 
  padding: 40px 30px; 
  border-radius: 20px;
}

.dark-mode .contact-form-div {
  background: #0B0F1B !important;
}

.map-card-text{
  font-size: 15px !important;
}

.map-card-heading{
  font-size: 1.8rem;
  font-weight: 500;
}

.bg-white-contact-card{
  background: #fff !important;
}
.dark-mode .text-dark-contact span:not(.badge) {
    color: #fff !important;
    opacity: 0.7;
}
.dark-mode .bg-white-contact-card{
  background: #000 !important;
}

.dark-mode .contact-map-section{
  background: linear-gradient(to top, #021024 0%, #010b17 50%, #0B0F19 100%);
  padding: 80px 0;
  color: #ffffff;
}

.dark-mode .contact-cards-text{
  color: #2F70CC !important;
}

.faq-hero-title{
  font-size: 2.5rem !important;
}

.faq-cards{
  font-weight: 600 !important;
}

.faq-card-btn{
  font-weight: 500;
}

/*.faq-faq-accordian-item{
 box-shadow: inset 0 -1px 1px rgba(0, 123, 255, 0.15) !important; 
}*/

.faq-s-container{
  background: linear-gradient(to top, #d7e4f5 0%, #f3f7fb 50%, #ffffff 100%) !important;
}

.faq-border-bottom{
/*  box-shadow: inset 0 -1px 1px rgba(0, 123, 255, 0.15) !important;*/
  border-bottom: 1px solid rgba(0, 123, 255, 0.15) !important;
}

.dark-mode .contact-card{
  background-color: #0B0F19 !important;
}

.dark-mode .faq-s-container    
{
  background: linear-gradient(to top, #021024 0%, #010b17 50%, #0B0F19 100%) !important;
}

.dark-mode .faq-page-accordians{
  background: #0B1120 !important;
}

.dark-mode .faq-hero-title {
  color: #fff !important;
}

.light-mode .faq-page-accordians1{
  box-shadow: 0 .275rem 1.25rem rgba(11, 15, 25, .05), 0 .25rem .5625rem rgba(11, 15, 25, .03) !important;
}

.dark-mode .faq-page-accordians1{
  box-shadow: 0 0 20px rgba(0, 123, 255, 0.12) !important;
}

.organize-free-trial{
  color: #679AE3;
  font-size: 1.3rem;
}

.dark-mode .career-cards{
  background: #0B0F1A !important;
}

.career-emp-type{
  padding: 10px;
  font-weight: 400 !important;
  color: #617085 !important;
}

.dark-mode .career-emp-type{
  padding: 10px;
  background-color: #353D53 !important;
}

.emp-type-divider{
  height: 30px;
  width: 1.5px !important;
  background-color: #E9E9E9 !important;
}

.dark-mode .emp-type-divider{
  height: 30px;
  width: 1.5px !important;
  background-color: #353D53 !important;
}

.careers-hero-subtitle{
  font-size: 15px !important;
}

.text-career-date  {
 color: #617085 !important; 
} 

.careers-description{
  color: #617085 !important;
}

.blog-hero-sec-container{
  padding-top: 7rem !important;
  padding-bottom: 4rem !important;
  position: relative;
  z-index: 3;
}

.blog-hero-title{
  font-size: 2rem !important;
  max-width: 720px !important;
}

.blog-list-div{
  margin-top: 75px !important;
}

.mt-4-5rem{
  margin-top: 4.5rem !important;
}

.post-service-title{
  padding: 0.8rem;
  font-weight: 50;
  opacity: 0.7;
}

.dark-mode .post-service-title{
  padding: 0.8rem !important;
  font-weight: 50 !important;
  opacity: 0.7 !important;
  background-color: #2A2F39 !important;
  color: #fff !important;
}


.dark-mode .home-page-dark-title{
  color: #679AE3 !important;
}


/*scroll up animination*/
@keyframes bounce-up {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.scroll-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0; /* no vertical gap */
  line-height: 0.2; /* very tight line spacing */
}

.scroll-arrow i {
  font-size: 26px;
  color: white;
  animation: bounce-up 1.2s infinite;
  margin-top: -4px; /* optional: overlap slightly */
}
.tech-scroll-indicator .uil-angle-up:before{
  line-height: 0.5 !important;
}

.dark-mode .blog-service{
  opacity: 0.9 !important;
  background-color: #96A3B3 !important;
  color: #000 !important;
}

.dark-mode .blog-service{
  opacity: 1.1 !important;
  background-color: #96A3B3 !important;
  color: #000 !important;
}

.blog-service{
  opacity: 1.1 !important;
  background-color: #f3f6ff !important;
}

html:not(.dark-mode) .blog-list-hero-section {
  background: radial-gradient(circle at top center, #d7e4f5 0%, #f3f7fb 50%, #ffffff 100%);
  background-blend-mode: lighten;
  padding-top: 80px !important;
}

.dark-mode .blog-list-hero-section {
  padding-top: 80px !important;
  background: radial-gradient(ellipse at top center, rgba(9, 55, 125, 0.6) 0%, /* soft rich blue center */ rgba(5, 35, 90, 0.85) 25%, /* deep navy */ rgba(2, 20, 50, 0.95) 55%, /* very dark navy */ #0B0F19 85% /* pure black edges */);
  background-color: #000; /* fallback color */
  background-blend-mode: normal;
}

html:not(.dark-mode) .blog-list-dark-mode-bottom {
  display: block !important;
  height: 120px; 
  background: linear-gradient(to top, #d7e4f5 0%, #f3f7fb 50%, #ffffff 100%) !important; 
  pointer-events: none; 
  z-index: 3;
}

html:not(.dark-mode) .blog-list-content{
  color: #000 !important;
  opacity: 0.7;
}

.blog-list-content{
  color: #8191B0 !important;
/*  opacity: 0.7;*/
}

.blog-list-title{
  color: #000 !important;
}

.blog-detail-title{
  font-size: 2.4rem !important;
}

.blog-d-tags{
  background: #D9E3F3;
  padding: 11px 15px 11px 15px;
}

.blog-d-contact-form-gradient{
  background: linear-gradient(to top, #d7e4f5 0%, #f3f7fb 50%, #ffffff 100%) !important;
  padding-bottom: 5rem !important;
}

.dark-mode .blog-d-contact-form-gradient{
  background: linear-gradient(to top, #021024 0%, #010b17 50%, #0B0F19 100%) !important;
  padding-bottom: 5rem !important;
}

.img-dark {
  display: none;
}

.dark-mode .img-light {
  display: none;
}

.dark-mode .img-dark {
  display: inline;
}

.about-hero-subtitle{
  font-size: 15px !important;
  margin-top: -15px !important;
}

.about-hero-sec-container{
  padding-bottom: 5.5rem !important;
  padding-top: 4rem !important;

}

.dark-mode #dark-about-hero-subtitle{
  color: #A2BCE1 !important;
}


.about-cust-stats-dark-title{
  font-weight: 600 !important;
  font-size: 2.5rem !important;
}

.dark-mode .about-cust-stats-dark-title{
  color: #fff !important;
}

.dark-mode .about-stats-desc{
  color: #A2BCE1 !important;
}

html:not(.dark-mode) .about-stats-desc{
   opacity: 0.7;
}

.about-mission-container{
  margin-top: 7rem !important;
  margin-bottom: 7rem !important;
}

.our-mission-cards{
  padding: 25px 70px 25px 70px !important;
}

.our-mission-cards-text{
  margin-left: 25px;
}

.about-brand-carosal-container{
  padding-bottom: 6rem !important;
}

.ind-serve-slides{
  display: block !important;
}

.about-ind-slide-title{
  font-size: 1.2rem !important;
}

.dark-mode .about-ind-slide-title{
    color: #679AE3 !important;
}

.industry-card p{
  font-size: 1rem !important;
  color: #000 !important;
  opacity: 0.7;
}

.about-ind-serve-swiper{
  height: 265px;
}

.about-cloud-dev{
  padding-top: 14rem !important;
}

.industry-list-des{
  margin-top: 30px !important;
}

.dark-mode .service-short-desc{
  color: #98AAC2 !important;
}

.ind-our-work-ethics-sec{
  padding-bottom: 55px !important;
}

.faq-hero-subtitle{
  max-width: 745px !important;
}


.dark-mode .industry-accordion-item {
  background: #0B1120 !important;
}
.industry-section-subtitle {
  text-align: center;
  color: #003087;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 5px;
}

.industry-section-title {
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 40px;
  color: #1d1d1f;
}

.dark-mode .industry-section-title  {
  color: #fff;
}

.industry-accordion-button .icon {
  background-color: var(--bs-primary);
  color: #fff;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.industry-accordion-button{
  border-radius: 15px !important;
  box-shadow: 0 0 16px rgb(8 47 89 / 0%) !important;
}

.dark-mode .industry-accordion-button{
  box-shadow: 0 8px 30px rgba(12, 21, 36, 0.6) !important;
}

.industry-accordion-button::after{
  color: #000 !important;
  box-shadow: 0 0 25px rgba(162, 188, 225, 0.45) !important;
  background-color: transparent !important;
}

.industry-accordion-button:not(.collapsed)::after {
    background-color: var(--si-accordion-btn-icon-box-active-bg) !important;
}

.dark-mode .industry-accordion-button::after{
  box-shadow: 0 0 16px rgba(0, 123, 255, 0.25) !important;
}

.tech-architec-faq-row{
  margin-top: 4rem !important;
}

.beforeAfterAI {
  color: #0047AB;
  line-height: 3rem;
}

.kpiCounterHeading{
  font-size: 25px;
}

.dark-mode .kpiCounterHeading{
  color: #fff !important;
}


.defectScrapGap{
  gap: 8rem !important;
}

.escapeScrapNum{
  background: #d3f0d3;
  color: #008100 !important;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  padding: 6px 10px 6px 10px;
}

.dark-mode .escapeScrapNum{
  background: #103221 !important;
  8FED8F
}
.defectScrapBg{
  background: #E5EDF9;
  color: #000 !important;
  text-align: left;
  width: 130px;
}

.dark-mode .defectScrapBg{
  background:#1F2637 !important;
  color: #fff !important;
  opacity: .7;
}

.beforeAfterAIWidth{
  width: 110px !important;
}

.kpi-dashboard-box {
  box-shadow: 0 8px 30px rgba(217, 227, 243, 0.8);
  border-radius: 25px;
  padding: 4.5rem !important;
}

.dark-mode .kpi-dashboard-box {
  box-shadow: rgba(0, 71, 171, 0.15) 0px 4px 20px;
  background: #0B1120 !important;
}

.gauge-value {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 600;
  color: #000;
  font-size: 15px;
  margin-top: -22px;
}

.dark-mode .gauge-value {
  color: #fff;
}

.industry-detail-des{
  color: #E0E6ED;
  margin-bottom: 60px !important;
  max-width: 570px;
  font-size: 18px;
  opacity: .9;
}

.dark-mode .beforeAfterAI {
  color: #679AE3 !important;
}

.industry-nav-text{
  color: #fff;
  opacity: .7;
  font-weight: 500;
  font-size: 16px;
}

.flip-card {
  background-color: transparent;
  width: 100%;
  height: 215px;
  perspective: 1000px;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card.flipped .flip-inner {
  transform: rotateY(180deg);
}

.flip-front, .flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 71, 171, 0.1);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
}

.flip-front {
  background: #fff;
}

.dark-mode .flip-front {
  background: #0b1120;
}

.flip-back {
  background: #e5edf9;
  color: #000;
  transform: rotateY(180deg);
}

.dark-mode .flip-back {
  background: #091a37;
}
.flip-title {
  font-weight: 500;
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #00183A;
  text-align: left;
}

.dark-mode .flip-title {
  font-weight: 500;
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #fff;
  text-align: left;
}

.flip-desc {
  margin-top: 1.5rem;
  font-size: 1rem;
  text-align: left;
  color: #000;
  opacity: 0.9;
}

.dark-mode .flip-desc {
  margin-top: 1.5rem;
  font-size: 1rem;
  text-align: left;
  color: #fff;
  opacity: 0.7;
}

.pain-point-heading{
    font-weight: 500;
    font-size: 25px;
    margin-bottom: 4rem !important;
}

.aiFixBtn{
  color: #0047AB !important;
  font-weight: 600 !important;
}

.dark-mode .aiFixBtn{
  color: #2F70CC !important;
  font-weight: 600 !important;
}

.workflow-section-container, .ai-solution-container{
  margin-top: 7rem !important;
}

.work-section-heading{
  color: #fff;
  font-weight: 600; 
}

.workflow-header {
  text-align: center;
  margin-bottom: 60px;
  color: white;
}

.workflow-section, .ai-solution-container {
  border-radius: 20px;
}

.ai-solution-container {
  padding: 5rem 5rem 5rem 5rem;
}

.get-tech-pdf-btn{
  font-weight: 600;
  text-decoration: none;
  margin-left: 13px;
}
.dark-mode .get-tech-pdf-btn{
  color: #679AE3 !important;
}

.ai-card-section {
  background-color: #f2f7ff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.dark-mode .ai-card-section {
  background: #0b0f19;
}

.ai-card-section.d-none {
  display: none;
}

.ai-card-section.active {
  display: block;
}

.solution-badge {
  border: 1px solid #ffffff50;
  background-color: transparent;
  color: #fff;
  border-radius: 50px;
  padding: 6px 20px;
  transition: all 0.3s ease;
  opacity: .7;
  font-weight: 100;
}

.solution-badge:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.solution-badge.active {
  background-color: #fff;
  color: #0047AB;
  font-weight: 500;
  opacity: inherit;
}

/*workflow*/
.workflow-card-nav a.disabled {
  pointer-events: none;
  opacity: 0.5;
  text-decoration: none;
}

.workflow-card-box {
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
}

.dark-mode .workflow-card-box {
    background: #0b0f19 !important;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 100%;
}

.workflow-step-card {
  background-color: #f1f6fd;
  border-radius: 15px;
  transition: opacity 0.3s ease-in-out;
  display: block;
  min-height: 220px; /* Set minimum height if needed */
}

.dark-mode .workflow-step-card {
  background-color: #091a37 !important;
  border-radius: 15px;
  transition: opacity 0.3s ease-in-out;
  min-height: 220px; /* Set minimum height if needed */
}

.step-content {
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
}


.workflow-card-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  font-size: 14px;
}

.workflow-card-nav a {
  text-decoration: none;
  font-weight: 600;
}

.workflow-arrow {
  margin-left: 5px;
  display: inline-block;
  transform: translateY(1px);
}

.lane-icon {
  background: #0047AB;
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.lane-title {
  font-weight: bold;
  font-size: 18px;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.hidden {
  display: none;
}

.blueprint-card-section{
   background-color: rgba(255, 255, 255, 0.2); 
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  margin-left: 40%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.blueprint-card-section.d-none {
  display: none;
}

.blueprint-card-section.active {
  display: block;
}

.blueprint-solution-badge {
  border: 1px solid #ffffff50;
  background-color: transparent;
  color: #fff;
  border-radius: 50px;
  padding: 6px 20px;
  transition: all 0.3s ease;
  opacity: .7;
  font-weight: 100;
}

.blueprint-solution-badge:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.blueprint-solution-badge.active {
  background-color: #fff;
  color: #0047AB;
  font-weight: 500;
  opacity: inherit;
}

.phase_cards_title{
  font-size: 20px;
  color: #fff;
  font-weight: 500 !important;
  margin-left: 15px;
}

.blueprint-card-text{
  font-size: 16px;
  color: #fff;
  opacity: .9;
}

.cardContainer{
  position: relative;
  min-height: 225px; 
}

.case-study-flagship{
  border: none;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 71, 171, 0.3) !important;
}

.dark-mode .case-study-flagship{
  background: #0b1120;
  box-shadow: 
  0 6px 18px rgba(24, 32, 45, 0.4),    /* reduced deep gray shadow */
  0 5px 14px rgba(30, 45, 60, 0.3),    /* reduced rich dark layer */
  0 3px 10px rgba(180, 180, 180, 0.06) !important; /* reduced soft gray highlight */
}

.flagship-project-title{
    font-size: 20px;
    font-weight: 500 !important;
}

.flagship-project-content{
  margin-top: 10px;
  margin-left: 15px;
  text-align: left;
}

.flagsship-project-section{
  margin-top: 7rem !important;
}
 
.flagship-card-section {
  margin-left: 40%;
}

#resultsSection .flagship-card-section{
  margin-left: 15%;
}


.flagship-card-section.d-none {
  display: none;
}

.flagship-card-section.active {
  display: block;
}

.flagship-solution-badge {
  border: 1px solid #ffffff50;
  background-color: transparent;
  color: #fff;
  border-radius: 50px;
  padding: 6px 20px;
  transition: all 0.3s ease;
  opacity: .7;
  font-weight: 100;
}

.dark-mode .flagship-project-title{
  color: #679AE3 !important;
  font-weight: 400 !important;
  font-size: 17px !important;
}

.flagship-solution-badge:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.dark-mode .revenue-boost-title{
  color: #679AE3 !important;
}

.flagship-solution-badge.active {
  background-color: #fff;
  color: #0047AB;
  font-weight: 500;
  opacity: inherit;
}

.trustBadgeSection{
  margin-top: 5rem !important;
}

.fast-lane-content{
  font-size: 20px;
  font-weight: 500;
}

.choose-badge-tag {
  display: inline-block;
  background-color: rgba(208, 225, 255, 0.5);
  color: #647a9c;
  font-weight: 500;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.dark-mode .choose-badge-tag {
    background: #2a2f39;
    color: #939faf;
}

.loss-badge-tag {
  display: inline-block;
  background-color: #D9E3F3 !important;
  color: #647a9c !important;
  font-weight: 500;
  font-size: 0.6rem;
  padding: 7px 14px !important;
  border-radius: 999px !important;
  margin-bottom: 0.75rem;
}

.dark-mode .loss-badge-tag {
  background-color: #21314a !important;
  color: #fff !important;
  opacity: 0.9;
}

.choose-custom-gradient {
  background: radial-gradient(
      circle at 0% 100%,
      rgba(233, 240, 248, 0.85) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 100% 0%,
      rgba(233, 240, 248, 0.85) 0%,
      transparent 60%
    ),
    #ffffff; /* Base color */
  box-shadow: 0 8px 24px rgba(78, 124, 247, 0.08), 0 4px 10px rgba(0, 0, 0, 0.02);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease-in-out;
}
  
.dark-mode .choose-custom-gradient{
  background: radial-gradient(circle at 0% 100%, rgba(0, 71, 171, 0.15) 0%, transparent 60%), radial-gradient(circle at 100% 0%, rgba(0, 71, 171, 0.15) 0%, transparent 60%), #0B1120;
}
.choose-custom-gradient:hover {
  transform: translateY(-4px);
}

.choose-card-content{
  font-size: 21px !important; 
}

.why-choose-section{
  background: linear-gradient(to top, #d7e4f5 0%, #f3f7fb 50%, #ffffff 100%) !important;
  padding-bottom: 7rem !important;
  padding-top: 6rem !important;
}


.dark-mode .why-choose-section {
  background: linear-gradient(to top, #04132b 0%, #04132b 60%, #0B0F19 100%) !important;
  padding-bottom: 7rem !important;
  padding-top: 6rem !important;
}


/* Video on right half */
.industries-hero-video {
  position: absolute;
  top: 0;
  left: 6vw;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 1;
}

/* Left image background (behind text) */
.industry-hero-image-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 47vw; /* ↓ reduced from 50vw */
  height: 100vh;
  background: url('/client/assets/img/industries/hero-banner.png') no-repeat center/cover;

  background-size: cover;
  z-index: 1;
  pointer-events: none;
}

/* Overlay on top of video & image (but under text) */
.industry-tech-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(to right, rgba(2, 8, 32, 0.8) 20%, rgba(2, 8, 32, 0.4) 70%, rgba(2, 8, 32, 0.2) 100%);
  z-index: 2; /* slightly above visuals */
}

/* Ensure text content is always on top */
.service-list-hero-section .position-relative.z-3 {
  z-index: 3 !important; /* override everything below */
  position: relative;
}

.gauge-wrapper {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  position: relative;
}


.badge-change {
  position: absolute;
  margin-top: 4px;
  left: 50%;
  transform: translateX(-50%);
}

.industry-details-section{
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.prod-prev{
  color: #5077b0;
}

.prod-prev {
  vertical-align: middle;
  color: #0047AB !important;
  margin-left: 10px;
}

.dark-mode .prod-prev {
  vertical-align: middle;
  color: #5077b0 !important; 
  margin-left: 10px;
}

.dark-mode .comm-prev {
  color: rgb(80, 119, 176) !important;
}

.prod-next {
  vertical-align: middle;
  color: #0047AB !important;
  margin-left: 10px;
}

.dark-mode .prod-next {
  vertical-align: middle;
  color: #5077b0 !important;
  margin-left: 10px;
}


/* Default (light mode) */
.light-arrow {
  display: inline;
}
.dark-arrow {
  display: none;
}

/* When in dark mode */
html.dark-mode .light-arrow {
  display: none;
}
html.dark-mode .dark-arrow {
  display: inline;
}

.ai-solution-container{
  box-shadow:0 10px 20px rgba(217, 227, 243, 0.6),0 20px 40px rgba(217, 227, 243, 0.4);
}

.dark-mode .ai-solution-container{
  box-shadow: 0 8px 30px rgba(0, 71, 171, 0.25);
}

.roi-strategy-container{
  box-shadow:0 10px 20px rgba(217, 227, 243, 0.6),0 20px 40px rgba(217, 227, 243, 0.4);
}

.dark-mode .roi-strategy-container{
  box-shadow: 
  0 6px 18px rgba(24, 32, 45, 0.4),    /* reduced deep gray shadow */
  0 5px 14px rgba(30, 45, 60, 0.3),    /* reduced rich dark layer */
  0 3px 10px rgba(180, 180, 180, 0.06) !important; /* reduced soft gray highlight */
}

.fast-lane-container{
  box-shadow:0 10px 20px rgba(217, 227, 243, 0.6),0 20px 40px rgba(217, 227, 243, 0.4);
}

.dark-mode .fast-lane-container{
  box-shadow:none;
}

html.dark-mode .view-industry-cs-outline.btn-outline-primary {
  color: #fff;
  border-color: #fff;
  opacity: 0.9;
}

html.dark-mode .view-industry-cs-outline.btn-outline-primary:hover,
html.dark-mode .view-industry-cs-outline.btn-outline-primary:focus {
  background-color: #fff;
  color: #000;
  border-color: #fff;
}

/* Default (light mode) */
.light-vector {
  display: inline;
}
.dark-vector {
  display: none;
}

/* When in dark mode */
html.dark-mode .light-vector {
  display: none;
}
html.dark-mode .dark-vector {
  display: inline;
}

.flagship-card-div{
  min-width: 240px; 
  flex: 1;
  border-radius: 20px;
}

.dark-mode .flagship-card-div{
  background: #0B0F19 !important;
}

.flagship-card-head{
  color: #000 !important;
}

.dark-mode .flagship-card-head{
  color: #fff !important;
}

.dark-mode .flagship-card-year{
  color: #5E99ED !important;
}

/* Light mode default */
.light-trust {
  display: inline !important;
}
.dark-trust {
  display: none !important;
}

html.dark-mode .light-trust {
  display: none !important;
}
html.dark-mode .dark-trust {
  display: inline !important;
}

.dark-mode .why-choose-us-head{
  color: #5E99ED !important;
}

.pain-point-badges{
  text-align: center;
  margin-top: -50px;
}

.pain-badge-before-after{
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  }

.flip-desc-no-auto{
  margin-top: 0px !important;
}

.non-automatic-sb{
  padding: 6px 10px !important;
}

.dark-mode .calculator-section {
  background: #000;
}

.dark-mode .calculator-title {
    color: #fff;
}


/* Left image background (behind text) */
.logistics-hero-image-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 47vw; /* ↓ reduced from 50vw */
  height: 100vh;
  background: url('/client/assets/img/industries/logistics-banner.png') no-repeat center/cover;

  background-size: cover;
  z-index: 1;
  pointer-events: none;
}
/*roi cal*/

.calculator-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.calculator-title {
    font-size: 29px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    flex: 1;
}

.form-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #4a4a4a;
    margin-bottom: 8px;
}

.calculate-btn {
    background: #1e40af;
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.calculate-btn:hover {
    background: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
}

.results-section {

    position: relative;
    min-height: 550px;
    overflow: hidden;
}

.card-title {
font-size: 20px;
font-weight: 600;
color: #374151;
margin-bottom: 8px;
}

.card-value {
font-size: 24px;
font-weight: 700;
color: #2563eb;
margin-bottom: 0;
}

.results-hidden {
display: none;
}

@media (max-width: 1024px) {
  .roi-strategy-container {
    padding: 40px 20px;
  }

  .calculator-section {
    padding: 30px;
    margin-bottom: 30px;
  }

  .form-row {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 768px) {
    .calculator-section {
        padding: 25px 20px;
    }
    
    .calculator-title {
        font-size: 28px;
    }

    /*.result-card {
        padding: 25px 20px;
    }*/

    .card-title {
        font-size: 18px;
    }

    .card-value {
        font-size: 22px;
    }
}

/* Workflow Section Responsive */
@media (max-width: 767px) {
  .workflow-section {
    padding: 30px 15px !important; /* smaller padding on mobile */
    background-size: cover;
    background-position: center;
  }

  .workflow-section-container .row {
    gap: 20px 0; /* reduce column gap for mobile */
  }

  .workflow-section-container .col-md-6 {
    flex: 0 0 100%;   /* full width on mobile */
    max-width: 100%;
  }

  .workflow-card-box {
    margin-bottom: 25px; /* spacing between cards */
  }

  .workflow-step-card {
    padding: 20px !important; /* reduce padding inside cards */
  }

  .workflow-card-nav {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
  }

  .workflow-card-nav a {
    font-size: 14px;
  }
}

/* Responsive Fix for AI Solutions Section */
@media (max-width: 767px) {
  .ai-solution-container {
    padding: 30px 15px !important; /* reduce padding */
    background-size: cover;
    background-position: center;
  }

  .ai-solution-section .row {
    flex-direction: column; /* stack left and right columns */
  }

  .ai-solution-section .col-lg-6,
  .ai-solution-section .col-lg-5,
  .ai-solution-section .offset-lg-1 {
    max-width: 100%;
    flex: 0 0 100%;
    margin-left: 0 !important;
  }

  .ai-card-section {
    padding: 20px !important;
    min-height: auto; /* allow auto height */
    margin-bottom: 25px; /* spacing between cards */
    border-radius: 12px;
  }

  .ai-card-section h4,
  .ai-card-section p,
  .ai-card-section hr,
  .ai-card-section ul {
    margin-left: 0 !important; /* remove forced left margin */
  }

  .ai-card-section ul li {
    font-size: 14px;
    line-height: 1.5;
  }

  .solution-badge {
    font-size: 13px;
    padding: 6px 12px;
  }
}

@media (max-width: 767px) {
  .blueprint-card-section {
    margin-left: 0%;
  }

  .flagship-project-content {
   margin-left: 0px;
  }
}

/* LIGHT MODE — when HTML does NOT have `.dark-mode` */

html:not(.dark-mode) .swiper-pagination-bullet {
    background: #b8c0d0 !important;   /* light grey */
    opacity: 1 !important;
}

html:not(.dark-mode) .swiper-pagination-bullet-active {
    background: #0052cc !important;   /* blue active bullet */
    width: 28px !important;           /* long pill */
    border-radius: 10px !important;
}


/* Desktop hover */
@media (min-width: 992px) {
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block !important;
    opacity: 1;
    visibility: visible;
  }
}

/* Mobile dropdown inside offcanvas */
@media (max-width: 991px) {
  #navbarNav .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
  }

  #navbarNav .dropdown-menu.show {
    display: block;
    opacity: 1;
    visibility: visible;
  }
}
