@font-face {
  font-family: "Biennale";
  src: url("../fonts/Biennale-Regular.eot");
  src: url("../fonts/Biennale-Regular.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Biennale-Regular.woff2") format("woff2"),
    url("../fonts/Biennale-Regular.woff") format("woff"),
    url("../fonts/Biennale-Regular.ttf") format("truetype"),
    url("../fonts/Biennale-Regular.svg#Biennale-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Biennale";
  src: url("../fonts/Biennale-Bold.eot");
  src: url("../fonts/Biennale-Bold.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Biennale-Bold.woff2") format("woff2"),
    url("../fonts/Biennale-Bold.woff") format("woff"),
    url("../fonts/Biennale-Bold.ttf") format("truetype"),
    url("../fonts/Biennale-Bold.svg#Biennale-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Biennale";
  src: url("../fonts/Biennale-SemiBold.eot");
  src: url("../fonts/Biennale-SemiBold.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Biennale-SemiBold.woff2") format("woff2"),
    url("../fonts/Biennale-SemiBold.woff") format("woff"),
    url("../fonts/Biennale-SemiBold.ttf") format("truetype"),
    url("../fonts/Biennale-SemiBold.svg#Biennale-SemiBold") format("svg");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Biennale";
  src: url("../fonts/Biennale-Light.eot");
  src: url("../fonts/Biennale-Light.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Biennale-Light.woff2") format("woff2"),
    url("../fonts/Biennale-Light.woff") format("woff"),
    url("../fonts/Biennale-Light.ttf") format("truetype"),
    url("../fonts/Biennale-Light.svg#Biennale-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-dark: #2c3338;
  --color-red: #dc3545;
  --color-white: #ffffff;
  --color-gray-light: rgba(255, 255, 255, 0.9);
  --spacing-unit: 8px;
  --primary-text: #2a2b2f;
}

body {
  font-family: "Biennale";
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: calc(var(--spacing-unit) * 3) calc(var(--spacing-unit) * 4);
  transition: all 0.3s ease;
}

.header.scrolled {
  background-color: var(--color-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 3);
}

.nav-container {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  height: 60px;
}

.logo-image {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
  position: absolute;
  left: 0;
  top: 0;
}

.logo-light {
  opacity: 1;
}

.logo-dark {
  opacity: 0;
}

.header.scrolled .logo-light {
  opacity: 0;
}

.header.scrolled .logo-dark {
  opacity: 1;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 2px;
  background-color: #212529;
  transition: all 0.3s ease;
}
.mobile-menu-toggle.light span {
  background-color: #fff;
}

.header.scrolled .mobile-menu-toggle span {
  background-color: var(--color-dark);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: calc(var(--spacing-unit) * 4);
  align-items: center;
  margin-bottom: 0;
}

.nav-menu li a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.header.scrolled .nav-menu li a {
  color: var(--color-dark);
}

body .nav-menu li a:hover {
  color: var(--color-red);
}

/* Active navigation state */
.nav-menu li a.active {
  color: var(--color-red) !important;
  position: relative;
  font-weight: 600;
}

/* .nav-menu li a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-red);
  border-radius: 1px;
} */

.header.scrolled .nav-menu li a.active {
  color: var(--color-red) !important;
}

.btn-primary {
  border-radius: 50px;
  border: 1px solid #9a2737;
  background: linear-gradient(269deg, #ee773d 3.49%, #ec313c 104.98%);
  box-shadow: 0 2px 0 0 rgba(255, 255, 255, 0.25) inset;
  font-size: 23px;
}
/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--spacing-unit) * 10) calc(var(--spacing-unit) * 4)
    calc(var(--spacing-unit) * 8);
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-content {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  padding-bottom: calc(var(--spacing-unit) * 15);
  position: relative;
  z-index: 2;
  justify-content: center;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0 16px;
}
.badge-dummy-height {
  height: 24px;
  display: inline-block;
}
.hero-subtitle {
  font-size: 20px;
  font-weight: 400;
  color: var(--color-gray-light);
  margin-bottom: calc(var(--spacing-unit) * 2);
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: 88px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: calc(var(--spacing-unit) * 2);
  letter-spacing: -1px;
}

/* Animated Text Animation */
.animated-text-container {
  position: relative;
  height: 1.2em;
  overflow: hidden;
  display: inline-block;
}

.animated-text {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
}

.animated-text.active {
  top: 0;
  opacity: 1;
  transform: translateY(10px);
}

.animated-text.slide-out {
  top: -100%;
  opacity: 0;
  transform: translateY(-100%);
}

@keyframes slideInUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideOutUp {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-100%);
    opacity: 0;
  }
}

.hero-description {
  font-size: 50px;
  font-weight: 400;
  color: var(--color-gray-light);
  line-height: 1.3;
  letter-spacing: -0.5px;
}

/* Recognition Section */
.recognition-section {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: calc(var(--spacing-unit) * 2);
  padding: 0 calc(var(--spacing-unit) * 4);
  position: relative;
  z-index: 2;
}

.recognition-label {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.recognition-label h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
  letter-spacing: 0.5px;
  margin-bottom: 0;
}

.recognition-badges {
  display: flex;
  align-items: center;
  gap: calc(var(--spacing-unit) * 2);
  /* flex-wrap: wrap; */
  justify-content: space-around;
  flex: 1;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: calc(var(--spacing-unit) * 1);
  position: relative;
  flex-direction: column;
}

.badge-number {
  font-size: 56px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
}

.badge-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.badge-line {
  font-size: 11px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.3;
  letter-spacing: 0.5px;
}

.badge-line strong {
  font-weight: 700;
}

.deloitte-logo {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-white);
  margin-top: 2px;
}

.badge-times {
  font-size: 11px;
  font-weight: 500;
  color: var(--color-white);
  border: 1px solid var(--color-white);
  padding: 2px 8px;
  border-radius: 2px;
  white-space: nowrap;
}

.badge-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(var(--spacing-unit) * 1);
  position: relative;
  padding-bottom: 8px;
}

.badge-logo img {
  height: 67px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}

/* Additional Styles for Second Sections */
.exploreBtn {
  width: 275px;
}
.text-gradient {
  background-image: url("../imgs/text-bg.png");
  background-size: cover;
  background-position: left;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 1000px;
}
.salesforce-section {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
}
.containerBx {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
}

.left-col {
  text-align: center;
}

.left-col img {
  max-width: 550px;
  width: 100%;
  border-radius: 12px;
  max-width: 100%;
}

.right-col {
  max-width: 672px;
  padding-top: 50px;
}

.section-title {
  font-size: 5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--primary-text);
  text-align: left;
}

.section-title-b {
  font-size: 4.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--primary-text);
  text-align: left;
}

.section-title div {
  font-weight: 600;
}

.intro-text {
  font-size: 22px;
  color: #333;
  margin-bottom: 4rem;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
}

.icon {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
}

.icon.cloud {
  background: #78baf3;
}
.icon.code {
  background: #f59b88;
}
.icon.gear {
  background: #f6cd7a;
}
.icon.exchange {
  background: #91d8de;
}
.icon.integration {
  background: #7ad897;
}

.service-content h4 {
  font-size: 1.375rem;
  font-weight: 600;
  color: #272d4e;
}

.service-content p {
  font-size: 1rem;
  color: #294864;
  margin-top: 5px;
}

.btn {
  display: inline-block;
  /* background: linear-gradient(90deg, #f34c2d, #f4763f); */
  color: #fff;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  transition: 0.3s;
  z-index: 1;
  border: 1px solid #9a2737;
  background: linear-gradient(269deg, #ee773d 3.49%, #ec313c 104.98%);
  box-shadow: 0 2px 0 0 rgba(255, 255, 255, 0.25) inset;
  position: relative;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  border-color: transparent;
}

.partner-logo {
  margin-top: 25px;
  display: flex;
  gap: 8px;
}

.partner-logo img {
  height: 40px;
}

.partner-logo span {
  font-weight: 600;
  color: #0048b3;
}
.dummy-icon {
  min-width: 85px;
  width: 85px;
  height: 85px;
  display: inline-block;
}
.btnShadow {
  box-shadow: 1px 7px 19px color(a98-rgb 0.18 0.31 0.61 / 0.2);
  border-radius: 30px;
  display: inline-block;
}

.agentforce-section {
  border-radius: 24px 0 24px 24px;
  background: radial-gradient(
    99.09% 106.43% at 71.46% 107.89%,
    rgba(174, 226, 238, 0.8) 0%,
    rgba(234, 251, 255, 0.2) 49.3%,
    #eafbff 100%
  );
  padding: 30px 40px !important;
  /* padding-bottom: 10px; */
}

.subtext {
  margin-top: 30px;
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0;
}

.features {
  font-size: 22px;
  font-weight: 600;
}

.features ul {
  list-style: none;
  padding: 0;
}
.agentforce-image {
  margin-top: -127px;
  position: relative;
  bottom: -26px;
}
.btnCircle {
  min-width: 40px;
  width: 40px;
  height: 40px;
  background: var(--color-white);
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}
.btn-title {
  margin-right: 10px;
}
.countBx .number {
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 70px; /* 166.667% */
}
.countBx .title {
  color: rgba(10, 18, 46, 0.8);
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px; /* 140% */
  min-height: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.countBx .countList > div {
  border-left: 1px solid #032d6031;
  min-width: 140px;
  padding: 0 26px;
  flex: 1;
}
.white-space {
  white-space: nowrap;
}
.countBx .count1 .number {
  color: #e36889;
}
.countBx .count2 .number {
  color: #16b1d4;
}
.countBx .count3 .number {
  color: #8265eb;
}
.countBx .count4 .number {
  color: #52a2f5;
}
.countBx .count5 .number {
  color: #e3684c;
}
.countBx .count6 .number {
  color: #49c7b2;
}
/* .countBx .countList .title {
  max-width: 183px;
} */
.countBx .countList > div.count1 {
  border-left: none;
  padding-left: 0;
}
.countList {
  justify-content: center;
  gap: 20px;
}
.countBx .countList > div.count5 {
  max-width: 226px;
}
.countBx {
  margin-top: 54px;
}
.sectionFive {
  background-image: url(../imgs/bg.png);
  background-size: cover;
  background-position: center;
}

.sectionFive .left h2 {
  font-size: 70px;
  line-height: normal;
  font-weight: 600;
  line-height: 78px;
}
.sectionFive .subtitle {
  font-size: 22px;
  margin-top: 20px;
  color: #294864;
  max-width: 721px;
}
.sectionFiveInner {
  margin-top: 75px;
}
.sectionFiveInner .right img {
  margin-top: 42px;
}
.finance-section {
  background: linear-gradient(180deg, #e8eef1 0%, #f9fafa 52.88%);
  border-radius: 24px;
}
.finance-section-inner {
  background-image: url(../imgs/financeBg.svg);
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 16px;
  flex-wrap: wrap;
  padding-left: 37px;
}

.finance-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0d3b8b;
  margin-bottom: 12px;
}

.finance-content p {
  font-size: 18px;
  color: #4b4b4b;
  line-height: 1.6;
  margin-bottom: 32px;
}

.finance-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.icon-box {
  background: #fff;
  border: 1px solid #e0e5f2;
  border-radius: 8px;
  width: 133px;
  text-align: center;
  padding: 20px 10px;
  transition: all 0.3s ease;
}
.icon-box p {
  margin-bottom: 0;
}
.icon-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.icon-box img {
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
}

.icon-box p {
  font-size: 14px;
  color: #0d3b8b;
  font-weight: 500;
  line-height: normal;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.finance-image {
  flex: 1 1 350px;
  position: relative;
  text-align: right;
  margin-top: -53px;
}

.finance-image img.main-img {
  max-width: 300px;
  width: 100%;
  border-radius: 8px;
  z-index: 2;
  position: relative;
  margin-right: 50px;
}

.sectionSix {
  margin-top: 80px;
}
.nonprofitContainer {
  background: linear-gradient(180deg, #e8eef1 0%, #f9fafa 52.88%);
  border-radius: 18px;
  flex: 1;
}

.nonprofit-section {
  padding: 28px 32px 0 28px;
  display: flex;
  justify-content: space-between;
  background-image: url(../imgs/nonProfitBg.svg);
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
}

.nonprofit-section .title {
  font-size: 42px;
  color: #00458c;
  font-weight: 700;
  margin-bottom: 12px;
}

.nonprofit-section .subtitle {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-text);
  margin-bottom: 10px;
}

.nonprofit-section .text {
  font-size: 18px;
  color: #444;
  line-height: 1.5;
}

.image-wrapper {
  position: relative;
  max-width: 40%;
  margin-top: -50px;
}

.volunteer-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.industySection .nonprofit-section {
  background-image: url(../imgs/industryBg.svg);
}
.nonprofit-section ul {
  padding-left: 0;
  gap: 1rem;
  margin-bottom: 0;
}
.nonprofit-section ul li span {
  line-height: 33px;
}
.image-wrapper img {
  height: 283px;
}
.industyContainer {
  margin-top: 50px;
}
.sectionSix {
  background-image: url(../imgs/bg1.svg);
  background-position: left bottom;
  background-repeat: no-repeat;
  position: relative;
}
.circleBg {
  position: absolute;
  right: 0;
  z-index: -1;
  opacity: 0.4;
  mix-blend-mode: exclusion;
  top: 0;
  text-align: right;
}
.circleBg img {
  width: 80%;
}
/* client love us */
.testimonial-slider {
  padding: 20px 0;
}
.testimonial-slide {
  display: flex;
  align-items: center;
}
.testimonial-image img {
  width: 375px !important;
  height: auto;
  border-radius: 10px;
  background: #e0e4ea;
  object-fit: cover;
  height: 500px;
}
.testimonial-content {
  padding-left: 120px;
  flex: 1;
}
.testimonial-text {
  font-size: 32px;
  color: var(--primary-text);
  margin-bottom: 24px;
  max-width: 92%;
  line-height: 46px;
}
.testimonial-author {
  font-weight: 600;
  font-size: 28px;
}
.testimonial-role {
  color: rgba(10, 18, 46, 0.52);
  font-size: 19px;
  margin-top: 4px;
}
.owl-nav {
  position: absolute;
  display: flex;
  width: auto;
  right: 0;
  display: flex;
  gap: 16px;
  bottom: 82px;
}

.sectionSeven {
  border-radius: 100px 0 0 0;
  background: linear-gradient(
    123deg,
    #f2f8fe 17.69%,
    #fff 49.58%,
    #eef5fd 90.6%
  );
  margin-top: 50px;
  padding-top: 50px;
  padding-bottom: 50px;
}
.owl-carousel .owl-item img.quote-icon {
  width: 200px;
  position: absolute;
  /* top: -81px; */
  left: -61px;
}
.testimonial-details {
  margin-top: 25px;
  display: inline-block;
}
.owl-carousel .owl-nav button {
  border-radius: 60px;
  border: 1px solid #282b3c !important;
  width: 60px;
  height: 60px;
  display: inline-block;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

.owl-carousel .owl-nav button span {
  display: none;
}
.owl-carousel .owl-nav button.owl-prev {
  background-image: url(../imgs/leftArrow.svg) !important;
  background-color: #fff;
}
.owl-carousel .owl-nav button.owl-next {
  background-image: url(../imgs/rightArrow.svg) !important;
  background-color: #fff;
}

.divideLine {
  width: 2px;
  height: 168px;
  background: rgba(40, 43, 60, 0.17);
}
.testimonial-owl-slider {
  margin-top: 80px;
}
.para1 {
  font-size: 28px;
}

.sectionNineHeading {
  background: linear-gradient(180deg, #f2f8fe 0%, #fff 100%);
  padding: 60px 0;
}
.sectionNine {
  margin-top: 10px;
}

.sectionNineInner {
  position: relative;
}

.sectionNine .section-subtitle {
  color: #666;
  font-size: 1.2rem;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.team-owl-slider {
  position: relative;
  padding: 20px 0;
}

.team-slide {
  padding: 0 15px;
}

.team-card {
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-image {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(220, 54, 69, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.team-card:hover .play-btn {
  opacity: 1;
  visibility: visible;
}

.play-btn:hover {
  background: #dc3545;
  transform: translate(-50%, -50%) scale(1.1);
}

.team-info {
  padding: 25px 20px;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.team-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  text-align: left;
  flex: 1;
}

.team-role {
  color: #666;
  font-size: 1rem;
  margin: 0;
}

/* Owl Carousel Custom Styles for Team Section */
.team-owl-slider .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  pointer-events: none;
  bottom: inherit;
  height: 50px;
}

.team-owl-slider .owl-nav button {
  position: absolute;
  width: 50px;
  height: 50px;
  background: white;
  border: none;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  z-index: 10;
  font-size: 0 !important;
}

.team-owl-slider .owl-nav button:hover {
  background-color: #dc3545;
  color: white;
  transform: scale(1.1);
}

.team-owl-slider .owl-nav .owl-prev {
  left: -75px;
}

.team-owl-slider .owl-nav .owl-next {
  right: -75px;
}

.team-owl-slider .owl-nav button span {
  font-size: 20px;
  font-weight: bold;
}

.team-owl-slider .owl-dots {
  text-align: center;
  margin-top: 40px;
  display: none;
}

.team-owl-slider .owl-dots .owl-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #ddd;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.team-owl-slider .owl-dots .owl-dot.active,
.team-owl-slider .owl-dots .owl-dot:hover {
  background: #dc3545;
  transform: scale(1.2);
}
.team-owl-slider .owl-item .team-info img {
  width: 40px;
}

/* Footer Styles */
.footer {
  padding: 80px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 24px;
}

/* Company Info Section */
.company-info {
  max-width: 400px;
}

.footer-logo {
  margin-bottom: 24px;
}

.footer-logo .logo-img {
  height: 40px;
  width: auto;
}

.company-description {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 32px;
  opacity: 0.8;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-details {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.8;
}

.contact-details p {
  margin: 0;
}

.contact-details a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #000;
}

/* Footer Links */
.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0.8;
}

.footer-menu li a {
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1.5;
}

.footer-menu li a:hover {
  color: #000;
}

/* Certifications */
.certifications {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.cert-badges {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
}

.cert-badge {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-img {
  height: 112px;
  width: auto;
}

/* Footer Bottom */
.footer-bottom {
  margin-bottom: 24px;
}
.footer-bottom .divideLine {
  height: 34px;
}
.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.follow-text {
  font-size: 14px;
  font-weight: 500;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-2px);
}

.footer-legal {
  display: flex;
  gap: 24px;
}
.social-icons img {
  width: 40px;
}
.legal-link {
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-link:hover {
  color: #333;
}
.arrowIcon {
  width: 33px;
  height: 33px;
}
.teamBtn {
  width: 449px;
}
.sectionTen .heading {
  max-width: 642px;
}
.headingBx {
  flex: 1;
}
.greatMindIcon {
  position: absolute;
  right: -36px;
  top: 25px;
}
.sectionTenInner:before {
  background: linear-gradient(180deg, #fff 0%, #f2f8fe 100%);
  height: 100px;
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  display: inline-block;
  z-index: -1;
}

.sectionTenInner {
  position: relative;
  background-image: url(../imgs/tenSectionBg.svg);
  background-position: left;
  background-repeat: no-repeat;
  background-size: contain;
}
.footer-section p,
.footer-section a {
  font-size: 16px;
  color: var(--primary-text);
}
.lastSection .footer-section {
  flex: 1;
}
.secondSection .contact-item {
  max-width: 383px;
}
.footer-legal a {
  color: var(--primary-text);
}
.sectionTen {
  margin-top: 90px;
}

/* Responsive Design for Footer */
.lifeMindruby {
  background-image: url(../imgs/lifeMindruby.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.lifeMindruby h1.hero-description {
  font-size: 70px;
  font-weight: 600;
  max-width: 1236px;
  margin: 0 auto;
  text-align: center;
}
.hero-content .cta-btn {
  margin: 16px auto 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 60px;
}

.card {
  padding: 25px 60px 25px 40px;
  border-radius: 25px;
  border: none;
  border-top: 10px solid #de3336;
}

.card h3 {
  font-size: 40px;
  color: var(--primary-text);
  margin-bottom: 10px;
  margin-top: 5px;
  font-weight: 600;
}

.card p {
  font-size: 20px;
  color: var(--primary-text);
}
.card .card-subtitle {
  font-size: 20px;
  color: rgba(10, 18, 46, 0.43);
  margin-bottom: 12px;
  font-weight: bold;
}
.subtitle {
  font-size: 32px;
  line-height: 43px;
}
.ourCulture {
  margin-top: 80px;
}
.ourCulture .grid {
  margin-top: 50px;
}
.nav-item:has(.nav-link.active) {
  border-bottom: 5px solid #d94548;
}

.tab-pane {
  padding-top: 16px;
}

.nav-tabs .nav-link.active {
  border: none;
}

.nav-tabs .nav-link {
  color: #33384b;
  font-weight: 600;
  font-size: 22px;
  padding: 26px;
  border: none;
}
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border: none;
}
.bgRemove {
  background: none;
}
.snapshotContainer:before,
.joinContainer:before {
  background: linear-gradient(180deg, #f2f8fe 0%, #fff 100%);
  width: 100%;
  height: 216px;
  display: inline-block;
  position: absolute;
  top: -50px;
  left: 0;
  z-index: -1;
  content: "";
}
.snapshotContainer:after,
.joinContainer:after {
  background: linear-gradient(180deg, #fff 0%, #dee7ef 100%);
  width: 100%;
  height: 216px;
  display: inline-block;
  position: absolute;
  bottom: -100px;
  left: 0;
  z-index: -1;
  content: "";
}

.joinContainer.b:before {
  background: none;
}

.snapshotContainer {
  margin-top: 70px;
}

/* Salesforce page html Start */

.heroSection {
  background: linear-gradient(180deg, #fff 33.71%, #d1e5ee 100%);
}

.pattern-bg {
  position: absolute;
  left: 0;
  z-index: 0;
  top: 0;
}

.banner-title {
  font-size: 80px !important;
  font-style: normal;
  font-weight: 600;
  line-height: 90px !important;
  margin-bottom: 24px;
}

.pattern-bg img {
  width: 85%;
}
.hero-text p {
  color: rgba(10, 18, 46, 0.8);
  font-size: 22px;
  font-weight: 400;
  line-height: 34px;
}
.hwm-sf-img {
  position: absolute;
  top: 90px;
}

.hwm-sf-img img {
  width: 90%;
}
.hwm-section {
  background: url(../imgs/ai-sf-triangle-shape.png) no-repeat right top;
}

.sf-cloud-expertise {
  border-radius: 100px 0 0 0;
  background: linear-gradient(
    148deg,
    #f3f6f9 9.92%,
    #fff 40.46%,
    rgba(223, 230, 237, 0.34) 79.74%
  );
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 700px;
  width: 100%;
}

.sf-expertise-card {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  border-radius: 7.836px;
  border: 0.712px solid #d7e2ed;
  background: linear-gradient(299deg, #fff 10.01%, #fff 114.49%);
}

.sf-expertise-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sf-expertise-card h3 {
  color: #1e293b;
  margin: 0;
  color: var(--Primary-Text-Color, #2a2b2f);
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
}

.countList.b {
  justify-content: space-between;
  gap: 20px;
}

.why-choose-grid .sf-expertise-card {
  border-radius: 15px;
}

.why-choose-grid .sf-expertise-card.a {
  border-radius: 15px;
  background: radial-gradient(
    111.32% 70.91% at 46.57% 16.23%,
    #ffeecb 0%,
    #fff 100%
  );
  border: 1px #dbcbaa solid;
}

.why-choose-grid .sf-expertise-card.b {
  background: radial-gradient(
    92.02% 113.87% at 50% 32.47%,
    #d1f2e3 0%,
    #fff 100%
  );
  border: 1px #99c2af solid;
}
.why-choose-grid .sf-expertise-card.c {
  background: radial-gradient(
    97.15% 91.8% at 50% 32.47%,
    #d7f5fa 0%,
    #fff 100%
  );
  border: 1px #9fc7cd solid;
}
.why-choose-grid .sf-expertise-card.d {
  background: radial-gradient(
    95.21% 82.71% at 50% 32.47%,
    #fadad6 0%,
    #fff 100%
  );
  border: 1px #d9c2be solid;
}
.why-choose-grid .sf-expertise-card.e {
  background: radial-gradient(
    96.19% 86.66% at 50% 32.47%,
    #c3e7ff 0%,
    #fff 100%
  );
  border: 1px #adc6d7 solid;
}
.why-choose-grid .sf-expertise-card.f {
  background: radial-gradient(
    102.27% 87.37% at 50% 32.47%,
    #e8e0fb 0%,
    #fff 100%
  );
}
.why-choose-grid .sf-expertise-card.g {
  background: radial-gradient(
    100.62% 101.2% at 50% 32.47%,
    #f6e4fe 0%,
    #fff 100%
  );
  border: 1px #d4d1dd solid;
}
.why-choose-grid .sf-expertise-card.h {
  background: radial-gradient(
    100.62% 101.2% at 50% 32.47%,
    #f4eed4 0%,
    #fff 100%
  );
}

.grid-container.why-choose-grid {
  max-width: none;
}

.feature-icon {
  margin-bottom: 15px;
}

.feature-box-b {
  border-radius: 12px;
  padding: 25px;
  height: 100%;
  transition: all 0.3s ease;
}

.feature-box-b:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.feature-box-b h5 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
  color: #111827;
}

.feature-box-b p {
  color: #6b7280;
  font-size: 15px;
  line-height: 1.5;
}

.why-choose-mr {
  padding-top: 60px;
  position: relative;
}

.why-choose-mr:after {
  padding-top: 60px;
  background: linear-gradient(4deg, #f6f8fa 0%, #fff 100%);
  position: absolute;
  content: "";
  width: 100%;
  height: 150px;
  bottom: 0;
}

.contact-header-section h4 {
  font-weight: 600;
}

.f-20 {
  font-size: 20px;
}
.fw-600 {
  font-weight: 600;
}

.trusted-clients-section {
  margin-top: 30px;
  margin-bottom: 80px;
}

.section-title .text-gradient {
}

.section {
  padding-top: 50px;
  padding-bottom: 50px;
}

.circle-pattern {
  position: absolute;
  right: 0;
  /* width: 500px; */
  height: 400px;
  top: 0;
  z-index: 0;
}
.why-choose-mr .section-inner {
  position: relative;
  z-index: 1;
}

.ai-with-salesforce {
  background: url(../imgs/circle-pattern-bg.svg) no-repeat right center;
}

.heroSection .heroBanner > div > .row {
  height: 650px;
}

.banner-img {
  position: absolute;
  bottom: 0;
  text-align: right;
}
.header-container {
  max-width: 1600px;
}

.home-content {
  margin-top: 100px;
}
/* Salesforce page html End */

/* Image Popup Modal Styles */
body.popup-open {
  overflow: hidden;
}

.image-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
}

.image-popup-modal {
  position: relative;
  max-width: 100%;
  height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-popup-content {
  position: relative;
  max-width: 600px;
  max-height: 100%;
  width: 100%;
}
.image-popup-content img {
  width: 100%;
}

.image-popup-content img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.image-popup-close {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.06);
  border: 2px solid white;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.image-popup-close:hover {
  background-color: rgba(255, 255, 255, 0.12);
  transform: scale(1.05);
}

.image-popup-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.06);
  border: 2px solid white;
  border-radius: 50%;
  color: white;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.image-popup-nav:hover {
  background-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-50%) scale(1.05);
}

.image-popup-prev {
  left: -80px;
}

.image-popup-next {
  right: -80px;
}

.image-popup-nav:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

.MagicScroll .px-1 img {
  cursor: pointer;
  transition: transform 0.2s ease;
}

.MagicScroll .px-1 img:hover {
  transform: scale(1.04);
}

/* MagicScroll pause on hover */
.MagicScroll.paused * {
  animation-play-state: paused !important;
  transition-delay: 0s !important;
}

.MagicScroll.paused {
  animation-play-state: paused !important;
}
.joinContainer .greatMindIcon {
  left: 100%;
  top: 27px;
}
.joinContainer {
  padding: 80px 0;
  /* margin-top: 60px; */
}
.joinContainer:before {
  top: -0px;
}
.joinContainer:after {
  bottom: 0px;
}
.nav-tabs {
  display: flex;
  flex-wrap: nowrap;
  overflow-y: auto;
}
.nav-tabs button {
  white-space: nowrap;
}

/* digital transformation */
.features-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
  max-width: 650px;
  margin: 80px auto;
  padding: 0 20px;
  color: #0a0a0a;
}

.feature-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-box h3 {
  color: rgba(10, 18, 46, 0.8);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0;
}

.feature-box p {
  color: rgba(10, 18, 46, 0.8);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 0;
}
.digitalTransformationSec {
  margin-top: 70px;
}

/* AI page css Start*/
.industry-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
  height: 400px;
  border: 1px #dee3ea solid;
}

.fin {
  border: 1px solid #bde0c0;
  background: linear-gradient(217deg, #f1fbf2 9.66%, #c8f0cc 98.31%);
}

.industry-card.b {
  border: 1px solid #bcbcbc;
  background: linear-gradient(38deg, #f0f0f0 -7.83%, #fff 66.29%);
}
.industry-card.c {
  border: 1px solid #c2d5eb;
  background: linear-gradient(56deg, #d8e5f4 6.35%, #f2f8ff 95.57%);
}

.industry-card h3 {
  font-size: 41px;
  font-weight: 600;
}

.ai-enable-section .row .col-lg-6 {
  width: 44%;
}

.ai-enable-section .row .col-lg-3 {
  width: 28%;
}

.capability-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  border-top: 7px solid #de3336;
  transition: all 0.3s ease;
  height: 100%;
  width: 90%;
}
.capability-card h3 {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.capability-card .card-label {
  color: var(--Secondary-text, rgba(10, 18, 46, 0.43));
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px; /* 160% */
}
.capability-card .card-description {
  color: var(--Primary-Text-Color, #2a2b2f);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px; /* 135% */
}

.mo-section {
  border-radius: 100px 0 0 0;
  background: radial-gradient(
    247.21% 128.68% at 25.05% -12.5%,
    #f3f6f9 0%,
    #fff 30.2%,
    #fff 68.05%,
    #f6f8fa 100%
  );
}

.outcome-card {
  border-radius: 23px;
  background: #fff;
  box-shadow: -9px 33px 10px 0 rgba(97, 98, 101, 0),
    -6px 21px 9px 0 rgba(97, 98, 101, 0.01),
    -3px 12px 7px 0 rgba(97, 98, 101, 0.05),
    -1px 5px 5px 0 rgba(97, 98, 101, 0.09), 0 1px 3px 0 rgba(97, 98, 101, 0.1);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 240px;
}

.outcome-card h3 {
  color: var(--Primary-Text-Color, #2a2b2f);
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px; /* 133.333% */
}

.outcome-value {
  color: var(--Primary-Text-Color, #2a2b2f);
  text-align: center;
  font-size: 55.529px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px; /* 57.143% */
}

.ben-result {
  font-size: 38px;
}
.outcome-wrap {
  gap: 30px;
  max-width: 790px;
  margin-top: 60px;
}
.mo-pattern-bg {
  position: absolute;
  right: 0;
  z-index: 0;
  top: 0;
  top: 70px;
}

.why-choose-mr:after {
  padding-top: 60px;
  background: linear-gradient(360deg, #f6f8fa 0%, #fff 100%);
  position: absolute;
  content: "";
  width: 100%;
  height: 90px;
  bottom: 0;
}

.why-choose-grid.b {
  margin-top: 60px;
}

.why-choose-circle-bg {
  position: absolute;
  left: 0;
  z-index: 0;
}
/* AI page css End*/

/* About us page css start*/

.industry-card h4 {
  font-size: 24px;
  font-weight: 600;
}

.who-we-are-section .industry-card p {
  font-size: 18px;
}
.who-we-are-section .industry-card {
  height: 300px;
  position: relative;
}
.num {
  position: absolute;
  bottom: -9px;
  right: 20px;
  font-size: 80px;
  color: rgba(10, 18, 46, 0.1);
  font-weight: 600;
}
.leader-team .section-title {
  font-size: 62px;
}
.teamDetail {
  gap: 50px;
}
.teamList {
  gap: 30px;
}
.teamList .name,
.teamList .post {
  text-align: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
}
.list .name {
  margin-bottom: 10px;
}
.teamList .post {
  font-weight: 500;
}
.profilePic {
  margin-bottom: 25px;
  text-align: center;
}
.teamExperience li {
  color: var(--primary);
  font-size: 24px;
  font-weight: 400;
  line-height: 27px;
}
.teamExperience ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 20px 0;
  list-style: none;
  margin: 0;
}
.global-footprints {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-image: url(../imgs/mapBg.png);
  padding: 40px 60px;
  border-radius: 10px;
  margin: 40px auto;
  background-size: cover;
  background-repeat: no-repeat;
}
.global-text h2 {
  color: #142e63;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.786px;
}
.global-text li {
  font-size: 26px;
  color: #002c5f;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  font-weight: 700;
}

.global-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wwd-card h3 {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 0;
}

.why-choose-circle-bg {
  position: absolute;
  left: 0;
  top: 20px;
}

.wwd-btn-container {
  position: absolute;
  bottom: 58px;
  left: 156px;
  /* top: 0; */
}

.wwd-btn-container .btn {
  padding: 10px 28px;
  font-size: 20px;
  z-index: 1;
}
.btn-shadow {
  position: absolute;
  content: "";
  border-radius: 50px;
  background: rgb(43 51 57 / 70%);
  filter: blur(22px);
  width: 97%;
  height: 24px;
  z-index: 0;
  top: 59px;
  left: 11px;
}
.what-we-do {
  border-radius: 100px 0 0 0;
  background: linear-gradient(
    123deg,
    #f2f8fe 17.69%,
    #fff 49.58%,
    #eef5fd 90.6%
  );
}

.poe-section {
  background: radial-gradient(
    158.53% 72.46% at 70.8% 65.95%,
    #fff 0%,
    rgba(234, 247, 253, 0.3) 46.06%,
    rgba(207, 236, 248, 0.33) 100%
  );
}
.poe-section .text-gradient {
  background-size: 1500px;
}
.btn-section {
  position: relative;
}

.join-us-section:after {
  background: linear-gradient(180deg, #fff 0%, #f2f8fe 100%);
  width: 100%;
  height: 216px;
  display: inline-block;
  position: absolute;
  bottom: -11px;
  left: 0;
  z-index: -1;
  content: "";
}

.g-reviews .owl-nav {
  position: static;
  margin-top: 0;
}

/* --reviews-- */
.review-card {
  width: 100%;
  /* max-width: 420px; */
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #dfe3e6;
  height: 340px;
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-img {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  object-fit: cover;
}

.user-name {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.time {
  font-size: 13px;
  color: #777;
}

.google-logo {
  width: 26px !important;
}

.stars {
  color: #ffb800;
  font-size: 20px;
  margin: 12px 0;
  display: flex;
  gap: 5px;
}

.stars img {
  width: 24px !important;
}

.review-text {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin: 0;
}

.g-reviews .owl-nav button {
  border-radius: 50px !important;
  width: 40px;
  height: 40px;
  position: absolute;
  top: -230px;
}

.g-reviews .owl-nav button.owl-prev {
  left: -29px;
}

.g-reviews .owl-nav button.owl-next {
  right: -29px;
}
/* --reviews-- */

.wwd-card {
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px #e0e6ec solid;
  padding-bottom: 18px;
}
.wwd-card .card-icon {
  width: 100px;
  text-align: center;
}
.wht-we-do-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.wwd-girl-img {
  position: absolute;
  top: -201px;
}

.awards-section .recognition-label h3 {
  color: #2a2b2f;
}

.recognition-section-b {
  margin: 0 auto;
  width: 100%;
  display: flex;
}

.awards-section .container {
  max-width: 1600px;
}
.awards-section .recognition-badges div:nth-child(5) > div img {
  height: 40px;
}

.awards-section .badge-times {
  font-size: 11px;
  color: #2a2b2f;
  border: 1px solid #2a2b2f;
}
.awards-section .badge-logo img {
  height: auto;
  width: 100%;
  object-fit: contain;
}

.awards-section .recognition-badges {
  flex-wrap: nowrap;
}

.leader-team .section-title,
.exe-leader-team .section-title {
  font-size: 62px;
}
.exe-leader-team .teamList {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.exe-leader-team .teamList .list {
  width: 100%;
}
.exe-leader-team .teamList .post {
  font-weight: 500;
  text-transform: none;
  font-size: 16px;
}

.btn-shadow-b {
  position: absolute;
  width: 97%;
  height: 19px;
  z-index: 0;
  top: 57px;
  left: 11px;
  border-radius: 50px;
  background: rgba(2, 79, 158, 0.6);
  filter: blur(20px);
}

.banner-btn .btn {
  padding: 16px 28px;
  height: 70px;
  z-index: 1;
  position: relative;
}
/* About us page css end*/

/* Client Spoltlight Start */

.client-spotlight {
  background-image: url(../imgs/client-spotlight-banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.hero.client-spotlight {
  min-height: 80vh;
}

.client-videos.owl-carousel img {
  /* width: auto; */
}

.feature-video-wrapper {
  padding-left: clamp(10px, 7.5vw, 200px);
  /* padding-left: 200px; */
}
.feature-video-wrapper .owl-nav {
  position: relative;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-video-wrapper .owl-nav button {
  border-radius: 50px !important;
  width: 40px;
  height: 40px;
}

.feature-video-wrapper .owl-nav button.owl-prev {
  left: -29px;
  top: 0;
}

.feature-video-wrapper .owl-nav button.owl-next {
  right: -29px;
  top: 0;
}

#client-video-modal .modal-dialog {
  max-width: 800px;
}

/* Client Spoltlight End */

/* Form css */
.error {
  color: #dc3545;
  font-size: 12px;
  margin-top: 4px;
  display: none;
}
/* Form css end*/
.g-reviews .owl-nav button.owl-prev,
.g-reviews .owl-nav button.owl-next {
  top: 50%;
  transform: translateY(-50%);
}
.g-reviews .owl-nav button.owl-prev:hover,
.g-reviews .owl-nav button.owl-next:hover {
  background-color: #efefef;
}

/* Horizontal Carousel Gallery */
.magic-scroll-gallery {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 8px;
  padding: 10px;
  position: relative;
}

/* Hide scrollbar for Chrome, Safari, and Edge */
.magic-scroll-gallery::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for Firefox */
.magic-scroll-gallery {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.magic-scroll-gallery a.lg-item {
  flex: 0 0 auto;
  min-width: 200px;
  height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.magic-scroll-gallery a.lg-item img {
  width: 300px;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.magic-scroll-gallery a.lg-item:hover img {
  transform: scale(1.05);
}

/* Auto-scroll animation */
.magic-scroll-gallery.auto-scroll {
  animation: autoScroll 30s linear infinite;
}

@keyframes autoScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Banner Text animation */

.banner-text {
  font-size: 90px;
  font-weight: 700;
  line-height: 1.2;
  height: 105px;
  overflow: hidden;
  position: relative;
}

.text-slider {
  display: flex;
  flex-direction: column;
  animation: pausedSlide 6s infinite ease-in-out;
  transform: translateZ(0);
  will-change: transform;
}

.slide {
  height: 105px;
  color: #fff;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Slide animation with 2.5s pause on each slide */
@keyframes pausedSlide {
  0%,
  20% {
    transform: translateY(0);
  }

  35%,
  55% {
    transform: translateY(-105px);
  }

  70%,
  90% {
    transform: translateY(-210px);
  }

  100% {
    transform: translateY(-315px);
  }

  /* 100% {
    transform: translateY(-420px);
  } */
}

/* Simple seamless sliding - no extra animations needed */

.w50 {
  width: 50%;
}

.google-reviews-section.b:after {
  background: linear-gradient(180deg, #fff 0%, #e7f0f7 100%);
  width: 100%;
  height: 216px;
  display: inline-block;
  position: absolute;
  bottom: -10px;
  left: 0;
  z-index: -1;
  content: "";
}

.video-card img {
  height: 340px;
}

.team2 {
  position: relative;
  top: -20px;
}

.team3 {
  position: relative;
  top: -40px;
}

.team4 {
  position: relative;
  top: -10px;
}

.team6 {
  position: relative;
  top: 16px;
}

.contact-section:after {
  background: linear-gradient(180deg, #fff 0%, #e7f0f7 100%);
  width: 100%;
  height: 216px;
  display: inline-block;
  position: absolute;
  bottom: -10px;
  left: 0;
  z-index: -1;
  content: "";
}

.upload-box {
  width: 100%;
  margin: 20px auto;
}

.upload-label {
  width: 100%;
  padding: 40px 20px;
  border: 1.5px solid #e0e0e0;
  border-radius: 12px;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s ease;
}

.upload-label:hover {
  border-color: #5a6cff;
  background: #f4f6ff;
}

.upload-icon {
  font-size: 40px;
  color: #0a1d4f;
  margin-bottom: 10px;
}

.upload-label p {
  margin: 0;
  font-size: 16px;
  color: #333;
}

input[type="file"] {
  display: none;
}

/* Form Validation Error Styling */
.error {
  display: none;
  color: #dc3545;
  font-size: 12px;
  font-weight: 500;
  margin-top: 4px;
  padding: 0;
  line-height: 1.4;
}

.error:empty {
  display: none !important;
}

/* Form Messages Styling (Contact/Refer Forms) */
#form-messages,
#refer-form-messages {
  padding: 12px 15px;
  border-radius: 4px;
  margin-bottom: 15px;
  display: none;
  align-items: center;
  gap: 10px;
}

#form-messages i,
#refer-form-messages i {
  font-size: 18px;
}

#form-messages.alert-success,
#refer-form-messages.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

#form-messages.alert-danger,
#refer-form-messages.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.privacy-banner {
  background-color: #f1f1f1;
  position: relative;
  top: -20px;
}

.privacy-banner .heroBannerInnerPage-row {
  height: 480px;
  margin-top: 20px;
}
.mainHeading {
  font-size: 48px;
}

.heroBannerInnerPage-container .left h1,
.heroBannerInnerPage3 .left h1 {
  color: #3b4158;
  font-size: 52px;
  font-weight: 600;
  line-height: 72px;
  margin-bottom: 24px;
}

.privacySection {
  padding-bottom: 80px;
  border-bottom: 1px #ccc solid;
}

.comp-logo {
  width: 180px !important;
}

.mt-50 {
  margin-top: 50px;
}

.c-name {
  line-height: 30px;
}

#wayne-modal .modal-dialog {
  max-width: 800px;
}

.njtc img {
  width: 140px;
}
