html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

.crimson-pro {
  font-family: "Crimson Pro", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.heebo {
  font-family: "Heebo", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

:root {
  --heading-color: #152d47;
  --body-text: #4c4c4d;
  --border-color: #4c4c4d80;
  --button-color: #2150fe;
  --card-background-color: #04318f;
  --our-proven: #2150fe;
  --shape-fill: #2150fe;
  --shape-bg-color: #f2eeee;
  --colors-gray-200: #dfdfe0;
}

.container {
  max-width: 1161px;
  margin: 0 auto;
  padding: 0 64px;
}

.main-box {
  display: flex;
  flex-direction: column;
  gap: 74px;
}

@media (max-width: 1280px) {
  .container {
    padding: 0 20px;
  }
}

h1 {
  font-size: 40px;
  font-weight: 600;
  font-family: "Crimson Pro", serif;
  color: var(--heading-color);
  margin-bottom: 30px;
}

h3 {
  font-size: 24px;
  font-weight: 600;
  font-family: "Crimson Pro", serif;
}

h4 {
  font-size: 20px;
  font-weight: 600;
  font-family: "Crimson Pro", serif;
}

h6 {
  font-size: 16px;
  font-family: "Crimson Pro", serif;
}

p {
  font-size: 16px;
  color: var(--body-text);
  font-family: "Heebo", sans-serif;
  line-height: 1.6;
}

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 26px;
  }
}

.btn {
  font-family: "Heebo", sans-serif;
  font-size: 16px;
  font-weight: 600;
  border-radius: 2px;
  cursor: pointer;
  padding: 10px 24px;
}

.primary-btn {
  background-color: var(--button-color);
  color: #fff;
  border: none;
  border: 2px solid var(--button-color);
  transition: all 0.3s ease;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(33, 80, 254, 0.25);
}

.secondary-btn {
  background-color: transparent;
  color: var(--button-color);
  border: 2px solid var(--button-color);
  transition: all 0.3s ease;
}

.secondary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(33, 80, 254, 0.25);
}

@media (max-width: 768px) {
  .btn {
    font-size: 14px;
    padding: 8px 20px;
  }
}

@media (max-width: 480px) {
  .btn {
    width: 100%;
    font-size: 14px;
    padding: 8px 0;
    text-align: center;
  }
}

.header {
  border-bottom: 2px solid var(--card-background-color);
  background: white;
  width: 100%;
  /* padding: 10px 0; */
  position: fixed;
  top: 0;
  z-index: 998;
}

.logo {
  text-decoration: none;
}

.logo img {
  width: 260px;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 6px 64px;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
}

.nav-links a:hover {
  color: var(--button-color);
}

.nav-links a {
  text-decoration: none;
  color: var(--card-background-color);
  font-weight: 500;
  font-family: "Heebo", sans-serif;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--card-background-color);
}

.menu-toggle i {
  pointer-events: none;
}

@media (max-width: 1280px) {
  .main-nav {
    padding: 6px 20px;
  }
  .nav-links {
    gap: 16px;
  }
}

@media (max-width: 992px) {
  .main-nav {
    flex-direction: column;
    gap: 4px;
  }
  .nav-links {
    gap: 16px;
  }
  .main-nav {
    padding: 10px 20px;
  }
}

@media (max-width: 768px) {
  .logo img {
    width: 240px;
  }
  .main-nav {
    position: relative;
    flex-direction: row;
    padding: 8px 20px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: white;
    position: absolute;
    top: 78px;
    right: 0;
    width: 100%;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .header-button {
    display: none;
  }
}

/* hero-sec  */

.hero-sec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  padding-top: 170px;
}

.hero-para {
  margin-bottom: 20px;
}

.hero-btn-box {
  display: flex;
  gap: 8px;
  align-items: center;
}

.hero-image {
  width: 100%;
  max-width: 435px;
  aspect-ratio: 435 / 351;
  overflow: hidden;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .hero-sec {
    gap: 32px;
    padding-top: 190px;
  }
}

@media (max-width: 767px) {
  .hero-sec {
    flex-direction: column;
    padding-top: 120px;
  }
  .hero-image {
    max-width: 100%;
  }
}

/* teams worldwide */

.worldwide-box {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
}

.para-sec-worldwide {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.worldwide-image {
  max-width: 463px;
  width: 100%;
  border-radius: 2px;
  margin: auto;
}

@media (max-width: 939px) {
  .worldwide-box {
    flex-direction: column;
    gap: 40px;
  }
}

/* global talent */

.global-talent {
  background-color: var(--card-background-color);
  padding: 64px 0;
}

.global-talent-title {
  color: white;
}

.global-talent-card-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 992px) {
  .global-talent-card-box {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 576px) {
  .global-talent-card-box {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.global-talent-card {
  padding: 16px;
  background: var(--shape-bg-color);
  border-radius: 2px;
  margin-bottom: 20px;
}

.global-talent-card-icon-box {
  width: 48px;
  height: 48px;
  background: var(--shape-fill);
  border-radius: 50%;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.global-talent-card-icon-box img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.global-talent-card-para {
  color: black;
  margin-top: 10px;
}

.global-talent-para {
  color: white;
}

/* core services */

.services-description {
  margin-bottom: 32px;
}

.services-card-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.services-card-title {
  color: var(--body-text);
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .services-card-box {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .services-card-box {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* our proven */

.our-proven {
  background: var(--our-proven);
  padding: 64px 0;
  color: white;
}

.our-proven-title,
.our-proven-des,
.our-proven-card-des {
  color: white;
}

.our-proven-card-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.our-proven-card {
  padding-bottom: 12px;
}

.our-proven-card-sr {
  margin-bottom: 16px;
  font-size: 300;
}

.our-proven-card-title {
  margin-bottom: 12px;
}

@media (max-width: 640px) {
  .our-proven-card-box {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* teamaug advantage */

.teamaug-advantage-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.teamaug-advantage-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.teamaug-advantage-card ul {
  list-style-position: outside;
  padding-left: 20px;
  margin: 0;
}

.teamaug-advantage-card li {
  font-size: 16px;
  color: var(--body-text);
  font-family: "Heebo", sans-serif;
  line-height: 1.6;
  margin-bottom: 8px;
}

.teamaug-advantage-card li::marker {
  font-size: 16px;
  color: var(--body-text);
}

@media (max-width: 1024px) {
  .teamaug-advantage-box {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .teamaug-advantage-box {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .teamaug-advantage-box {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* our leadership */

.our-leadership,
.ready-to-augment {
  background: var(--card-background-color);
  padding: 128px 20px;
}

.our-leadership {
  background: var(--card-background-color);
}

.our-leadership-box {
  padding: 44px 0;
  background: white;
  border-radius: 2px;
  max-width: 1206px;
  margin: auto;
}

.our-leadership-details {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.our-leadership-detail-card {
  border: 2px solid var(--colors-gray-200);
  border-radius: 2px;
  display: flex;
  flex-direction: row;
}

.our-leadership-detail-card-icon-box {
  min-height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--shape-bg-color);
}

.our-leadership-detail-card-icon {
  width: 28px;
  height: 28px;
  margin: 0 16px;
}

.our-leadership-detail-sec {
  padding: 16px;
}

.leadership-name,
.leadership-rol {
  color: var(--body-text);
  margin-bottom: 10px;
}

.leadership-contact-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
}

.leadership-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}

.leadership-contact-label {
  font-weight: 600;
  font-family: "Heebo", sans-serif;
  color: var(--body-text);
}

.leadership-contact-link {
  font-weight: 600;
  color: var(--shape-fill);
  cursor: pointer;
}

@media (max-width: 1024px) {
  .our-leadership,
  .ready-to-augment {
    padding: 80px 20px;
  }
}

@media (max-width: 768px) {
  .our-leadership,
  .ready-to-augment {
    padding: 50px 20px;
  }
}

@media (max-width: 640px) {
  .our-leadership-detail-card {
    display: flex;
    flex-direction: column;
  }
}

/* success stories */

.success-stories-description {
  margin-bottom: 32px;
}

.success-stories-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 20px;
  row-gap: 32px;
  margin-bottom: 32px;
}

.success-stories-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.Stories-count {
  font-size: 52px;
  font-family: "Crimson Pro", serif;
  color: var(--body-text);
  font-weight: 600;
  padding: 8px 0;
  margin-bottom: 12px;
}

.success-stories-card-title {
  color: var(--body-text);
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .success-stories-box {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .success-stories-box {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ready to augment */

.ready-to-augment {
  background: var(--shape-fill);
}

.ready-to-augment-box {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.ready-to-augment-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.ready-to-augment-box figure {
  flex-shrink: 0;
  width: 322px;
  height: 322px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 2px;
}

.ready-to-augment-box figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ready-to-augment-sub-title {
  color: var(--heading-color);
}

.ready-to-augment-box2 {
  border-top: 2px solid var(--border-color);
  padding-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ready-to-augment-card {
  border: 2px solid var(--colors-gray-200);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ready-to-augment-card-link {
  font-weight: 600;
  font-family: "Heebo", sans-serif;
  color: var(--shape-fill);
  cursor: pointer;
}

@media (max-width: 1024px) {
  .ready-to-augment-box {
    gap: 32px;
  }

  .ready-to-augment-content {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .ready-to-augment-box {
    flex-direction: column-reverse;
    gap: 24px;
  }
  .ready-to-augment-box2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ready-to-augment-card {
    padding: 14px;
  }
}

@media (max-width: 480px) {
  .ready-to-augment-box figure {
    width: 100%;
    height: 100%;
  }
}

/* transform your */

.transform-your-des {
  font-style: italic;
  padding-left: 24px;
  border-left: 2px solid var(--button-color);
  margin-bottom: 20px;
}

.transform-your-box {
  margin-top: 20px;
  display: flex;
  gap: 8px;
  align-items: center;
}

/* form modal  */

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.6);
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
}

.modal-box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: #fff;
  padding: 24px;
  border-radius: 2px;
  width: 90%;
  max-width: 600px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  max-height: 80vh;
  overflow-y: auto;
}

.close-modal {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
  margin-top: 32px;
  flex: 1;
}

.col-span-2 {
  grid-column: span 2;
}
.col-span-3 {
  grid-column: span 3;
}
.col-span-4 {
  grid-column: span 4;
}
.col-span-5 {
  grid-column: span 5;
}
.col-span-6 {
  grid-column: span 6;
}
.col-span-8 {
  grid-column: span 8;
}

.contact-input-box,
.phone-input-box label {
  font-size: 14px;
  font-weight: 600;
  font-family: "Heebo", sans-serif;
}

.contact-input-box label span,
.phone-input-box label span {
  color: var(--shape-fill);
  font-size: 12px;
  display: inline-block;
}

.contact-input-box input,
select {
  border: 1px solid var(--body-text);
  border-radius: 2px;
  padding: 13px 6px;
  margin-top: 8px;
  width: 100%;
  outline: none;
}

.contact-input-box input::placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #bbbfc4;
}

.phone-input-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid var(--body-text);
  border-radius: 2px;
  width: 100%;
  margin-top: 8px;
}

.country-code-dropdown .code-select {
  border: none;
  border-radius: 0;
  min-width: 12px;
  max-width: 170px;
  border-right: 1px solid #9da1a9;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
  margin-top: 0;
  flex: 1;
  outline: none;
}

.phone-input {
  flex: 1;
  border: none;
  border-radius: 10px;
  margin: 0 10px;
  outline: none;
  width: auto;
  padding: 13px 0px;
}

.form-btn-box {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: end;
  margin-top: 33px;
}

@media (max-width: 1280px) {
  .contact-form {
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .col-span-2 {
    grid-column: span 2;
  }
  .col-span-3 {
    grid-column: span 3;
  }
  .col-span-4 {
    grid-column: span 4;
  }
  .col-span-5 {
    grid-column: span 5;
  }
  .col-span-6 {
    grid-column: span 6;
  }
  .col-span-8 {
    grid-column: span 8;
  }
}

@media (max-width: 640px) {
  .contact-section {
    flex-direction: column-reverse;
    align-items: center;
  }
  .contact-img {
    width: 80%;
  }
  .col-span-2 {
    grid-column: span 8;
  }
  .col-span-3 {
    grid-column: span 8;
  }
  .col-span-4 {
    grid-column: span 8;
  }
  .col-span-5 {
    grid-column: span 8;
  }
  .col-span-6 {
    grid-column: span 8;
  }
  .col-span-8 {
    grid-column: span 8;
  }
  .code-select {
    flex: 1;
    padding-right: 4px;
  }
}

/* footer  */

.footer {
  background: white;
  border-top: 2px solid var(--card-background-color);
  font-family: "Heebo", sans-serif;
  color: var(--card-background-color);
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  padding: 40px 64px;
}

.footer-left {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.footer-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--body-text);
  max-width: 400px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  text-decoration: none;
  font-weight: 500;
  font-family: "Heebo", sans-serif;
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--shape-fill);
}

.footer-social {
  display: flex;
  gap: 16px;
  font-size: 18px;
}

.footer-social a {
  background-color: var(--card-background-color);
  color: white;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--shape-fill);
}

.footer-social a i {
  font-size: 18px;
  color: white;
}

.footer-bottom {
  border-top: 2px solid var(--card-background-color);
}

.footer-bottom-box {
  text-align: center;
  padding: 10px;
}

@media (max-width: 1280px) {
  .footer-bottom-box {
    padding: 10px 20px;
  }
  .footer-container {
    padding: 40px 20px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 20px 20px;
  }
}

@media (max-width: 640px) {
  .footer-links ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom-box {
    flex-direction: column-reverse;
    align-items: normal;
  }
  .footer-bottom-box {
    padding: 8px 10px;
  }
  .footer-bottom-box p {
    font-size: 14px;
  }
}
