/*********** Header ***********/

.navbar-custom {
    min-height: 4.375rem;
    margin: 0 auto;
    border-bottom: 3px solid var(--primary-color);
    background: linear-gradient(90deg, var(--text), var(--black));
    border-radius: 51px;
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}
.nav-item{
    gap: 1.69em
}

.navbar-nav .nav-link span::after,
.navbar-nav .nav-link span.long-text::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--white);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link span.long-text::after {
    left: 85%;
}

.navbar-nav .nav-link:hover span::after,
.navbar-nav .nav-link:focus span::after {
    width: 100%;
}

.navbar-nav .nav-link:hover span.long-text::before,
.navbar-nav .nav-link:focus span.long-text::before {
    width: 75%;
}

.navbar-nav .nav-link:hover span.long-text::after,
.navbar-nav .nav-link:focus span.long-text::after {
    width: 15%;
}
/* Searchbar */
.search-container {
    min-width: 98%;
    transition: all 0.3sease;
}

.search-container.show {
    animation: slideIn 0.3s ease;
}

.search-container .form-control {
    border-color: var(--Gray-300);
}

.search-container .form-control:focus {
    border-color: var(--blueAccent);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.small-btn{
    width: 35px;
    height: 35px;
}

.sidebar-menu {
    position: fixed;
    top: 7.5rem;
    right: 15px;
    width: 23rem;
    max-width: calc(100% - 30px);
    border-radius: 40.935px;
    background: rgba(48, 100, 255, 0.80);
    backdrop-filter: blur(7.656827926635742px);
    padding: 2rem 1.5rem;
    box-shadow: -4px 0 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    color: white;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
}

.sidebar-menu.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.sidebar-nav { 
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    width: 100%;
}

#closeSidebarBtn {
    align-self: flex-end;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    margin-bottom: 1rem;
}

.sidebar-nav li {
    margin-bottom: 0.5rem;
    width: 100%;
    text-align: center;
}

.sidebar-nav a {
    /* font-family: Kanit; */
    font-size: 1.8rem;
    color: white;
    text-decoration: none;
    display: block;
}

.sidebar-separator {
    width: 80%;
    height: 2px;
    background-color: var(--dark-blue);
    border: none;
    margin: 1rem auto;
}

/*********** Footer ***********/
.custom-footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 30px 0 15px 0;
    position: relative;
}

.footer-section h6 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "kanit-semibold";
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 5px;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: block;
    padding: 1px 0;
}

.footer-section ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
    transform: translateX(5px);
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
    color: white;
    font-size: 20px;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
    padding-top: 15px;
    text-align: center;
}

.copyright p {
    margin: 0;
    color: var(--white);
    font-size: 15px;
}
.content-block1-intern,
.content-block-1 {
    position: relative;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    z-index: 1;
}

.border-section {
  border-top: 15px solid var(--light-blue-two);
  border-top-left-radius: 57px;  
  border-top-right-radius: 57px; 
  margin-top: -57px;
  padding-top: 57px;
  position: relative;
  z-index: 10;
  background: white;
}

.content-block-1 {
    padding-top: 140px;
}
.custom-background-block5::after,
.content-block1-intern::before,
.content-block-1::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url("/assets/images/background-home.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -2;
    filter: blur(2px);
}

.content-block-1-bg{
    position: relative;
    width: 100%;
}
.content-block-1-bg::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url("/assets/images/heuereux-jeunes.png");
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: -1;
    object-fit: cover;
}

.block1-title {
    font-size: 3rem;
    font-weight: 500;
    padding-top: 2rem;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    font-family: "kanit-semibold";
}

.block1-subtitle {
    font-size: 1.3rem;
    color: var(--dark-blue);
    margin-bottom: 2rem;
    font-family: "kanit-semibold";
}

.block1-description {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text);
    padding-bottom: 20px;
}

.block1-partnership {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 2.5rem;
}

.block1-partnership a {
    color: var(--primary-color);
    text-decoration: none;
    font-family: "kanit-semibold";
}

.block1-partnership a:hover {
    text-decoration: underline;
}

.brand-highlight {
    background: linear-gradient(
        135deg,
        var(--light-blue-two) 0%,
        var(--light-blue) 100%
    );
    color: var(--white);
    padding: 0.1rem 1.5rem;
    border-radius: 0 25px 25px 25px;
    font-size: 1em;
    display: inline-block;
    position: relative;
    overflow: hidden;
    border-right: 3px solid var(--text);
    border-bottom: 3px solid var(--text);
    vertical-align: middle;
}

.brand-highlight::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s;
}

.brand-highlight:hover::before {
    left: 100%;
}

.custom-separator3,
.custom-separator1,
.custom-separator {
    width: 100%;
    height: 58px;
    background-color: var(--white);
    border-top: 15px solid var(--dark-gray);
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    position: relative;
}
.custom-separator3{
  height: auto;
}
.custom-separator3,
.custom-separator1 {
   border-top: 15px solid var(--light-blue-two);
   position: relative;
   z-index: 1;
}
/* Tabs */
.search-tabs {
    background-color: var(--gray);
    width: 65%;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 20px 20px 0 0;
}
.search-tab1,
.search-tab2 {
    flex: 1;
    padding: 20px 30px;
    font-size:1.53369rem;
    border: none;
}

.search-tab1.active,
.search-tab2.active {
    background: var(--dark-blue);
    color: white;
    border-bottom: 4px solid var(--light-blue-two);
    border-radius: 20px 0 0 0;
}

.search-tab1.active {
    border-radius: 0 !important;
}

.search-tab1:not(.active),
.search-tab2:not(.active) {
    background: var(--gray);
    color: white;
}

/* Search content */
.search-content {
    background: var(--dark-blue);
    padding: 30px;
    border-radius: 0 20px 20px 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.search-content1 {
    background: var(--black);
    border-radius: 1.25rem;
    padding: 21px;
    width: 90%;
    position: relative;
    z-index: 2;
    margin-top: -8.5rem;
}
.search-title {
    color: white;
    font-size: 24px;
    margin: 0 0 40px 4rem;
}

/* ========== job section ========== */

.job-section{
  margin-left: 86px;
  margin-bottom: 58px;
}

.job-description {
  width: 100%;
  max-width: 760px; /* max limit on large screens */
  box-sizing: border-box; /* include padding/border in width */
}

.job-details {
  width: 343px;
  height: 306px;
  border-radius: 20px;
  border: 1px solid #2D2D2D;
  border-bottom: 11px solid #2D2D2D;
  background: #FFF;
  padding-top: 32px;
  padding-left: 46px;
  padding-right: 30px;
}

.job-desc-title1,
.job-desc-title{
  color: var(--Gray-900, #18191C);
  /* font-family: Montserrat; */
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}

.job-desc-title1{
  color: var(--light-blue);
}
.job-para{
  color: var(--Gray-600);
  /* font-family: Montserrat; */
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  width: 100%;
  max-width: 734px;
  box-sizing: border-box;
}

.job-icon {
  font-size: 1.5rem;
  color: var(--light-blue);
  margin-bottom: 12px;
}

.job-label {
    color: var(--Gray-500, #767F8C);
    /* font-family: Inter; */
    font-size: 12px;
    font-weight: 400;
    line-height: 18px; 
    text-transform: uppercase;

}

.job-value {
  font-size: 1.1rem;
  font-weight: 500;
}

.status-block {
  text-align: start;
  flex: 1;
}

.custom-row {
  display: flex;
  column-gap: 39px; 
  margin-bottom: 13px;
}

.search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  background: white;
  padding: 20px;
  border-radius: 1.3rem;
  width: 100%; 
}

.search-group {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.search-input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
}

.search-divider {
  width: 2px;
  height: 4rem;
  background: black;
}

.search-form .cta-button {
  flex: 0 0 auto; /
}
.quick-search-title {
    color: var(--light-blue-two);
    font-size: 16px;
    margin: 0 0 20px 4rem;
}

.quick-tag {
    background: #D9D9D9;
    color: black;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.quick-tag:hover {
    background: var(--light-blue-two);
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

.icon-search {
    color: black;
    font-size: 25px;
}

.height-58vh {
    height: 58vh;
}

/* Notre vision Section */
.vision-container {
    padding-top: 6rem;
}
.vision-description {
    color: #000;
    text-align: justify;
    font-size: 1.25rem;
}
.vision-title {
    font-size: 4rem;
    color: var(--dark-blue);
}
.vision-bold {
    font-weight: 700;
    font-family: "kanit-extrabold", "kanit-regular", sans-serif;
}   
.image-container {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 34.8125rem;
    aspect-ratio: 34.8125 / 18.125;
}

.background-element {
    width: 100%;
    height: 100%;
    transform: rotate(2.049deg);
    flex-shrink: 0;
    border-radius: 1.875rem;
    background: #002199;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.vision-image {
    border-radius: 1.875rem;
    width: 100%;
    height: 100%;
    transform: rotate(-0.701deg);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    display: block;
    object-fit: cover;
}

.s-summary{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
     gap: 0.8125rem;
}
.custom-block {
    width: 100%;
    height: 100%;
    background-color: var(--dark-blue);
    position: relative;
    flex-shrink: 0;
    border-bottom: 0.4rem solid var(--light-blue);
    border-right: 0.4rem solid var(--light-blue);
    border-radius: 25px 25px 25px 25px;
    align-self: stretch;
}

.bottom-icon {
    width: 20px;
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.custom-block:hover .bottom-icon{
  color: var(--light-blue) !important;
}


.top-icon {
    width: 75.177px;
    height: 75.154px;
    transition: transform 0.5s linear;
    transform-origin: center center;
}

.custom-block:hover .top-icon{
    transform: rotateY(360deg);
}
.block-description{
    font-size: 16px;
    font-family: "kanit-semibold";
}
.offre-images{
    width: 103px;
    height: 99px;
    border-radius: 6px;
}

.intern-photo{
    width: 11.5rem;
    height: 11rem;
}

.custom-para {
  font-family:"kanit-regular";
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.border-custom,
.border-custom1 {
    border-style: solid;
    border-color:var(--black);
    border-width: 1px 1px 6px 1px;
    border-radius: 20px !important;
}
.border-custom{
    border-width: 1px 6px 6px 1px;
}

/* ========== FAQ section ========== */
.faq-block1{
    margin-left: 78px;
    margin-top: 101px;
    display: flex;
    gap: 76px;
}

.faq-block1-title{
    width: 567px;
    color: #000B33;
    font-size: 41.761px;
    font-weight: 600;
    line-height: 50px;
}

.faq-block1-desc{
    width: 488.202px;
    color: rgba(0, 0, 0, 0.90);
    font-size: 14.822px;
    line-height: 24.086px;
}

.faq-question{
    display: flex;
    padding: 16.675px 18.528px 16.172px 29.644px;
    justify-content: space-between;
    align-items: center;
    gap: 294px;
    border-radius: 18.528px;
    background: rgba(8, 52, 78, 0.02);
    width: 1019px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question > div {
    flex: 1 1 auto; 
    word-wrap: break-word;
}

.faq-question svg {
    flex-shrink: 0;
}
.faq-question:hover {
    background: rgb(200, 205, 215);
}

.cnt-question {
    display: inline-flex;
    height: 37px;
    padding: 14px 24px;
    align-items: center;
    flex-shrink: 0;
    width: 934px;
    max-width: 934px;
    border-radius: 46px;
    background: #000B33;
    color: white;
    font-weight: 500;
    font-size: 16px;
}

.faq-answer {
    width: 100%;
    max-width: 1019px;
    flex-shrink: 0;
    border-radius: 1.16rem;
    background: rgba(8, 52, 78, 0.02);
    padding: 1.375rem 1rem 1.85rem;
    display: none !important;
}

.faq-answer.show {
    display: flex !important;
    flex-direction: column;
    align-items: center;
}

.answer {
    overflow: hidden;
    color: #000B33;
    text-align: justify;
    font-size: 0.925rem;
    line-height: 1.56rem;
    width: 100%;
    max-width: 872px;
    padding-bottom: 1.85rem;
}

.faq-item {
    margin-bottom: 1.25rem;
}

/* ========== Contact section ========== */
.form-contact {
    width: 90%;
    max-width: 56.25rem;
    margin: 0 auto;
    padding: 1.5rem 1.5rem 1.875rem 1.5rem;
    border-radius: var(--Border, 1rem);
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.10);
    /* margin-bottom: 10rem; */
    margin-top: 6.37rem;
}

.form-border{
    border-top: 2px solid var(--light-blue-two);
    width: 80%;
    display: block;
    height: 5px;
    margin-bottom: 6em;
    margin-top: 5em;
    max-width: 1126px;
    margin-inline: auto;
}


.conntact-desc{
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.phone-input {
    display: flex;
    align-items: center;
}
.phone-prefix {
    margin-right: 10px;
    font-weight: bold;
}
/* Banner Section */
.banner-section {
    background: linear-gradient(90deg , var(--light-blue), var(--dark-blue));
    padding: 10px 0;
    position: relative;
    overflow: hidden;
    height: 388px;
}

.banner-content {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    border-radius: 60px 60px 0 0;
    backdrop-filter: blur(10px);
    height: 370px;
}

.banner-content::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:  url("/assets/images/background-home.jpg");
    opacity: 0.1;
    z-index: -1;
}
.logo-custom{
    font-size: 53px;
    color: #6B6B6B;
}
.custom-separator2{
    width: 100%; 
    max-width: 70.375rem;
    height: 2rem;
    border-top: 0.2rem solid var(--light-blue-two);
}

.pagination {
    display: flex;
    gap: 0.625rem;
    align-items: center; 
}

.pagination-btn {
    width: 2.5rem;
    height: 2.186rem;
    border: none;
    border-radius: 0.5rem;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-btn svg {
    height: 1.5rem; 
}


.pagination-btn.active { 
    background: #3b82f6; 
    color: white; 
}

.modal-content {
    border-left: 1.301px solid black;
    border-top: 1.301px solid black;
    border-bottom: 7px solid black;
    border-right: 7px solid black;
    border-radius: 1.62581rem; 
    width: 32rem;
    height: 20rem;
}
.modal-intern-desc{
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    margin-top: 3rem;
}

.modal-content .read-more-btn{
    background-color: var(--light-blue);
    border-color: var(--light-blue);
    border-radius: 1.24788rem;
    padding: 6px 42px;
}

.btn-switch-default,
.btn-switch-hover {
  display: block;
  width: 100%;
  padding: 0.5rem 0.5rem;
  text-align: center;
  font-size: 1.25rem;
  position: absolute;
  left: 0;
  top: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.btn-switch-default {
  opacity: 1;
  transform: translateY(0);
  z-index: 1;
}

.btn-switch-hover {
  opacity: 0;
  transform: translateY(-100%);
  z-index: 2;
  pointer-events: none;
}

.read-more-btn:hover .btn-switch-default {
  transform: translateY(100%);
  opacity: 0;
}

.read-more-btn:hover .btn-switch-hover {
  transform: translateY(0);
  opacity: 1;
}

/* details stagiaire */
.intern-name {
    color: var(--Gray-900);
    font-size: 1.61894rem;
    font-style: normal;
    font-weight: 500;
    line-height: 2.15863rem;
}

.logo-scroll-track {
    animation: scroll-left 5s linear infinite;
    white-space: nowrap; 
}

/* ========== Profile Card ========== */
.profile-card {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    gap: 1rem;
    padding-left: 53px;
    padding-right: 70px;
    padding-top: 25px;
}

.profile-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pr-img-container {
    display: flex;
    align-items: center;
}

.pr-img-container {
    position: relative;
    display: inline-block;
    width: 195.043px;
}
.profile-image {
    width: 100%;
    border-radius: 0 17.991px 17.991px 17.991px;
}


.profile-image-bg{
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    border-radius: 0 17.991px 17.991px 17.991px;
    background: var(--black);
    position: absolute;
    top: 6.79px;
    left: 1.96px;
    z-index: -1;
}

.profile-info {
    flex: 1;
    margin-left: 3rem ;
}

.profile-title {
    color: var(--Gray-900);
    font-size: 25px;
    font-weight: 600;
    line-height: 34.538px;
}

.pr-experience-item {
    font-family: 'Inter', sans-serif;
    margin-bottom: 8px;
    line-height: 30.22px;
}

.pr-experience-label {
    color: var(--Gray-700);
    font-size: 19.427px;
    font-weight: 600;
}

.pr-experience-value {
    color: var(--Gray-700);
    font-size: 19.427px;
    font-weight: 400;
}

.profile-tags {
    display: flex;
    gap: 12px;
    align-items: center;
}

.tag {
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
}

.tag-fulltime {
    color: var(--Gray-00);
    font-size: 16.11px;
    font-weight: 500;
    line-height: 21.586px; 
    border-radius: 3.238px;
    background: var(--Success-500);
    padding: 4.317px 12.952px;
}

.tag-featured {
    color: var(--Danger-500);
    font-size: 15.11px;
    font-weight: 400;
    line-height: 21.586px;
    border-radius: 56.124px;
    background: var(--Danger-50, #FFEDED);
    padding: 4.317px 12.952px;
}

.profile-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.bookmark-btn {
    display: flex;
    padding: 12.203px;
    border-radius: 3.051px;
    background: var(--Primary-50);
    border: none !important;
}

.contact-btn {
    border-radius: 3.051px;
    background: var(--Primary-500);
    display: flex;
    width: 189.139px;
    padding: 12.203px 24.405px;
    justify-content: center;
    align-items: center;
    gap: 9.152px;
    color: var(--Gray-00, #FFF);
    font-size: 12.203px;
    border: none !important;
}
/* ========== Carousel Controls ========== */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.custom-control {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.custom-control:hover {
    background: rgba(0, 0, 0, 0.7);
}

#internCarousel .carousel-control-prev,
#internCarousel .carousel-control-next {
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

#internCarousel .carousel-control-prev { left: .5rem; }
#internCarousel .carousel-control-next { right: .5rem; }

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    border: none;
}
.carousel-indicators .active { background: var(--light-blue); }

.carousel-inner { touch-action: pan-y pinch-zoom; }
.border-custom .cta-button { padding: 5px 0px; }


/* ========== Intern Photo ========== */
.mobile-intern-photo,
.intern-photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
}

.logo-pro-section{
    background: linear-gradient(95deg, var(--light-blue) -13.84%, var(--dark-blue) 100%);
    padding-block: 13px 8px;
    overflow: hidden;
}
.logo-pro-section .wrapper{
    background-image: url(/assets/images/bg-parcour.png);
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 51px 51px 0 0;
    padding-block: 36px 74px;
    
}
.logo-pro-section .section-title{
    
    line-height: 50px;
}
/* ========== Contact section ========== */
.contact-input {
    display: flex;
    height: 3.612rem;
    padding: 0;
    align-items: center;
    gap: 0;
    align-self: stretch;
    border-radius: var(--Border, 1rem);
    border: 1.011px solid #B7B7B7;
    background: #FFF;
}

.name-input {
    display: flex;
    height: 3.612rem;
    padding: 0 1.59863rem;
    align-items: center;
    flex: 1 0 0;
    border-radius: var(--Border, 1rem);
    border: 1.011px solid #B7B7B7;
    background: #FFF;
}

.email-input {
    display: flex;
    height: 3.612rem;
    padding: 0 1.59863rem;
    align-items: center;
    border-radius: var(--Border, 1rem);
    border: 1.011px solid #B7B7B7;
    background: #FFF;
}

.phone-prefix {
    padding: 15px 20px;
    background-color: transparent;
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #666;
    font-weight: 500;
}

.flag-img {
    width: 1.5505rem;
    height: 0.9375rem;
    flex-shrink: 0;
    margin-right: 0.5rem;
}

.contact-input .form-control {
    flex: 1;
    border: none;
    outline: none;
    padding: 15px 20px;
    font-size: 16px;
    background: transparent;
    /* color: #999; */
    border-radius: 0;
}

.form-control {
    border-radius: var(--Border, 1rem);
    border: 1.011px solid #B7B7B7;
    background: #FFF;
    padding: 15px 20px;
    font-size: 16px;
    /* color: #999; */
}

.form-control::placeholder {
    color: #999;
}

.submit-btn {
  width: 100%;
  max-width: 606px;
  padding: 15px 24px;
  border-radius: 1000px;
  background: var(--dark-blue);
  color: var(--white);
  border: none;
  font-family: "kanit-medium";
}

.submit-btn:hover {
    background: #001a4d;
}

.submit-btn:focus {
    outline: 2px solid #0066cc;
    outline-offset: 2px;
}
/* Animation d'entrée */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.fade-in-up.delay-1 {
    animation-delay: 0.2s;
}
.fade-in-up.delay-2 {
    animation-delay: 0.4s;
}
.fade-in-up.delay-3 {
    animation-delay: 0.6s;
}
.fade-in-up.delay-4 {
    animation-delay: 0.8s;
}

.image-wrapper{
  position: relative;
  text-align: right;
}

.image-wrapper img{
  border-radius: 40px 40px 0 0;
  height: 100%;
  object-fit: cover;
}

.image-wrapper .content{
  position: absolute;
  bottom: 0;
  background: white;
  right: 0%;
  border-radius: 35px 0 0 35px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  min-width: 161px;
}

.image-wrapper .content p{
    font-size: 20px;
    font-family: "kanit-medium";
}

.text-wrapper{
      border-radius: 40px 40px 0 0;
    background: linear-gradient(146deg, #3064FF -17.84%, #000B33 101.17%);
    height: 100%;
    color: var(--white);
    font-family: "kanit-medium";
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.text-wrapper p{
  font-size: 30px;
}

.text-wrapper p:not(:last-child):after {
    content: "";
    border-bottom: 1px solid white;
    width: 100%;
    display: block;
    margin-top: 10px;
}

.about-us .search-offer-section{
  padding-top: 15px;
}

.about-us .search-offer-section .container-fluid{
      max-width: 1240px;
    margin: 0 auto;
    width: 95%;
}

.about-us .search-offer-section h2{
  font-size: 3rem;
    font-weight: 500;
    padding-top: 2rem;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    font-family: "kanit-semibold";
    line-height: 1.1;
}

.about-us .search-offer-section p{
      color: #000B33;
    font-size: 20px;
}

.about-us .search-offer-section a{
  background: #000B33;
    border-radius: 62px;
    color: #fff;
    font-family: "kanit-medium";
    font-size: 1.1rem;
}

.about-us .block-description{
  font-size: 22px;
}

.about-us .s-summary{
  gap: 22px;
}

.about-us .splide__pagination{
      bottom: -25px;
}

.objectives-bloc .first-wrapper{
    border-radius: 57px;
    background: linear-gradient(95deg, #2DA1FF -5.32%, #3064FF 104.02%);
}

.objectives-bloc .second-wrapper{
  border-radius: 57px;
    background: #000B33;
}

.objectives-bloc .title span{
  color: #2DA1FF;
}

.objectives-bloc .title p{
  max-width: 514px;
}

.objectives-bloc hr{
      border-width: 2px;
    color: #fff;
    opacity: 1;
}

.objectives-bloc .wrapper{
  border-radius: 20px;
  border-top: 2px solid #2DA1FF;
  background: rgba(255, 255, 255, 0.20);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url(/assets/images/Ellipse23.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.objectives-bloc .wrapper:hover{
      background: var(--light-blue);
      border-color: var(--white);
}

/* -------------------- Extra Large Screens -------------------- */
@media (min-width: 1771px) {
  .content-block-1-bg::after {
    background-size: 50%;
    background-position: right 138px top -21px;
  }
  .block1-title {
    font-size: 4.5rem !important;
  }
  .block1-subtitle {
    font-size: 2rem;
  }
  .block1-description {
    font-size: 1.5rem;
  }
  .block1-partnership {
    font-size: 1.3rem;
  }
}

/* -------------------- Desktop (≥992px) -------------------- */
@media (min-width: 992px) {
  .sidebar-menu {
    display: none !important;
    width: 90vw;
    right: 5vw;
  }
  .navbar-custom {
    border-radius: 51px !important;
    width: 69.1875rem;   
    height: 5.1875rem;
    margin-top: 0.5rem;
  }
  .border-custom {
    max-width: 80vw;
  }
}

/* @media (min-width:992px) and (max-width:1199.98px) {
    .content-block-1.about-us .container {
      max-width: 1250px;
    }
}​ */

/* -------------------- Tablet Landscape (768px–991px) -------------------- */
@media (min-width: 768px) {
  .intern-photo {
    border-radius: 0;
  }
}

/* -------------------- Mobile Landscape (576px–767px) -------------------- */
@media (min-width: 576px) and (max-width: 767px) {
  .mobile-card { max-width: 400px; margin: 0 auto; }
}

/* -------------------- Max-width 1190px-------------------- */
@media (max-width: 1190px) {
  .custom-block {
    width: 100%;
  }
  .text-center-mobile {
    text-align: center;
  }
  .custom-footer {
    padding: 25px 0 15px 0;
  }
  .footer-section {
    margin-bottom: 20px;
  }
  .whatsapp-btn {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }
  .whatsapp-btn i {
    font-size: 20px;
  }
  .content-block-1-bg::after {
    background-size: 50%;
    background-position: right 0px top 2px;
  }
  .block1-subtitle {
    font-size: 1.2rem;
  }
  .block1-partnership {
    font-size: 0.7rem;
  }
}

@media (max-width:1199.98px) {
    .content-block-1.about-us .container {
      max-width: 1250px;
    }
}

/* -------------------- Max-width 992px -------------------- */
@media (max-width: 992px) {
  .navbar-custom {
    width: 95%;
    top: 1rem;
    border-radius: 51px !important;
    position: absolute;
  }
  .navbar-brand {
    font-size: 1rem !important;
  }
  .navbar-toggler {
    padding: 0.25rem 0.5rem;
  }
  .search-container {
    width: 100%;
  }
  .navbar-nav .nav-link {
    font-size: 0.9rem;
    padding: 0.4rem 0.5rem;
  }
  .nav-item {
    margin: 0.25rem 0;
  }
  .collapse.navbar-collapse {
    background-color: var(--black);
    padding: 1rem 0.5rem;
  }
  .navbar-nav {
    flex-direction: column;
  }
  .navbar .cta-button {
    font-size: 0.6rem !important;
  }
  .content-block-1 {
    padding-top: 114px  !important;
  }
  .vision-description {
    font-size: 0.9rem !important;
  }
  .vision-title {
    font-size: 3rem !important;
  }
  .search-tab1,
  .search-tab2 {
    font-size: 0.8rem !important;
    padding: 8px 20px !important;
  }
  .search-tabs {
    width: 85% !important;
  }
  
  .block1-title {
    /* font-size: 1.25rem;
    font-size: 1.25rem; */
    font-size: 2.2rem;
    text-align: center;
    padding-top: 0;
    margin-bottom: 16px;
  }

  .about-us .block1-title{
    font-size: 2.5rem;
  }
  .block1-subtitle {
    font-size: 12px;
    margin-bottom: 16px;
  }
  .content-block-1-bg::after {
    background-size: 80%;
    background-position: right -10px top 190px;
  }
  .content-block-1 .pb-5 {
    padding-bottom: 11rem !important;
  }
  .read-more-btn2 {
    padding: 12px 21px !important;
    font-size: 12px !important;
  }
  .search-title {
    font-size: 14px;
    margin: 0 0 1rem;
  }
  .search-form {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      align-items: center;
      background: transparent;
  }
  .search-group {
      flex: 1;
      display: flex;
      align-items: center;
      background: #fff;
      border: 1px solid #ccc;
      border-radius: 6px;
      padding: 0.25rem 0.5rem;
      min-width: 140px;
  }

  .search-group .icon-search {
      margin-right: 0.4rem;
      font-size: 0.9rem;
      color: #666;
  }

  .search-group .search-input {
      flex: 1;
      border: none;
      font-size: 0.55rem;
      padding: 0;
  }
  .search-group .search-input:focus {
      outline: none;
  }

  .search-form .search-divider {
      display: none;
  }

  .search-form .cta-button {
      font-size: 0.5rem;
      padding-top: 0.5rem;
      padding-bottom: 0.5rem;
  }

  .quick-search > div {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 0.5rem;
    justify-content: flex-start !important;
  }

  .search-content1{
    padding: 0;
  }

  .quick-tag {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 10px;
  }
  
  .s-summary {
      flex-direction: row;            
      flex-wrap: nowrap;             
      justify-content: flex-start;    
      overflow-x: auto;             
      -webkit-overflow-scrolling: touch; 
      scrollbar-width: none;        
      padding: 0 1rem;              
  }
  
  .s-summary::-webkit-scrollbar {
      display: none; 
  }
  
  .custom-block {
      /* min-width: 230px;
      width: 230px; */

      /* min-width: 285px;
        width: 285px;
        margin-inline: auto; */
  }

  .offres-row {
      flex-wrap: nowrap;
      justify-content: flex-start !important;
      overflow-x: auto;  
      -webkit-overflow-scrolling: touch; 
      scrollbar-width: none;       
      padding: 0 1rem;    
  }
  
  .offres-row::-webkit-scrollbar {
      display: none;
  }
  
  .offres-row .col-12.col-md-6 {
      flex: 0 0 280px;            
      width: 280px;
      max-width: 280px;
      margin-bottom: 0 !important;   
  }
  .offres-row .col-md-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  .offres-row .col-12 {
      flex: 0 0 320px;            
      width: 353px;
      max-width: 354px;
      margin-bottom: 33px !important;
  }

  .profile-card {
    flex-direction: column;
    align-items: flex-start !important;
    row-gap: 40px;
  }

  .faq-block1 { margin-left: 0.625rem; margin-top: 3.4375rem; gap: 1.5625rem; }
  .faq-block1-title { font-size: 1.3125rem; line-height: 2rem;}
  .faq-question {gap: 0.5rem;}
  .cnt-question {
      font-size: 13px;
      padding: 13px 30px;
      width: 85%;
      height: auto;
  }
  
  .faq-answer { width: 95%; }
  .answer {
      font-size: 0.8rem;
      line-height: 1.3rem;
      padding-bottom: 1rem;
  }
  body.sidebar-open {
      position: fixed;
      width: 100%;
      overflow: hidden;
  }
}

@media(max-width: 991.98px){
  .text-wrapper p{
    font-size: 20px;
  }

  .about-us .search-offer-section h2{
    font-size: 2.5rem;
  }

  .about-us .search-offer-section p{
    font-size: 17px;
  }

}

/* -------------------- Max-width 767px -------------------- */
@media (max-width: 767.98px){
  .text-wrapper{
        max-width: 350px;
    margin: 0 auto;
  }

  .title{
    gap: 30px;
  }

  /* .form-contact{
    margin-top: 0px;
  } */
}
@media (max-width: 767px) {
  .mobile-img-size {
    max-width: 150px;
    width: 100%;
    /* height: auto; */
    max-height: 150px;
    object-fit: cover;
  }
  .job-section {
    margin-left: 0;
    padding-left: 15px;
    padding-right: 15px;
  }

  .job-description,
  .job-details {
    flex: 1 1 100%;
  }

  .job-details {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
  }


  .profile-card {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;
    padding-right: 20px;
    gap: 20px; 
  }

  .profile-actions {
    flex-direction: row !important;
  }

  .contact-btn {
    width: auto;
  }

  .profile-info {
    margin-top: 20px;
    margin-left: 0;
  }

  .profile-card .d-flex.align-items-center {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .profile-tags {
    flex-wrap: wrap;
    gap: 8px;
  }

  .profile-title {
    font-size: 22px;
  }
}

/* -------------------- Max-width 575px -------------------- */
@media (max-width: 575.98px){
  .about-us .block1-title{
    font-size: 2rem;
  }

  .title{
    flex-wrap: wrap;
    gap: 15px;
  }

  .content-block-1{
    padding-top: 90px !important;
  }

  .block1-title{
    white-space: wrap !important;
    line-height: 1.5;
    margin-bottom: 1.6rem;
  }
}

@media (max-width: 575px) {
  .border-custom { padding: 1rem !important; }
  .mobile-img-size { max-width: 120px; max-height: 120px; }
  h5 { font-size: 1.1rem; }
  .custom-para { font-size: .7rem; }
}


/* -------------------- Max-width 375px -------------------- */
@media (max-width: 375px) {
  .mobile-card { min-height: 380px; }
  .mobile-intern-photo { width: 100px; height: 100px; }
  .content-block-1-bg::after {
    background-size: 80%;
    background-position: right 0 top 17.1875rem;
  }
  .navbar .cta-button {font-size: 0.5rem !important;}
  .sidebar-menu { width: 17rem;}
}


@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}


@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
