/*==================== Made By Angeles May ====================*/

/*Fuentes personalizadas */
@font-face {
  font-family: 'head_custom_font';
  src: url('../fonts/HankenGrotesk-VariableFont_wght.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'body_custom_font';
  src: url('../fonts/Outfit-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: #F5C701;
  --color-secondary: #2C4C8E;
  --color-shadow: #7DBBF9;
  --color-white: #ffffff;
  --color-dark-blue: #14284B;
  --color-black: #0b0c0c;
  --color-gray-light: #F4F6F6;
  --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: 3rem;       /* 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;
    overflow-x: hidden;
    
  
  }

/* 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: 600;
}

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_groups{
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 4;
  margin-top: 50px;
}

.btn_primary{
  color: var(--color-white);
  background: var(--color-primary);
  border: none;
  border-radius: 25px;
  cursor: pointer;
  padding: 10px 15px;
  transition: color 0.3s ease;
}

.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: 25px;
  cursor: pointer;
  padding: 10px 15px;
  transition: color 0.3s ease;
}

.btn_secondary:hover{
  color: var(--color-white);
  background: var(--color-dark-blue);
}

.btn_warning{
  color: var(--color-white);
  background: transparent;
  border: 1px solid var(--color-accent);
  border-radius: 25px;
  cursor: pointer;
  padding: 10px 15px;
  transition: color 0.3s ease;
}

.btn_warning:hover{
  color: var(--color-dark-blue);
  background: var(--color-accent);
}

.btn_ligth{
  color: var(--color-white);
  background: transparent;
  border: 1px solid var(--color-white);
  border-radius: 25px;
  cursor: pointer;
  padding: 10px 15px;
  transition: color 0.3s ease;
}

.btn_ligth:hover{
  color: var(--color-dark-blue);
  background: var(--color-white);
}

.btn_employers{
  color: var(--color-white);
  background: var(--color-primary);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  padding: 15px 22px;
  transition: color 0.3s ease;
}

.btn_employers:hover{
  color: var(--color-white);
  background: var(--color-dark-blue);
}

.btn_jobseekers{
  color: var(--color-dark-blue);
  background: transparent;
  border: 2px solid var(--color-dark-blue);
  border-radius: 10px;
  cursor: pointer;
  padding: 15px 22px;
  transition: color 0.3s ease;
}

.btn_jobseekers:hover{
  color: var(--color-white);
  background: var(--color-dark-blue);
}

.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);
}


/*HOME PAGE*/


/* Slider Principal */
.carousel-item {
    background: url("../img/home-bg.jpg") 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-lg);
  }


.hero-section {
  height: 740px;
  display: flex;
  align-items: flex-end;
  background: url(../../../public/assets/img/home-bg.jpg) no-repeat top center;
  background-size: cover;
  overflow: hidden;
}

.container-fluid {
  height: 100%;
}

.row {
  height: 100%;
}

.text-column {
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-section .company,
.hero-section .description-text{
  color: var(--color-white);
}

.hero-section h1{
  color: var(--color-white);
  font-size: var(--font-6xl);
  font-weight: bold;
  line-height: 3.5rem;
}

.hero-buttoms{
  padding-top: 30px;
}


.image-column {
  align-items: flex-end;
  justify-content: center;
  display: flex;
}

.hero-image {
  max-width: 100%;
  height: auto;
}

/* Card Servicios */

.services-section{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
  background: url(../../../public/assets/img/gradient-bg.webp) no-repeat left center;
  background-size: cover;
}

.services-section small{
  color: var(--color-dark-blue);
  font-size: 16px;  

}

.services-section .services-tittle{
  color: var(--color-dark-blue);
  padding: 10px 0;
}

.services-section .services-description{
  font-size: var(--font-base);
}

.card-services{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.service-item{
  border: none;
  border-radius: 15px;
  padding: 10px;
  background-color: var(--color-white);
  position: relative;
  overflow: hidden;
  transition: background-color 0.4s ease; 
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.service-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary);
  transform: translateY(100%);
  transition: transform 0.5s ease;
  z-index: 0;
}

.service-item:hover::before {
  transform: translateY(0);
}

.service-item .card-body,
.service-item img {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.service-item:hover .card-body,
.service-item:hover .card-body h3,
.service-item:hover .card-body p,
.service-item:hover .card-body small {
  color: var(--color-white);
}

.service-item small{
  color: var(--color-primary);
}

.service-item h3{
  margin-top: 20px;
  color: var(--color-dark-blue);
  font-size: 22px;
  font-weight: bold;
}

.cta-services{
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f8f8;
}

.cta-services h3{
  color: var(--color-dark-blue);
  font-size: var(--font-xl);
  font-weight: bold;
  margin-bottom: 0;
  text-align: center;
}

.cta-serv img.img-fluid {
  border-radius: 0;
}

.services-btn{
background-color: var(--color-primary);
color: var(--color-white);
transition: color 0.3s ease;
border-radius: 25px;
padding: 10px 15px;
font-weight: 500;
}

.services-btn:hover{
  background-color: var(--color-dark-blue);
  color: var(--color-white);
}

.about-us{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}

.about-us small{
  color: var(--color-dark-blue);
  font-size: 16px; 
}

.about-us h3{
  color: var(--color-dark-blue);
  font-size: var(--font-5xl);
  font-weight: bold; 
}

/*WHY CHOOSE SECTION*/
.why-choose{
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
  padding-bottom: 50px;
}

.why-choose h3{
  color: var(--color-dark-blue);
  font-size: var(--font-4xl);
  font-weight: bold; 
}

 .card-custom {
    border: 1px solid var(--color-primary);
    transition: all 0.3s ease;
    border-radius: 25px;
  }

  .card-title{
    color: var(--color-primary);
    font-size: var(--font-base);
  }

  .card-custom:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
  }

  .card-custom:hover .card-title,
  .card-custom:hover .card-text {
    color: var(--color-white);
  }

/*TARGET*/
.areas-section {
  width: 100%;
  padding: 0;
  margin: 0;
}

.row.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.row.no-gutters > [class^="col-"] {
  padding-right: 0;
  padding-left: 0;
  min-height: 740px;
}

.employer-col {
  background: url(../../../public/assets/img/bg-empleadores.jpg) no-repeat center center;
  background-size: cover;
}

.candidate-col {
  background: url(../../../public/assets/img/bg-ofertas.jpg) no-repeat center center;
  background-size: cover;
}

.icon-wrapper i {
  transition: transform 0.5s ease;
  color: white;
}

.icon-wrapper:hover i {
  transform: rotate(360deg);
}

.text-wrapper {
  color: white;
  max-width: 600px;
}

.areas-section h4{
  font-weight: bold;

}

.industries_section{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  background: url(../../../public/assets/img/gradient-bg.webp) no-repeat left center;
  background-size: cover;
}

.industries_section h4{
  font-size: var(--font-4xl);
  font-weight: bold;
  color: var(--color-dark-blue);
}

.industry-item,
.payroll-item {
  border-radius: 15px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.industry-item:hover,
.payroll-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  background-color: var(--color-primary);
  color: var(--color-white);
}

.industry-item h5,
.payroll-item h5{
  font-size: 20px;
  color: var(--color-dark-blue);
  font-weight: bold;
}

.industry-item i,
.payroll-item i{
  color: var(--color-primary);
  transition: transform 0.5s ease;
}

.industry-item:hover i,
.payroll-item:hover i {
  transform: rotate(360deg);
  color: var(--color-white);
}

.industry-item:hover h5,
.payroll-item:hover h5 {
  color: var(--color-white);
}

/*CALL TO ACTION SECTION*/
.call-to-action{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  background-color: var(--color-dark-blue);
}

.call-to-action h4,
.call-to-action p{
  color: var(--color-white);
}

.contact-section{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}

.contact-form-card .glass {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.card_icons{
  background-color: var(--color-gray-light);
}

.card_icons i{
  color: var(--color-white);
}

.contact-icons {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-form-card i {
  color: var(--color-primary);
  transition: transform 0.5s ease;
}

.contact-form-card:hover i{
  transform: rotate(360deg);
}

.contact-link{
  color: var(--color-dark-blue);
  transition: all 0.3s ease;
}

.contact-link:hover{
  color: var(--color-primary);
}

.form-elements{
  background-color: var(--color-white);
  border-radius: 15px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.form-tittle{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-dark-blue);
  color: var(--color-white);
  padding: 20px 0;
  border-radius: 15px 15px 0 0;
  font-size: 22px;
  text-align: center; 
}

.contact-form-card {
  background-color: var(--color-white);
  border-radius: 0 16px 16px 0;
  border-left: 4px solid var(--color-primary);
  padding: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.send-btn {
  width: 100%;
  background-color: var(--color-dark-blue);
  color: var(--color-white);
  padding: 12px;
  border-radius: 8px;
  border: none;
  transition: background-color 0.3s ease;
}

.send-btn:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/*SOBRE NOSOTROS PAGE*/
.about-us-header{
  height: 350px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../../../public/assets/img/nosotros-bg.jpg) no-repeat center center;
  background-size: cover;
}

.history-section{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
} 

.values-section{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
  background-color: var(--color-white);
}

.values-section h3{
  font-weight: bold;
  color: var(--color-dark-blue);
}


.nosotros-esp{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  background: url(../../../public/assets/img/gradient-bg.webp) no-repeat left center;
  background-size: cover;
}

.nosotros-esp h3{
  font-weight: bold;
  color: var(--color-dark-blue);
  line-height: 3rem;
  font-size: var(--font-4xl);
}

.icon-box {
  width: 60px;
  height: 60px;
  background-color: #4b7bec;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;

}

.experience-box {
  background-color: #4b7bec;
  color: white;
  padding: 1.5rem;
  text-align: center;
  border-radius: 0.5rem;
  font-size: 1.2rem;

}

.mision-vision h4{
  font-size: var(--font-2xl);
  font-weight: bold;
}

.team-section {
  position: relative;
  background-color: var(--color-gray-light);
  height: 680px;
  overflow: hidden;
   background: url(../../../public/assets/img/bg-pattern.png) no-repeat center center;
  background-size: cover;
  padding: 80px 0;
}

@keyframes bubble {
  0%, 100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(4px, -10px);
  }
  50% {
    transform: translate(-6px, 6px);
  }
  75% {
    transform: translate(3px, -4px);
  }
}

.circle-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  animation: bubble 4s ease-in-out infinite;
}
.circle-img.large {
  width: 120px;
  height: 120px;
}
.circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Posiciones específicas*/
.img1 { top: 30px; left: 250px; }     /* Superior izquierda (grande) */
.img2 { top: 150px; left: 80px; }     /* Izquierda media */
.img3 { top: 500px; left: 300px; }    /* Inferior izquierda */
.img4 { top: 50px; right: 280px; }    /* Superior derecha (mediana) */
.img5 { top: 150px; right: 90px; }    /* Derecha media */
.img6 { top: 500px; right: 280px; }   /* Inferior derecha (grande) */

.content-box {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
}

.content-box h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}


.btn-primary {
  background-color: #3f7bff;
  border: none;
}


/* SERVICES PAGE*/
.services-header{
  height: 350px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../../../public/assets/img/services-bg.jpg) no-repeat center center;
  background-size: cover;
}

.services-cer{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  background: url(../../../public/assets/img/gradient-bg.webp) no-repeat center center;
  background-size: cover;
}

.services-cer h2{
  font-size: var(--font-4xl);
  font-weight: bold;
  color: var(--color-dark-blue);
}

.services-content{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0 50px 0;
}

.imp-section{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
}

.imp-section h3{
  font-size: var(--font-4xl);
  font-weight: bold;
  color: var(--color-dark-blue);
}

.imp-section h4{
  font-size: var(--font-lg);
  font-weight: bold;
  color: var(--color-dark-blue);
}

.tab-tittle{
  color: var(--color-dark-blue);
  font-weight: bold;
}

.benefit-employers{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  background: url(../../../public/assets/img/gradient-bg.webp) no-repeat left center;
  background-size: cover;
}

.benefit-employers h3{
  color: var(--color-dark-blue);
  font-weight: bold;
}

.content_area h3{
  font-weight: bold;
  font-size: var(--font-3xl);
  color: var(--color-dark-blue);
}

.card-step {
  background-color: var(--color-white);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.card-step:hover{
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  background-color: var(--color-primary);
  color: var(--color-white);
}

.card-step .step-title {
  background-color: var(--color-primary);
  color: var(--color-white);
  display: inline-block;
  padding: 2px 10px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.card-step i{
  color: var(--color-primary);
  transition: transform 0.4s ease;
}

.card-step:hover i{
  color: var(--color-white);
  transform: rotate(360deg);
}

.step-ttle{
  font-size: 18px;
  font-weight: bold;
}

.card-benefit {
  border-radius: 15px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);

}

.card-benefit:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  background-color: var(--color-primary);
  color: var(--color-white);
}

.card-benefit i {
  transition: transform 0.4s ease;
  color: var(--color-primary);
}

.card-benefit:hover i {
  color: var(--color-white);
  transform: rotate(360deg);
}

.cv-form{
  border-radius: 15px;
  padding: 50px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.benefit-employers h6{
  color: var(--color-dark-blue);
  font-weight: bold;
  font-size: var(--font-lg);
}

.card-benefit:hover h6{
  color: var(--color-white);
}

.pay-ft{
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 80px;
}


        
/*JOB SEAKERS PAGE*/
.jobseakers-header{
  height: 60px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: left;
  justify-content: left;
  background-color: var(--color-gray-light);
}

.employers-section{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}

.employers-section h2{
  font-size: var(--font-4xl);
  font-weight: bold;
  line-height: 3rem;
  color: var(--color-dark-blue);
}

.check-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 1rem;
}

.check-list li i {
  color: var(--color-primary);
  margin-right: 10px;
  margin-top: 4px;
  flex-shrink: 0;
}

.hw-section{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0 80px;
  background: url(../../../public/assets/img/gradient-bg.webp) no-repeat left center;
  background-size: cover;
}

.hw-section h3{
  font-size: var(--font-4xl);
  font-weight: bold;
  line-height: 3rem;
  color: var(--color-dark-blue);
}

.step-cards{
  padding: 30px 0;
}

.tips small{
  font-size: 18px;
  font-weight: bold;
}

.jobseekers-benefits{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  background: url(../../../public/assets/img/bg-hero.jpg) no-repeat center center;
  background-size: cover;
}



.jobseekers-benefits h3{
  font-size: var(--font-4xl);
  font-weight: bold;
  color: var(--color-white);
}

.card-jobseekers{
  padding: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.card-jobseekers i{
  color: var(--color-white);
  transition: transform 0.4s ease;
}

.card-jobseekers h6{
  color: var(--color-white);
  font-size: 20px;
  margin-bottom: 20px;
}

.card-jobseekers p{
  color: var(--color-white);
}

.card-jobseekers:hover{
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  background-color: var(--color-primary);
  color: var(--color-white);
}

.card-jobseekers:hover i{
  transform: rotate(360deg);
}

.video-section {
  position: relative;
  height: 700px;
  overflow: hidden;
}

.video-section video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.video-overlay {
  position: relative;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  z-index: 1;
}

.hero-content {
  color: white;
}

.read-more {
  color: white;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
}

.read-more:hover {
  text-decoration: underline;
}

.benefit {
  background: var(--color-primary);
  color: white;
  padding: 12px 18px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.benefit:hover {
  transform: scale(1.05);
}

.benefit i {
  background: white;
  color: var(--color-primary);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-right: 10px;
}

.colabs-cer{
  padding-top: 50px;
}

img.img-fluid {
    border-radius: 15px;
}

.employer-register{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  background-color: #F4F6F6;
}

.employer-register h3{
  font-size: var(--font-4xl);
  font-weight: bold;
}

/* CONTACT PAGE*/
.grl-header{
  height: 80px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
}

.breadcrumb,
.breadcrumb a,
.breadcrumb-item,
.breadcrumb-item.active {
  color: #ffffff !important;
}


.breadcrumb-item + .breadcrumb-item::before {
  color: #ffffff !important;}

section.g-0.map-section {
    margin-bottom: -10px;
}
.nav-pills .nav-link {
    background: 0 0;
    border: 0;
    border-radius: 25px;
    color: var(--color-dark-blue);
    background-color: var(--color-gray-light);
    margin: 10px 0;
}

.nav-pills .nav-link.active {
  background-color:var(--color-primary);
  color: var(--color-white);
  border-radius: 25px;
}

/* JOBBOARD PAGE*/
.jobboard-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
}

.frame-jobboard {
  margin-top: 30px;
  width: 100%;
  min-height: 100%;
  border: none;
  overflow: hidden;
}

/*POLITICAS PRIVACIDAD PAGE*/
.privacy_pol,
.use-conditions{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
}

.polltic-tittle,
.term-tittle{
  font-size: var(--font-2xl);
  font-weight: 500;
  color: var(--color-dark-blue);
}

.thk-row {
    min-height: 700px;
}

.text-col {
    background: url(../../../public/assets/img/bg-thk.jpg) no-repeat center center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100%;
}

.text-col h2{
  color: var(--color-white);
  line-height: 4rem;
}

.text-col p{
  color: var(--color-white);
  font-size: var(--font-base);
}

.image-col {
    background: url(../../../public/assets/img/tk_banner.jpg) no-repeat right center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100%;
}

.thk-section .row {
    display: flex;
}

#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;
}


@media (max-width: 991.98px) {

.breadcrumb, .breadcrumb a, .breadcrumb-item, .breadcrumb-item.active {
    color: #ffffff !important;
    font-size: 15px;
}

  .hero-section {
  height: 780px;
  display: flex;
  align-items: center;
  background: url(../../../public/assets/img/home-bg.jpg) no-repeat top center;
  background-size: cover;
  overflow: hidden;
  padding: 30px 0;
}

  .hero-section h2 {
    color: var(--color-white);
    font-size: 30px;
    font-weight: bold;
    line-height: 2.2rem;
}

.image-column .hero-image{
  display: none;
}


.hero-buttoms{
  flex-direction: column !important;
  margin-bottom: 20px;
}

.services-section .services-tittle {
    color: var(--color-dark-blue);
    padding: 10px 0;
    font-size: 39px;
}

.services-content{
  padding: 30px 0;
}

.cta-services  a{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.about-us h3 {
    color: var(--color-dark-blue);
    font-size: 39px;
    font-weight: bold;
}

.why-choose small{
  margin-top: 20px;
}

.why-choose h3 {
    color: var(--color-dark-blue);
    font-size: 30px;
    font-weight: bold;
    padding-top: 30px;
}

.text-wrapper {
    color: white;
    max-width: 900px;
    padding: 30px 10px !important;
}

.circle-img{
  display: none;
}

.content-box h3{
  font-size: 39px;
  padding: 0 10px;
}

.call-to-action h4, .call-to-action p {
    text-align: center;
    margin-top: 30px;
}

.call-to-action a{
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-us-header h1,
.services-header h1,
.jobseakers-header h1,
.contact-header h1{
  font-size: 45px;
  line-height: 2.5rem;
}

.history-section{
  padding: 30px 0;
}

.history-section span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.history-section h3,
.values-section h3,
.nosotros-esp h3,
.team-section h3,
.hw-section h3,
.benefits-section h3,
.employer-register h3,
.jobseekers-benefits h3{
  font-size: 30px;
  line-height: 2rem;
  text-align: center;
}

.values-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
    background-color: var(--color-white);
}

.mision-vision{
  padding-top: 30px;
}

.nosotros-esp {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
  background: url(../../../public/assets/img/gradient-bg.webp) no-repeat left center;
  background-size: cover;
}

.cv-form {
    border-radius: 15px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}


.hw-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    background: url(../../../public/assets/img/gradient-bg.webp) no-repeat left center;
    background-size: cover;
}

.services-cer{
  padding: 30px 0;
}

.services-cer h2,
.employers-section h2{
  font-size: 36px;
  line-height: 2.5rem;
}

.serv_btns{
  order: 1;
}

.services-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
    background: url(../../../public/assets/img/shapes.webp) no-repeat top center;
    background-size: cover;
}

.team-section {
  position: relative;
  background-color: var(--color-gray-light);
  height: 500px;
  overflow: hidden;
  background: url(../../../public/assets/img/bg-pattern.png) no-repeat center center;
  background-size: cover;
  padding: 30px 0;
}

.industries_section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
    background: url(../../../public/assets/img/gradient-bg.webp) no-repeat left center;
    background-size: cover;
}

.content_area{
  order: 2;
}

.cta-serv{
  display: none;
}

.contact-section{
  padding: 20px 0;
}

.image-col {
    background: url(../../../public/assets/img/tk_banner.jpg) no-repeat right center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 450px;
}
 .form-tittle {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-dark-blue);
    color: var(--color-white);
    padding: 20px 0;
    border-radius: 15px 15px 0 0;
    font-size: 18px;
    text-align: center;
}

}
