@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Oswald:wght@200..700&display=swap');

html {
  font-size: 16px;
}

:root {
  /* Colors */
  --anlage-theme-color: #0094d9;
  --orange: #f15c23;
  --yellow: #ffc700;
  --blue-dark: #003f77;
  /* Fonts */
  --inter: 'Inter', sans-serif;
  --oswald: 'Oswald', sans-serif;
}

* {
  scroll-behavior: smooth;
}

body {
  font-family: var(--inter);
  font-optical-sizing: auto;
  overflow-x: clip;
}

/* 
#hero {
  background-color: var(--anlage-theme-color);
} */

.clr-pri {
  color: var(--anlage-theme-color) !important;
}

.clr-orange {
  color: var(--orange) !important;
}

.clr-yellow {
  color: var(--yellow);
}

.clr-dark-blue {
  color: var(--blue-dark) !important;
}

.bg-pri {
  background-color: var(--anlage-theme-color);
}

.bg-orange {
  background-color: var(--orange);
}

.bg-yellow {
  background-color: var(--yellow);
}

.bg-grey {
  background-color: #e2e2e2 !important;
}

.bg-dark-blue {
  background-color: var(--blue-dark) !important;
}

.bg-theme {
  background-color: var(--anlage-theme-color) !important;
}

.border-orange {
  border: 2px solid var(--orange) !important;
}

#hero-section {
  width: 100%;
  height: 100vh;
  background-image: url('/static/cwf/images/anlgweb/new/hero-new-1.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  padding: 0 40px;
  position: relative;
  transition: background-image 800ms ease-in-out;
}

#hero-section .overlay {
  position: absolute;
  top: -240px;
  left: 0;
  right: 0;
  bottom: -610px;
}

#hero-section nav {
  display: none;
  grid-template-columns: 50% 50%;
  align-items: center;
  height: 80px;
}

nav#mobile-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
  height: 80px;
}

nav#mobile-navbar img {
  height: 40px;
}

@media (min-width: 769px) {
  #hero-section nav#light-navbar {
    display: grid;
  }

  nav#mobile-navbar {
    display: none;
  }
}

#hero-section nav img {
  height: 40px;
}

#hero-section nav a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}

#navbar-menu {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
}

#coloured-navbar {
  background-color: rgb(255, 255, 255, 30%);
}

#coloured-navbar #navbar-menu {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
}

#coloured-navbar #navbar-menu a {
  color: var(--blue-dark) !important;
}

#hero-section #hero-section-data {
  height: calc(100% - 160px);
  align-items: center;
  position: relative;
  display: flex;
  flex-direction: column;
}

#hero-arrow-images,
#hero-button {
  position: absolute;
  right: 30px;
  bottom: -150px;
}

#hero-button {
  right: unset;
}

#hero-section #hero-section-data .hero-data-column {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  transition: opacity 0.5s ease-in-out;
}

.hero-data-column.d-none {
  display: none !important;
}

#hero-banner-controls {
  bottom: 20px; /* Adjust based on your design */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
}

#hero-banner-controls span {
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-radius: 50%;
  outline: 1px solid var(--anlage-theme-color);
  position: relative;
  cursor: pointer;
}

#hero-banner-controls span.active::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--anlage-theme-color);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  z-index: 9999;
}

#hero-section #hero-section-data .hero-data-column h2 {
  font-size: 50px;
  font-weight: 700;
  /* line-height: 100px; */
  text-align: left;
  margin-bottom: 0;
  /* padding-left: 20px; */
  /* text-shadow: 0 0 5px #030e21 !important; */
  color: #fff !important;
}

#hero-section #hero-section-data .hero-data-column p {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0;
}

#hero-section #hero-section-data .hero-data-column.third-banner {
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: center;
}

/* #hero-section #hero-section-data .hero-data-column span {
  font-size: 50px;
  font-weight: 400;
  text-align: left;
  color: rgb(255, 255, 255, 20%);
  width: 100%;
  text-shadow: 0 0 5px #030e21 !important;
  opacity: 0%;
} */

/* #hero-section #hero-section-data .hero-data-column span:nth-of-type(2) {
  padding-left: 54px;
}

#hero-section #hero-section-data .hero-data-column span.active {
  color: #ffff;
  font-size: 50px;
  opacity: 100%;
  font-weight: 700;
  text-align: left;
  text-shadow: 0 0 5px #030e21 !important;
}

.hero-data-column:nth-of-type(1) span:nth-of-type(2).active {
  color: var(--anlage-theme-color) !important;
}

.hero-data-column:nth-of-type(2) span:nth-of-type(2).active {
  color: var(--yellow) !important;
}

.hero-data-column:nth-of-type(3) span:nth-of-type(2).active {
  color: var(--orange) !important;
} */

#hero-section .nav-menu {
  display: none;
  position: absolute;
  width: 25vw;
  height: 100vh;
  top: -2px;
  right: 0;
  background: white;
  z-index: 99999999999999999;
  overflow-y: scroll;
}

.nav-menu .nav-menu-heading button {
  font-size: 18px;
  font-weight: 600;
  line-height: 40px;
  text-align: left;
  color: var(--orange);
}

.nav-menu .nav-menu-heading i {
  font-size: 14px;
  padding-top: 18px;
}

.nav-menu .nav-menu-heading button.btn:focus {
  box-shadow: unset;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  line-height: 30px;
  text-align: left;
  color: var(--blue-dark);
  padding: 6px 20px 0px 20px;
}

#why-us,
#features,
#services,
#contact-us,
#case-studies {
  padding-top: unset;
}

#case-studies {
  height: unset !important;
}

section {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  padding: 0 40px;
  position: relative;
}

/* section#gcc-360, */
section.gcc-360-standalone-page {
  background-image: url('/static/cwf/images/anlgweb/new/bg-gcc-new.webp');
  background-position: bottom !important;
  /* margin-bottom: -140px; */
  z-index: 3;
  position: relative;
  overflow-y: clip;
}

section#gcc-360 .row {
  height: 100vh;
}

section.gcc-360-standalone-page {
  background-image: url('/static/cwf/images/anlgweb/new/bg-gcc.svg') !important;
}

/* section#talent-solution, */
section.standalone-talent-solutions-page {
  background-image: url('/static/cwf/images/anlgweb/new/bg-talent-solutions.webp');
  z-index: 1;
}
section.standalone-talent-solutions-page {
  background-image: url('/static/cwf/images/anlgweb/new/bg-talent-solutions-new.jpg') !important;
}

section#full-stack {
  background-image: url('/static/cwf/images/anlgweb/new/bg-full-stack.svg');
  /* margin-top: -140px; */
  position: relative;
}

section#workspace-solutions {
  background-image: url('/static/cwf/images/anlgweb/new/workspace-solutions-bg.png');
  filter: brightness(82%);
  background-size: cover;
}

section#ai-led-platforms {
  background-image: url('/static/cwf/images/anlgweb/new/ai-led-bg.png');
}

section#compliance-legal-accounting {
  background-image: url('/static/cwf/images/anlgweb/new/compliance-legal-accounting.png');
  z-index: 2;
}

section#case-studies-page-section {
  background-image: url('/static/cwf/images/anlgweb/new/case-studies-bg.png');
}

section#clients-page-section {
  background-image: url('/static/cwf/images/anlgweb/new/clients-bg.webp');
}

section#about-page-section {
  background-image: url('/static/cwf/images/anlgweb/new/about-bg.png');
}

section#contact-us-page {
  background-image: url('/static/cwf/images/anlgweb/new/contact-bg.png');
}

section#cla-page-section {
  background-image: url('/static/cwf/images/anlgweb/new/cla-bg.png');
}

section#gaas-page {
  background-image: url('/static/cwf/images/anlgweb/new/gaas-bg.png');
}

section#gcc-bot {
  background-image: url('/static/cwf/images/anlgweb/new/gcc-bot-bg.png');
}

section#contract-staffing {
  background-image: url('/static/cwf/images/anlgweb/new/contract-staffing.png');
}

section#permanent-staffing {
  background-image: url('/static/cwf/images/anlgweb/new/permanent-hiring-bg.png');
}

section#rpo-section {
  background-image: url('/static/cwf/images/anlgweb/new/rpo-bg.png');
}

section#diversity-hiring {
  background-image: url('/static/cwf/images/anlgweb/new/diversity-hiring-bg.png');
}

section#blog-listing {
  background-image: url('/static/cwf/images/anlgweb/new/bg-media-and-events.png');
}

section#media-and-events {
  background-image: url('/static/cwf/images/anlgweb/new/bg-blog-listing.png');
}

section#leadership-hiring {
  background-image: url('/static/cwf/images/anlgweb/new/leadership-hiring-bg.png');
}

section#careers-page-section {
  background-image: url('/static/cwf/images/anlgweb/new/careers-bg.png');
}

section#testimonials {
  height: unset;
  background-color: #f7f8fa;
}

section#gaas-page h1 {
  font-size: 96px;
  margin-top: -270px;
  text-shadow: 0 0 5px #030e21 !important;
}

.vertical-nav {
  position: absolute;
  left: 50px;
  height: 100%;
  /* width: 60px; */
  /* background-color: #005fa3; */
  display: grid;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  /* top: 0; */
  /* bottom: 560px; */
  /* overflow: hidden; */
  z-index: 9999;
  grid-template-rows: 20% 20% 20% 20% 20%;
}

#gcc-360 .vertical-nav {
  /* top: 40px; */
  height: 100vh;
  /* gap: 20px; */
  /* text-align: left; */
  grid-template-rows: 20% 30% 20% 20% 10%;
}

#talent-solution .vertical-nav {
  top: 95px;
  max-height: calc(100% - 112px);
}

#full-stack .vertical-nav {
  top: 96px;
}

#gcc-360 .arrow-container {
  height: calc(100% + 90px);
  margin-top: 50px;
  overflow: hidden;
  width: 53px;
  padding-left: 20px;
  margin-left: -20px;
}

#talent-solution .arrow-container {
  overflow: hidden;
  height: 100%;
  margin-top: -60px;
  width: 53px;
  margin-left: -20px;
  padding-left: 17px;
}

#full-stack .arrow-container {
  overflow: hidden;
  height: 100%;
  margin-top: -110px;
  width: 53px;
  margin-left: -20px;
  padding-left: 17px;
}

#clients-section {
  height: unset;
  background-color: #f7f8fa;
}

.vertical-nav a {
  color: #fff;
  text-decoration: none;
  writing-mode: vertical-lr;
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 400;
  text-align: left;
  font-family: var(--oswald);
  opacity: 80%;
  transform: rotate(180deg);
}

.vertical-nav a.active {
  color: #fff !important;
  opacity: 100%;
}

/* #talent-solution .vertical-nav a{
  opacity: 80%;
} */

/* .vertical-nav img {
  padding-bottom: px;
} */

.image-container img {
  max-width: 100%;
  height: auto;
}

.text-content {
  max-width: 500px;
}

.text-content h1 {
  color: #fff;
  font-size: 70px;
  font-weight: 700;
  /* line-height: 100px; */
  letter-spacing: -0.03em;
  text-align: left;
}

.text-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #fff;
}

.get-started-btn {
  padding: 16px 30px;
  border: 2px solid #fff;
  color: #fff;
  background-color: transparent;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 20px;
}

.get-started-btn:hover {
  background-color: var(--orange);
}

#legal-advisory .get-started-btn:hover,
#financial-c .get-started-btn:hover,
#accounting-c .get-started-btn:hover,
.flexible-office-solution .get-started-btn:hover {
  background-color: var(--orange);
  color: white;
}

.case-study {
  max-width: 400px;
  /* margin-top: 200px; */
  margin-top: 100px;
}

.case-study h3 {
  font-size: 24px;
  color: #ffd700;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  text-align: left;
}

.case-study p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}

#talent-solution .text-content h1,
#talent-solution .text-content p,
#talent-solution .get-started-btn {
  color: var(--blue-dark);
}

#talent-solution .get-started-btn {
  border-color: var(--orange);
}

#gcc-360 .get-started-btn,
#full-stack .get-started-btn {
  border-color: var(--yellow);
}

#gcc-360 .get-started-btn:hover {
  background-color: var(--yellow);
}

#full-stack .get-started-btn:hover {
  background-color: var(--yellow);
}

#talent-solution .get-started-btn:hover {
  color: #fff;
}

#rotating-arrow-img {
  position: absolute;
  top: 57px;
  right: 174px;
}

#rotating-arrow-img img {
  transition: transform 1s ease-in-out;
}

#rotating-arrow-img:hover img {
  transform: rotate(360deg);
}

.rotate-arrow {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
  transition: transform 2s ease-in;
}

#full-stack ul,
.full-stack-standalone-page ul {
  list-style: none;
  text-align: center;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

#full-stack li,
.full-stack-standalone-page li {
  font-size: 18px;
  font-weight: 700;
  line-height: 48px;
  width: 100%;
  color: #fff;
}

#about-section {
  height: unset;
}

#about-section h2 {
  font-size: 22px;
  font-weight: 300;
  line-height: 42px;
  text-align: center;
  color: var(--blue-dark);
}

.about-section h2,
.about-section h4 {
  color: #0056b3;
}

.about-card {
  border-radius: 12px;
  padding: 10px 7px20px;
  background-color: #ffffff;
  border: 1px solid #e6e6e6;
  transition: box-shadow 0.3s ease-in-out;
  height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--orange);
}

.about-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-card h5 {
  font-size: 1.5rem;
}

.about-card img {
  height: 60px;
  width: 60px;
}

.card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 32px 0 32px;
  text-align: left !important;
}

.top-content .card-text {
  font-size: 16px;
}

.bottom-content h6,
.bottom-content p {
  color: var(--anlage-theme-color);
  font-size: 32px;
  font-weight: 600;
}

.bottom-content p {
  font-size: 18px;
}

.clients-section h2,
#case-studies h2,
#testimonials h2 {
  color: #fff;
  font-weight: bold;
}

.case-studies-title,
.clients-title,
.hear-clients-title {
  color: var(--blue-dark) !important;
}

.category-filters {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.category {
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: var(--blue-dark);
  transition: color 0.3s, border-bottom 0.3s;
}

.category.active {
  color: var(--orange);
  /* border-bottom: 2px solid orange; */
}

.category:hover {
  color: var(--orange);
}

.client-logos {
  min-height: 300px;
}

.client-logos img {
  /* width: 100%; */
  max-height: 100px;
  object-fit: unset;
  transition: transform 0.3s ease-in-out;
}

.client-logos img:hover {
  transform: scale(1.05);
}

.logo {
  display: none;
}

.logo[data-category='all'],
.logo.show {
  display: block !important;
}

.case-studies {
  display: flex;
  justify-content: center;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}

.case-card {
  flex: 1;
  padding: 20px;
  background-color: #004785;
  color: white;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 560px;
  overflow: hidden;
}

#card1 {
  background-color: var(--blue-dark);
}

#card2 {
  color: var(--anlage-theme-color);
  background-color: #fff;
  border: 1px solid #0093d4;
}

#card3 {
  background-color: #0093d4;
}

#card4 {
  background-color: var(--orange);
}

#card1 .vertical-text {
  color: #fff !important;
}

#card2 .vertical-text {
  color: #0093d4 !important;
}

.case-card.collapsed {
  flex: 0.3;
  background-color: #f47521;
}

.case-card h1 {
  font-size: 40px;
  margin: 0;
  font-weight: 700;
}

.case-card .description {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.5;
}

.case-card .read-more {
  margin-top: 20px;
  color: white;
  text-decoration: underline;
  font-size: 16px;
}

.case-card .number {
  font-size: 40px;
  font-weight: bold;
  text-align: right;
}

.case-card.collapsed .number,
.case-card.collapsed h1 {
  font-size: 25px;
}

.case-card.collapsed .description,
.case-card.collapsed .read-more {
  display: none;
}

.case-card .vertical-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: block;
  text-transform: uppercase;
  font-weight: bold;
  align-self: center;
}

.case-card.collapsed .card-content {
  display: none;
}

.case-card .card-content {
  display: none;
}

.case-card.expanded .vertical-text {
  display: none;
}

.case-card.expanded .card-content {
  display: block;
  padding: 40px;
}

.read-all-btn {
  margin-top: 20px;
  padding: 10px 30px;
  color: var(--orange);
  border: 2px solid var(--orange);
  border-radius: 5px;
  background: none;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.5s ease-out;
}

.read-all-btn:hover {
  background-color: var(--orange);
  color: #fff;
}

@media (max-width: 768px) {
  .case-studies {
    flex-direction: column;
  }

  #clients-case-studies {
    height: unset !important;
  }

  /* .case-card {
    margin-bottom: 20px;
  } */

  .case-card .vertical-text {
    transform: unset;
    writing-mode: unset;
    font-size: 12px;
    margin-bottom: unset;
    padding: 4px 0;
  }
}

#testimonials .text-testimonials {
  margin-top: 100px;
}

#testimonials .text-testimonials h5,
#testimonials .text-testimonials p {
  color: #4d4d4d;
}

#testimonials .text-testimonials h5 {
  font-weight: 700;
  font-size: 18px;
}

#testimonials .text-testimonials p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  padding: 20px 16px 20px 0px;
}

#testimonials .text-testimonials .client-name {
  color: var(--orange);
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  text-align: left;
}

#cta img,
#case-studies-grid-cta img {
  height: 350px;
  /* border-bottom: 10px solid var(--orange); */
}

#cta .opacity,
#case-studies-grid-cta .opacity {
  top: 0px;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000000;
  position: absolute;
  mix-blend-mode: normal;
  opacity: 0.55;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-heading {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1060;
  bottom: 0;
  left: 0;
}

.cta-heading h1 {
  color: #fff;
  font-weight: 700;
}

@media (max-width: 768px) {
  .cta-heading h1 {
    font-size: 24px;
  }
}

.cta-heading h1 span {
  color: var(--yellow);
}

.cta-heading button {
  border-color: var(--orange);
}

.cursor {
  display: inline-block;
  font-weight: 100;
  font-size: 24px;
  color: black;
  animation: blink 0.7s steps(1) infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

footer {
  background-color: #fff;
  padding: 40px 0;
  color: var(--blue-dark);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.footer-logo {
  flex: 1;
  text-align: left;
  padding-right: 20px;
}

.footer-logo img {
  width: 150px;
  /* margin-bottom: 20px; */
}

.social-icons {
  width: 150px;
  display: flex;
  justify-content: flex-start;
  gap: 30px;
}

.social-icons img {
  width: unset;
  height: 26px;
}

.footer-logo .social-icons a {
  /* margin-right: 10px; */
  color: #007bff;
  font-size: 20px;
  padding-top: 10px;
}

.footer-logo p {
  margin-top: 20px;
  color: var(--blue-dark);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex: 3;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1;
  margin: 0 20px;
}

.footer-column h3 {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: bold;
  color: #0093d4;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: var(--blue-dark);
  text-decoration: none;
  font-size: 14px;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    /* align-items: center; */
  }

  .footer-links {
    width: 100%;
    display: block;
  }

  .footer-column {
    margin-bottom: 30px;
  }

  .footer-logo {
    margin-bottom: 30px;
    /* text-align: center; */
    padding-left: 20px;
  }
}

@media (max-width: 1649px) {
  .case-study {
    margin-top: 20px;
  }

  .text-content p .case-study p,
  .text-content a .case-study a {
    font-size: 14px;
  }

  .get-started-btn {
    padding: 10px 30px;
    margin-top: 10px;
  }

  .text-content h1 {
    font-size: 55px;
    margin-top: -50px;
  }
}

@media (max-width: 1499px) {
  .standalone-talent-solutions-page .img-right {
    max-width: 100%;
    height: 400px;
    margin-bottom: 100px;
  }

  .gcc-360-left-img {
    max-width: 80% !important;
  }

  #hero-section #hero-section-data {
    height: calc(100vh - 300px);
  }

  #hero-section #hero-section-data .hero-data-column span,
  #hero-section #hero-section-data .hero-data-column span.active {
    font-size: 30px;
  }

  #hero-section #hero-section-data .hero-data-column h1 {
    font-size: 80px;
  }

  section#gcc-360 {
    overflow-y: unset;
  }

  .text-content h1 {
    font-size: 55px;
  }

  .case-study {
    margin-top: 20px;
  }

  .full-stack-banner-image {
    height: calc(100vh - 200px);
    text-align: center;
    margin-top: -100px;
  }

  .full-stack-banner-image img {
    height: 100%;
  }

  .full-stack-standalone-page .text-content,
  .full-stack-standalone-page .full-stack-banner-li {
    margin-top: -100px;
  }

  .talent-solution-banner-img-right {
    max-width: 100%;
    height: 500px;
    margin-top: -100px;
  }
}

@media (min-width: 1499px) and (max-width: 1599px) {
  .full-stack-standalone-page {
    margin-top: -100px;
  }
}

@media (max-width: 1399px) {
  .ai-led-platforms-page .vertical-nav {
    grid-template-rows: 20% 20% 45% 5%;
  }

  .ai-led-platforms-page .vertical-nav .arrow-container {
    padding-top: 60px;
    margin-top: -150px;
    max-width: 100%;
    max-height: 200px;
    overflow: clip;
    object-fit: contain;
  }

  .ai-led-platforms-page .vertical-nav .arrow-container img {
    overflow: hidden;
    margin-top: 30px;
  }

  section#gaas-page h1 {
    font-size: 76px;
    margin-top: -70px;
  }

  section#gcc-bot,
  section#contract-staffing,
  section#permanent-staffing,
  section#rpo-section,
  section#diversity-hiring,
  section#leadership-hiring {
    padding-top: 100px;
  }

  section#about-page-section {
    padding-top: 70px;
  }

  section#gcc-360 .row {
    height: calc(100vh - 50px);
  }

  section#gcc-360 .row .text-content h1,
  section#talent-solution .row .text-content h1,
  section#full-stack .row .text-content h1 {
    font-size: 40px;
  }

  section#gcc-360 .row .text-content p,
  section#talent-solution .row .text-content p,
  section#full-stack .row .text-content p {
    font-size: 14px;
  }

  #talent-solution .right-image {
    max-width: 100%;
  }

  #talent-solution .vertical-nav,
  section#full-stack .vertical-nav,
  section#full-stack .vertical-nav {
    top: 0px;
    grid-template-rows: 20% 30% 30% 10% 10%;
    max-height: calc(100% - 70px);
    gap: 20px;
  }

  section#talent-solution .text-content,
  section#full-stack .text-content {
    padding-left: 100px;
  }

  #gcc-360 .arrow-container {
    height: calc(100% - -85px);
  }

  #full-stack .arrow-container {
    height: calc(100% - -104px);
    /* overflow: clip; */
    padding-top: 70px;
    /* padding-left: 19px; */
  }

  #full-stack .full-stack-right-img {
    max-width: 100%;
    height: 400px;
  }
}

@media (min-width: 1600px) {
  .talent-solution-banner-img-right {
    margin-top: -100px;
  }
}

@media (max-width: 1599px) {
  #case-study-detail-page-solution {
    height: calc(100vh + 200px);
  }
}

@media (max-width: 768px) {
  .case-study-detail-page {
    padding: 0 !important;
  }
}

/*------------------------------------------------
Base File
--------------------------------------------------*/
.base-navbar {
  position: unset;
}

.base-navbar nav {
  display: none;
  grid-template-columns: 50% 50%;
  height: 80px;
}

@media (min-width: 769px) {
  .base-navbar {
    position: relative;
  }
  .base-navbar nav {
    display: grid;
  }
}

.base-navbar nav a {
  text-decoration: none;
  color: var(--blue-dark);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}

.base-navbar .nav-menu {
  display: none;
  position: absolute;
  width: 25vw;
  height: 100vh;
  top: -2px;
  right: 0;
  background: white;
  z-index: 11;
  overflow-y: scroll;
}

@media (max-width: 768px) {
  .base-navbar .nav-menu {
    width: 100% !important;
    top: 0px !important;
  }
}

/*------------------
GCC 360 Page
-------------------*/
.unique-gcc-360-section {
  margin-top: 140px;
  padding: 20px;
}

.unique-gcc-360-section .unique-content {
  width: 50%;
}

.unique-gcc-360-section .highlight-title {
  font-weight: bold;
  color: var(--blue-dark);
  font-size: 24px;
  padding-right: 160px;
}

.unique-gcc-360-section .description {
  /* margin-top: 20px; */
  font-size: 1rem;
  line-height: 1.6;
  color: #000;
}

.unique-gcc-360-section .unique-cards {
  margin-top: 20px;
}

.unique-gcc-360-section .card-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.unique-gcc-360-section .card-icon {
  margin-right: 20px;
}

.unique-gcc-360-section .card-icon img {
  width: 50px;
  height: auto;
}

.unique-gcc-360-section .card-title {
  color: var(--orange);
  font-size: 1.25rem;
  margin: 0 0 10px;
  font-weight: 700;
}

.unique-gcc-360-section .card-text p {
  margin: 0;
  color: #000;
  font-size: 14px;
  line-height: 1.5;
}

.unique-gcc-360-section hr {
  border-top: 1px solid var(--blue-dark);
  margin: 30px 0;
}

.gcc-page-services-section {
  margin-top: 30px;
  background-color: #fdf8f5; /* Light background color */
  padding: 30px 20px;
}

.gcc-page-service-item {
  text-align: left;
  padding: 20px;
  background-color: #fdf8f5;
  border-right: 1px solid #eee;
  cursor: pointer;
  position: relative;
}

.gcc-page-service-item:last-child {
  border-right: none;
}

.gcc-page-service-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: #aaa;
  display: inline-block;
  margin-bottom: 5px;
}

.gcc-page-active .gcc-page-service-title {
  font-weight: bold;
  color: var(--blue-dark);
}

.gcc-page-underline {
  height: 4px;
  background-color: #e65100;
  margin-top: 5px;
  display: none;
  position: relative;
}

.gcc-page-active .gcc-page-underline {
  display: inline-block;
  width: 100%;
}

.gcc-page-service-description-container {
  margin-top: 20px;
}

.gcc-page-service-description {
  color: #000;
  font-size: 18px;
  line-height: 1.5;
  width: 60%;
  padding: 10px 0 40px 6px;
}
.gcc-page-case-study-section {
  margin-top: 30px;
  padding: 30px 20px;
}

.gcc-page-case-study-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--blue-dark);
  text-align: center;
  margin: 30px auto 50px;
}

.gcc-page-case-study-card {
  /* border: 1px solid var(--orange); */
  border-radius: 10px;
  padding: 50px;
  text-align: left;
  transition: box-shadow 0.3s ease;
  position: relative;
}

.gcc-page-case-study-card:hover {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.gcc-page-case-study-card .numbering {
  position: absolute;
  right: 20px;
  top: 10px;
  color: var(--blue-dark);
  font-weight: bold;
  background-color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 900;
}

.gcc-page-case-study-heading {
  font-size: 1.25rem;
  color: var(--orange);
  font-weight: bold;
  margin-bottom: 10px;
}

.gcc-page-case-study-description {
  font-size: 0.95rem;
  /* color: #000; */
  line-height: 1.5;
  margin-bottom: 60px;
  font-weight: 600;
}

.gcc-page-case-study-read-more {
  font-size: 16px;
  /* color: #000; */
  font-weight: bold;
  text-decoration: none;
  /* padding-top: 40px; */
}

.gcc-page-case-study-read-more:hover {
  text-decoration: underline;
}

/*-----------
Talent Solutions Pages
-------------*/

#talent-solutions-page h2 button {
  font-weight: 600;
  font-size: 24px;
  line-height: 40px;
  color: var(--blue-dark);
}

.get-started-btn.contract-staffing-btn {
  color: var(--orange);
  border-color: var(--orange);
}

.get-started-btn.contract-staffing-btn:hover {
  color: #fff;
  background-color: var(--orange);
}

#talent-solutions-page .accordion i {
  color: var(--blue-dark);
  font-size: 18px;
  padding-top: 18px;
}

.border-orange-left {
  position: absolute;
  left: -35px;
  bottom: 0;
  background-color: var(--orange);
  top: 64px;
  width: 50px;
}

.border-orange-bottom {
  position: absolute;
  left: -35px;
  right: 115px;
  bottom: -50px;
  background-color: var(--orange);
  height: 50px;
}

#talent-solutions-page .accordion .btn:focus {
  box-shadow: unset;
}

.talent-solution-agile {
  background-image: url('/static/cwf/images/anlgweb/new/anlage-agile-bg.png');
  height: fit-content;
  background-position: center;
  background-size: cover;
  position: relative;
  margin: 30px auto;
  padding: 100px 60px 80px 60px;
}

.talent-solution-agile .overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: #000;
  right: 0;
  opacity: 75%;
}

.talent-solution-agile p,
.talent-solution-agile h6 {
  font-weight: 300;
  font-size: 18px;
  color: #fff;
  font-weight: 300;
}

.talent-solution-agile h6 {
  font-weight: 600;
}

.dh-sec-left {
  background-image: url('/static/cwf/images/anlgweb/new/dh-misc-1.png');
  background-position: center;
  /* background-size: cover; */
  width: 100%;
  height: 500px;
  background-repeat: no-repeat;
  padding: -10px;
}

/********************
Diversity hiring Page
*********************/
.dh-full-width-container {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  height: 100%;
  justify-content: space-around;
  padding-left: 30px;
}

.dh-full-width-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 50px;
}

.dh-full-width-wrapper div {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}

.dh-full-width-wrapper div div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dh-full-width-wrapper div * {
  color: #fff;
}

@media (min-width: 1499px) {
  .dh-full-width-container {
    height: 75%;
  }

  .dh-full-width-container {
    padding-right: 80px;
    margin-top: 60px;
    padding-left: 0;
  }
}

/*------------------
Full Stack Page
--------------------*/
/* .wheel-container {
  min-height: 350px;
  margin: 50px 0;
}

.wheel-wrapper {
  text-align: center;
  position: relative;
}

.wheel-arrows {
  position: absolute;
  top: 0;
  left: 350px;
}

.wheel {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
}

.wheel-title.platforms,
.wheel-title.business-operations,
.wheel-title.talent-solutions,
.wheel-title.workspace-solutions,
.wheel-title.compliance-legal-accounting {
  position: absolute;
}

.wheel-title.platforms h5,
.wheel-title.business-operations h5,
.wheel-title.talent-solutions h5,
.wheel-title.workspace-solutions h5,
.wheel-title.compliance-legal-accounting h5 {
  color: var(--blue-dark);
  font-weight: 700;
  cursor: pointer;
}

.wheel-title.platforms {
  top: 27px;
  left: 242px;
}

.wheel-title.business-operations {
  left: 280px;
  bottom: -80px;
}

.wheel-title.talent-solutions {
  bottom: -160px;
  left: 517px;
}

.wheel-title.workspace-solutions {
  top: 181px;
  left: 740px;
}

.wheel-title.compliance-legal-accounting {
  top: 10px;
  right: 210px;
}

.wheel-title.active h5 {
  color: var(--orange);
} */

/* Container */
.layout-wrapper {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

/* Circle Image */
.circle-image {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 auto;
}

.circle-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Text inside the circle */
/* .circle-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1.4;
  text-align: center;
} */

/* Outer Text Positioning */
.outer-text {
  position: absolute;
  color: var(--blue-dark);
  font-weight: bold;
  font-size: 1rem;
}

/* Positioning Specific */
.top-left {
  top: 30%;
  left: 5%;
}

.bottom-left {
  bottom: 26%;
  left: 15%;
}

.bottom-center {
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--orange);
}

.top-right {
  top: 30%;
  right: -5%;
}

.bottom-right {
  bottom: 26%;
  right: 15%;
}

@media (max-width: 768px) {
  .circle-image {
    width: 300px;
    height: 300px;
  }

  .circle-text {
    font-size: 1rem;
  }

  .outer-text {
    font-size: 0.9rem;
  }

  .top-left,
  .bottom-left {
    left: 3%;
  }

  .top-right,
  .bottom-right {
    right: 3%;
  }
}

.section-title {
  cursor: pointer;
  text-decoration: none;
  color: var(--blue-dark);
  transition: color 0.3s ease;
}

.section-title:hover {
  color: var(--orange);
}

.section-title.active {
  color: var(--orange);
  font-weight: bold;
}

.section-data-wrapper {
  background-color: #f7f8fa;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.section-data-wrapper .container {
  padding-top: 30px;
  padding-bottom: 30px;
}

/*--------------
Workspace Solutions
---------------*/

.relative-bg-orange,
.relative-bg-blue,
.relative-bg-yellow {
  background-color: var(--orange);
  width: 100%;
  height: 400px;
}

.relative-bg-blue {
  background-color: var(--blue-dark);
  margin-bottom: 70px;
}

.relative-bg-yellow {
  background-color: var(--yellow);
}

.relative-bg-orange img,
.relative-bg-blue img,
.relative-bg-yellow img {
  position: absolute;
}

.flexible-office-solution .get-started-btn {
  color: var(--orange);
  border-color: var(--orange);
}

.flexible-office-solution .get-started-btn:hover {
  color: #fff;
}

.relative-bg-orange img:nth-child(1),
.relative-bg-yellow img:nth-child(1) {
  left: 50px;
  max-width: 100%;
  top: -30px;
  height: 300px;
}

.relative-bg-blue img:nth-child(2) {
  left: -30px;
  max-width: 100%;
  top: 160px;
  height: 300px;
}

.relative-bg-orange img:nth-child(2),
.relative-bg-yellow img:nth-child(2) {
  right: -40px;
  top: 68px;
  max-width: 100%;
  height: 350px;
  width: 230px;
}

.relative-bg-blue img:nth-child(1) {
  right: 60px;
  top: -50px;
  max-width: 100%;
  height: 350px;
}

.flexible-office-solution {
  padding: 40px 20px 40px 130px;
}

.flexible-office-solution.technology-infrastructure {
  padding: 40px 20px 40px 50px;
}

.flexible-office-solution h1 {
  font-size: 24px;
  color: var(--blue-dark);
  font-weight: 600;
  text-align: left;
}

.anlage-agile {
  background-image: url('/static/cwf/images/anlgweb/new/anlage-agile-bg.png');
  height: 320px;
  background-position: center;
  background-size: contain;
  position: relative;
  margin: 140px auto;
}

.anlage-agile .overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: #000;
  right: 0;
  opacity: 75%;
}

.anlage-agile p {
  font-weight: 300;
  font-size: 18px;
}

/*---------------
 AI-led Platforms
 --------------*/

#rapid-ta-ai {
  background-color: #f7f8fa;
}

#rapid-ta-ai h3 {
  color: var(--blue-dark);
  font-weight: 600;
}

.ai-led-platforms-page .vertical-nav {
  grid-template-rows: 20% 20% 45% 25%;
}

.ai-led-platforms-page .vertical-nav a {
  color: #949494;
  padding-left: 5px;
}

.ai-led-platforms-page .vertical-nav a.active {
  color: var(--orange) !important;
}

/*-----------------------
Business Operations Page
------------------------*/

#business-operations-services {
  background-color: #fff;
  margin-top: -140px;
  position: relative;
  z-index: 1;
  padding-top: 140px;
  margin-bottom: 100px;
}

#business-operations-services * {
  color: var(--blue-dark);
}

#business-operations-services p {
  font-weight: 400;
}

#business-operations-services ul {
  list-style: none;
  padding-left: 0;
}

#business-operations-services ul img {
  height: 80px;
}

#business-operations-services li {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 18px;
  gap: 10px;
  padding-top: 16px;
}

#business-operations-services li button {
  border-color: var(--orange);
}

#business-operations-services li button:hover {
  color: #fff;
}

/*-------------
Case Studies
-------------*/

/* #case-studies-grid img {
  max-width: 100%;
  -webkit-box-shadow: 30px 30px 0px 0px rgba(241, 92, 35, 1);
  -moz-box-shadow: 30px 30px 0px 0px rgba(241, 92, 35, 1);
  box-shadow: 30px 30px 0px 0px rgba(241, 92, 35, 1);
  margin: 30px;
  height: 330px;
  filter: brightness(0.8);
}

#case-studies-grid .row > div:nth-child(2) img,
#case-studies-grid .row > div:nth-child(6) img {
  -webkit-box-shadow: 30px 30px 0px 0px rgba(0, 148, 217, 1);
  -moz-box-shadow: 30px 30px 0px 0px rgba(0, 148, 217, 1);
  box-shadow: 30px 30px 0px 0px rgba(0, 148, 217, 1);
}

#case-studies-grid .row > div:nth-child(4) img,
#case-studies-grid .row > div:nth-child(8) img {
  -webkit-box-shadow: 30px 30px 0px 0px rgba(255, 199, 0, 1);
  -moz-box-shadow: 30px 30px 0px 0px rgba(255, 199, 0, 1);
  box-shadow: 30px 30px 0px 0px rgba(255, 199, 0, 1);
}

#case-studies-grid .row > div:nth-child(7) img {
  -webkit-box-shadow: 30px 30px 0px 0px rgba(0, 63, 119, 1);
  -moz-box-shadow: 30px 30px 0px 0px rgba(0, 63, 119, 1);
  box-shadow: 30px 30px 0px 0px rgba(0, 63, 119, 1);
}

#case-studies-grid p {
  position: absolute;
  bottom: 28px;
  left: 60px;
  color: #fff;
  right: 40px;
  font-size: 18px;
}

#case-studies-grid-cta {
  margin-top: 310px;
} */

#case-studies-grid {
  margin-bottom: 310px;
  margin-top: 140px;
}

/* #case-studies-grid .colored-box-wrapper {
} */

#case-studies-grid .colored-box-wrapper .coloured-box {
  width: 370px;
  height: 360px;
  padding: 50px 40px 30px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}

#case-studies-grid .colored-box-wrapper .coloured-box:hover {
  opacity: 80%;
}

#case-studies-grid .colored-box-wrapper .coloured-box h5 {
  font-weight: 700;
  font-size: 22px;
}

#case-studies-grid .colored-box-wrapper .coloured-box p {
  font-size: 14px;
  margin-top: 16px;
}

/*-------------
Clients Page
--------------*/

.client-logos-wrapper {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(7, 1fr);
  gap: 20px;
  /* border: 1px solid; */
}

.client-logos-wrapper div {
  /* border: 1px solid; */
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: white; */
}

.client-logos-wrapper div img {
  max-width: 100%;
  height: auto;
  padding: 14px;
}

.heartbeat-image {
  animation: heartbeat 2s infinite;
  height: 200px;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

#clients-case-studies {
  background-color: #f7f8fa;
  height: 530px;
  padding: 40px;
}

#clients-case-studies h3 {
  font-weight: 700;
}

#clients-case-studies .success-block {
  margin: 20px auto;
  height: 150px;
}

#clients-case-studies .success-block img {
  max-width: 100%;
  /* width: 100%; */
  height: 40px;
}

#clients-case-studies .success-block span {
  display: block;
  color: var(--orange);
  padding-top: 14px;
  font-weight: 600;
  font-size: 18px;
}

#clients-case-studies .success-block span:nth-of-type(1) {
  font-size: 20px;
}

#clients-case-studies .success-block span:nth-of-type(2) {
  color: var(--blue-dark);
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  opacity: 1;
}

.carousel-control-prev {
  left: -60px;
}

.carousel-control-next {
  right: -60px;
}

.custom-arrow-icon {
  color: var(--blue-dark);
  font-size: 40px;
  opacity: 10%;
}

.carousel-control-prev {
  left: -50px;
}

.carousel-control-next {
  right: -50px;
}

/*--------
About Page
---------*/

.slanted-quote {
  font-style: italic;
  transform: skew(-10deg);
  font-size: 30px;
  line-height: 1.8;
  color: #fff;
  padding: 10px;
  display: block;
}

.values-block {
  display: flex;
  align-items: center;
  height: 200px;
}

.values-block img {
  max-width: 100%;
  height: 80px;
}

.values-block div {
  padding-left: 20px;
}

.values-block div h3 {
  font-weight: 700;
  color: var(--orange);
}

#umesh {
  background-color: var(--blue-dark);
  height: 500px;
}

#umesh img {
  /* max-width: 100%; */
  height: 500px;
  /* position: relative; */
}

#about-teams {
  margin: 70px auto;
}

#about-teams #teams-wrapper {
  overflow-x: scroll;
  display: flex;
  justify-content: flex-start;
  gap: 50px;
}

#about-teams #teams-wrapper .team-member {
  /* height: 300px; */
  position: relative;
}

#about-teams #teams-wrapper .team-details {
  padding-left: 10px;
  padding-top: 10px;
}

#about-teams #teams-wrapper .team-member img {
  height: 250px;
}

#about-teams #teams-wrapper::-webkit-scrollbar {
  width: 2px;
}

#about-teams .carousel-item {
  text-align: center;
}

#about-teams .team-member img {
  height: 250px;
  margin: auto;
  border: 1px solid var(--orange);
  border-radius: 20px;
}

#about-teams .team-details {
  position: relative;
  padding-top: 20px;
  text-align: center;
}

#about-teams .team-details .linked-in {
  position: absolute;
  top: 20px;
  right: 20px;
}

#about-teams .team-details .name,
#about-teams .team-details .designation,
#about-teams .team-details p {
  text-align: left;
  padding-left: 24px;
}

.modal-body img {
  max-width: 100%;
  height: auto;
}

.modal-content {
  border-radius: 10px;
  padding: 20px;
}

.modal-body {
  padding: 20px;
}

.linkedin-icon,
.arrow-top-grey {
  position: absolute;
  top: 20px;
  right: 30px;
  transform: all 1s ease-in-out;
}

.linkedin-icon:hover {
  transform: scale(1.07);
}

.arrow-top-grey {
  top: unset;
  bottom: 20px;
}

#umeshmodal .modal-dialog,
#gauravmodal .modal-dialog,
#nityamodal .modal-dialog,
#irammodal .modal-dialog,
#kavitamodal .modal-dialog,
#supriyamodal .modal-dialog,
#toshammodal .modal-dialog {
  max-width: 90%;
  width: auto;
}

#umeshmodal .modal-content,
#gauravmodal .modal-content,
#nityamodal .modal-content,
#irammodal .modal-content,
#kavitamodal .modal-content,
#supriyamodal .modal-content,
#toshammodal .modal-content {
  padding: 20px;
}

#umeshmodal .modal-body,
#gauravmodal .modal-body,
#nityamodal .modal-body,
#irammodal .modal-body,
#kavitamodal .modal-body,
#supriyamodal .modal-body,
#toshammodal .modal-body {
  overflow-y: auto;
  max-height: 80vh;
}

/* #about-teams #teams-wrapper img:nth-child(1) {
  padding-left: 300px;
} */

/*----------
Contact Us

#----------*/

#contact-us-page button:hover {
  color: #fff !important;
  border-color: var(--blue-dark) !important;
}

#contact-us-page textarea {
  resize: none;
}

#contact-us-page .form-right {
  border-radius: 30px;
}

#contact-us-page .form-right h3 {
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 20px;
}

#contact-us-page .form-right input {
  padding: 26px 22px;
}

#contact-us-page .form-right {
  padding: 62px 50px;
  width: 100%;
  min-width: 600px;
  box-shadow: 0 0 1px #030e21 !important;
}

#contact-us-page .form-right button {
  border-color: var(--orange);
  color: var(--orange);
}

#contact-us-page .form-right button:hover {
  border-color: var(--orange) !important;
}

#contact-us-page .form-right textarea {
  resize: vertical;
}

.contact-region h3 {
  color: var(--blue-dark);
}

.contact-region {
  padding: 30px 20px;
}

.contact-region p {
  line-height: 2;
  font-size: 18px;
  font-weight: 300;
}

.contact-region a {
  font-weight: 300;
  color: var(--anlage-theme-color);
}

/*---------------------------------
Compliance, Legal & Accounting Page
----------------------------------*/
#legal-advisory button,
#accounting-c button,
#financial-c button {
  color: var(--orange);
  border-color: var(--orange);
}

#legal-advisory button:hover,
#accounting-c button:hover,
#financial-c button:hover {
  color: #fff;
}

#legal-advisory,
#financial-c,
#accounting-c {
  margin-top: 120px;
  margin-bottom: 120px;
}

#accounting-c {
  padding-top: 120px;
}

#financial-c .right {
  padding-left: 40px;
}

#financial-c {
  padding-top: 120px;
}

#legal-advisory .right,
#accounting-c .right,
#financial-c .left {
  background-color: var(--orange);
  width: 100%;
  height: 400px;
  position: relative;
}

#financial-c .left {
  background-color: var(--yellow);
}

#legal-advisory .right img,
#accounting-c .right img,
#financial-c .left img {
  position: absolute;
  height: 500px;
  top: -50px;
  left: 13%;
}

/*-------------------
GCC Pages
--------------------*/

.gaas-fw-img {
  background-image: url('/static/cwf/images/anlgweb/new/gaas-left.png');
  background-position: left;
  background-color: var(--orange);
  background-repeat: no-repeat;
  height: 400px;
}

.kb-box {
  max-height: 250px;
  display: flex;
  align-items: flex-start;
}

.kb-box .kb-icon {
  height: 50px;
}

.gcc-bot-box {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px 40px;
  height: 400px;
  /* margin-right: -10px; */
}

.gcc-bot-box p {
  font-weight: 300;
}
/*----------
Careers Page
------------*/
.careers-page-custom-card {
  position: relative;
  color: #fff;
  width: 240px;
  height: 240px;
  border-radius: 0;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  font-weight: 600;
  border: none;
}

.careers-page-custom-card .careers-page-icon {
  position: absolute;
  bottom: 15px;
  right: 15px;
  height: 30px;
  opacity: 0.8;
}

/* Add spacing between cards */
.careers-page-row .col-auto {
  padding: 10px;
}

.colored-box-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  flex-direction: row;
  width: 100%;
}

.coloured-box {
  color: #fff;
  height: 300px;
  width: 350px;
  /* margin: 10px; */
  padding: 50px 40px 40px;
  position: relative;
}

.coloured-box span {
  font-weight: 600;
}

.coloured-box img {
  position: absolute;
  right: 23px;
  bottom: 20px;
  z-index: 12;
  height: 30px;
  opacity: 50%;
}

#hiring-process-wrapper {
  padding: 106px 90px;
  margin-top: 100px;
}

#hiring-process {
  background-image: url('/static/cwf/images/anlgweb/new/hiring-process.svg');
  background-position: center;
  background-size: cover;
  height: 410px;
  background-repeat: no-repeat;
  margin-top: 120px;
}

@media (max-width: 1439px) {
  #hiring-process {
    background-size: contain;
  }
}

.job-cards-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.job-card {
  border: 1px solid var(--orange);
  padding: 40px;
  border-radius: 20px;
  height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.job-card span {
  display: block;
  padding: 3px 0;
}

.job-card a {
  color: #000;
  text-decoration: underline;
  font-weight: 600;
  text-decoration-line: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
}

.careers-job-card-modal .modal-content {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.careers-job-card-modal .modal-body {
  display: flex;
  flex-direction: row;
  padding: 0;
}

/* Left Section */
.careers-job-card-modal .modal-content {
  padding: unset;
}

.careers-job-card-modal .left-section {
  background: var(--orange);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}

/* Right Section */
.careers-job-card-modal .right-section {
  width: 60%;
  background: white;
}

.careers-job-card-modal .modal-close-button {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  z-index: 9;
  color: #fff !important;
  opacity: 1 !important;
}

.careers-job-card-modal .modal-close-button:hover {
  color: var(--orange);
}

.careers-job-card-modal .modal-lg {
  max-width: 60%;
}

.careers-job-card-modal .left-section {
  width: 35%;
}

.careers-job-card-modal .right-section {
  width: 65%;
  padding: 30px 40px;
}

.careers-job-card-modal .right-section li {
  line-height: 2;
}

.careers-job-card-modal .right-section * {
  font-size: 14px;
}

.careers-job-card-modal .right-section .get-started-btn {
  color: var(--orange);
  border: 2px solid var(--orange);
}

.careers-job-card-modal .right-section .get-started-btn:hover {
  color: #fff;
}

/**********************
Media & Events Page
***********************/

.media-events-card-img {
  height: 265px;
  object-fit: contain;
}

.media-events-title {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 32px;
}

.media-events-text {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 32px;
  font-weight: 300;
}

/* Styles for the popup */
.media-page-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
}

.media-page-popup-content {
  position: relative;
  margin: 10% auto;
  width: 80%;
  max-width: 700px;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
}

.media-page-popup-content video {
  width: 100%;
  height: auto;
}

.media-page-close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  z-index: 999999999;
}

/*****************
  Blog Listing Page
*****************/
.blog-listing-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  /* margin: 0; */
  gap: 80px;
  grid-area: 100px;
}

.blog-listing-single {
  background-image: url('/static/cwf/images/anlgweb/new/bl-bg.png');
  background-position: center;
  background-size: contain;
  width: 350px;
  background-repeat: no-repeat;
  height: 350px;
  position: relative;
  cursor: pointer;
}

.blog-listing-single-bg {
  position: absolute;
  width: 350px;
  height: 350px;
  top: 25px;
  right: -25px;
  padding-right: 20px;
  z-index: -1;
}

.blog-listing-single .title-wrapper {
  position: absolute;
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  background-color: var(--blue-dark);
  bottom: 0;
}

.blog-listing-single .title {
  position: absolute;
  color: #fff;
  font-weight: 600;
  line-height: 27px;
  font-size: 16px;
  padding: 0 20px;
}

/***********
Blog Details
***********/

.blog-detail-container {
  font-family: Arial, sans-serif;
}

.blog-detail-breadcrumb {
  font-size: 14px;
}

.blog-detail-container table {
  margin-left: 24px;
}

.blog-detail-container table th,
.blog-detail-container table td {
  padding: 10px 16px;
}

@media (max-width: 768px) {
  .blog-detail-breadcrumb {
    display: none;
  }
  .blog-detail-container {
    padding-left: 48px;
    padding-right: 48px;
  }
}

.blog-detail-header {
  margin-bottom: 30px;
}

.blog-detail-title {
  color: #003f77;
  font-weight: 600;
  font-size: 32px;
}

.blog-detail-header-img {
  border: 1px solid #ddd;
  border-radius: 4px;
}

.blog-detail-sidebar {
  border: 1px solid #ddd;
  border-radius: 4px;
}

.blog-detail-follow h5,
.blog-detail-article-nav h4 {
  margin-top: 20px;
  font-weight: 600;
  color: #1b1b1f;
}

.blog-detail-follow h5,
.blog-detail-article-nav li {
  padding: 20px;
}

.blog-detail-follow h5,
.blog-detail-article-nav li a {
  color: #1b1b1f;
  font-weight: 400;
}

.blog-detail-follow h5 {
  font-weight: 600;
}

.blog-detail-article-nav li.active {
  border-left: 4px solid var(--orange);
}

.blog-detail-article-nav li.active a {
  color: var(--orange);
  font-weight: 600;
}

.blog-detail-follow h5,
.blog-detail-article-nav li.active a {
  color: var(--orange);
}

.blog-detail-content p {
  font-size: 16px;
  line-height: 1.6;
  color: black;
  padding-top: 10px;
}

.blog-detail-content h2 {
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 22px;
  margin-top: 40px;
}

.blog-detail-content h3 {
  font-size: unset;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: -10px;
}

.blog-detail-content ul {
  padding-left: 0;
}

.blog-detail-content ul h3 {
  font-weight: 600;
  font-size: 16px;
  color: black;
}

.blog-detail-content ul li {
  margin-left: 40px;
  line-height: 30px;
}

/*************
Misc
*************/

.carousel-inner .carousel-item .row .col-md-4:nth-child(1) .gcc-page-case-study-card {
  background-color: var(--orange);
  color: #fff !important;
}

.carousel-inner .carousel-item .row .col-md-4:nth-child(2) .gcc-page-case-study-card {
  background-color: var(--anlage-theme-color);
  color: #fff !important;
}

.carousel-inner .carousel-item .row .col-md-4:nth-child(3) .gcc-page-case-study-card {
  background-color: var(--yellow);
  color: var(--blue-dark) !important;
}

.carousel-inner .carousel-item .row .col-md-4:nth-child(1) .gcc-page-case-study-card a {
  color: #fff !important;
}

.carousel-inner .carousel-item .row .col-md-4:nth-child(2) .gcc-page-case-study-card a {
  color: #fff !important;
}

.carousel-inner .carousel-item .row .col-md-4:nth-child(3) .gcc-page-case-study-card a {
  color: var(--blue-dark) !important;
}

/* Client Logos */

.client-logos-container {
  margin: 20px auto;
  width: 90%;
  border-collapse: collapse;
}

.client-logos-table {
  width: 100%;
  border-collapse: collapse;
}

.client-logos-table th {
  background-color: var(--anlage-theme-color);
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 10px;
  /* border: 1px solid #000; */
}

.client-logos-table td {
  text-align: center;
  padding: 10px;
  /* border: 1px solid #000; */
  font-family: Arial, sans-serif;
  vertical-align: middle;
}

.client-logos-table img {
  max-width: 150px;
  max-height: 50px;
  display: inline-block;
}

@media (min-height: 769px) and (max-height: 1023px) {
  section#gcc-360,
  section#talent-solution,
  section#full-stack {
    height: calc(100vh + 100px);
  }
}
