* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

* {
  transition: all 0.25s ease-out;
}

html {
  font-size: 62.5%;
}

.grid,
.grid > * {
  transition: all 0.3s ease-in-out;
}

body {
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: 400;
  letter-spacing: normal;
  color: #081120;
}

.fw-4 {
  font-weight: 400;
}

.fw-6 {
  font-weight: 600;
}

:root {
  --h1: 3rem;
  --h2: 2.5rem;
  --h3: 2rem;
  --h4: 1.75rem;
  --h5: 1.5rem;
  --h6: 1.25rem;
}

.hero-wrapper {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* IMAGE WRAPPER — overlay applied here */
.hero-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BLACK OVERLAY only on IMAGE */
.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* opacity control */
  z-index: 1;
}

/* CONTENT ABOVE OVERLAY */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  color: #fff;
}

.hero-text-heading h1 {
  font-size: 8.4rem;
  line-height: 8rem;
  font-weight: 700;
  color: #fff;
}

.hero-text-sub-heading h2 {
  font-size: 3.4rem;
  line-height: 4rem;
  font-weight: 700;
  color: #fff;
}

.hero-text-sub-heading {
  align-content: end;
}

h1 {
  font-size: var(--h1);
}
h2 {
  font-size: var(--h2);
}
h3 {
  font-size: var(--h3);
}
h4 {
  font-size: var(--h4);
}
h5 {
  font-size: var(--h5);
}
h6 {
  font-size: var(--h6);
}

/* FIXED NAVBAR ON DESKTOP */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.wrapper {
  width: 100%;
  /* background-color: #333; */
}

.container {
  width: 100%;
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 2rem;
  /* border: 1px solid chartreuse; */
  padding: 0 4rem;
}

/* .section {
  padding: 4rem 0;
} */

.section {
  padding: 4rem;
}

.section-title {
  /* margin-bottom: 2rem; */
  color: #081120;
  font-size: 2.4rem;
  font-weight: 600;
}

.grid {
  display: grid;
  gap: 2rem;
}

/* .grid-1 {
  grid-template-columns: repeat(1, 1fr);
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
} */
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
  /* grid-template-rows: repeat(2, 1fr); */

  /* grid-auto-rows: auto; */
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid-6 {
  grid-template-columns: repeat(6, 1fr);
}

/* .grid-3-fixed {
  grid-template-columns: repeat(3, 400px);
  grid-template-rows: repeat(2, 400px);
  gap: 2rem;
} */

.pd {
  padding: 0 0 4rem 0;
}

.title-style.center {
  text-align: center;
}

.align-content-center {
  align-content: center;
}

.service-card {
  position: relative;
  overflow: hidden;
  background: #f2f2f2;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
}

.service-card {
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.service-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
  /* transition: 0.3s ease; */
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  /* transform: translateX(-50%); */
  width: 150%;
  height: 90px;
  background: #662d91;
  /* border-radius: 50%; */
  z-index: 0;
}

/* .service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #662d91;
  background: url(../assets/images/others/block-overlay.svg) no-repeat bottom
    center;
  background-size: cover;
  z-index: 0;
} */

.service-card__content,
.service-card__icon {
  position: relative;
  z-index: 2;
}

.service-card__icon {
  height: 85px;
  width: 85px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
  background: #fff;
  border-radius: 100%;
}

.service-card__text {
  line-height: 1.5em;
  margin-bottom: 2.5rem;
}

.service-card__btn {
  height: 55px;
  margin: auto;
  max-width: max-content;
  padding: 13px 29px;
  border: none;
  box-shadow: none;
  min-width: max-content;
  border-radius: 15px;
  /* transition: 800ms; */
  font-weight: 600;
  background: #cbcbcb !important;
}

.service-card__btn.btn-primary {
  background: var(--color-primary);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* .navigation {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  position: relative;
  padding: 0 4rem;
} */

.navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 4rem;
}

.nav {
  display: flex;
}

.logo img {
  width: 20rem;
  height: auto;
  display: block;
}

.text-align-center {
  text-align: center;
}

.justify-item-center {
  justify-items: center;
}

.menu {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.menu li {
  position: relative;
}

.main-link {
  text-decoration: none;
  color: #081120;
  padding: 0.5rem 0;
  display: inline-block;
}

.submenu {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  padding: 0.7rem 0;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 999;
}

.submenu li a {
  display: block;
  padding: 0.6rem 1rem;
  color: #081120;
  text-decoration: none;
}

.menu > li:hover .submenu {
  opacity: 1;
  pointer-events: auto;
}

.hamburger {
  width: 28px;
  height: 15px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.bar {
  width: 100%;
  height: 3px;
  background: #081120;
  transition: 0.3s ease;
}

.hamburger .bar {
  width: 30px;
  height: 3px;
  /* margin-bottom: 5px; */
  background: #6a1b9a !important;
  display: block;
  border-radius: 2px;
}

.hero-box {
  background-image: url(/images/pexels-khwanchai-12885861.jpg);
  background-size: cover;
  background-position: 70% 30%;
  background-repeat: no-repeat;
  position: relative;
  width: auto;
  max-width: 130rem;
  height: 50rem;
  margin: 5rem 0;
  /* border: 3px solid red; */
  border-radius: 3rem;
}

.hero-box .overlay {
  align-items: center;
  display: grid;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 3rem;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-box h1 {
  position: relative;
  z-index: 2;
  font-size: 10rem;
  color: #ffffff;
  font-weight: 800;
  line-height: 10.5rem;
  padding: 4rem;
}

.hero-text {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  align-content: center;
  text-align: center;
  padding: 4rem;
  width: auto;
  max-width: 130rem;
  height: 30rem;
  margin-bottom: 5rem;
  /* background-color: lightgrey; */
}

.hero-text h1 {
  font-size: 8rem;
  color: #aaa;
  font-weight: 800;
  line-height: 8rem;
}

.industry-focus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* grid-template-rows: auto; */
  align-items: center;
  gap: 2rem;
  margin-bottom: 5rem;
}

.industry-focus-title {
  grid-column: 1 / -1;
  margin-bottom: 2rem;
  /* background-color: #4a135a; */
}

.industry-focus-title,
.process-title h4 {
  font-size: 4rem;
  font-weight: 800;
  color: #081120;
  padding: 2rem 0;
  text-align: center;
}

.industry-focus-content,
.it-background,
.pharm-background,
.bfsi-background,
.mfg-background,
.advt-background {
  padding: 2rem;
}

.industry-focus-content h5 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.it-background-img {
  background-image: url(/images/pexels-field-engineer-147254-442150.jpg);
  background-size: cover;
  background-position: 70% 30%;
  background-repeat: no-repeat;
  position: relative;
  width: auto;
  height: 30rem;
  border-radius: 3rem;
}

.pharm-background-img {
  background-image: url(/images/pexels-shvetsa-3683100.jpg);
  background-size: cover;
  background-position: 70% 30%;
  background-repeat: no-repeat;
  position: relative;
  width: auto;
  height: 30rem;
  border-radius: 3rem;
}

.bfsi-background-img {
  background-image: url(/images/pexels-habibqnet-904735.jpg);
  background-size: cover;
  background-position: 70% 30%;
  background-repeat: no-repeat;
  position: relative;
  width: auto;
  height: 30rem;
  border-radius: 3rem;
}

.mfg-background-img {
  background-image: url(/images/pexels-pixabay-73833.jpg);
  background-size: cover;
  background-position: 70% 30%;
  background-repeat: no-repeat;
  position: relative;
  width: auto;
  height: 30rem;
  border-radius: 3rem;
}

.advt-background-img {
  background-image: url(/images/pexels-chee-kahhay-2159467-3797643.jpg);
  background-size: cover;
  background-position: 70% 30%;
  background-repeat: no-repeat;
  position: relative;
  width: auto;
  height: 30rem;
  border-radius: 3rem;
}

.re-background-img {
  background-image: url(/images/pexels-marketingtuig-87223.jpg);
  background-size: cover;
  background-position: 70% 30%;
  background-repeat: no-repeat;
  position: relative;
  width: auto;
  height: 30rem;
  border-radius: 3rem;
}
/* .ph-content {
  grid-column: 2;
}

.ph-bg {
  grid-row: 3;
}

.mfg-content {
  grid-column: 2;
}

.mfg-bg {
  grid-row: 5;
} */

/* .it-background-img .overlay {
  align-items: center;
  display: grid;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 3rem;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
} */

.five-step-process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.6rem;
  margin-bottom: 5rem;
}

.process-title {
  grid-column: 1 / -1;
  margin-bottom: 2rem;
}

.un-req {
  background-color: #e0e0e0;
  border-radius: 2rem;
  padding: 2rem;
  position: relative;
  border: 0.5rem solid #d8d8d8;
  box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.12);
}

.un-req .circle-bg {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}

.circle-bg {
  background-color: #fff;
  border-radius: 50rem;
  width: 8rem;
  height: 8rem;
  position: relative;
  border: 1rem solid orangered;
  margin-bottom: 1rem;
}

.step-no {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}

.circle-bg .step-no {
  font-size: 4rem;
  font-weight: 800;
}

.un-req h5 {
  font-size: 1.6rem;
  line-height: 2.3rem;
  /* margin-bottom: 2rem; */
  text-align: center;
  margin-top: 10rem;
}

.footer-container {
  width: 100%;
  background-color: #4a135a;
  display: grid;
  align-items: center;
  /* height: 30rem; */
}

.footer-wrapper {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); */
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto auto;
  gap: 2rem;
  width: 100%;
  max-width: 130rem;
  margin: 0 auto;
  color: #fff;
  padding: 2rem 0;

  grid-template-areas:
    "a b c d"
    "e . f s"
    "g h i l";
}

.area-a {
  grid-area: a;
}
.area-b {
  grid-area: b;
}
.area-c {
  grid-area: c;
}
.area-d {
  grid-area: d;
}

.area-e {
  grid-area: e;
}
.area-f {
  grid-area: f;
}
.area-g {
  grid-area: g;
}
.area-h {
  grid-area: h;
}
.area-i {
  grid-area: i;
}
.area-s {
  grid-area: s;
}
.area-l {
  grid-area: l;
}

.footer-title-mb-2 {
  margin-bottom: 2rem;
}

.footer-title-mb {
  margin-bottom: 0.5rem;
}

.footer-copyright {
  background: #662d91;
  padding: 20px 0;
  color: #fff;
}

.footer-copyright-text {
  font-size: 1.2rem;
  text-align: center;
  color: #fff;
}

nav.nav-footer ul {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0;
}

.nav-footer ul li {
  margin-bottom: 0.5rem;
  list-style: none;
}

.contact-link a:link,
.contact-link a:visited {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

/* hamburger */
/* .hamburger {
  display: flex;
} */

/* .bar {
  background-color: white;
  margin: 5px auto;
  width: 25px;
  height: 3px;
  display: block;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
} */

.nav {
  max-height: none;
  overflow: visible;
}
.menu {
  flex-direction: row;
  display: flex;
}
.submenu {
  max-height: 1000px;
  overflow: visible;
}

.menu > li:hover .submenu {
  opacity: 1;
  pointer-events: auto;
}

.mt-3 {
  margin: 3rem 0 0 0;
}

.mt-4 {
  margin: 4rem 0 0 0;
}

.mt-5 {
  margin: 5rem 0 0 0;
}

.mb-1 {
  margin: 0 0 1rem 0;
}

.mb-2 {
  margin: 0 0 2rem 0;
}

.mb-3 {
  margin: 0 0 3rem 0;
}

.mb-4 {
  margin: 0 0 4rem 0;
}

.mb-5 {
  margin: 0 0 5rem 0;
}

.m0-1 {
  margin: 0;
}

.pa-1 {
  padding: 4rem;
}

.pl-1 {
  padding: 0 0 0 1rem;
}

.pl-2 {
  padding: 0 0 0 2rem;
}

.pl-3 {
  padding: 0 0 0 3rem;
}

.pl-4 {
  padding: 0 0 0 4rem;
}

.pl-5 {
  padding: 0 0 0 5rem;
}

.p-t-b {
  padding: 4rem 0 4rem 0;
}

.pt-1 {
  padding-top: 4rem;
}

.p-l-r {
  padding: 0 4rem 0 4rem;
}

.p-b {
  padding: 0 0 4rem 0;
}

h5.mb-20 {
  padding: 0 0 0 0;
}

.address-lh {
  line-height: 2.1rem;
}

.address-normal {
  font-style: normal;
}

.s-image {
  display: flex;
}

/* ------------------------------------ */

.service-card__btn {
  height: 55px;
  max-width: max-content;
  padding: 13px 29px;
  border: none;
  box-shadow: none;
  min-width: max-content;
  border-radius: 15px;
  transition: 800ms;
  font-weight: 600;
}

.service-card__btn.btn-primary {
  background: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.service-card__btn.btn-primary::before {
  content: "";
  position: absolute;
  -webkit-transition-duration: 800ms;
  transition-duration: 800ms;
  width: 200%;
  height: 200%;
  top: 110%;
  left: 50%;
  background: #662d91;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  z-index: -1;
}

.service-card__btn.btn-primary:hover {
  background: transparent;
  color: #f2f2f2;
}

.service-card__btn.btn-primary:hover::before {
  top: -40%;
}

.service-card__btn.btn-primary.btn-white {
  background: #ffffff;
  color: #081120;
}

.service-card__btnrts-btn.btn-primary.btn-white::before {
  background: #662d91;
  color: #081120;
}
.service-card__btn.btn-primary.btn-white:hover {
  background: transparent;
  color: #f2f2f2;
}
.service-card__btn.btn-primary.btn-white:hover::before {
  top: -40%;
}

/* .rts-btn.btn-border {
  background: transparent;
  border: 1px solid #e9ecf1;
} */

.rts-btn:focus {
  border: none;
  box-shadow: none;
}

a:hover {
  text-decoration: none;
  outline: none;
}

a {
  text-decoration: none;
  outline: none;
}

.align-items-center {
  align-items: center !important;
}

.heading h2 {
  font-size: 4.4rem;
  line-height: 5.4rem;
  color: #081120;
}

.heading h3 {
  font-size: 2.4rem;
  line-height: 3.4rem;
  color: #081120;
}

.featured-title h3 {
  font-size: 2.4rem;
  line-height: 3.4rem;
  color: #081120;
  transition: all 0.5s ease;
}

.heading p {
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: #676464;
}

.heading .heading-text-color {
  color: #6a1b9a;
}

.featured-desc p {
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: #676464;
  transition: all 0.5s ease;
}

.icon-list li span .icon {
  display: block;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  margin-right: 5px;
  object-fit: contain;
}

.icon-list li {
  display: flex;
  font-size: 1.8rem;
  align-items: center;
  gap: 10px;
}

/* section.bg {
  background: #f2f2f2;
} */

img {
  max-width: 100%;
  max-height: 100%;
}

.image img {
  /* display: block;
  justify-content: center; */
  width: 100%;
  border-radius: 4px;
}

.title-style .title {
  font-size: 4.4rem;
  line-height: 5.4rem;
  color: #081120;
}

.service-card__content .service-card__title {
  font-size: 2.4rem;
  line-height: 3.4rem;
  color: #081120;
}

.service-card__content .service-card__text {
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: #676464;
  /* color: #081120; */
}

.featuredbox-number {
  counter-reset: featuredbox-number;
}

.featured-icon-box.style4 {
  padding: 12px 0;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
}

.featured-icon-box.icon-align-before-content.icon-ver_align-top .featured-icon {
  vertical-align: top;
  padding-top: 4px;
}

.featured-icon-box.icon-align-before-content .featured-icon {
  display: table-cell;
  vertical-align: middle;
}

.featured-icon-box.style4:not(:last-child) .featured-icon:before {
  content: "";
  position: absolute;
  width: 2px;
  left: 25px;
  top: 23px;
  z-index: -1;
  height: 0;
  transition: all 0.6s ease;
  height: 100%;
  z-index: 0;
  margin-top: 20px;
  background-color: #662d91;
}

.ttm-icon {
  margin-bottom: 25px;
  text-align: center;
  border: 1px solid transparent;
  transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  box-sizing: content-box;
  position: relative;
}
.ttm-icon,
.ttm-icon i {
  display: inline-block;
  vertical-align: middle;
}

.ttm-icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  line-height: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.featured-icon-box.icon-align-before-content .featured-icon i {
  display: inline-block;
  vertical-align: middle;
}

.featured-icon-box.style4 .ttm-icon i {
  font-size: 18px;
  padding-bottom: 2px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #111922;
  transition: all 0.6s ease;
  background-color: #662d91;
  color: #fff;
}

.featuredbox-number .ttm-num:before {
  counter-increment: featuredbox-number;
  content: counter(featuredbox-number, decimal-leading-zero) " ";
}

[class*=" ti-"],
[class^="ti-"] {
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: normal;
  font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ttm-icon.ttm-icon_element-style-rounded {
  border-radius: 50%;
}
.featured-icon-box .ttm-icon {
  margin-bottom: 0;
}
.featured-icon-box.style4 .ttm-icon {
  line-height: 48px;
  width: 48px;
  height: 48px;
  margin-right: 40px;
  margin-top: 25px;
  transition: all 0.4s;
  background-color: #662d91;
  color: #fff;
}
.featured-icon-box.style4:not(:last-child) .featured-icon:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 2px;
  left: 25px;
  top: 45%;
  z-index: -1;
  transition: all 0.6s ease;
}

.featured-icon-box.style4 .featured-content {
  padding: 20px 30px;
  background-color: #f2f2f2;
  width: 100%;
  transition: all 0.6s ease;
}

.featured-icon-box.icon-align-before-content .featured-content {
  display: table-cell;
  vertical-align: middle;
  padding-left: 15px;
}
.featured-icon-box.style4 .featured-content:before {
  top: 55px;
  left: 50%;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border: 10px solid rgba(242, 242, 242, 0);
  border-right-color: #f2f2f2;
  left: 70px;
  transition: all 0.6s ease;
}

/* hiring process overlay start */

.featured-icon-box.style4:hover .featured-content.ttm-bgcolor-grey {
  background-color: #662d91 !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.featured-icon-box.style4:hover .featured-content.ttm-bgcolor-grey h3,
.featured-icon-box.style4:hover .featured-content.ttm-bgcolor-grey p {
  color: #fff !important;
}

.featured-icon-box.style4:hover .featured-content.ttm-bgcolor-grey::before {
  border-right-color: #662d91 !important;
}

/* hiring process overlay end */

/* Keep arrow + content above shadow */

/* industry */

/* .featured-icon.fixed-height {
  height: 60px;
}

.featured-content.fixed-height {
  height: 300px;
} */

.featured-icon-box {
  position: relative;
  /* margin: 12px 0; */
  /* background: #fff; */
  /* border: 1px solid #e8e8e8; */
  padding: 20px;
  /* border-radius: 10px; */

  height: 100%;
  /* display: flex;
  flex-direction: column; */
}

.featured-icon-box.style3 {
  padding: 25px;
  background-color: #f2f2f2;
  transition: all 0.4s;
}

.featured-icon-box.icon-align-before-title .featured-icon {
  display: table-cell;
  vertical-align: middle;
}

.featured-icon-box.icon-align-before-title .featured-title {
  display: table-cell;
  vertical-align: middle;
  padding-left: 15px;
}

.featured-icon-box.style3 .featured-content {
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.industry-icon {
  width: 64px;
  height: 64px;
}

/* ------------------------------ */

.grid.grid-1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem; /* spacing between items */
  align-items: stretch !important; /* force equal height rows */
}

.grid.grid-1 > div {
  height: 100%;
}

.grid.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem; /* spacing between items */
  align-items: stretch !important; /* force equal height rows */
}

/* Make each column wrapper fill height */
.grid.grid-2 > div {
  height: 100%;
}

.grid.grid-3 > div {
  height: 100%;
}

.grid.grid-4 > div {
  height: 100%;
}

.grid.grid-5 > div {
  height: 100%;
}

.grid.grid-6 > div {
  height: 100%;
}

.featured-content {
  flex: 1; /* makes inside stretch to equal height */
  display: flex;
  flex-direction: column;
}

/* Text stays at top and keeps spacing consistent */
.featured-desc {
  margin-top: auto;
}

.grid.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem; /* spacing between items */
  align-items: stretch !important; /* force equal height rows */
}

.grid.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem; /* spacing between items */
  align-items: stretch !important; /* force equal height rows */
}

.featured-icon-box.shadow {
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.featured-icon-box.shadow:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.featured-icon-box.style3.brand-color {
  background: #662d91 !important;
}

.featured-icon-box.brand-color .featured-title h3 {
  color: #fff;
}

.featured-icon-box.brand-color .featured-title {
  padding: 0;
  display: block;
}

.featured-icon-box.brand-color .featured-content .featured-desc p {
  color: #fff;
}

.featured-icon-box.brand-color .featured-content {
  border-top: 1px solid #fff;
}

.section-brand-color {
  background: #662d91;
}

.align-content-start {
  align-content: start;
}

.heading .high-lighter {
  background: #662d91;
  display: inline-block;
  padding: 1rem 2rem 1rem 2rem;
  border-radius: 1rem;
  color: #fff;
}

.grid.p-t-b .heading p.mb-2:last-of-type {
  margin-bottom: 3rem;
}

/* When force-hide is active, hide submenu even if hovered */
/* .force-hide > .submenu {
  opacity: 0 !important;
  pointer-events: none !important;
} */

/* ensure mobile overlay & force-hide defined */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s;
  z-index: 9998;
}
.mobile-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Prevent submenu from sticking on desktop after click */
.force-close-submenu .submenu {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* footer styling start */

/* FOOTER LINK BASE STYLES */
.nav-footer a {
  color: #ffffff;
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding-bottom: 2px; /* spacing for underline */
  transition: color 0.25s ease, opacity 0.25s ease;
}

/* Underline Effect */
.nav-footer a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #e0b3ff; /* lighter purple for contrast */
  transition: width 0.28s ease;
}

/* HOVER STATE */
.nav-footer a:hover {
  color: #f4d9ff; /* soft tint on hover */
  opacity: 0.85; /* subtle fade */
}

.nav-footer a:hover::after {
  width: 100%; /* draw underline */
}

/* footer styling end */

/* MAIN NAV LINKS */
.nav .main-link {
  position: relative;
  text-decoration: none;
  color: #081120;
  padding: 0.5rem 0;
  display: inline-block;
  transition: color 0.25s ease;
}

/* UNDERLINE ANIMATION */
.nav .main-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px; /* space below text */
  width: 0%;
  height: 2px;
  background-color: #6a1b9a; /* premium purple */
  transition: width 0.28s ease;
  border-radius: 2px;
}

.nav .main-link:hover {
  color: #6a1b9a;
}

.nav .main-link:hover::after {
  width: 100%;
}

.submenu li a.sub-link {
  display: block;
  padding: 0.6rem 1rem;
  color: #081120;
  text-decoration: none;
  transition: color 0.22s ease, background-color 0.22s ease,
    padding-left 0.22s ease;
  position: relative;
}

/* SEPARATOR LINE */
.submenu li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* PREMIUM HOVER */
.submenu li a.sub-link:hover {
  background: #f4e6ff; /* very light lavender */
  color: #6a1b9a; /* brand purple */
  padding-left: 1.4rem; /* subtle shift */
}

.contact-bg {
  background: #662d91;
}

/* Contact section container */
.contact-section-height {
  padding: 6rem 0; /* Increase vertical height */
  display: flex;
  align-items: center;
}

/* Center the grid */
.contact-section-height .grid {
  max-width: 650px; /* Increase content width */
  margin: 0 auto; /* Center horizontally */
  text-align: center;
}

/* Header */
.contact-content h3 {
  position: relative;
  font-size: 3rem;
  font-weight: 600;
  /* margin-bottom: 1rem; */
  color: #ffffff;
  text-transform: capitalize;
  padding: 1rem 0;
}

/* Text block */
.contact-text p {
  margin-bottom: 1rem;
  font-size: 3rem; /* 18px */
  line-height: 1.6;
  color: #ffffff;
}

/* Labels (Telephone, Email, Web) */
.contact-text p strong {
  color: #ffffff;
  font-weight: 700;
}

/* Links */
.contact-text a {
  color: #ffffff;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.contact-text a:hover {
  color: #ffd6ff; /* Light purple hover */
}

.contact-text {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Vertical Center */
  align-items: center; /* Horizontal Center */
  text-align: center;
  height: 100%; /* Make sure container height is used */
}

.contact-content {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Vertical Center */
  align-items: center; /* Horizontal Center */
  text-align: center;
  height: 100%; /* Make sure container height is used */
}
