/*==================== Made By Angeles May ====================*/

/*Fuentes personalizadas */
@font-face {
  font-family: 'head_custom_font';
  src: url('../fonts/EuclidCircularA-Regular.woff2') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'body_custom_font';
  src: url('../fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {

  /*==================== COLORES BASE ====================*/
  --color-primary: #006699;
  --color-accent: #0092d7;
  --color-secondary: #0092d7;
  --color-shadow: #DFEFFF;
  --color-white: #ffffff;
  --color-dark-blue: #14284B;
  --color-black: #0b0c0c;
  --color-gray-light: #f7f7f7;
  --color-gray-dark: #2e2e2e;

 /*==================== FUENTES ====================*/
  --font-heading: 'head_custom_font', sans-serif;
  --font-body: 'body_custom_font', sans-serif;

  /*==================== TAMAÑOS DE TEXTO ====================*/
  --font-xs: 0.75rem;     /* 12px */
  --font-sm: 0.875rem;    /* 14px */
  --font-base: 1.2rem;      /* 16px */
  --font-lg: 1.125rem;    /* 18px */
  --font-xl: 1.25rem;     /* 20px */
  --font-2xl: 1.5rem;     /* 24px */
  --font-3xl: 2rem;       /* 32px */
  --font-4xl: 2.5rem;     /* 40px */
  --font-5xl: 2.8rem;       /* 48px */
  --font-6xl: 3.5rem;     /* 56px */

/*==================== SOMBRAS ====================*/
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);

  /*==================== Z-INDEX ====================*/
  --z-dropdown: 1000;
  --z-modal: 1050;
  --z-tooltip: 1100;

 }
  
  /* Tipografía base */
  html,body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    color: #212529;
    background-color: #ffffff;
        
  
  }

/* Tipografía de encabezados */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: var(--font-6xl);
  line-height: 4.563rem;
  font-weight: 500;
  letter-spacing: 0.125rem;
}

h2 {
  font-size: var(--font-5xl);
  line-height: 2.75rem;
  font-weight: 500;
}

h3 {
  font-size: var(--font-4xl);
  font-weight: 400;
}

h4 {
  font-size: var(--font-3xl);
  font-weight: 400;
}

h5 {
  font-size: var(--font-2xl);
  font-weight: 400;
}

h6 {
  font-size: 0.875rem;
  font-weight: 400;
}

/* Enlaces */
a {
  color: var(--color-black);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover,
a:focus {
  color: var(--color-accent);
  text-decoration: none;
}

/*Botones*/

.btn_primary{
  color: var(--color-white);
  background: var(--color-primary);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  padding: 10px 15px;
  transition: color 0.3s ease;
  font-family: var(--font-heading);
  font-size: var(--font-sm);
}

.btn_primary:hover{
  color: var(--color-white);
  background: var(--color-dark-blue);
}

.btn_secondary{
  color: var(--color-dark-blue);
  background: transparent;
  border: 1px solid var(--color-dark-blue);
  border-radius: 8px;
  cursor: pointer;
  padding: 10px 15px;
  transition: color 0.3s ease;
}

.btn_secondary:hover{
  color: var(--color-white);
  background: var(--color-dark-blue);
}

.btn_fab{
  color: var(--color-black);
  background: transparent;
  border: 2px solid var(--color-accent);
  border-radius: 8px;
  cursor: pointer;
  padding: 10px 15px;
  transition: color 0.3s ease;
  font-family: var(--font-heading);
}

.btn_fab:hover{
  color: var(--color-dark-blue);
  background: var(--color-accent);
}


.btn_light {
  color: var(--color-dark-blue);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background-color: var(--color-white);
  border-radius: 8px;
  cursor: pointer;
  padding: 10px 15px;
  transition: all 0.3s ease;
}

.btn_light:hover{
  color: var(--color-white);
  background: var(--color-primary);
}

.btn_outline{
  color: var(--color-white);
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: 8px;
  cursor: pointer;
  padding: 10px 15px;
  transition: color 0.3s ease;
}

.btn_outline:hover{
  color: var(--color-white);
  background: var(--color-secondary);
  border: 2px solid var(--color-secondary);
}

/* Tipografía de encabezados */

.top-header{
  background:radial-gradient(circle at 80% 20%, rgb(160 224 255 / 25%), transparent 40%
    40%), radial-gradient(circle at 20% 80%, rgb(163 202 255 / 15%), transparent 50%), 
    linear-gradient(135deg, #eef1ff 0%, #e4e7fb 50%, #f6f7ff 100%);
  padding: 8px 0;

}

.top-header .dropdown-menu {
  position: absolute;
  z-index: 2000; /* mayor que el header */
}

.social_icon{
  color: var(--color-dark-blue);
  font-size: 15px;
}

button#languageDropdown{
  font-size: var(--font-xs);
  font-family: var(--font-heading);
}

.custom_navbar {
  background-color: var(--color-white) !important;
  box-shadow: rgba(136, 165, 191, 0.25) 4px 2px 10px,
              rgba(255, 255, 255, 0.6) -4px -2px 10px;
}

a.dropdown-item.d-flex.align-items-center{
    font-size: var(--font-xs);
  font-family: var(--font-heading);
}

.custom_navbar .nav-link {
    color: var(--color-black) !important;
}

.custom_navbar .nav-link:hover {
    color: var(--color-primary) !important;
}

.custom_navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0,0,0,0.7)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-toggler {
  position: relative;
  width: 30px;
  height: 24px;
  border: none;
  background: transparent;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  padding: 0;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler .bar {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--color-dark-blue);
  border-radius: 2px; 
  transition: all 0.3s ease;
}

/* Animación para estado cerrado */
.navbar-toggler.collapsed .top {
  transform: rotate(0) translateY(0);
}
.navbar-toggler.collapsed .middle {
  opacity: 1;
}
.navbar-toggler.collapsed .bottom {
  transform: rotate(0) translateY(0);
}

/* Animación para estado abierto (X) */
.navbar-toggler:not(.collapsed) .top {
  transform: rotate(45deg) translateY(10px);
}
.navbar-toggler:not(.collapsed) .middle {
  opacity: 0;
}
.navbar-toggler:not(.collapsed) .bottom {
  transform: rotate(-45deg) translateY(-10px);
}

.custom_navbar .nav-link {
  padding: 10px;
  color: var(--color-black);
  font-size: var(--font-sm);
  font-family: var(--font-body);
  font-weight: 600;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.custom_navbar .nav-link:hover {
    color: var(--color-white) !important;
    background-color: var(--color-primary);
    border-radius: 5px;
}

.custom_navbar .dropdown-menu .dropdown-item {
    padding: 10px 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.item_navegation{
  margin: 0px 20px;
}

.item_navegation a{
color: var(--color-black);
font-size: var(--font-sm);
transition: color 0.3s ease;
font-family: var(--font-body);
font-weight: 600;
}

.item_navegation a:hover{
color: var(--color-primary);
font-size: var(--font-sm);
}

/* Slider Principal */
.carousel-item {
    background: url("../img/bg-slider.webp") no-repeat center center;
    background-size: cover;
  }
  
   .carrusel_items{
      padding: 0 80px;
  }
  
  .carousel-indicators {
    bottom: 20px;
  }
  .carousel-indicators [data-bs-target] {
    background-color: var(--color-white);
    width: 12px;
    height: 12px;
    border-radius: 50%;
  }
  .hero-height {
    min-height: 90vh;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .slider_tittle{
    color: var(--color-white);
    font-size: var(--font-5xl);
    font-family: var(--font-heading);
    text-transform: capitalize;

  }

  .slider_text{
    color: var(--color-white);
    font-size: var(--font-2xl);
  }

  .badge_bglight{
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    background-color: var(--color-white);
    border-radius: 12px;
    color: var(--color-primary);
  }


  /* Seccion Contador */

.counter-section {
    background:var(--color-dark-blue);
    color: var(--color-white);
    padding: 30px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-items: center;
  }

  .counter {
    font-size: var(--font-6xl);
    font-weight: bold;
  }
  .counter-text {
    font-size: 1.1rem;
    margin-top: 10px;
  }

  /* Seccion About Home */
  .about-home{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
  }

  .about-home h2{
    color: var(--color-dark-blue);
    font-size: var(--font-4xl);
    font-weight: 500;
  }

  .about-home p{
    text-align: justify;
  }

  .service_core_area{
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 50px;
  }

.service_core_area h3{
  color: var(--color-dark-blue);
  font-size: var(--font-4xl);
}

.service-card {
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s ease;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
  transition: transform 0.2s ease-in-out;
  background-color: rgba(255, 255, 255, 0.048);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.service-card:hover {
  transform: translateY(-5px);
}
.icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.service-card h4{
  font-size: var(--font-xl);
  color: var(--color-dark-blue);
}

 .image_cta{
  background: #fafafa;
 }

 .talent_pool_area{
  background: url("../img/bg-home.webp") no-repeat center center;
    background-size: cover;
 }

 .talent_pool_area h3{
  color: var(--color-white);
 }

 .talent_pool_area p{
  color: var(--color-white);
 }

 .faqs_area{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
 }

 .blog_area{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-gray-light);
 }

 .card_blog h5{
  color: var(--color-dark-blue);
  font-size: var(--font-xl);
 }

 .footer_hero{
  padding:50px 0;
 }

 .footer_hero h5{
  color: var(--color-dark-blue);
  font-size: var(--font-4xl);
  margin-bottom: 30px;
  text-transform: capitalize;
 }

 /*ABOUT US PAGE*/

 .aus-header {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 350px;
  background: url("../img/about-us.webp") no-repeat center center;
  background-size: cover;
  border-radius: 0 0 0 150px;
  color: white;
  overflow: hidden;
}

.aus-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 128, 0.6);
  z-index: 0;
}

.aus-header .container {
  position: relative;
  z-index: 1;
}

 .about_cer{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0 50px;
  min-height: 80vh;
 }

 .about_cer h1{
  font-size: var(--font-5xl);
  color: var(--color-dark-blue);
  line-height: 3rem;
 }

 .about_cer p{
  text-align: justify;
 }

 /*VIDEO*/
 .btn-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
}
.btn-play span {
  width: 0;
  height: 0;
  border-left: 18px solid white;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.btn-play::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  70% { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}

.team_section{
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 50px;
}

.team_section h3{
  color: var(--color-dark-blue);
  padding-bottom: 30px;
}

.team_section .h4{
  color: var(--color-dark-blue);
  font-size: var(--font-xl);
}

/*LOGO SLIDER*/
.logo-slider {
  background-color: var(--color-gray-light);
  padding: 30px;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}

.logo-track {
  display: flex;
  animation: scroll 25s linear infinite;
  width: max-content;
}

.logo-card {
  background: #fff;
  border-radius: 15px;
  padding: 1rem 2rem;
  margin: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 100px;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
  flex-shrink: 0;
}

.logo-card img {
  max-height: 50px;
  max-width: 140px;
  object-fit: contain;
}

@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/*CORE VALUES*/
.core-values-header {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 350px;
  background: url("../img/core-values.webp") no-repeat center center;
  background-size: cover;
  border-radius: 0 0 0 150px;
  color: white;
  overflow: hidden;
}

.core-values-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 128, 0.6);
  z-index: 0;
}

.core-values-header .container {
  position: relative;
  z-index: 1;
}


.core-values-section{
  padding: 80px 0 50px;
}

.core-values-section h3{
  color: var(--color-dark-blue);
  text-transform: capitalize;
}

.info-box {
    background: #fff;
    border-radius: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
  }

  .info-box:hover {
    background: var(--color-shadow);
    transform: translateY(-3px);
  }

  .info-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-shadow);
    border-radius: 50%;
    color: var(--color-primary);
    margin-right: 1rem;
    font-size: 1rem;
  }

  .info-title {
    font-weight: 700;
  }

  /*MISSION AND VISION PAGE*/

.mav-header {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 350px;
  background: url("../img/mav-cer.webp") no-repeat center center;
  background-size: cover;
  border-radius: 0 0 0 150px;
  color: white;
  overflow: hidden;
}

.mav-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 128, 0.6);
  z-index: 0;
}

.mav-header .container {
  position: relative;
  z-index: 1;
}

.mission_cer{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
}

.mission_cer h1{
  font-size: var(--font-5xl);
  line-height: 3rem;
  color: var(--color-dark-blue);
}

.mission_cer .accordion-button{
  padding: 10px 15px;
  background-color: var(--color-gray-light);
}

.accordion-button:not(.collapsed){
    color: var(--color-primary);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

/*WORK WITH US PAGE*/
.wwu-header {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 350px;
  background: url("../img/breadcrumb-contact.jpg") no-repeat center center;
  background-size: cover;
  border-radius: 0 0 0 150px;
  color: white;
  overflow: hidden;
}

.wwu-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 128, 0.6);
  z-index: 0;
}

.wwu-header .container {
  position: relative;
  z-index: 1;
}

.main_wwu{
  padding: 100px 0 80px;
  display: flex;
  align-items: center;
  justify-content: center;

}

.main_wwu h2{
  font-size: var(--font-4xl);
  color: var(--color-dark-blue);
}

.main_wwu p{
  text-align: justify;
}

.features_list{
  padding: 20px 0 30px;
}

.features_list i{
  color: var(--color-primary);
}

.hw-section{
   padding: 50px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-gray-light);
}

.hw-section h3{
  font-size: var(--font-4xl);
  color: var(--color-dark-blue);
  margin-bottom: 50px;

}

.apply-item i{
  color: var(--color-dark-blue);
}

.apply-item h4{
  font-size: var(--font-base);
  padding-top: 20px;
}

.arrow path {
  stroke-dasharray: 100;
  stroke-dashoffset: 0;
  animation: flow-arrow 1.5s linear infinite;
}

@keyframes flow-arrow {
  0% {
    stroke-dashoffset: 100;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

.apply-steps{
  padding-bottom: 80px;
  background-color: var(--color-white);
}

.apply-steps h3{
  margin-bottom: 50px;
  font-size: var(--font-4xl);
}

.apply-steps_box{
  margin-top: 10px;
}

.apply-steps i{
  color: var(--color-dark-blue);
  background-color: var(--color-shadow);
  padding: 20px;
  border-radius: 15px;
}

.apply-steps h4{
  color: var(--color-dark-blue);
  font-size: var(--font-2xl);
}

/*HOW WE WORK PAGE*/

.hww-header {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 350px;
  background: url("../img/hww-bg.webp") no-repeat center center;
  background-size: cover;
  border-radius: 0 0 0 150px;
  color: white;
  overflow: hidden;
}

.hww-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 128, 0.6);
  z-index: 0;
}

.hww-header .container {
  position: relative;
  z-index: 1;
}

.hww-cer{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}

.hww-cer h2{
  font-size: var(--font-4xl);
}

.hww-cer p{
  text-align: justify;
}

.hww-process{
  padding: 50px 0;
  background-color: var(--color-gray-light);
}

.hww-process h4{
  color: var(--color-dark-blue);
  font-size: var(--font-base);
  padding-top: 20px;
}

.process_column{
  padding: 10px;
  border-radius: 15px;
  background-color: var(--color-white);
}

.process_column i{
  color: var(--color-primary);
  margin-top: 20px;
}

.process_column h4{
  color: var(--color-dark-blue);
  font-size: var(--font-base);
  padding-top: 20px;
}

/* DIRECT HIRING PAGE*/
.dh-header {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 350px;
  background: url("../img/direct-hire-header.webp") no-repeat center center;
  background-size: cover;
  border-radius: 0 0 0 150px;
  color: white;
  overflow: hidden;
}

.dh-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 128, 0.5);
  z-index: 0;
}

.dh-header .container {
  position: relative;
  z-index: 1;
}


.direct-hiring{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}

.direct-hiring h2{
  font-size: var(--font-4xl);
  color: var(--color-dark-blue);
}

.direct-hiring p{
  text-align: justify;
}

.direct-hiring-features{
  padding: 80px 0;
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.direct-hiring-features h2{
  font-size: var(--font-4xl);
  color: var(--color-dark-blue);
}

.direct-hiring-features h3{
  font-size: var(--font-xl);
}

/*CUSTOM SOLUTIONS PAGE*/

.cs-header {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 350px;
  background: url("../img/csolutions.webp") no-repeat top center;
  background-size: cover;
  border-radius: 0 0 0 150px;
  color: white;
  overflow: hidden;
}

.cs-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 128, 0.5);
  z-index: 0;
}

.cs-header .container {
  position: relative;
  z-index: 1;
}

.cs_section{
  padding: 50px 0;
}

.cta_bg{
  background: url("../img/bg-cta.webp") no-repeat top center;
  background-size: cover;
  border-radius: 10px;
  padding: 30px 20px;
  min-height: 400px;
  
}

.cta_bg h3{
  font-size: var(--font-2xl);
  text-align: center;
  color: var(--color-white);
}

.cta_bg a{
  font-size: var(--font-2xl);
  text-align: center;
  color: var(--color-white);
}

.card_profile .card-header{
  background-color: var(--color-dark-blue);
}

.nav-pills .nav-link {
  margin-bottom: 10px;
  border-radius: 0.5rem;
  color: var(--color-dark-blue);
  background-color: var(--color-gray-light);
  text-align: start;
}
.nav-pills .nav-link.active {
  background-color: var(--color-dark-blue); /* Azul activo */
  color: #fff;
}
.tab-content img {
  width: 100%;
  border-radius: 0.5rem;
}

/*TEAM PAGE*/

.team-header {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 350px;
  background: url("../img/team-cer.webp") no-repeat center center;
  background-size: cover;
  border-radius: 0 0 0 150px;
  color: white;
  overflow: hidden;
}

/* Overlay */
.team-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 128, 0.5);
  z-index: 0;
}

.team-header .container {
  position: relative;
  z-index: 1;
}

.team-card {
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  background: #fff;
}
.team-card img {
  width: 100%;
  height: auto;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.team-card .role {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: #6c757d;
  margin-bottom: 4px;
}
.team-card .name {
  font-weight: 700;
  font-size: var(--font-sm);
  color: var(--color-dark-blue);
}
.team-card .contact {
  font-size: var(--font-sm);
  color: #555;
}

/*INDUSTRIES PAGE*/

.iws-header {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 350px;
  background: url("../img/industries-bg.webp") no-repeat center center;
  background-size: cover;
  border-radius: 0 0 0 150px;
  color: white;
  overflow: hidden;
}

/* Overlay */
.iws-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 128, 0.5);
  z-index: 0;
}

.iws-header .container {
  position: relative;
  z-index: 1;
}

.iws-data{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}

.iws-data h2{
  color: var(--color-dark-blue);
  font-size: var(--font-4xl);
}

.industry-card{
  border: none;
  border-radius: 12px;
  padding: 20px;
  transition: 0.3s;
  background: #fff;
  height: 100%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }


.industry-card h5{
  color: var(--color-dark-blue);
  font-size: var(--font-xl);
}

  .industry-icon {
  font-size: 1.5rem;
  color: var(--color-dark-blue);
  margin-bottom: 15px;
  padding: 15px;
  background-color: var(--color-shadow);
  border-radius: 50px;
  }

/*CONTACT PAGE*/

.grl-header {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 350px;
  background: url("../img/contact_bg_header.jpg") no-repeat center center;
  background-size: cover;
  border-radius: 0 0 0 150px;
  color: white;
  overflow: hidden;
}

/* Overlay */
.grl-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 128, 0.5);
  z-index: 0;
}

.grl-header .container {
  position: relative;
  z-index: 1;
}

.corner-svg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 35%;
  height: auto;
  z-index: 1;
  transform-origin: bottom right;
}

.contact_details{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
}

.contact_data{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
}

.contact_data h2{
  color: var(--color-dark-blue);
}

.contact_box{
  background-color: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact_box h3{
  color: var(--color-dark-blue);
  font-size: 17px;
}

.contact_box i{
  padding-bottom: 20px;
  color: var(--color-primary);
  background-color: var(--color-gray-light);
  padding: 20px;
  font-size: 30px;
  border-radius: 100%;
  margin-bottom: 10px;
}

.contact_box a{
  color: var(--color-dark-blue);
  transition: all 0.3s ease-in-out;
}

.contact_box a:hover{
  color: var(--color-primary);
}

.contact-form-section{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
}

.contact-box h2{
  color: var(--color-dark-blue);
}

.icon-box{
  background-color: var(--color-shadow);
  padding: 0 10px;
  border-radius: 10px;
  color: var(--color-primary);
}

.form-container{
  background-color: #f7f7f7;
  padding: 30px 50px;
}

.form-container h3{
  color: var(--color-dark-blue);
  font-size: var(--font-2xl);
}

form .text_form_label{
  font-size: var(--font-sm);
}

.form_btn{
  background-color: var(--color-dark-blue);
  padding: 15px 10px;
  color: var(--color-white);
  transition: color 0.3s ease;
}

.form_btn:hover{
background: var(--color-primary);
color: var(--color-white);
padding: 15px 10px;
}

#goTopBtn {
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 100;
  border: none;
  outline: none;
  background-color: var(--color-primary);
  color: white;
  cursor: pointer;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 100%;
  font-size: 18px;
  display: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: opacity 0.3s;
}

#goTopBtn:hover {
  background-color: var(--color-accent);
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0rem 1.25rem !important;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    background-color: #fff;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, border-radius .15s ease;
}

.tk-header {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 350px;
  background: url("../img/contact_bg_header.jpg") no-repeat center center;
  background-size: cover;
  border-radius: 0 0 0 150px;
  color: white;
  overflow: hidden;
}

/* Overlay */
.tk-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 128, 0.5);
  z-index: 0;
}

.tk-header .container {
  position: relative;
  z-index: 1;
}

.corner-svg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 35%;
  height: auto;
  z-index: 1;
  transform-origin: bottom right;
}


.tk_section{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}

.toc-list li {
  margin-bottom: 8px;
}

.toc-list a {
  text-decoration: none;
  color: #212529;
  transition: all 0.2s ease;
}

.toc-list a:hover {
  padding-left: 4px;
  color: #0d6efd;
}



