/* CSS RESET */
html {
  box-sizing: border-box;
  font-size: 16px;
  scrollbar-width: none;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}
/*  */

@font-face {
  font-family: Code-Black;
  src: url(../../Code-Next/CodeNext-Black.otf);
}
@font-face {
  font-family: Code-Bold;
  src: url(../../Code-Next/CodeNext-Bold.otf);
}
@font-face {
  font-family: Code-Book;
  src: url(../../Code-Next/CodeNext-Book.otf);
}
@font-face {
  font-family: Code-Light;
  src: url(../../Code-Next/CodeNext-Light.otf);
}
@font-face {
  font-family: NVRFNSHD-Display;
  src: url(../../NVRFNSHD/NVRFNSHD-Display.ttf);
}
@font-face {
  font-family: NVRFNSHD-Display-Italic;
  src: url(../../NVRFNSHD/NVRFNSHD-DisplayItalic.ttf);
}
@font-face {
  font-family: NVRFNSHD-Italic;
  src: url(../../NVRFNSHD/NVRFNSHD-Italic.ttf);
}
@font-face {
  font-family: NVRFNSHD-Regular;
  src: url(../../NVRFNSHD/NVRFNSHD-Regular.ttf);
}
@font-face {
  font-family: NVRFNSHD-Regular;
  src: url(../../NVRFNSHD/NVRFNSHD-Regular.otf);
}

/*  */
:root {
  --header-height-desktop: 90px;
  --header-height-mobile: 75px;
  --swiper-slide-height: 100vh;

  --hero-height-desktop: 60vh;

  --cases-img-lg: 550px;
  --cases-img-md: 450px;
  --cases-img-sm: 350px;
  --cases-img-xsm: 250px;

  --bg-black: #000000;
  --bg-black-light: #151515;
  --bg-clients: #24272c;
  --bg-white: #ffffff;

  --bg-gradient-pink: linear-gradient(
    45deg,
    rgb(85, 56, 93) 0%,
    rgb(215, 19, 103) 45%,
    rgb(215, 19, 103) 55%,
    rgb(85, 56, 93) 100%
  );

  --bg-gradient-blue: linear-gradient(
    45deg,
    rgb(41, 53, 86) 0%,
    rgb(0, 87, 225) 45%,
    rgb(0, 87, 225) 55%,
    rgb(41, 53, 86) 100%
  );

  --bg-gradient-orange: linear-gradient(
    45deg,
    rgb(86, 52, 41) 0%,
    rgb(225, 87, 0) 45%,
    rgb(225, 87, 0) 55%,
    rgb(86, 52, 41) 100%
  );

  --font-white: #ffffff;
  --font-black: #000000;

  --font-size-2xlg: 60px;
  --font-size-xlg: 40px;
  --font-size-lg: 27.5px;
  --font-size-md: 20px;
  --font-size-sm: 16px;
  --font-size-xsm: 13px;
  --font-size-2xsm: 12px;

  --spacing-2xsm: 5px;
  --spacing-xsm: 10px;
  --spacing-sm: 25px;
  --spacing-md: 50px;
  --spacing-lg: 75px;
  --spacing-xlg: 100px;

  --letter-spacing-sm: 1px;

  --line-height-normal: 1;
  --line-height-medium: 1.5;

  --management-img-xlg: 55vh;
  --management-img-lg: 120px;
  --management-img-slg: 105px;
  --management-img-md: 90px;
  --management-img-sm: 60px;

  --menu-gradient: linear-gradient(
    45deg,
    rgb(1, 110, 255) 0%,
    rgb(208, 31, 165) 45%,
    rgb(224, 32, 18) 55%,
    rgb(255, 205, 5) 100%
  );

  --swiper-pagination-bottom: 20px;
  --swiper-pagination-top: 20px;
}

* {
  color: var(--font-white);
  font-family: "NVRFNSHD-Display";
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-white);
}

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

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

.bg-black {
  background: var(--bg-black) !important;
}

.bg-gradient-pink {
  background: var(--bg-gradient-pink);
}
.bg-gradient-blue {
  background: var(--bg-gradient-blue);
}

.bg-gradient-orange {
  background: var(--bg-gradient-orange);
}

/*  */

.fcb-main-body {
  position: relative;
}

.fcb-header {
  position: fixed;
  z-index: 2;
  width: 100%;
  padding: var(--spacing-xsm) var(--spacing-md);
  height: var(--header-height-desktop);
  background-color: var(--bg-black);
}

.fcb-header__logo-container {
  margin-right: auto;
  position: relative;
  z-index: 3;
  transition: transform 0.2s ease-in-out;
}

.fcb-header__logo-container:hover {
  transform: scale(1.1);
}

.fcb-header__logo-anchor {
  display: block;
  pointer-events: auto;
}

.fcb-header__logo-img {
  width: 330px;
}

.fc-header__right-menu {
  gap: var(--spacing-sm);
}

.fc-header__right-menu-button {
  background: transparent;
  border: none;
  cursor: pointer;
}

/* Styles to animate hide/show */
.hide {
  display: none;
  animation: vanish 0.3s;
}

.show {
  display: flex;
  animation: appear 0.3s;
}

@keyframes appear {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes vanish {
  from {
    display: flex;
    opacity: 1;
  }

  to {
    display: none;
    opacity: 0;
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/*  */

/* Overlay styles */
.overlay {
  position: absolute;
  z-index: 900;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* Light overlay */
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease-in-out,
    visibility 0.3s ease-in-out;
}

.overlay.show {
  opacity: 1;
  visibility: visible;
}
/*  */

/* Right Menu Styles */
.fcb-right-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(500px, 100%);
  height: 100vh;
  background: var(--menu-gradient);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  padding: var(--spacing-xlg) var(--spacing-md) 0 var(--spacing-md);
  z-index: 999;
  transition: right 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  font-family: "Code-Bold";
  font-size: var(--font-size-md);
}

.fcb-right-menu.show {
  right: 0;
}

.fcb-right-menu a,
.fcb-right-menu button,
.countries-dropdown__button,
.countries-dropdown__list li {
  font-family: "Code-Bold";
  font-size: var(--font-size-md);
}

.countries-dropdown__list li a:hover {
  text-decoration: underline;
}

.fcb-right-menu a {
  text-decoration: none;
  font-size: var(--font-size-md);
}

.fcb-right-menu ul {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xsm);
  font-size: var(--font-size-sm);
}

.fcb-right-menu ul li {
  padding-left: var(--spacing-sm);
}

.fcb-right-menu__close {
  position: absolute;
  top: var(--spacing-sm);
  right: var(--spacing-sm);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: var(--spacing-2xsm);
}

.countries-dropdown {
  position: relative;
  width: 100%;
}

.countries-dropdown__button {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--font-white);
  font-size: var(--font-size-sm);
  text-align: left;
  cursor: pointer;
  padding: 0;
}

.countries-dropdown__list {
  display: none;
  margin-top: var(--spacing-sm);
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.countries-dropdown__list.show {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.countries-dropdown__button::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--font-white);
  border-bottom: 2px solid var(--font-white);
  margin-left: var(--spacing-xsm);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.countries-dropdown__button.active::after {
  transform: rotate(-135deg);
}

.fcb-right-menu__footer {
  margin-top: auto;
}

.fcb-right-menu__footer-links {
  justify-content: space-between;
}

.fcb-right-menu__footer-links a {
  font-size: var(--font-size-sm);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.fcb-right-menu__social-wrapper {
  margin-top: var(--spacing-md);
  gap: var(--spacing-sm);
  padding-bottom: var(--spacing-md);
  justify-content: space-between;
}

.fcb-right-menu__social-icon {
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.fcb-right-menu__social-icon:hover {
  opacity: 0.7;
  transform: scale(1.1);
}

@media (max-width: 1000px) {
  .fcb-header {
    padding: var(--spacing-xsm) var(--spacing-xsm);
  }

  .view-clients {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .fcb-header {
    height: var(--header-height-mobile);
  }

  .fcb-header__logo-img {
    width: 220px;
  }
}

@media (max-width: 400px) {
  .fcb-right-menu {
    padding: var(--spacing-lg) var(--spacing-sm) 0 var(--spacing-sm);
  }
}

/* Hover animations to interactive elements */
.fc-header__right-menu-button,
.fcb-right-menu a,
.fcb-right-menu__close,
.countries-dropdown__button,
.fcb-right-menu__social-icon {
  transition: transform 0.3s ease;
}

.fc-header__right-menu-button:hover,
.fcb-right-menu a:hover,
.fcb-right-menu__close:hover,
.countries-dropdown__button:hover,
.fcb-right-menu__social-icon:hover {
  transform: scale(1.1);
}

.footer-cta {
  width: 100%;
  flex-direction: column;
  background-color: var(--bg-black-light);
  padding: var(--spacing-md) var(--spacing-xsm);
  gap: var(--spacing-sm);
  position: relative;
}

/* style for the animated border */
.footer-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  border: none;
  outline: none;
  background-image: linear-gradient(
    90deg,
    #353c89,
    #2e3c73,
    #21457e,
    #045888,
    #006aae,
    #046fac,
    #0575b0,
    #b24830,
    #e94f22,
    #eb7f20,
    #db3821,
    #faa91a,
    #ffc50c,
    #febb11,
    #feca0d,
    #ffd70c,
    #ee2824,
    #ee2b24,
    #d83121,
    #d93121,
    #e42823,
    #ea6423,
    #eb6523,
    #e96b24,
    #fba919,
    #be3621,
    #bf411f,
    #ec2024,
    #df1b22,
    #f47b26,
    #f05025,
    #e72529,
    #e52040,
    #ea1566,
    #ca0162,
    #e71474,
    #c71047,
    #df155b,
    #e2175d,
    #e11b29,
    #e51b26,
    #c1151d,
    #9c0a11,
    #671a66,
    #47287e,
    #3e358a
  );
}

.footer-cta p {
  font-family: "NVRFNSHD-Display";
  font-size: var(--font-size-lg);
  font-weight: 600;
}

.footer-cta__links {
  gap: var(--spacing-md);
  text-underline-offset: 3px;
  padding: var(--spacing-sm);
}

.footer-cta__links a {
  font-family: "NVRFNSHD-Display";
  font-weight: 600;
  letter-spacing: 1px;
}

@media (max-width: 1000px) {
  .footer-cta {
    padding: var(--spacing-md) var(--spacing-xsm);
    gap: var(--spacing-xsm);
  }
}

@media (max-width: 600px) {
  .footer-cta {
    gap: var(--spacing-xsm);
  }
}

.footer-copyright {
  width: 100%;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm);
  justify-content: space-around;
  background-color: var(--bg-black);
}

.footer-social {
  text-align: center;
  gap: var(--spacing-md);
}

.footer-social ul {
  gap: var(--spacing-sm);
}

.footer-social ul li a {
  font-size: var(--font-size-md);
  transition: opacity 0.3s ease;
}

.footer-social ul li a:hover {
  opacity: 0.7;
}

.footer-social p {
  font-weight: 600;
}

.footer-social p a {
  text-decoration: none;
  font-size: var(--font-size-xsm);
}

.footer-menu ul {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
  justify-content: center;
}

.footer-menu ul li a {
  text-decoration: underline;
  text-underline-offset: 1px;
  font-size: var(--font-size-xsm);
  transition: opacity 0.3s ease;
  font-weight: 600;
}

.footer-menu ul li a:hover {
  opacity: 0.7;
}

@media (max-width: 1000px) {
  .footer-copyright {
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .footer-menu ul {
    align-items: center;
    gap: var(--spacing-xsm);
  }

  .footer-social ul {
    gap: var(--spacing-xsm);
  }
}
/*  */

/*  */ /*  */ /*  */
/* Hero styles */
.hero {
  position: relative;
  height: var(--hero-height-desktop);
  padding-top: var(--header-height-desktop);
}

.hero-img {
  z-index: -2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Centers the element perfectly */
  overflow: hidden;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Maintains aspect ratio while covering container */
  object-position: 50% 40%; /* Adjust these values to change focal point */
}

.hero-overlay {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.7;
}

.hero p {
  width: 70%;
  height: 100%;
  color: var(--font-white);
  font-family: "Code-Bold";
  font-size: var(--font-size-2xlg);
  padding: var(--spacing-md);
  text-align: center;
}

@media (max-width: 600px) {
  .hero {
    padding-top: var(--header-height-mobile);
  }

  .hero p {
    font-size: var(--font-size-xlg);
  }
}
/*  */ /*  */ /*  */

/* Tab Menu Styles */
.tab-menu {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-button {
  position: relative;
  background: transparent;
  border: none;
  color: var(--font-black);
  font-family: "Code-Bold";
  font-size: var(--font-size-md);
  padding: var(--spacing-xsm) var(--spacing-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.6;
}

.tab-button::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--menu-gradient);
  transition: width 0.3s ease;
}

.tab-button:hover {
  opacity: 1;
}

.tab-button.active {
  opacity: 1;
  color: var(--font-black);
}

.tab-button.active::after {
  width: 100%;
}

.tab-panel {
  display: none;
  animation: vanish 0.3s;
}

.tab-panel.active {
  display: flex;
  animation: appear 0.3s;
}

@media (max-width: 600px) {
  .tab-menu {
    gap: var(--spacing-xsm);
    padding: var(--spacing-sm) var(--spacing-xsm);
    flex-wrap: wrap;
  }

  .tab-button {
    font-size: var(--font-size-sm);
    padding: var(--spacing-2xsm) var(--spacing-xsm);
  }
}
/*  */

/*  */ /*  */ /*  */
/* Cases Section Styles */
.cases {
  max-width: calc(2 * var(--cases-img-lg));
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-row-gap: var(--spacing-md);
  grid-column-gap: var(--spacing-sm);
  padding: var(--spacing-lg) 0;
}

.cases__item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.cases__title {
  max-width: var(--cases-img-lg);
  position: relative;
  color: var(--font-black);
  font-family: "NVRFNSHD-Display";
  font-size: 40px;
  letter-spacing: -0.2rem;
  font-weight: 100;
}

.cases__title::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 70px;
  height: 2px;
  border-radius: 10px;
  background-image: linear-gradient(
    90deg,
    #353c89,
    #2e3c73,
    #21457e,
    #045888,
    #006aae,
    #046fac,
    #0575b0,
    #b24830,
    #e94f22,
    #eb7f20,
    #db3821,
    #faa91a,
    #ffc50c,
    #febb11,
    #feca0d,
    #ffd70c,
    #ee2824,
    #ee2b24,
    #d83121,
    #d93121,
    #e42823,
    #ea6423,
    #eb6523,
    #e96b24,
    #fba919,
    #be3621,
    #bf411f,
    #ec2024,
    #df1b22,
    #f47b26,
    #f05025,
    #e72529,
    #e52040,
    #ea1566,
    #ca0162,
    #e71474,
    #c71047,
    #df155b,
    #e2175d,
    #e11b29,
    #e51b26,
    #c1151d,
    #9c0a11,
    #671a66,
    #47287e,
    #3e358a
  );
  transition: width 0.3s ease;
}

.cases__item:hover .cases__title::after {
  width: 0;
}

.cases__img-container {
  height: 300px;
  max-width: var(--cases-img-lg);
  overflow: hidden;
}

.cases__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cases__img:hover {
  transform: scale(1.15);
}

@media (max-width: 1200px) {
  .cases {
    max-width: calc(2 * var(--cases-img-md));
  }

  .cases__title {
    max-width: var(--cases-img-md);
    font-size: 40px;
  }

  .cases__img-container {
    height: 300px;
    max-width: var(--cases-img-md);
  }
}

@media (max-width: 900px) {
  .cases {
    grid-template-columns: 1fr;
    max-width: var(--cases-img-lg);
  }

  .cases__title {
    max-width: var(--cases-img-lg);
  }

  .cases__img-container {
    height: 300px;
    max-width: var(--cases-img-lg);
  }
}

@media (max-width: 600px) {
  .cases {
    max-width: var(--cases-img-md);
  }

  .cases__title {
    max-width: var(--cases-img-md);
    font-size: 30px;
    letter-spacing: -0.1rem;
  }

  .cases__img-container {
    max-width: var(--cases-img-md);
  }
}

@media (max-width: 500px) {
  .cases {
    max-width: var(--cases-img-sm);
  }

  .cases__title {
    max-width: var(--cases-img-sm);
    font-size: 30px;
    letter-spacing: -0.1rem;
  }

  .cases__img-container {
    height: 200px;
    max-width: var(--cases-img-sm);
  }
}

@media (max-width: 400px) {
  .cases {
    max-width: var(--cases-img-xsm);
  }

  .cases__title {
    max-width: var(--cases-img-xsm);
    font-size: 25px;
  }

  .cases__img-container {
    height: 150px;
    max-width: var(--cases-img-xsm);
  }
}
/*  */ /*  */ /*  */

/*  */ /*  */ /*  */
/* Clients section styles */
.clients-wrapper {
  background-color: var(--bg-clients);
}

.clients {
  max-width: 1200px;
  margin: auto;
}

.clients-text-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: var(--spacing-sm);
  font-size: 22px;
  font-weight: 500;
  color: #090909;
  line-height: 1.75;
  padding: var(--spacing-md);
}

.clients-text-container hr {
  width: 100%;
  height: 0.1rem;
  border: none;
  outline: none;
  background-image: linear-gradient(
    90deg,
    #353c89,
    #2e3c73,
    #21457e,
    #045888,
    #006aae,
    #046fac,
    #0575b0,
    #b24830,
    #e94f22,
    #eb7f20,
    #db3821,
    #faa91a,
    #ffc50c,
    #febb11,
    #feca0d,
    #ffd70c,
    #ee2824,
    #ee2b24,
    #d83121,
    #d93121,
    #e42823,
    #ea6423,
    #eb6523,
    #e96b24,
    #fba919,
    #be3621,
    #bf411f,
    #ec2024,
    #df1b22,
    #f47b26,
    #f05025,
    #e72529,
    #e52040,
    #ea1566,
    #ca0162,
    #e71474,
    #c71047,
    #df155b,
    #e2175d,
    #e11b29,
    #e51b26,
    #c1151d,
    #9c0a11,
    #671a66,
    #47287e,
    #3e358a
  );
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-content: center;
  justify-items: center;
  gap: var(--spacing-sm);
}

.imgcta {
  width: 180px;
  height: 200px;
  margin: var(--spacing-sm);
}

@media (max-width: 1400px) {
  .clients-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1100px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 800px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .clients-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.our-capabilities {
  position: relative;
  height: var(--hero-height-desktop);
}

.our-capabilities__banner {
  z-index: -2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Centers the element perfectly */
  overflow: hidden;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Maintains aspect ratio while covering container */
  object-position: 50% 50%; /* Adjust these values to change focal point */
}

.our-capabilities__overlay {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.1;
}

.our-capabilities__text-container {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Centers the element perfectly */
  width: 50%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: var(--spacing-md);
}

@keyframes titleColorTransition {
  0% {
    color: #800020;
  } /* Burgundy */
  25% {
    color: #ffb3b3;
  } /* Melon */
  50% {
    color: #e71474;
  } /* Pink */
  75% {
    color: #ffb3b3;
  } /* Melon */
  100% {
    color: #800020;
  } /* Burgundy */
}

.our-capabilities__title {
  font-size: 80px;
  animation: titleColorTransition 12s ease-in-out infinite;
}

.our-capabilities__inner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  row-gap: var(--spacing-sm);
  column-gap: var(--spacing-lg);
}

.our-capabilities__text {
  font-size: 20px;
  font-weight: 600;
  padding: var(--spacing-xsm);
}

@media (max-width: 1200px) {
  .our-capabilities__text-container {
    width: 80%;
  }

  .our-capabilities__title {
    font-size: 60px;
  }

  .our-capabilities__inner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
}

@media (max-width: 500px) {
  .our-capabilities__text-container {
    width: 90%;
  }

  .our-capabilities__title {
    font-size: 40px;
  }

  .our-capabilities__inner-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

/*  */ /*  */ /*  */
/* FCB Management Section Styles */
.fcb-management {
  width: 100%;
  height: 100%;
  background-color: var(--bg-white);
  color: var(--font-black);
  flex-direction: column;
  justify-content: flex-end;
  gap: var(--spacing-xsm);
  padding: var(--spacing-xlg) 0;
}

.fcb-management * {
  color: var(--font-black);
}

.fcb-management__header {
  font-size: var(--font-size-xlg);
  font-weight: 600;
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.fcb-management__wrapper {
  align-items: flex-start;
  gap: var(--spacing-sm);
  width: 90%;
  max-width: 1200px;
  justify-content: center;
}

.bottom-wrapper {
  margin-bottom: var(--spacing-sm);
}

@media (max-width: 1000px) {
  .middle-wrapper,
  .bottom-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    justify-items: center;
    align-content: center;
  }
}

@media (max-width: 800px) {
  .fcb-management {
    gap: var(--spacing-md);
  }

  .top-wrapper {
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: center;
  }

  .middle-wrapper,
  .bottom-wrapper {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .fcb-management {
    gap: var(--spacing-md);
  }

  .top-wrapper {
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: center;
  }

  .middle-wrapper,
  .bottom-wrapper {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

.top-wrapper .fcb-management__item {
  width: calc(
    var(--management-img-lg) * 1.8
  ); /* Base width on larger image height */
  margin: 0 var(--spacing-sm);
}

.middle-wrapper .fcb-management__item,
.bottom-wrapper .fcb-management__item {
  width: calc(var(--management-img-md) * 1.4); /* Base width on image height */
  margin: 0 var(--spacing-xsm);
}

@media (max-width: 1300px) {
  .top-wrapper .fcb-management__item {
    width: calc(
      var(--management-img-lg) * 1.4
    ); /* Base width on larger image height */
    margin: 0 var(--spacing-sm);
  }

  .middle-wrapper .fcb-management__item,
  .bottom-wrapper .fcb-management__item {
    width: calc(
      var(--management-img-md) * 1.2
    ); /* Base width on image height */
    margin: 0 var(--spacing-xsm);
  }
}

@media (max-width: 1000px) {
  .top-wrapper .fcb-management__item {
    width: calc(
      var(--management-img-lg) * 1.8
    ); /* Base width on larger image height */
    margin: 0 var(--spacing-sm);
  }

  .middle-wrapper .fcb-management__item,
  .bottom-wrapper .fcb-management__item {
    width: calc(
      var(--management-img-md) * 1.7
    ); /* Base width on image height */
    margin: 0 var(--spacing-xsm);
  }
}

.fcb-management__item {
  flex-direction: column;
  gap: var(--spacing-2xsm);
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
}

.fcb-management__item:hover {
  text-decoration: none;
  color: inherit;
}

.fcb-management__title {
  text-align: center;
  max-width: 20ch;
  font-size: var(--font-size-sm);
  font-weight: 600;
}

.fcb-management__desc {
  text-align: center;
  max-width: 20ch;
  font-size: var(--font-size-xsm);
}
/*  */ /*  */ /*  */

/*  */ /*  */ /*  */
/* Location Section Styles */
.location-container {
  width: 100%;
  flex-direction: column;
  margin: auto;
}

.location-text {
  font-size: 50px;
  font-weight: 400;
  max-width: calc(2 * var(--cases-img-lg));
  margin: auto;
  padding: var(--spacing-md);
  padding-top: var(--spacing-lg);
  color: var(--font-black);
}

.location-container .cases__title {
  font-weight: 600;
  letter-spacing: 0.2px;
}

@media (min-width: 1500px) {
  .location-container .cases {
    max-width: calc((2 * var(--cases-img-lg)) + 200px);
  }

  .location-container .cases__img-container {
    max-width: calc(var(--cases-img-lg) + 100px);
    height: 350px;
  }
}

@media (max-width: 600px) {
  .location-text {
    font-size: 30px;
    padding: var(--spacing-sm);
  }
}
/*  */ /*  */ /*  */

/*  */ /*  */ /*  */
/* News Section Styles */
.news-container {
  width: 100%;
  flex-direction: column;
  margin: auto;
}

.news-container .cases {
  grid-template-columns: 1fr 1fr 1fr;
  justify-items: center;
  align-content: center;
  padding: var(--spacing-md);
}

.news-container .cases__title {
  font-weight: 600;
  letter-spacing: 0.2px;
}

@media (max-width: 900px) {
  .news-container .cases {
    grid-template-columns: 1fr !important;
    padding: 0 !important;
  }
}

@media (max-width: 1499px) {
  .news-container .cases {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1500px) {
  .news-container .cases {
    max-width: calc(3 * 400px);
  }

  .news-container .cases__img-container {
    max-width: 350px;
    height: 350px;
  }
}
/*  */ /*  */ /*  */

/*  */ /*  */ /*  */
/* Address Section Styles */
.contact-container {
  width: 70%;
  margin: auto;
}

.address-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background-color: #f7f7f7;
  margin: var(--spacing-lg) 0;
  padding: var(--spacing-md);
  width: 600px;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 90% 100%, 0 100%);
  transition: all 0.3s ease; /* Add smooth transition for all properties */
}

@media (max-width: 900px) {
  .contact-container {
    width: 80%;
    margin: auto;
  }

  .address-container {
    width: 400px;
  }
}

@media (max-width: 600px) {
  .contact-container {
    width: 100%;
  }

  .address-container {
    margin-left: var(--spacing-md);
    width: 300px;
    padding: var(--spacing-xsm);
  }
}

/* Add hover effects */
.address-container:hover {
  background-color: var(--bg-black);
  transform: translateY(-30px);
}

/* Change text colors on hover */
.address-container:hover *,
.address-container:hover p,
.address-container:hover .address-container__title {
  color: var(--font-white) !important;
}

/* Change border color on hover */
.address-container:hover .address-container__title::after {
  background-color: var(--font-white);
}

/* style for the animated border */
.address-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  border: none;
  outline: none;
  background-image: linear-gradient(
    90deg,
    #353c89,
    #2e3c73,
    #21457e,
    #045888,
    #006aae,
    #046fac,
    #0575b0,
    #b24830,
    #e94f22,
    #eb7f20,
    #db3821,
    #faa91a,
    #ffc50c,
    #febb11,
    #feca0d,
    #ffd70c,
    #ee2824,
    #ee2b24,
    #d83121,
    #d93121,
    #e42823,
    #ea6423,
    #eb6523,
    #e96b24,
    #fba919,
    #be3621,
    #bf411f,
    #ec2024,
    #df1b22,
    #f47b26,
    #f05025,
    #e72529,
    #e52040,
    #ea1566,
    #ca0162,
    #e71474,
    #c71047,
    #df155b,
    #e2175d,
    #e11b29,
    #e51b26,
    #c1151d,
    #9c0a11,
    #671a66,
    #47287e,
    #3e358a
  );
}

.address-container * {
  color: var(--font-black);
  transition: color 0.3s ease; /* Add transition for color changes */
}

.address-container p {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--font-black);
  line-height: 1.6;
  margin-bottom: 0;
}

.address-container__title {
  position: relative; /* For absolute positioning of pseudo-element */
  margin-bottom: var(--spacing-sm);
}

.address-container__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 1px; /* Border thickness */
  background-color: #000; /* Border color */
}

.address-container .text-country {
  margin-bottom: var(--spacing-md);
}

.map-container {
  margin-bottom: var(--spacing-lg);
}

@media (min-width: 1500px) {
  .map-container iframe {
    width: 1200px;
    height: 600px;
  }
}

@media (max-width: 1499px) {
  .map-container iframe {
    width: 800px;
    height: 500px;
  }
}

@media (max-width: 1000px) {
  .map-container iframe {
    width: 600px;
    height: 400px;
  }
}

@media (max-width: 700px) {
  .map-container iframe {
    width: 500px;
    height: 400px;
  }
}

@media (max-width: 600px) {
  .map-container iframe {
    width: 400px;
    height: 400px;
    margin-left: var(--spacing-md);
  }
}

@media (max-width: 500px) {
  .map-container iframe {
    width: 300px;
    height: 300px;
    margin-left: var(--spacing-md);
  }
}
/*  */ /*  */ /*  */

/*  */ /*  */ /*  */
/* Footer Awards Section Styles */
/* Footer styles */
.footer-awards {
  background-color: var(--bg-black);
  width: 100%;
}

.footer-awards__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  max-width: 1200px;
  margin: auto;
}

.award-item {
  gap: var(--spacing-md);
}

.award-item__img {
  width: 80px;
}

.award-item__text {
  max-width: 120px;
  font-size: var(--font-size-xsm);
  color: var(--font-white);
  font-family: "Code-Light";
  letter-spacing: 0.2px;
}

@media (max-width: 1200px) {
  .footer-awards__wrapper {
    grid-template-columns: repeat(2, 1fr);
    font-size: var(--font-size-xsm);
    gap: var(--spacing-sm);
  }
}

@media (max-width: 1000px) {
  .award-item {
    gap: var(--spacing-sm);
  }
}

@media (max-width: 600px) {
  .footer-awards__wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: var(--spacing-sm);
  }

  .award-item {
    gap: var(--spacing-sm);
  }
}
/*  */ /*  */ /*  */

/*  */ /*  */ /*  */
/* Team Member Section Styles */
.team-member-container {
  width: 100%;
  margin: 5% auto;
  display: flex;
  flex-wrap: wrap; /* Allow content to wrap */
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  padding: 0 2rem; /* Add padding for mobile */
}

.team-member-img-wrapper {
  width: 500px;
  height: 500px;
  flex-shrink: 0; /* Prevent image from shrinking */
}

.team-member-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.team-member-info-wrapper {
  max-width: 80ch;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1; /* Allow text to take remaining space */
  min-width: 300px; /* Minimum width before wrapping */
}

/* Add responsive adjustments */
@media (max-width: 1200px) {
  .team-member-img-wrapper {
    position: relative;
    top: 0;
  }
}

@media (max-width: 600px) {
  .team-member-img-wrapper {
    width: 100%;
    height: 400px;
  }

  .team-member-container {
    padding: 0 1rem;
  }
}

.team-member-info-wrapper p {
  color: var(--font-black);
  font-family: "NVRFNSHD-Display";
}

.team-member-info-name {
  font-size: var(--font-size-2xlg);
  font-weight: 600;
}

.team-member-info-title {
  font-size: var(--font-size-md);
  font-weight: 600;
}

.team-member-info-text {
  font-size: var(--font-size-md);
  letter-spacing: 0.5px;
  font-weight: 400;
  color: #090909;
  line-height: 1.6;
  margin-bottom: 2rem;
}
/*  */ /*  */ /*  */

/* Case Detail Styles */
.case-detail {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--bg-white);
  padding: var(--spacing-lg) 0;
}

.case-detail__heading {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  position: relative;
}


.case-detail__heading p{
font-size: 1.5rem;
    font-weight: 500;
    color: #090909;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.case-detail__heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-image: linear-gradient(
    90deg,
    #353c89,
    #2e3c73,
    #21457e,
    #045888,
    #006aae,
    #046fac,
    #0575b0,
    #b24830,
    #e94f22,
    #eb7f20,
    #db3821,
    #faa91a,
    #ffc50c,
    #febb11,
    #feca0d,
    #ffd70c,
    #ee2824,
    #ee2b24,
    #d83121,
    #d93121,
    #e42823,
    #ea6423,
    #eb6523,
    #e96b24,
    #fba919,
    #be3621,
    #bf411f,
    #ec2024,
    #df1b22,
    #f47b26,
    #f05025,
    #e72529,
    #e52040,
    #ea1566,
    #ca0162,
    #e71474,
    #c71047,
    #df155b,
    #e2175d,
    #e11b29,
    #e51b26,
    #c1151d,
    #9c0a11,
    #671a66,
    #47287e,
    #3e358a
  );
}

.case-detail__title {
  color: var(--font-black);
  font-size: var(--font-size-xlg);
  font-weight: 600;
}
.case-detail__title p {
  color: var(--font-black);
 
}
.case-detail__video {
  width: 100vw;
  position: relative;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.case-detail__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.case-detail__navigation {
  width: 80%;
  max-width: 1200px;
  margin: var(--spacing-lg) auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.case-detail__nav-button {
  background: transparent;
  border: none;
  color: var(
    --font-black
  ); /* This will make both text and icons black through currentColor */
  font-family: "Code-Bold";
  font-size: var(--font-size-md);
  cursor: pointer;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
}

.case-detail__nav-button:hover {
  transform: scale(1.1);
}

.case-detail__nav-button svg {
  transition: transform 0.3s ease;
}

.case-detail__nav-button:hover svg {
  transform: scale(1.2);
}

@media (max-width: 900px) {
  .case-detail__heading {
    width: 90%;
  }

  .case-detail__title {
    font-size: var(--font-size-xlg);
  }

  .case-detail__navigation {
    width: 90%;
    flex-wrap: wrap;
    gap: var (--spacing-sm);
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .case-detail__title {
    font-size: var(--font-size-lg);
  }
}
