@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/* Fonts */
:root {
  --font-default:
    "Roboto", sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Roboto", sans-serif;
  --font-secondary: "Roboto", sans-serif;
}

/* Colors */
:root {
  --color-default: #494f5d;
  --color-primary: #024ae8;
  --color-secondary: #ffffff;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
  text-decoration: none;
  font-size: 16px;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #002147;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: 600;
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background: var(--color-secondary);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(248, 90, 64, 0.8);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.menuNavbar .nav-item {
  margin-right: 2px;
}

.menuNavbar .nav-item .nav-link {
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 16px;
}

.menuNavbar .navbar-nav .nav-link:hover,
.menuNavbar .navbar-nav .nav-link.active,
.menuNavbar .navbar-nav .nav-link.show {
  background: #eff6ff;
  color: #024ae8;
}

.megamenu {
  padding: 24px 10px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.menuNavbar .dropdown-toggle::after {
  border: none; /* remove default triangle */
  margin-left: 0.5rem;
  vertical-align: middle;
}

.dropdown-toggle::after {
  content: "\f282"; /* chevron-down */
  font-family: "Bootstrap-icons";
  font-size: 0.85rem;
  font-weight: 600;
}

@media (max-width: 1100px) {

  .menuNavbar .nav-item .nav-link {
    padding: 10px 12px !important;  
  }

}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    margin-top: 9px;
  }
}
.service-card {
  height: 100%;
  padding: 20px;
  border: 1px solid #c9d1e6;
  border-radius: 18px;
  background: #fff;
  transition: all 0.3s ease;
}

.service-card img {
  height: 54px;
  margin-bottom: 20px;
}

.service-card h5 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
  color: #1d1d1f;
}

.service-card a {
  text-decoration: none;
  font-weight: 500;
  color: #0d6efd;
  display: inline-flex;
  align-items: center;
  gap: 1px;
}

.service-card a i {
  font-size: 24px;
}

.service-card:hover {
  box-shadow: 0 0px 8px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.menuNavbar .btn-contactUs {
  background: #024ae8;
  padding: 10px 20px;
  border-radius: 100px;
  color: #fff;
}

.menuNavbar .btn-contactUs:hover {
  color: #fff !important;
  background: #0037b1 !important;
}

header .navbar-toggler {
  border: none;
}

header .navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: none;
}

@media (max-width: 991.98px) {
  .menuNavbar .nav-item {
    margin-right: 0px;
    margin-bottom: 4px;
  }
}

.hero-section {
  padding: 100px 0px;
  background-image: url("../images/hero-home-bg.jpg"); /* your image */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-bottom-left-radius: 36px;
  border-bottom-right-radius: 36px;
}

@media (min-width: 991.98px) {
  .home-hero-image {
    position: absolute;
    bottom: -140px;
    right: 0px;
    width: 450px;
  }
}

/* Text */
.hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  color: #1d1d1f;
  line-height: 1.35;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: #0d6efd;
}

.hero-content p {
  font-size: 16px;
  color: #475569;
  max-width: 520px;
  margin-bottom: 30px;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Image */
.hero-image img {
  max-width: 100%;
  height: auto;
}

.btn-our-experts {
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  background: #024ae8;
  border-radius: 100px;
  border: 1px solid #024ae8;
  padding: 14px 18px;
}

.btn-our-experts:hover {
  background: #003dc4;
  color: #fff;
}

.btn-explore-services {
  font-weight: 600;
  font-size: 16px;
  color: #024ae8;
  background: #fff;
  border-radius: 100px;
  border: 1px solid #024ae8;
  padding: 14px 18px;
}

.btn-explore-services:hover {
  background: #eff6ff;
  color: #024ae8;
}

/* RESPONSIVE */
@media (max-width: 991.98px) {
  .hero-section {
    padding: 40px 20px;
  }
  .hero-wrapper {
    padding: 40px 30px;
    text-align: center;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 30px;
  }

  .hero-wrapper {
    border-radius: 24px;
    padding: 30px 20px;
  }

  .btn-our-experts {
    font-size: 14px;
    padding: 10px 12px;
  }

  .btn-explore-services {
    font-size: 14px;
    padding: 10px 12px;
  }
}

/*Partner Section*/
.partner-section {
  background: #f8fbff;
}

.image-box {
  background: #ffffff;
  border-radius: 32px;
  padding: 30px;
}

.content-box h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1d1d1f;
}

.content-box h2 span {
  color: #0d6efd;
}

.content-box p {
  color: #5f6368;
  font-size: 16px;
  line-height: 1.6;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 500;
}

.feature-list i {
  color: #0d6efd;
  font-size: 20px;
}

/* Mobile adjustments */
@media (max-width: 576px) {
  .content-box h2 {
    font-size: 26px;
    text-align: center;
  }

  .content-box p {
    text-align: center;
  }

  .feature-list {
    padding-left: 0;
  }
}

/*Stats Section*/
.stats-section {
  padding: 60px 0;
  background: #ffffff;
}

.stat-item {
  padding: 20px 10px;
}

.stat-item h2 {
  font-size: 48px;
  font-weight: 700;
  color: #2b2b2b;
  margin-bottom: 10px;
}

.stat-item p {
  font-size: 18px;
  color: #8a8a8a;
  margin-bottom: 0;
  font-weight: 500;
}

/* Vertical divider (desktop only) */
@media (min-width: 768px) {
  .stat-border {
    border-left: 2px solid #cfd6e4;
  }
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .stat-item h2 {
    font-size: 34px;
  }

  .stat-item p {
    font-size: 15px;
  }
}

/*Challenge Section*/

.challenge-section {
  background: #eef6ff;
}

.challenge-title {
  font-size: 36px;
  font-weight: 700;
  color: #2b2b2b;
}

.challenge-title span {
  color: #0d6efd;
}

.challenge-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 35px 30px;
  height: 100%;
  border: 1px solid #cfdaf0;
}

.challenge-number {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: #0d6efd;
  margin-bottom: 16px;
}

.challenge-card h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #1d1d1f;
}

.challenge-card p {
  font-size: 15.5px;
  color: #4f5660;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive tweaks */
@media (max-width: 576px) {
  .challenge-title {
    font-size: 26px;
  }

  .challenge-card {
    padding: 28px 24px;
  }
}

/*Solutions Section */

.solutions-section {
  background: #ffffff;
}

.solutions-title {
  font-size: 36px;
  font-weight: 700;
  color: #2b2b2b;
}

.solutions-title span {
  color: #0d6efd;
}

/* Card */
.solution-card {
  height: 100%;
  background: #f1f4fc;
  border-radius: 28px;
  padding: 30px;
  transition: all 0.3s ease;
  border: 1px solid #e3e2e2;
}

.solution-card img {
  height: 60px;
  margin-bottom: 20px;
}

.solution-card h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1d1d1f;
}

.solution-card p {
  font-size: 15.5px;
  color: #4f5660;
  line-height: 1.6;
  margin-bottom: 18px;
}

.solution-card a {
  font-weight: 700;
  font-size: 16px;
  color: #0d6efd;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 1px;
}

.solution-card a i {
  font-size: 24px;
}

/* Hover */
.solution-card:hover {
  background: #ffffff;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 576px) {
  .solutions-title {
    font-size: 26px;
  }

  .solution-card {
    padding: 24px;
  }
}

/*Expertise Section*/

.expertise-section {
  position: relative;
  background: linear-gradient(102.17deg, #4f55e3 -2.68%, #4f55e3 104.04%);
  color: #ffffff;
  overflow: hidden;
}

/* ===== BLUR LIGHTS ===== */

/* Top Center */
.expertise-section::before {
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 520px;
  height: 520px;
  background: radial-gradient(
    circle,
    rgba(255, 92, 178, 0.45),
    transparent 90%
  );
  filter: blur(100px);
  z-index: 1;
  pointer-events: none; /* ✅ IMPORTANT */
}

/* Bottom Left */
.expertise-section::after {
  content: "";
  position: absolute;
  bottom: -35%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 92, 178, 0.95),
    transparent 60%
  );
  filter: blur(160px);
  z-index: 1;
  pointer-events: none; /* ✅ IMPORTANT */
}

/* Bottom Right */
.expertise-section .blur-right {
  position: absolute;
  bottom: -35%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 92, 178, 0.65),
    transparent 70%
  );
  filter: blur(160px);
  z-index: 1;
  pointer-events: none; /* ✅ IMPORTANT */
}

/* Content always above blur */
.expertise-section .container {
  position: relative;
  z-index: 2;
}

/* Bottom Right (extra layer) */
.expertise-section .blur-right {
  position: absolute;
  bottom: -35%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 92, 178, 0.85),
    transparent 70%
  );
  filter: blur(160px);
  z-index: 1;
  pointer-events: none;
}

.expertise-title {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
}

/* Card */
.expertise-card {
  height: 100%;
  padding: 32px 26px;
  border-radius: 28px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

/* Hover */
.expertise-card:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

/* Icon */
.expertise-card .icon-box {
  width: 64px;
  height: 64px;
  padding: 4px;
  background: #324ccd;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.expertise-card .icon-box i {
  font-size: 28px;
  color: #ffffff;
}

.expertise-card h5 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 14px;
}

.expertise-card p {
  font-size: 15.5px;
  line-height: 1.6;
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 576px) {
  .expertise-title {
    font-size: 26px;
  }
}

/*Impact Section*/

.impact-section {
  background: #ffffff;
}

.impact-title {
  font-size: 36px;
  font-weight: 700;
  color: #2b2b2b;
}

.impact-title span {
  color: #3f6df6;
}

/* Item */
.impact-item {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 28px;
  padding: 30px;
  transition: all 0.3s ease;
}

/* Hover */
.impact-item:hover {
  background: #ffffff;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.impact-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 24px;
}

.impact-icon img {
  width: 100%;
  height: auto;
}

.impact-item h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #2b2b2b;
}

.impact-item p {
  font-size: 15.5px;
  color: #4f5660;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 576px) {
  .impact-title {
    font-size: 26px;
  }
}

/*Sectors Section*/

.sectors-section {
  background: #eef6ff;
}

.sectors-title {
  font-size: 36px;
  font-weight: 700;
  color: #2b2b2b;
}

.sectors-title span {
  color: #3f6df6;
}

/* Card */
.sector-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}

.sector-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.45s ease; /* ✅ MOVE HERE */
}

/* Bottom white panel */
.sector-content {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.sector-content h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1d1d1f;
}

.sector-content a {
  font-weight: 600;
  color: #0d6efd;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.sector-content a i {
  font-size: 24px;
}

/* Hover effect */
.sector-card:hover img {
  transform: scale(1.06);
}

/* Responsive */
@media (max-width: 576px) {
  .sectors-title {
    font-size: 26px;
  }

  .sector-card img {
    height: 320px;
  }

  .sectors-section .swiper-slide {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* Shared styles for all swiper navs */
.sectors-swiper-nav,
.testimonial-swiper-nav,
.scbc-swiper-nav {
  display: flex;
  align-items: center;
  gap: 10px; /* space between arrows */
  padding-top: 20px;
}

.sectors-swiper-nav .swiper-button-next,
.sectors-swiper-nav .swiper-button-prev,
.testimonial-swiper-nav .swiper-button-next,
.testimonial-swiper-nav .swiper-button-prev,
.scbc-swiper-nav .swiper-button-next,
.scbc-swiper-nav .swiper-button-prev {
  position: static; /* remove absolute positioning */
  width: 44px;
  height: 44px;
  background: #fff; /* theme color */
  border-radius: 50%;
  color: #0062b5;
  border: 1px solid #ddd;
}

.sectors-swiper-nav .swiper-button-next:hover,
.sectors-swiper-nav .swiper-button-prev:hover,
.testimonial-swiper-nav .swiper-button-next:hover,
.testimonial-swiper-nav .swiper-button-prev:hover,
.scbc-swiper-nav .swiper-button-next:hover,
.scbc-swiper-nav .swiper-button-prev:hover {
  background-color: #fafafa;
  border-color: #0062b5;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

.sectors-swiper-nav .swiper-button-next::after,
.sectors-swiper-nav .swiper-button-prev::after,
.testimonial-swiper-nav .swiper-button-next::after,
.testimonial-swiper-nav .swiper-button-prev::after,
.scbc-swiper-nav .swiper-button-next::after,
.scbc-swiper-nav .swiper-button-prev::after {
  font-size: 14px;
  color: #0062b5;
  height: auto;
}

.sectors-swiper-nav .swiper-button-next svg,
.sectors-swiper-nav .swiper-button-prev svg,
.testimonial-swiper-nav .swiper-button-next svg,
.testimonial-swiper-nav .swiper-button-prev svg ,
.scbc-swiper-nav .swiper-button-next svg,
.scbc-swiper-nav .swiper-button-prev svg{
  height: 20px !important;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding-top: 40px;
  padding-bottom: 40px;
}

.clients .clients-slider {
  padding: 10px;
}

.clients .swiper-wrapper {
  height: auto !important;
  align-items: stretch;
  transition-timing-function: linear;
}

.clients .swiper-slide {
  height: auto;
}

.clients .swiper-slide:last-child {
  border-right: none;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 20px;
  height: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 20px;
  background: #ffffff;
}

.clients .client-logo img {
  max-width: 90%;
  transition: 0.3s;
}

.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
}

@media (max-width: 767.98px) {
  .clients {
    padding-bottom: 20px;
  }
}

@media (max-width: 640px) {
  .clients .client-logo {
    padding: 20px;
  }
}

/*Testimonials Section*/

.testimonials-section {
  background: #ffffff;
}

.testimonials-title {
  font-size: 36px;
  font-weight: 700;
  color: #2b2b2b;
}

.testimonials-title span {
  color: #3f6df6;
}

/* Card */
.testimonial-card {
  background: #ffffff;
  border: 1.5px solid #d6dbea;
  border-radius: 28px;
  padding: 32px 28px;
}

.quote-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #2b2b2b;
}

.quote-text {
  font-size: 15.5px;
  line-height: 1.65;
  color: #4f5660;
  margin-bottom: 28px;
}

/* User */
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-user img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-user span {
  color: #6b7280;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 576px) {
  .testimonial-card {
    padding: 30px 28px;
  }
  .testimonials-title {
    font-size: 26px;
  }
  .testimonials-section .swiper-slide {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.knowledge-section {
  background: #ffffff;
}

.knowledge-title {
  font-size: 36px;
  font-weight: 700;
  color: #2b2b2b;
}

.knowledge-subtitle {
  font-size: 16px;
  color: #6b7280;
  max-width: 720px;
  margin: auto;
}

/* Card base */
.knowledge-card {
  position: relative;
  border-radius: 28px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  overflow: hidden;
  height: 100%;
}

.knowledge-card img {
  max-width: 220px;
}

/* Card base */
.case-study-card {
  position: relative;
  border-radius: 28px;
  padding: 28px;
  gap: 20px;
  overflow: hidden;
  height: 100%;
}

/* Content */
.card-content h5,
.card-content h4 {
  font-weight: 600;
  margin-bottom: 14px;
  color: #1d1d1f;
}

.card-content a {
  font-weight: 600;
  color: #0d6efd;
  text-decoration: none;
}

.badge-label {
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 600;
  color: #6b7280;
  display: block;
  margin-bottom: 10px;
}

/* Backgrounds */
.bg-blog {
  background: #f2efff;
}

.bg-event {
  background: #f9eefe;
}

.bg-case {
  background: #eef6ff;
}

.large-card img {
  max-width: 380px;
  margin-top: -50px;
}

/* Responsive */
@media (max-width: 991px) {
  .knowledge-card {
    flex-direction: column;
  }

  .knowledge-card img {
    max-width: 200px;
  }
}

@media (max-width: 576px) {
  .knowledge-title {
    font-size: 26px;
  }
}

/*CTA Section*/

.cta-section {
  background: #f7f8ff;
}

.cta-wrapper {
  background: linear-gradient(100deg, #192e97, #9e16c1);
  border-radius: 22px;
  padding: 20px 0px 20px 50px;
  color: #ffffff;
  overflow: hidden;
}

/* Text */
.cta-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 14px;
}

.cta-content p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 28px;
  opacity: 0.95;
}

/* Button */
.cta-btn {
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 50px;
  color: #1d2ca5;
}

/* Image */
.cta-image img {
  /*max-width: 100%;*/
  height: 250px;
}

/* Responsive */
@media (max-width: 991px) {
  .cta-wrapper {
    padding: 40px 30px;
    text-align: center;
  }

  .cta-image {
    margin-top: 30px;
    text-align: center !important;
  }

  .cta-content p {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 576px) {
  .cta-content h2 {
    font-size: 26px;
  }

  .cta-image img {
    display: none;
  }
}

/*Footer Section*/
.footer-section {
  background: #111e3c;
  color: #ffffff;
}

.footer-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 14.5px;
}

.footer-links a:hover {
  color: #ffffff;
}

/* Contact */
.footer-contact p {
  font-size: 14.5px;
  color: #d1d5db;
  display: flex;
  gap: 10px;
}

/* Newsletter */
.footer-newsletter-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 18px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 18px;
  border-radius: 50px;
  border: none;
  outline: none;
}

.newsletter-form button {
  padding: 12px 26px;
  border-radius: 50px;
  background: #0d6efd;
  color: #ffffff;
  border: none;
  font-weight: 600;
}

.newsletter-form button:hover {
  background: #003dc2;
  color: #ffffff;
}

/* Social */
.social-links span {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
}

.social-links .icons a {
  color: #ffffff;
  font-size: 20px;
  margin-right: 10px;
}

/* Divider */
.footer-divider {
  margin: 40px 0 10px;
  border: 1px solid transparent;
  border-image-source: linear-gradient(
    90deg,
    #111e3c 0%,
    #ffffff 50%,
    #111e3c 100%
  );
  border-image-slice: 1; /* ✅ REQUIRED */
}

/* Bottom */
.footer-bottom {
  font-size: 14.5px;
  color: #d1d5db;
}

.copyright {
  padding: 20px 0px;
}

/* Responsive */
@media (max-width: 576px) {
  .social-links {
    text-align: center;
  }

  .footer-newsletter-title {
    font-size: 18px;
  }

  /*.newsletter-form {
    flex-direction: column;
  }*/
}



.hero-aboutus {
    background: #f4f1fb; 
}

/* Gradient Text */
.hero-aboutus .text-gradient {
    color: #6f42c1;
}

/* Stats Box */
.hero-aboutus .stat-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #DFD7F5
}

.hero-aboutus .stat-box h2 {
    color: #6f42c1; 
    font-weight: 700; 
    font-size: 40px;  
}

.hero-aboutus .stat-box p {
    margin: 0;
    font-size: 14px;
    color: #777;
}

/* RIGHT SIDE */
.hero-aboutus .circle-bg {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, #b69347, #6f42c1);
    border-radius: 50%;
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    z-index: 1;
}

.hero-aboutus .team-img {
    position: relative;
    z-index: 2;
    max-width: 360px;
}

/* Floating Cards */
.hero-aboutus .floating-card {
    position: absolute;
    background: #fff;
    padding: 10px 10px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    z-index: 3;
}

.hero-aboutus .floating-card h5 {
    margin: 0;
    color: #6f42c1;
    font-weight: bold;
}

.hero-aboutus .floating-card p {
    margin: 0;
    font-size: 13px;
    color: #777;
}

/* Top Card */
.hero-aboutus .top-card {
    top: 10%;
    left: -13%;
    text-align: center;
}

/* Bottom Card */
.hero-aboutus .bottom-card {
    bottom: 0%;
    right: 0%;
}

/* Icon */
.hero-aboutus .icon {
    font-size: 20px;
    margin-bottom: 5px;
    color: #6f42c1;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .hero-aboutus .circle-bg {
        width: 280px;
        height: 280px;
    }

    .hero-aboutus .team-img {
        max-width: 240px;
    }

    .hero-aboutus .top-card {
        top: 0;
        left: -13%;
    }

    .hero-aboutus .bottom-card {
        bottom: 0;
        right: 0%;
    }
}

@media (max-width: 576px) {
    .hero-aboutus .stat-box {
        padding: 15px;
    }

    .hero-aboutus h1 {
        font-size: 24px;
    }

    .hero-aboutus .circle-bg {
        display: none;
    }
}



.purpose-section{
  background: #ffffff;
  padding: 60px 0px;
}
 
/* Highlight Color */
.purpose-section .text-highlight {
    color: #7C4AF2;
}

/* Image */
.purpose-section .purpose-img {
    max-width: 100%;
    border-radius: 16px;
}

/* Card */
.purpose-section .purpose-card {
    background: #eef0f5;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Divider */
.purpose-section .purpose-card hr {
    border-top: 1px solid #dcdfe6;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .purpose-section .purpose-section {
        text-align: center;
    }

    .purpose-section .purpose-card {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .purpose-section h2 {
        font-size: 22px;
    }

    .purpose-section .purpose-card {
        padding: 20px;
    }
}



/* Background */
.regulated-section {
    background: #f4f2f8;
    padding: 60px 0px;
}

/* Highlight Text */
.regulated-section .text-highlight {
    color: #6f42c1;
}

/* Left Content Card */
.regulated-section .content-card {
    background: #3f2e8c;
    color: #fff;
    padding: 40px; 
}

.regulated-section .content-card p {
    color: #dcd6ff;
    font-size: 15px;
}

/* Image Box */
.regulated-section .img-box {
    overflow: hidden;
    height: 100%;
}

.rounded-top-left{
  border-top-left-radius:20px;
}

.rounded-top-right{
  border-top-right-radius:20px;
}

.rounded-bottom-left{
  border-bottom-left-radius:20px;
}

.rounded-bottom-right{
  border-bottom-right-radius:20px;
}

.regulated-section .img-box img {
    height: 100%;
    object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .regulated-section  .content-card {
        padding: 25px;
    }
}

@media (max-width: 767.98px) {

.no-rounded{
    border-radius: 0px !important;
   }
.rounded-bottom-left-mob{
    border-bottom-left-radius:20px;
  }

}

@media (max-width: 576px) {
   .regulated-section h2 {
        font-size: 22px;
    }
}



/* Section Background */
.timeline-section {
    background: #ffffff;
    padding: 60px 0px;
}

/* Highlight */
.timeline-section .text-highlight {
    color: #7C4AF2;
}

/* Timeline Wrapper */
.timeline-section .timeline {
    position: relative;
    padding-left: 0px; /* more space for proper alignment */
}

/* Vertical Line */
.timeline-section .timeline::before {
    content: '';
    position: absolute;
    left: 30px; /* center axis */
    top: 30px; 
    width: 3px;
    height: 86%;
    background: #7C4AF2;
    border-radius: 2px;
    z-index: 1;
}

/* Item */
.timeline-section .timeline-item {
    position: relative;
    margin-bottom: 40px;
}

/* Dot */
.timeline-section .timeline-dot {
    position: absolute;
    left: 32px; /* SAME as line */
    top: 30px;
    width: 20px;
    height: 20px;
    background: #7C4AF2;
    border-radius: 50%;
    transform: translateX(-50%); /* centers dot perfectly on line */
 
    z-index: 2;
}

/* Card */
.timeline-section .timeline-card {
    background: #e9e6f5;
    padding: 30px 30px 30px 60px;
    border-radius: 20px;
    margin-left: 0px;
    position: relative;
    z-index: 0;
}

/* Title */
.timeline-section .timeline-card h5 {
    color: #6f42c1;
    font-weight: 700;
}

/* Text */
.timeline-section .timeline-card p {
    margin: 0;
    color: #353535;
    font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  

    .timeline-section .timeline-card {
     
         padding: 30px 30px 30px 60px;
    }

    .timeline-section .timeline-dot {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 576px) {
    .timeline-section h2 {
        font-size: 22px;
    }

    .timeline-section .timeline::before{
      top: 34px;
      height: 84%;
    }

    .timeline-section .timeline-dot {
      position: absolute;
      left: 32px;
      top: 32px;
    }
}


/* Section Background */
.trusted-solutions {
    background: #F1F2FA;
    padding: 60px 0px;
}

/* Highlight */
.trusted-solutions .text-highlight {
    color: #6f42c1;
}

/* Card */
.trusted-solutions .solution-card {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #D9D9D9;
    transition: all 0.3s ease;
    height: 100%;
}

/* Image */
.trusted-solutions .solution-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
}

/* Title */
.trusted-solutions .solution-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #353535;
}

/* Text */
.trusted-solutions .solution-card p {
    font-size: 14px;
    color: #494F5D;
    margin: 0;
}

/* Hover Effect */
.trusted-solutions .solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .trusted-solutions  .solution-card img {
        height: auto;
        width: 100%;
    }

 
}

@media (max-width: 576px) {
  .trusted-solutions  .solutions-section h2 {
        font-size: 22px;
    }
}




/* Section */
.metrics-section {
    background: #ffffff;
    padding: 60px 0px;
}

/* Highlight */
.metrics-section .text-highlight {
    color: #7C4AF2; 
}


/* Metric Card */
.metrics-section .metric-card {
    background: #fff;
    padding: 18px 20px;
    border-radius: 14px;
    border: 1px solid #e5e5ef;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    transition: 0.3s;
}

.metrics-section .metric-card:hover {
    transform: translateY(-5px);
}

.metrics-section .metric-card small{
  color: #7C4AF2;
  font-weight: 600;
  font-size: 16px;
}

/* Icon Box */
.metrics-section .icon-box {
    width: 40px;
    height: 40px;
    background: #ece9f8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6f42c1;
    font-size: 18px;
}

/* Numbers */
.metrics-section .metric-card h3 {
    font-weight: 700;
    margin: 10px 0;
}

/* Image */
.metrics-section .image-wrapper {
    background: #EFEFFF;
    border-radius: 30px;
    padding: 20px;
}

.metrics-section .image-wrapper img {
    border-radius: 20px;
}

.metrics-section .txt-dark{
  color: #606060; 
  font-weight: 600;   
  font-size: 16px; 

}
.metrics-section .txt-ic-up{
  color: #00B69B;
  font-weight: 600;   
  font-size: 16px;
}

.metrics-section .txt-ic-down{
  color: #F93C65;
  font-weight: 600;   
  font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .metrics-section  .image-wrapper {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
  .metrics-section  .metrics-section h2 {
        font-size: 22px;
    }
}

.clients-bg{background: #FCF7FF}


.contact-section {
    background: #f3ecf8;
    padding: 60px 0px;
}

/* Highlight */
.contact-section .text-highlight {
    color: #a855f7;
}

/* Form Card */
.contact-section .form-card {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Inputs */
.contact-section .custom-input {
    border-radius: 10px;
    padding: 10px 12px;
}

.contact-section .custom-input:focus {
    border-color: #a855f7;
    box-shadow: 0 0 0 0.2rem rgba(168,85,247,0.2);
}

/* Button */
.contact-section .btn-submit {
    background: #1d4ed8;
    color: #fff;
    padding: 12px;
    border-radius: 30px;
    font-weight: 600;
}

.contact-section .btn-submit:hover {
    background: #1e40af;
}

/* RIGHT SIDE */
.contact-section .circle-bg {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #a855f7, #6f42c1);
    border-radius: 50%;
    margin: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

/* Image */
.contact-section .person-img {
    position: relative;
    z-index: 2;
    max-width: 280px;
}

/* Floating Cards */
.contact-section .floating-card {
    position: absolute;
    background: #fff;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    z-index: 3;
}

.contact-section .card-1 {
    top: 20%;
    left: 10%;
    text-align: center;
}

.contact-section .card-2 {
    bottom: 10%;
    right: 10%;
}

/* Icon */
.contact-section .icon {
    font-size: 18px;
    color: #a855f7;
}

.contact-section .img-card{
  max-width: 360px; 
  position: relative;
  margin-left: 100px;
}

.contact-section .team-img {
    position: relative;
    z-index: 2;
    max-width: 360px;
}

/* Floating Cards */
.contact-section .floating-card {
    position: absolute;
    background: #fff;
    padding: 10px 10px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    z-index: 3;
}

.contact-section .floating-card h5 {
    margin: 0;
    color: #DC4AF2;
    font-weight: bold;
}

.contact-section .floating-card p {
    margin: 0;
    font-size: 14px;
    color: #333333;
    font-weight: 500;
}

/* Top Card */
.contact-section .top-card {
    top: 10%;
    left: -13%;
    text-align: center;
}

/* Bottom Card */
.contact-section .bottom-card {
    bottom: 0%;
    right: 0%;
}

/* Icon */
.contact-section .icon {
    font-size: 20px;
    margin-bottom: 5px;
    color: #6f42c1;
}



/* RESPONSIVE */
@media (max-width: 991px) {
  .contact-section .img-card{ 
      margin-left:  0px;
    }
    .contact-section .circle-bg {
        width: 250px;
        height: 250px;
    }

    .contact-section .person-img {
        max-width: 200px;
    }

    .contact-section .card-1 {
        left: 5%;
    }

    .contact-section .card-2 {
        right: 5%;
    }
}

@media (max-width: 576px) {
    .contact-section h2 {
        font-size: 22px;
    }

    .contact-section .circle-bg {
        display: none;
    }
}


.contact-info-section {
    background: #ffffff;
    padding: 60px 0px;
}

/* Highlight */
.contact-info-section .text-highlight {
    color: #a855f7;
}

/* Card */
.contact-info-section .contact-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid #e5e5ef;
}

/* Item */
.contact-info-section .contact-item {
  display: flex;
  align-items: flex-start; /* ✅ fix */
  gap: 15px;
}

/* Icon */
.contact-info-section .contact-card .icon-box {
    width: 55px;
    height: 55px;
    background: #F5F7FA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #494F5D;
    font-size: 22px;
    flex-shrink: 0; /* ✅ prevents shrinking */
    margin-top: 4px; /* 🔥 fine-tune alignment */
}

/* Divider */
.contact-info-section .contact-card hr {
    margin: 20px 0;
    border-color: #e0e0ea;
}

/* Map */
.contact-info-section .map-img {
    max-width: 100%;
    opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .contact-info-section .contact-card {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .contact-info-section h2 {
        font-size: 22px;
    }
}

.input-wrapper {
    position: relative;
}

.input-wrapper.error input,
.input-wrapper.error select {
    border: 1.5px solid #dc3545;
    padding-right: 40px;
}

.error-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: #dc3545;
    color: #fff;
    width: 20px;
    height: 20px;
    font-size: 12px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
}

.input-wrapper.error .error-icon {
    display: flex;
}

.error-text {
    color: #dc3545;
    font-size: 13px;
}





.hero-career {
    background: #ECECFF;
    padding: 60px 0px 0px 0px; 
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Gradient Text */
.hero-career .text-gradient {
    color: #4A66F2;
}

.hero-career::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 681px;   /* set size */
    height: 486px;
    background-image: url('../images/hero-career-before.svg'); /* 👈 image here */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right top;

    z-index: -1; /* behind content */
    pointer-events: none;
}

 

/* RIGHT SIDE */
.hero-career .circle-bg {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, #b69347, #6f42c1);
    border-radius: 50%;
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    z-index: 1;
}

.hero-career .team-img {
    position: relative;
    z-index: 2;
    max-width: 360px;
}

/* Floating Cards */
.hero-career .floating-card {
    position: absolute;
    padding: 10px 20px;
    border-radius: 12px;
    background: #FFFFFF99;
    backdrop-filter: blur(10.514656066894531px);
    box-shadow: 0px 5px 10px 0px #33303040;
    z-index: 3;
}

.hero-career .floating-card h5 {
    margin: 0;
    color: #4F4F4F;
    font-weight: bold;
}

.hero-career .floating-card p {
    margin: 0;
    font-size: 14px;
    color: #4F4F4F;
}

/* Top Card */
.hero-career .top-card {
    top: 10%;
    right: -13%;
    text-align: center;
}

/* Bottom Card */
.hero-career .bottom-card {
    bottom: 20%;
    left: -15%;
}

/* Icon */
.hero-career .icon {
    font-size: 20px;
    margin-bottom: 5px;
    color: #6f42c1;
}

.hero-career  .btn-career {
    background: #0051FE;
    color: #fff;
    padding: 15px 20px;
    border-radius: 100px;
    font-weight: 600; 
    font-size: 16px; 
}

.hero-career .btn-career:hover {
  color: #fff !important;
  background: #0045d8 !important;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .hero-career .circle-bg {
        width: 280px;
        height: 280px;
    }

    .hero-career .team-img {
        max-width: 240px;
    }

    .hero-career .top-card {
        top: 0;
        right: -20%;
    }

    .hero-career .bottom-card {
        bottom: 40px;
        left: -22%;
    }
}

@media (max-width: 576px) {
    .hero-career .stat-box {
        padding: 15px;
    }

    .hero-career h1 {
        font-size: 24px;
    }

    .hero-career .circle-bg {
        display: none;
    }

    .hero-career::before {
      opacity: 0.3;
  }

}


.hero-career-growth {
    position: relative;
    padding: 30px 0;
    background: #ffffff;
    border-radius: 40px;
    overflow: hidden;
}


/* Content above */
 

.hero-career-growth .containerRow {
    position: relative;
    z-index: 2; 
    border: 1px solid #C5CCD8;
    border-radius: 20px;
     padding: 30px;}


/* List Styling */
.hero-career-growth .career-list {
    list-style: none;
    padding: 0;
}

.hero-career-growth  .career-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.hero-career-growth  .career-list li::before {
    content: "";
    width: 10px;
    height: 10px;
    border: 2px solid #6f42c1;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 6px;
}



.career-section{
  background: #F2F2FF;
  padding: 60px 0px;
}

.career-section .job-card {
    border-radius: 15px;
    border: none;
    margin-bottom: 20px;
    background: #ffffff;
    padding-bottom: 5px;
    box-shadow: 0px 0px 4px 0px #3535351F;
}

.career-section .accordion-button {
    box-shadow: none !important;
}

.career-section .accordion-body {
    background: #F5F7FA;
    border-radius: 10px;
    margin: 0px 15px 15px;
}

.career-section .btn-details {
    background: #ffffff;
    color: #0051FE;
    padding: 6px 20px;
    border-radius: 100px;
    font-weight: 600; 
    font-size: 14px; 
    border: 1px solid #0051FE

}

.career-section .btn-details:hover {
  color: #fff !important;
  background: #0051FE !important;
}

.career-section .btn-applyNow {
    background: #0051FE;
    color: #ffffff;
    padding: 6px 20px;
    border-radius: 100px;
    font-weight: 600; 
    font-size: 14px; 
    border: 1px solid #0051FE

}

.career-section .btn-applyNow:hover {
  color: #0051FE !important;
  background: #ffffff !important;
}

.career-section .btn-applied {
    background: #E0F7E1;
    color: #36A54B;
    padding: 6px 30px;
    border-radius: 100px;
    font-weight: 600; 
    font-size: 14px; 
    border: 1px solid #E0F7E1

}

.career-section .btn-applied:hover {
  color: #36A54B !important;
  background: #E0F7E1 !important;
}

.application h1{font-size: 36px}

.application .left-panel {
  background: #eef3ff;
 /* min-height: 100vh;*/
  position: relative;
}

.application .left-panel:before {
    content: '';
    background-color: #eef3ff;
    position: absolute;
    height: 100%;
    width: 1500px;
    left: -1500px;
    top: 0;
}

.application .left-panel span {
  color: #0d6efd;
}

.application .right-panel {
  background: #fff;
}

.application .submit-btn {
  background: #0d6efd;
  color: #fff;
  border-radius: 50px;
  padding: 12px;
}

.application .upload-box {
  border: 2px dashed #ccc;
  padding: 30px;
  border-radius: 15px;
}

.application .file-preview {
  display: flex;
  justify-content: space-between;
  background: #f1f1f1;
  padding: 10px;
  border-radius: 10px;
}

.application .error {
  color: red;
  font-size: 13px;
}

.application .file-preview {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f5f7fa;
    padding: 10px 15px;
    border-radius: 8px;
    margin-top: 10px;
}

.form-control:focus,
.form-select:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .05rem rgba(13,110,253,.25)
}

.application .btn-upload-resume {
    background: #F1F6FF;
    color: #0051FE;
    padding: 6px 20px;
    border-radius: 100px;
    font-weight: 600; 
    font-size: 14px; 
    border: 1px solid #0051FE

}

.application .btn-upload-resume:hover {
  color: #fff !important;
  background: #0051FE !important;
}

@media (max-width: 576px) {
    

    .application h1 {
        font-size: 24px;
    }

  }



.hero-SAPS4HANA {
      position: relative; 
      display: flex;
      align-items: center;
      color: #fff;
      padding: 20px 0px;
      /* Background Image */
      background: url('../images/SAPS4HANA.jpg') no-repeat center center/cover;
  }
 
.hero-SAPS4HANA  .hero-content h1 {
    font-weight: 700;
    font-size: 48px;
    color: #fff;
}

.hero-SAPS4HANA  .hero-content p {
    color: #dcdcdc;
    font-size: 16px;
    margin-top: 15px;
}

.hero-SAPS4HANA  .btn-custom {
    background-color: #EFF0FF;
    color: #2E20AC;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 500;
    margin-top: 20px;
}

.hero-SAPS4HANA  .btn-custom:hover {
    background-color: #d9dbf6;
}

.hero-SAPS4HANA  .hero-img {
    max-width: 100%;
}

 @media (max-width: 980.98px) {
.hero-SAPS4HANA { 
      padding: 20px 0px;
    }
  }

@media (max-width: 768.98px) {
    .hero-SAPS4HANA  .hero-content h1 {
        font-size: 32px;
    }

     .hero-SAPS4HANA  {
        text-align: center;
        padding: 40px 20px;
    }
}



.sap-section {
    padding: 80px 0;
  }

  .sap-img {
    border-radius: 20px;
    overflow: hidden;
  }

  .sap-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .sap-title {
    font-size: 36px;
    font-weight: 600;
    color: #333;
  }

  .sap-title span {
    color: #5b4bff;
    font-weight: 700;
  }

  .sap-desc {
    color: #666;
    margin: 20px 0;
    line-height: 1.7;
    font-size: 14px;
  }

  .sap-list {
    list-style: none;
    padding: 0;
  }

  .sap-list li {
    margin-bottom: 12px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
  }

  .sap-list i {
    color: #5b4bff;
    font-size: 18px;
  }

  .sap-link {
    margin-top: 20px;
    display: inline-block;
    color: #0d5efd;
    font-weight: 600;
    text-decoration: none;
  }

  .sap-link:hover {
    text-decoration: underline;
  }

  @media (max-width: 768px) {
    .sap-title {
      font-size: 28px;
    }

    .sap-section {
      padding: 50px 20px;
    }
  }



.process-section{
  background: #fff;
  padding: 60px 0px;
}

/* AFTER pseudo element */
.process1::after {
  content: "";
  position: absolute;
  width: 610px;
  height: 320px;
  background: url('../images/vector1.svg') no-repeat center;
  background-size: contain;
  top: 60px;   /* adjust as per design */
  left: 60px; /* push towards image side */
  z-index: 1;
}

.process2::after {
  content: "";
  position: absolute;
  width: 610px;
  height: 320px;
  background: url('../images/vector2.svg') no-repeat center;
  background-size: contain;
  top: 60px;   /* adjust as per design */
  right: 0px; /* push towards image side */
  z-index: 1;
}

.process-section h2 span {
  color: #6f63ff;
}

/* Content box */
.process-content {
  position: relative;
  padding-left: 60px;
}

/* Step Number Circle */
.step-number {
  position: absolute;
  left: 0;
  top: 5px;
  width: 36px;
  height: 36px;
  background: #230B34;
  color: #fff;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Title */
.process-content h4 {
  color: #7066F6;
  font-weight: 800;
  margin-bottom: 10px;
}

/* Paragraph */
.process-content p {
  color: #6c757d;
  font-size: 14px;
  line-height: 1.6;
}

/* Images */
.process-section img {
  border-radius: 16px;
}

/* Responsive tweaks */
@media (max-width: 1280px) {
.process1::after {
  width: 500px;
  height: 280px;
  top: 60px;   /* adjust as per design */
  left: 60px; /* push towards image side */

}

.process2::after {
  width: 500px;
  height: 280px;
  top: 60px;   /* adjust as per design */
  right: 0px; /* push towards image side */
}

}

@media (max-width: 1200px) {
.process1::after {
  width: 440px;
  height: 220px;
  top: 70px;   /* adjust as per design */
  left: 60px; /* push towards image side */

}

.process2::after {
  width: 440px;
  height: 220px;
  top: 70px;   /* adjust as per design */
  right: 0px; /* push towards image side */
}

}

@media (max-width: 1023px) {
.process1::after {
   display: none;
}

.process2::after {
  display: none;
}

}

@media (max-width: 991px) {
  .process-content {
    padding-left: 50px;
    margin-bottom: 20px;
  }
}



.sap-integration-section {
    background: #ffffff;
}

.integration-card {
    background: #f2f5fb;
    border-radius: 50px;
    overflow: hidden;
}

.content-wrapper {
    padding: 50px 60px;
}

.section-label {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    color: #666;
    margin-bottom: 5px;
}

.main-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #222;
    margin-bottom: 15px;
}

.main-title span {
    color: #5b3df5;
}

.description {
    font-size: 14px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
    max-width: 90%;
}

/* Feature List */
.feature-list li {
    position: relative;
    padding-left: 42px;
    margin-bottom: 18px;
    font-size: 14px;
    color: #333;
}

.feature-list li::before {
    content: "\F26B";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0; 
    color: #5b3df5;
    font-size: 20px;
    font-weight: normal;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CTA Link */
.expert-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 24px;
    font-weight: 700;
    color: #0057ff;
    text-decoration: none;
    transition: 0.3s;
}

.expert-link:hover {
    gap: 16px;
    color: #003dcc;
}

/* Image */
.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 100%;
}

/* Responsive */
@media (max-width: 1199px) {
    .main-title {
        font-size: 28px;
    }

    .description,
    .feature-list li {
        font-size: 17px;
    }

    .expert-link {
        font-size: 24px;
    }
}

@media (max-width: 991px) {
    .content-wrapper {
        padding: 40px 30px;
    }

    .main-title {
        font-size: 30px;
    }

    .description {
        max-width: 100%;
    }

    .image-wrapper img {
        max-height: 400px;
        object-fit: cover;
    }

    .integration-card {
        border-radius: 30px;
    }
}

@media (max-width: 575px) {
    .main-title {
        font-size: 28px;
    }

    .description,
    .feature-list li {
        font-size: 16px;
    }

    .expert-link {
        font-size: 20px;
    }

    .content-wrapper {
        padding: 30px 20px;
    }
}

.case-study-section {
    background: #fff;
    overflow: hidden;
    padding: 25px;
}

.left_col {
    position: relative;
    padding-left: 0px;
}

.left_col::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 100%;
    width: 100vw;
    background: #5744AB;
}

.case-image-wrapper {
    position: relative;
    padding: 40px 40px 100px;
    z-index: 1;
    overflow: hidden;
}

.case-image-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #5744AB;
    clip-path: polygon(0 0, 60% 0, 100% 100%, 0 100%);
    border-radius: 0 30px 30px 0;
    z-index: -1;
}

/* Image */
.case-image {
    width: 100%;
    border-radius: 28px;
    display: block;
    object-fit: cover;
    /*box-shadow: 0 12px 30px rgba(0,0,0,0.08);*/
}

/* Text */
.section-label {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    color: #666;
    margin-bottom: 20px;
}

.case-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: #222;
    margin-bottom: 25px;
}

.case-title span {
    color: #5b3df5;
}

.case-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 18px;
}

/* CTA */
.case-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 28px;
    font-weight: 700;
    color: #0057ff;
    text-decoration: none;
    transition: 0.3s ease;
}

.case-link i {
    font-size: 32px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.case-link:hover i {
    transform: translateX(6px);
}

/* Responsive */
@media (max-width: 1199px) {
    .case-title {
        font-size: 28px;
    }

    .case-content p {
        font-size: 14px;
    }

    .case-link {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .case-image-wrapper {
        padding: 30px 30px 70px;
    }

    .case-title {
        font-size: 24px;
    }

  /*  .case-content {
        text-align: center;
    }*/

    .case-link {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .case-image-wrapper {
        padding: 20px 20px 50px;
    }

    .case-title {
        font-size: 24px;
    }

    .case-content p {
        font-size: 14px;
    }

    .case-link {
        font-size: 18px;
    }
}


.challenge-section {
      padding: 80px 0;
    }

    .challenge-section .section-title {
      font-size: 32px;
      font-weight: 600;
      margin-bottom: 40px;
    }

    /* Left Card */
    .challenge-section .info-card {
      background: linear-gradient(135deg, #5b4bff, #6a3df0);
      color: #fff;
      border-radius: 20px;
      padding: 30px;
      height: 100%;
    }

    .challenge-section .info-card h3 {
      font-size: 28px;
      margin-bottom: 15px;
    }

    .challenge-section .info-card p {
      font-size: 15px;
      line-height: 1.7;
    }

    /* Swiper */
    .challenge-section  .swiper {
      padding-bottom: 40px;
    }

    .challenge-section .challengeCard {
      border-radius: 20px;
      overflow: hidden;
      position: relative;
    }

    .challenge-section .challengeCard img {
      width: 100%;
      height: 300px;
      object-fit: cover;
    }

    /* Overlay */
    .challenge-section .card-overlay {
      position: absolute;
      inset: 0;
      background: rgba(10, 25, 70, 0.85);
      color: #fff;
      padding: 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      opacity: 0;
      transition: 0.4s;
    }

    .challenge-section .challengeCard:hover .card-overlay {
      opacity: 1;
    }

    .challenge-section .card-overlay h5 {
      font-size: 18px;
      margin-bottom: 10px;
    }

    .challenge-section .card-overlay p {
      font-size: 14px;
    }

    /* Title below image */
    .challenge-section .card-title-bottom {
      text-align: center;
      margin-top: 10px;
      font-weight: 600;
    }

    /* Navigation buttons */
    .challenge-section .swiper-button-next,
    .challenge-section .swiper-button-prev {
      width: 45px;
      height: 45px;
      background: #fff;
      border-radius: 50%;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      color: #333;
    }

    .challenge-section .swiper-button-next svg,
    .challenge-section .swiper-button-prev svg{
        width: 20px;
        height:20px;
    }

    .challenge-section .swiper-button-next::after,
    .challenge-section .swiper-button-prev::after {
      font-size: 10px;
      font-weight: bold;
    }

    @media (max-width: 768px) {
      .challenge-section .section-title {
        font-size: 26px;
      }
    }



.implementation-approach {
  background: #fff;
  padding: 60px;
}

.implementation-approach .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1d1d1f;
}

.implementation-approach .section-title span{
    color: #5132DB;
}

  .approach-tabs {
    background: #f5f6fb;
    border-radius: 50px;
    padding: 8px;
    gap: 10px;
    flex-wrap: wrap;
}

.approach-tabs .nav-link {
    color: #333;
    font-weight: 600;
    border-radius: 14px;
    padding: 16px 24px;
    background: transparent;
    position: relative;
}

.approach-tabs .nav-link:hover,
.approach-tabs .nav-link.active {
    color: #5b3df5;
    background: transparent;
}

.approach-tabs .nav-link:hover::after,
.approach-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    left: 15%;
    bottom: -8px;
    width: 70%;
    height: 4px;
    background: #5b3df5;
    border-radius: 10px;
}

.approach-image-box {
    background: #f5f6fb;
    border-radius: 28px;
    padding: 30px;
}

/* Content */
.approach-content .subheading {
    font-size: 18px;
    font-weight: 500;
    color: #888;
    display: inline-block;
    margin-bottom: 10px;
}

.approach-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

.approach-content h3 span {
    color: #5132DB;
}

.approach-content p {
    font-size: 20px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.approach-content h5 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.approach-list {
    list-style: none;
    padding: 0;
}

.approach-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 14px;
}

.approach-list li::before {
    content: "\F518";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    color: #7d2ae8;
}


/* Responsive */
@media (max-width: 1199px) {
    .section-title {
        font-size: 34px;
    }

    .approach-content h3 {
        font-size: 38px;
    }

    .approach-content p {
        font-size: 18px;
    }
}

@media (max-width: 991.98px) {
    .approach-tabs .nav-link{
        padding: 10px 24px;
    }
    .approach-tabs .nav-link:hover::after,
    .approach-tabs .nav-link.active::after {
        left: 4%;
        width: 92%; 
    }
    .approach-tabs {
        flex-direction: column;
        border-radius: 20px;
    }

    .approach-tabs button {
        width: 100%;
        text-align: left;
    }

    .approach-tabs button.active::after {
        left: 0;
        width: 100%;
    }


    .approach-list {
        text-align: left;
        display: inline-block;
    }

    .approach-content h3 {
        font-size: 32px;
    }
    .implementation-approach .section-title {
      font-size: 30px;
    }
}

 

@media (max-width: 575px) {
    .implementation-approach .section-title {
        font-size: 28px;
    }

    .approach-content h3 {
        font-size: 26px;
    }

    .approach-content p,
    .approach-list li {
        font-size: 16px;
    }
}