body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  min-height: 400px;
  overflow: hidden;
  padding-top: 70px;
}

#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #1f3c88;
  /* blue shade */
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: none;
  /* initially hidden */
  z-index: 999;
  transition: 0.3s ease;
}

#scrollTopBtn:hover {
  background-color: #163172;
  transform: translateY(-5px);
}

.main-header {
  position: relative;
  left: 0px;
  top: 0px;
  width: 100%;
  z-index: 9999;
  transition: all 500s ease;
  -webkit-transition: all 500s ease;
  -ms-transition: all 500s ease;
  -o-transition: all 500s ease;
  -moz-transition: all 500s ease;
}

.main-header.fixed .header-lower {
  left: 0px;
  border-top: none;
  position: fixed;
  background: #fff;
  width: 100%;
}

.main-header .header-lower {
  position: relative;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding: 0px;
  padding-top: 0px;
  left: 0px;
  top: 0px;
  width: 100%;
  transition: padding 500ms ease;
  -moz-transition: padding 500ms ease;
  -webkit-transition: padding 500ms ease;
  -ms-transition: padding 500ms ease;
  -o-transition: padding 500ms ease;
}

.main-header .header-top {
  position: relative;
  padding: 0px;
  color: #31285c;
  background-color: #31285c;
  border-bottom: 1px solid #31285c;
}

.container-header {
  padding: 5px 35px;
  width: 100%;
}

.social {
  float: left;
  float: left !important;
}

ul,
li {
  list-style: none;
  padding: 0px;
  margin: 0px;
  font-family: 'Roboto', sans-serif;
  color: #8d8d8d;
}

.header-top ul {
  padding: 0;
  float: right;
}

.header-top ul li {
  display: inline-block;
  list-style: none;
  border-left: 1px solid #323437;
}

.header-top ul li a {
  color: #fff;
  font-weight: 400;
  padding: 0 9px;
  font-size: 12px !important;
  line-height: 8px;
  text-decoration: none;
}

.header-top ul li a .fa {
  color: #e51a4b;
  font-size: 12px;
  margin-right: 4px;
}

.top-info {
  text-align: right;
}

.header {
  background: #fff;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
  margin: auto;
  padding: 5px 35px;
  height: 50px;
}

.header-container .logo {
  float: left;
}

.header-container .nav {
  float: right;
}

.logo img {
  height: 45px;
  width: auto;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
}

.nav ul li {
  position: relative;
}

.nav ul li a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  font-size: 14px;
}

.nav ul li a:hover {
  color: #e51a4a;
}

/* Mega Menu */
.nav {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: 45px;
  left: 0;
  width: max-content;
  /* min-width: 40vw;
  width: 100vh; */
  background: #ffffff;
  border-top: 5px solid #ddd;
  display: flex;
  gap: 40px;
  padding: 40px 40px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 10px 10px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

/* show */
.mega-parent:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}

.mega-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mega-column a {
  color: #333;
  font-weight: 500;
  font-size: 14px;
}

.mega-parent:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  top: 45px;
}

.mega-parent {
  position: relative;
}

.mega-parent>a {
  position: relative;
}

/* arrow */
.mega-parent::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 0 10px 12px 10px;
  border-style: solid;
  border-color: transparent transparent #ddd transparent;
  opacity: 0;
  transition: 0.3s;
}

/* show arrow only on hover */
.mega-parent:hover::after {
  opacity: 1;
}

/* .mega-parent:hover .mega-menu::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 0 12px 12px 12px;
  border-style: solid;
  border-color: transparent transparent #f4f4f4 transparent;
} */
/* Icons */
.nav-link i {
  font-size: 12px;
  font-weight: 500;
}

.icons i {
  font-size: 20px;
  margin-left: 15px;
  cursor: pointer;
}

.request {
  background: #e51a4a;
  border-radius: 5px;
  color: #fff !important;
}

/* Hamburger lines */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  float: right;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #000;
}

.mobile-header {
  display: none;
  justify-content: flex-end;
  margin-bottom: 30px;
  position: absolute;
  top: 0;
  right: 20px;
  color: #2a2828;
}

.close-btn {
  font-size: 28px;
  cursor: pointer;
  font-weight: bold;
}

section {
  padding-top: 100px;
  padding-bottom: 100px;
}

section img {
  width: 100%;
}

/* About us section css */

.about-image {
  max-width: 100%;
  height: auto;
  min-height: 60vh;
  /* border-radius: 5px 45px; */
  border-radius: 60px !important;
  transition: transform 0.5s ease;
  /* box-shadow: 0 10px 25px rgb(0 0 0 / 23%); */
}

.about-image:hover {
  transform: scale(1.05);
}

.readMore_btn {
  background-color: #e51a4a !important;
  text-decoration: none;
  color: #ffff !important;
  border-radius: 40px !important;
  font-family: 'Roboto', sans-serif;
  padding: 10px 25px;
  /* font-family: 'Montserrat-Regular' */
}

.heading {
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  text-transform: capitalize;
  color: #013356 !important;
  font-size: 36px;
  margin-top: 25px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.heading-para {
  color: #013356;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  transition: all .3s;
  margin-bottom: 25px;
}

.heading-top {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  background-color: #1356ad;
  padding: 4px 16px;
  border-radius: 30px;
  display: inline-block;
}

.heading2 {
  font-style: normal;
  font-weight: 700;
  line-height: 52px;
  text-transform: capitalize;
  color: #013356 !important;
  font-size: 55px;
  margin-top: 25px;
  margin-bottom: 20px;
}

#about p {
  /* color: #616976; */
  color: #013356;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  transition: all .3s;
  margin-bottom: 15px;
}

.highlighted-text:hover {
  background-size: 100% 100%;
  background-image: linear-gradient(rgb(226 26 77), rgb(231 23 77));
}

.highlighted-text {
  background-image: linear-gradient(rgb(229 26 74 / 59%), rgb(229 26 74));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 25%;
  transition: background-size 0.4s ease;
}

/* #about .heading2 span.about_under_highlight {
  position: relative;
}

#about .heading2 span.about_under_highlight::after {
  content: "";
  position: absolute;
  bottom: -48px;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url(../images/line2.svg);
  background-repeat: no-repeat;
} */


/* solution */

.digital-solution {
  padding: 80px 0;
  /* background: linear-gradient(135deg, #231d43, #1e293b); */
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
}

.solution-image img {
  width: 100%;
  /* height: 60vh; */
  border-radius: 45px 10px;
  transition: transform 0.5s ease;
}

.solution-image img:hover {
  transform: scale(1.05);
}

.solution-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #fff !important;
}

.solution-content p {
  font-size: 18px;
  color: #dfdbdb;
  margin-bottom: 20px;
}

.solution-content ul {
  list-style: none;
  padding: 0;
}

.solution-content ul li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #dfdbdb;
}

.btn-explore,
.cta a {
  display: inline-block;
  align-items: center;
  margin-top: 20px;
  padding: 12px 25px;
  background: #e51a4a;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-explore:hover,
.cta a:hover {
  background: #fff;
  box-shadow: 0 10px 25px rgb(0 0 0 / 43%);
  color: #100f0f;
}

/* Service */
.heading-white {
  color: #fff;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
  text-transform: capitalize;
}

.heading-white p {
  font-size: 18px;
  color: #dfdbdb;
  margin-bottom: 20px;
}

.heading-blue,
.heading-blue h1,
.heading-blue h2 {
  color: rgb(51 57 130);
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.section-title {
  color: rgb(51 57 130);
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
  text-transform: capitalize;
  text-align: center;
  margin-bottom: 10px;
}

.bg-dark p {
  color: #c7d1df;
}

.bg-gray {
  background: #f8f8f8;
}

.bg-light {
  background: #fff !important;
}

.bg-dark {
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e) !important;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.bg-dark .content li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #dfdbdb;
}

.bg-dark .content {
  color: #fff;
  margin-bottom: 10px;
}

.content li {
  margin-bottom: 10px;
  color: #212529;
  font-size: 14px;
}

.heading-blue p {
  color: rgb(51 57 130);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 40px;
}

.side-ul li {
  color: #555;
  font-size: 15px;
}

.services-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.service-card {
  width: 240px;
  height: 320px;
  perspective: 1000px;
}

.card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.7s;
  transform-style: preserve-3d;
}

.service-card:hover .card-inner {
  transform: rotateY(180deg);
}

/* FRONT SIDE */
.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  backface-visibility: hidden;
  box-shadow: 0 10px 25px rgb(51 57 129 / 34%);
}

.card-front img {
  width: 100%;
  height: 80%;
  object-fit: cover;
}

.service-title {
  text-align: center;
  padding: 20px 15px;
  font-weight: 600;
  background: #f5f5f5;
  color: #333982;
}

/* BACK SIDE */
.card-back {
  background: #ffffff;
  transform: rotateY(180deg);
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-back h4 {
  margin-bottom: 10px;
  color: #333982;
  font-size: 18px;
}

.card-back p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #555;
}

.read-btn {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid #c81741;
  color: #c81741;
  text-decoration: none;
  border-radius: 20px;
  transition: 0.3s;
}

.read-btn:hover {
  background: #c81741;
  color: #fff;
}

/* our expertise */
.list-unstyled li {
  font-size: 14px;
  color: #FFF;
  opacity: .85;

}

.section-subtitle {
  color: #666;
  font-size: 16px;
  margin-top: 10px;
}

/* Expertise Cards */
.expertise-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.expertise-card i,
.expertise-card .icon {
  font-size: 35px;
  color: #4f46e5;
  margin-bottom: 20px;
}

.expertise-card h5,
.expertise-card h4,
.expertise-card h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.expertise-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 0;
}

.expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Stats Row */
.stats-row h3 {
  font-size: 32px;
  font-weight: 700;
  color: #4f46e5;
}

.stats-row p {
  margin-top: 5px;
  font-size: 14px;
  color: #666;
}

/* Product */

.ivory-products {
  padding: 100px 8%;
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  color: #fff;
}

/* HEADER */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

/* .section-header span {
  color: #ce1743;
  font-weight: 600;
  letter-spacing: 1px;
} */

.section-header h2 {
  font-size: 36px;
  margin: 15px 0;
  color: #ffffff;
}

.section-header p {
  color: #94a3b8;
}

/* TABS */
.tabs {
  text-align: center;
  margin-bottom: 40px;
}

.tab-btn {
  background: #191639;
  border: 1px solid #171437;
  color: #cbd5e1;
  padding: 12px 25px;
  margin: 5px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  background: #1b183d9c;
}

.tab-btn.active {
  background: linear-gradient(135deg, #ce1743, #d31844);
  color: #fff;
  border: none;
  box-shadow: 0 5px 20px rgb(208 24 68 / 54%);
}

/* TAB CONTENT */
.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

.tab-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #0f0c29, #19163be3, #24243e);
  padding: 30px;
  border-radius: 25px;
  box-shadow: 0 5px 20px rgb(6 9 16 / 38%);
}

.tab-inner .text {
  flex: 1;
  min-width: 300px;
}

.tab-inner .text h3 {
  color: #ffffff;
  margin-bottom: 15px;
}

.tab-inner .text p {
  color: #bfcfe5;
  margin-bottom: 20px;
}

.tab-inner .text ul {
  list-style: none;
  padding: 0;
}

.tab-inner .text ul li {
  margin-bottom: 10px;
  color: #cbd5e1;
}

/* IMAGE */
.tab-inner .image {
  flex: 1;
  min-width: 300px;
}

.tab-inner img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s ease;
}

.tab-inner img:hover {
  transform: scale(1.05);
}

/* ANIMATION */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ERP  */

.erp-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Floating gradient glow */
.erp-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #4f46e5, transparent 70%);
  opacity: 0.2;
}

.erp-title {
  font-size: 40px;
  font-weight: 700;
}

.erp-subtitle {
  color: #cbd5e1;
  max-width: 600px;
  margin: auto;
}

.erp-timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: 70px;
  gap: 20px;
  flex-wrap: wrap;
}

.erp-progress-line {
  position: absolute;
  top: 30px;
  left: 5%;
  width: 90%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
}

.erp-progress-line::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 0;
  background: #4f46e5;
  transition: width 2s ease;
}

.erp-step {
  flex: 1;
  min-width: 220px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  transform: translateY(40px);
  opacity: 1;
  transition: all 0.8s ease;
}

.erp-step.active {
  transform: translateY(0);
  opacity: 1;
}

.step-circle {
  width: 60px;
  height: 60px;
  /* background: #4f46e5; */
  background: #e51a4a;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* Stats */
.erp-stats {
  margin-top: 80px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.erp-stats h3 {
  font-size: 36px;
  color: #4f46e5;
}

/* talent solution process modal */

/* ---------------- PROCESS SECTION ---------------- */

.process {
  background: #fff;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.step-process-line {
  flex: 1;
  min-width: 200px;
  text-align: center;
  position: relative;
}

.step-circle {
  width: 60px;
  height: 60px;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(#120f2e, #5648cf);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 15px;
}

.step-process-line h4 {
  margin-bottom: 8px;
}

.step-process-line p {
  font-size: 13px;
  color: #555;
}

/* carousel card */

.talent-section {
  padding: 80px 0;
  background: #f8f9fb;
}

.section-title {
  font-size: 32px;
  margin-bottom: 50px;
}

.slider-wrapper {
  overflow: hidden;
  position: relative;
}

.slider {
  display: flex;
  gap: 30px;
  transition: 0.5s ease;
}

.slider-card {
  min-width: calc(50% - 15px);
  /* 2 cards visible */
  display: flex;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0, 123, 255, 0.08);
  overflow: hidden;
}

.card-img {
  width: 40%;
}

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

.card-content {
  width: 60%;
  padding: 25px;
}

.tag {
  font-size: 12px;
  background: #e6f0ff;
  color: #007bff;
  padding: 4px 10px;
  border-radius: 20px;
}

.card-content h3 {
  margin: 15px 0 10px;
  font-size: 18px;
}

.card-content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.card-content a {
  font-size: 14px;
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

/* Bottom Right Controls */
.controls {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.arrows button {
  background: none;
  border: 1px solid #ccc;
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.arrows button:hover {
  background: #007bff;
  color: #fff;
  border-color: #007bff;
}

/* new one erp */

.erp-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

.erp-left {
  flex: 1;
  min-width: 300px;
}

.erp-badge {
  background: #e51a4a;
  padding: 6px 15px;
  border-radius: 30px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 20px;
}

.erp-left h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #fff !important;
}

.erp-left p {
  color: rgba(255, 255, 255, 0.80);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

/* PROGRESS BAR */

.progress-item {
  margin-bottom: 25px;
}

.progress-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0;
  background: #e51a4a;
  border-radius: 20px;
  transition: width 1.5s ease;
}

/* CARDS */

.erp-right {
  flex: 1;
  min-width: 300px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.erp-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: 0.4s;
  opacity: 0;
  transform: translateY(60px);
}

.erp-card i {
  font-size: 32px;
  margin-bottom: 15px;
  color: #e51a4a;
}

.erp-card.active {
  opacity: 1;
  transform: translateY(0);
}

.erp-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

/* why choose us */

.why-choose {
  padding: 80px 0;
  /* background: #eaf3f8; */
  background: #f8f8f8;
}

.title-underline {
  width: 60px;
  height: 4px;
  background: #ff7a00;
  margin: 10px auto 0;
  border-radius: 5px;
}

/* Cards */
.choose-card {
  display: flex;
  gap: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

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

.choose-card h5 {
  font-weight: 600;
  margin-bottom: 8px;
}

.choose-card p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* Icon Box */
.icon-box {
  width: 60px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
}

.icon-box.blue {
  background: #4f46e5;
}

.icon-box.purple {
  background: #9333ea;
}

.icon-box.red {
  background: #ef4444;
}

.icon-box.green {
  background: #22c55e;
}

/* Image */
/* .image-wrapper img {
  width: 100%;
  height: 80vh;
  border-radius: 100px 10px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
} */
.image-wrapper {
  position: relative;
  display: inline-block;
}

.image-wrapper img {
  width: 100%;
  height: 80vh;
  border-radius: 100px 10px;
  position: relative;
  z-index: 2;
}

/* Top Right Color Background */
/* .image-wrapper::before {
  content: "";
  position: absolute;
  top: -5px;
  right: -5px;
  width: 400px;
  height: 400px;
  background: #e83c65;
  border-radius: 100px 10px;
  z-index: 1;
} */

/* Company profile page */
.company-right {
  flex: 1;
  min-width: 300px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.dark-card {
  transform: translateY(60px);
  background-color: #1b173d;
  padding: 40px 20px;
  margin-top: 30px;
  position: relative;
  z-index: 9;
  min-height: 210px;
  text-align: center;
  transition: all .4s;
}

.dark-card.active {
  opacity: 1;
  transform: translateY(0);
}

.dark-card:hover {
  transform: translateY(-10px);
  background: rgb(23 20 56 / 43%);
}

.dark-card i {
  font-size: 40px;
  margin-bottom: 20px;
}

.dark-card h3 {
  font-size: 22px;
}

.dark-card h2 {
  /* font-size: 42px;
  font-weight: 700;
  color: #e51a4a;
  display: inline-block; */

  color: #FFF;
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 62px;
  text-transform: capitalize;
  display: inline-block;
}

.dark-card span {
  font-size: 56px;
  font-weight: 600;
  color: #fff;
}

.dark-card h4 {
  margin-top: 10px;
  font-size: 16px;
  color: #ddd;
}

.approach-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.approach-section .timeline {
  position: relative;
  max-width: 1000px;
  margin: auto;
}

.approach-section .timeline::before {
  content: '';
  position: absolute;
  width: 4px;
  background: #c81741;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.approach-section .timeline-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
}

.approach-section .timeline-box {
  width: 45%;
  background: #fff;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgb(51 57 130 / 18%);
  border: 1px solid #ffc0cb38;
  position: relative;
}

.approach-section .timeline-box h4 {
  color: #c81741;
  margin-bottom: 8px;
}

.approach-section .timeline-box p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

/* Small circle on line */
.approach-section .timeline-row::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: #c81741;
  border-radius: 50%;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
}

.side-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .webdev-section {
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  padding: 100px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
} */

/* .webdev-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
} */

.webdev-left h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
}

.subtitle {
  font-size: 16px;
  opacity: 0.85;
  margin-bottom: 40px;
  line-height: 1.6;
}

.webdev-steps .step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  gap: 20px;
}

.step-number {
  min-width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.step h4 {
  margin: 0;
  font-size: 18px;
}

.step p {
  margin-top: 8px;
  font-size: 14px;
  opacity: 0.8;
}

/* Right Image */

.side-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

/* Contact us */

.contact-section {
  background: #f8f8f8;
  padding: 60px 20px;
  font-family: 'Roboto', sans-serif;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  background: #fff;
  border-radius: 15px;
  padding: 40px;
  display: flex;
  gap: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Left Image */
.contact-image img {
  width: 100%;
  height: 90vh;
  border-radius: 15px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.contact-image:hover {
  transform: scale(1.05);
}

.contact-image {
  flex: 1;
  position: relative;
}

/* Right Form */
.contact-form {
  flex: 1;
}

.contact-form h2 {
  margin-bottom: 10px;
}

.contact-form p {
  font-size: 14px;
  margin-bottom: 25px;
  color: #666;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.form-group textarea {
  height: 90px;
  resize: none;
}

.send-btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 6px;
  background: linear-gradient(90deg, #333982, #333982);
  color: white;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.send-btn:hover {
  opacity: 0.9;
}

/* Overlay Card */
.contact-overlay-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 25px 30px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  max-width: 420px;
  transition: 0.3s ease;
}

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

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item i {
  width: 40px;
  height: 40px;
  background: #352774;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 14px;
}

.contact-item span {
  font-size: 15px;
  color: #333;
}

/* Bottom Info Section */
.contact-info {
  max-width: 1100px;
  margin: 30px auto 0;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.info-box {
  flex: 1;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-box i {
  font-size: 22px;
  margin-bottom: 10px;
  color: #333982;
}

.info-box h4 {
  margin-bottom: 5px;
}

.info-box p {
  font-size: 13px;
  color: #666;
}

/* Footer */
.copyright2 {
  /* border-top: 1px solid #D8E5FE; */
  padding: 16px 0;
  /* margin-top: 30px; */
}

.copyright-p {
  color: #fff;
  margin: 0;
}

.text-right {
  text-align: right;
}

.social-icon-footer ul li {
  display: inline-block;
  padding: 0 2px;
}

.social-icon-footer ul li a {
  border: 1px solid #fff;
  display: inline-block;
  height: 36px;
  width: 36px;
  text-align: center;
  line-height: 36px;
  border-radius: 50%;
  color: #fff;
  transition: all .3s;
}

.footer-area {
  background: #333982;
}


/* company profile css */

/* * ================= TEAM GRID ================= */
*/ .team-container {
  padding: 60px 10%;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
  padding: 20px;
  /* border: 1px solid #ddd; */
}
.leadership-card{
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
  padding: 15px;
}

.team-card:hover {
  transform: translateY(-10px);
}
.team-description p{
  font-size: 14px;
}

.team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  /* filter: grayscale(100%); */
  transition: 0.4s;
  border-radius: 10px;
}

.team-card:hover img {
  /* filter: grayscale(100%); */
}
.leadership-card:hover img{
  filter: grayscale(100%);
}

.team-info {
  text-align: center;
  padding: 25px;
}

.team-info h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.team-info .designation {
  font-size: 14px;
  color: #888;
  /* margin-bottom: 15px; */
}

.team-info p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-icons a {
  margin: 0 8px;
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
  display: flex;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #211d49;
  vertical-align: middle;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 8px 20px rgb(0 0 0 / 42%);
}

.social-icons a i {
  box-shadow: 0 8px 20px rgb(0 0 0 / 42%);
}

.social-icons a:hover i {
  color: #e51a4a;
}

/* ================= CTA ================= */

.cta {
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  color: #fff;
  padding: 60px 10%;
  text-align: center;
}

.cta h2 {
  margin-bottom: 20px;
}

/* Small subtitle */
.subtitle {
  font-size: 14px;
  font-weight: 600;
}

/* Main heading */
.why-title {
  font-weight: 700;
  margin-bottom: 15px;
}

/* Left Image Wrapper */
.image-wrapper-stylish {
  position: relative;
  text-align: center;
}

.image-wrapper-stylish img {
  width: 100%;
  /* max-width: 420px; */
  /* border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%; */
  object-fit: cover;
}

/* Play Button */
.play-btn {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  background: #e51a4a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.check-mark li {
  color: #666 !important;
  line-height: 1.7;
  font-size: 14px;
}

/* Feature Box */
.feature-box {
  text-align: center;
  padding: 20px;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: #e83c6521;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-weight: 700;
  color: #d61845;
  font-size: 20px;
}

.circle-top {
  position: absolute;
  top: -35px;
  /* half of circle height */
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  background: #e83c6521;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #d61845;
  font-size: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.feature-box h5 {
  font-weight: 600;
}

.feature-box p {
  font-size: 14px;
  color: #666;
}

.check-mark li {
  font-size: 14px;
}

/* zigzag */

.dt-zigzag {
  padding: 100px 8%;
  background: #f9fbff;
}

.zigzag-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 100px;
  flex-wrap: wrap;
}

.zigzag-row.reverse {
  flex-direction: row-reverse;
}

.zigzag-image {
  flex: 1;
}

.zigzag-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  transition: 0.5s;
}

.zigzag-image img:hover {
  transform: scale(1.05);
}

.zigzag-content {
  flex: 1;
}

.zigzag-content .tag {
  display: inline-block;
  background: #393189;
  color: #fff;
  padding: 6px 15px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 20px;
}

.zigzag-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
}

.zigzag-content p {
  color: #666;
  line-height: 1.7;
  font-size: 16px;
}

.zigzag-content ul li {
  color: #666;
  line-height: 1.7;
  font-size: 15px;
}

.dt-services .service-card {
  /* background: #fff;  */
  padding: 30px 15px;
  border-radius: 15px;
  /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05); */
  transition: 0.4s;
  width: auto;
  height: 100%;
  overflow: hidden;
  border-width: 1px;
  border-color: #b9b9b9;
  border: 1px solid #b9b9b9;
  text-align: center;
}

.dt-services .service-card h4,
.dt-services .service-card h3 {
  font-weight: 600;
  font-size: 18px;
  color: #202020 !important;
  line-height: 1.3em;
  text-align: center;
}

.service-card i {
  padding-left: 12px;
  font-size: 17px;
  color: #fff;
}
.btn-explore:hover i {
  padding-left: 12px;
  font-size: 17px;
  color: #e51a4a;
  transition: 0.3s;
}

.dt-services .service-card p {
  font-size: 14px;
  color: #202020 !important;
  line-height: 1.3em;
  margin-bottom: 0;
}

.dt-services .service-card img {
  width: 60px;
  margin-bottom: 30px;
}

/* digital process */

.process-wrapper {
  position: relative;
}

/* Vertical line */
.process-wrapper::before {
  content: "";
  position: absolute;
  left: 180px;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #5e3bee, #8a6cff);
  border-radius: 10px;
}

.process-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
  position: relative;
}

/* Stair spacing */
.step1 {
  margin-left: 0;
}

.step2 {
  margin-left: 60px;
}

.step3 {
  margin-left: 120px;
}

.step-box {
  /* background: linear-gradient(135deg, #5e3bee, #7a5af8); */
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  color: #fff;
  padding: 30px 40px;
  border-radius: 15px;
  min-width: 320px;
  box-shadow: 0 15px 40px rgba(94, 59, 238, 0.25);
  transition: 0.4s;
  z-index: 2;
}

.step-box span {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

.step-desc {
  max-width: 500px;
}

.step-desc h4 {
  margin-bottom: 10px;
  transition: 0.3s;
}

.step-desc p {
  color: #666;
  line-height: 1.7;
}

/* Hover highlight */
.process-row:hover .step-box {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(94, 59, 238, 0.35);
}

.process-row:hover .step-desc h4 {
  color: #201697;
}

.side-card {
  border-radius: 2px;
  padding: 20px;
  background: #313e87;
  margin-bottom: 10px;
}

.side-card .inner {
  font-size: 14px;
  word-spacing: 5px;
  line-height: 1.7;
  color: #fff;
}

.fa-quote-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  color: #e51a4a;
  font-size: 20px;
}

.fa-quote-left {
  display: inline-block;
  left: -5px;
  position: relative;
  color: #e51a4a;
  font-size: 20px;
}

/* ERP implementation SOlutions */


/* ================= SERVICES ================= */
.card-light {
  transition: 0.4s ease;
}

.card-light:hover {
  transform: translateY(-10px);
}

/* new ersion circle vise */

.erp-cycle-section {
  padding: 100px 0;
  background: #f8fafc;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.erp-title {
  font-size: 36px;
  margin-bottom: 60px;
  color: #1e293b;
}

.erp-cycle-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
}

.erp-side {
  width: 280px;
  text-align: left;
}

.erp-info {
  margin-bottom: 40px;
  padding: 15px 15px;
}

.erp-info:hover {
  background: #fff;
  padding: 15px 15px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.left .erp-info {
  margin-bottom: 40px;
  text-align: end;
}

.right .erp-info {
  margin-bottom: 40px;
  text-align: start;
}

.erp-info h4 {
  margin-bottom: 8px;
  color: #1e293b;
  font-size: 20px;
  font-weight: 600;
}

.erp-info p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
}

/* CIRCLE DESIGN */

.erp-circle-container {
  position: relative;
  width: 350px;
  height: 350px;
}

.erp-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(#2563eb 0deg 60deg,
      #f59e0b 60deg 120deg,
      #ec4899 120deg 180deg,
      #8b5cf6 180deg 240deg,
      #10b981 240deg 300deg,
      #ef4444 300deg 360deg);
  position: relative;
  transition: 0.4s ease;
}

.erp-circle:hover {
  transform: rotate(10deg);
}

.erp-circle::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.erp-center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 600;
  font-size: 22px;
  color: #1e293b;
  z-index: 2;
}

/* ================= MODULES ================= */
.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.module {
  background: #f1f3f5;
  padding: 25px;
  text-align: center;
  border-radius: 8px;
  font-weight: 500;
  transition: 0.3s;
}

.module:hover {
  background: #c70a37e6;
  color: #fff;
}

/* ================= CTA ================= */
.cta p {
  margin: 15px 0 25px;
}

/* digital process */

.wave-process {
  padding: 80px 20px;
  text-align: center;
}

.wave-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.wave-step {
  width: 180px;
  text-align: center;
  position: relative;
}

.circle {
  width: 120px;
  height: 120px;
  margin: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #fff;
  transition: 0.4s;
}

.wave-step h3 {
  margin-top: 20px;
  font-size: 18px;
}

.wave-step p {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}

/* Connectors */
.connector {
  width: 60px;
  height: 6px;
  background: #ccc;
}

/* Colors */
.wave-container .bg-red .circle {
  background: #e74c3c;
}

.wave-container .bg-green .circle {
  background: #27ae60;
}

.wave-container .bg-orange .circle {
  background: #f39c12;
}

.wave-container .bg-blue .circle {
  background: #3498db;
}

.wave-container .bg-purple .circle {
  background: #8e44ad;
}

/* Hover */
.wave-step:hover .circle {
  transform: scale(1.15);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* cloud solution */

.cloud-section {
  padding: 90px 20px;
}

.cloud-container {
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT IMAGE */
.cloud-image {
  position: relative;
}

.cloud-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* FLOATING ICONS */
.float-icon {
  position: absolute;
  font-size: 26px;
  color: #3F51B5;
  background: #ffffff;
  padding: 12px;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  animation: float 4s ease-in-out infinite;
}

.icon1 {
  top: 15%;
  left: -20px;
}

.icon2 {
  top: 60%;
  left: 10%;
  animation-delay: 1s;
}

.icon3 {
  top: 20%;
  right: -20px;
  animation-delay: 2s;
}

.icon4 {
  bottom: 15%;
  right: 10%;
  animation-delay: 1.5s;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* RIGHT CONTENT */
.cloud-content {
  padding-left: 30px;
}

.cloud-content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
}

.cloud-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.cloud-features li {
  margin-bottom: 15px;
  font-size: 15px;
  color: #333;
}

.cloud-features i {
  color: #3F51B5;
  margin-right: 10px;
}

.cloud-capabilities {
  padding: 100px 20px;
  text-align: center;
}

.cap-title {
  font-size: 34px;
  margin-bottom: 60px;
  color: #002147;
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 90%;
  margin: auto;
}

.cap-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 25px;
  transition: 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.cap-card i {
  font-size: 35px;
  color: #3F51B5;
  margin-bottom: 20px;
}

.cap-card h3 {
  margin-bottom: 15px;
  font-size: 20px;
}

.cap-card p {
  font-size: 14px;
  color: #555;
}

.cap-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid #3f51b5;
}

.workflow-section {
  padding: 100px 20px;
  text-align: center;
}

.workflow-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  position: relative;
}

.workflow-line::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background: #211d48;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  animation: flow 3s infinite linear;
}

@keyframes flow {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 200px 0;
  }
}

.node {
  background: #fff;
  padding: 15px 25px;
  border-radius: 30px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.node:hover {
  transform: scale(1.1);
}

.analytics-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.analytics-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 30px;
}

.analytics-features div {
  font-size: 15px;
  color: #333;
}

.analytics-features i {
  color: #3F51B5;
  margin-right: 8px;
}

/* bar graph */
.bar-item {
  margin-bottom: 30px;
  text-align: left;
}

.bar-item span {
  font-size: 15px;
  color: #fff;
}

.bar {
  width: 100%;
  height: 12px;
  background: #e0e8f5;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 8px;
}

.bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(to right, #F44336, #E91E63, #F44336);
  border-radius: 10px;
  animation: grow 2s forwards;
}

.fill1 {
  animation-delay: 0.2s;
  width: 85%;
}

.fill2 {
  animation-delay: 0.4s;
  width: 75%;
}

.fill3 {
  animation-delay: 0.6s;
  width: 90%;
}

.fill4 {
  animation-delay: 0.8s;
  width: 70%;
}

@keyframes grow {
  from {
    width: 0;
  }
}

.circular-section {
  text-align: center;
}

.circular-section h2 {
  font-size: 36px;
  margin-bottom: 70px;
  color: #002147;
}

.circle-container {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.progress-card {
  position: relative;
  text-align: center;
  transition: 0.4s ease;
}

.progress-card:hover {
  transform: translateY(-10px);
}

.progress-ring circle {
  fill: none;
  stroke-width: 12;
}

.progress-ring .bg {
  stroke: #e6ecf5;
}

.progress-ring .progress {
  stroke-linecap: round;
  stroke-dasharray: 440;
  stroke-dashoffset: 440;
  transition: stroke-dashoffset 2s ease;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  stroke: url(#gradient);
}

/* Progress Values */
.p1 {
  stroke-dashoffset: 35;
}

.p2 {
  stroke-dashoffset: 66;
}

.p3 {
  stroke-dashoffset: 97;
}

.p4 {
  stroke-dashoffset: 22;
}

.percentage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
  font-weight: bold;
  color: #007bff;
}

.progress-card p {
  margin-top: 20px;
  font-size: 15px;
  color: #555;
}

/* SVG Gradient */
svg defs {
  display: block;
}

.progress-ring {
  transform: rotate(-90deg);
}

circle {
  fill: none;
  stroke-width: 12;
}

.bg {
  stroke: #eee;
}

.progress {
  stroke: url(#gradient);
  stroke-linecap: round;
  stroke-dasharray: 440;
  /* 2 * π * 70 ≈ 440 */
  stroke-dashoffset: 35;
  /* 92% ke hisaab se adjust */
  transition: stroke-dashoffset 1s ease;
}

/* GCC */

/* ---------- Stats ---------- */
.gcc-stats {
  padding: 100px 8%;
  background: #f8fafc;
}

.stats-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-card {
  padding: 45px 30px;
  background: white;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #e51a4a, #c35670);
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 50px;
  font-weight: 700;
  background: linear-gradient(90deg, #e51a4a, #c35670);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.stat-title {
  color: #475569;
  font-size: 16px;
  letter-spacing: 0.5px;
}

/* Cost Reduction */
.stat-card:nth-child(2) .stat-number::after {
  content: "%";
}

/* SLA Achievement */
.stat-card:nth-child(3) .stat-number::after {
  content: "%";
}

.why-choose-section {
  padding: 100px 8%;
  background: #111c34;
}

.why-container {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.why-left {
  flex: 1;
}

.why-left h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

.why-left p {
  color: #cbd5e1;
  line-height: 1.8;
}

.why-right {
  flex: 1;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  padding-left: 35px;
}

.why-feature {
  margin-bottom: 35px;
  position: relative;
  padding-left: 20px;
}

.why-feature::before {
  content: '';
  position: absolute;
  left: -42px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: linear-gradient(90deg, #e51a4a, #ab1035);
  border-radius: 50%;
}

.why-feature h3 {
  margin-bottom: 6px;
  color: #fff;
  font-size: 20px;
}

.why-feature p {
  color: #cbd5e1;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 35px;
}

.tech-item {
  padding: 22px 0;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  background: linear-gradient(#0f172a, #0f172a) padding-box, linear-gradient(90deg, #e51a4a, #bd4964) border-box;
  border-bottom: 2px solid transparent;
  transition: 0.4s;
  cursor: pointer;
  text-align: center;
  color: #fff;
}

.tech-item:hover {
  transform: translateY(-6px);
  color: #e51a4a;
}

/* timeline gcc */

.gcc-timeline {
  padding: 100px 8%;
  background: #f8fafc;
  text-align: center;
}

.gcc-timeline .timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
}

.gcc-timeline .timeline::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #e2e8f0;
  z-index: 0;
}

.gcc-timeline .timeline-step {
  position: relative;
  width: 18%;
  z-index: 1;
}

.gcc-timeline .circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: 2px solid #304b8b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #2b4b97;
  margin: auto;
  font-size: 20px;
  transition: 0.4s;
}

.gcc-timeline .timeline-step:hover .circle {
  background: linear-gradient(90deg, #38528f, #0c2153);
  color: white;
  transform: scale(1.1);
}

.gcc-timeline .timeline-step h3 {
  margin-top: 20px;
  font-size: 18px;
  color: #0f172a;
}

.gcc-timeline .timeline-step p {
  font-size: 14px;
  color: #64748b;
  margin-top: 6px;
}

.display-center {
  display: flex;
  justify-content: center;
  align-items: center;
}