@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kanit:wght@400;500;600;700&display=swap");
/* global */
.main-btn {
    border: 1px solid;
    border-radius: 51px;
    border-color: transparent;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
    width: fit-content;
}

.main-btn:hover {
    border-color: white;
    box-shadow: 0 0 8px 0 #3064ff;
}
/* header */
.main-header {
    position: absolute;
    top: 45px;
    width: 100%;
    z-index: 1000;
    padding-inline: 86px;
}
.main-header__content {
    background-color: #2d2d2d;
    border-radius: 50px;
    padding-inline: 40px 30px;
    position: relative;
}

.main-header__content::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #3064ff;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 50px;
}

.main-header__nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 82px;
    margin: 0 auto;
}

.main-header__logo {
    width: 180px;
}

.main-header__nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    margin-bottom: 0;
    padding-left: 0;
    gap: 40px;
}

.main-header__nav-item a {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}
.main-header__nav-item a::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--white);
    transition: width 0.3s ease;
}
.main-header__nav-item a:hover::after {
    width: 95%;
}

/* .main-header__nav-item a:hover {
    color: #4f7cff;
    background: rgba(79, 124, 255, 0.1);
    transform: translateY(-2px);
} */

.main-header__actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.main-header .main-btn {
    background-color: #3064ff;
    padding: 12px 15px;
}
.main-header .main-btn:hover {
    border-color: #fffbfb;
    box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.8);
}

@keyframes slideUpFade {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    30% {
        transform: translateY(-100%);
        opacity: 0;
    }

    70% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.main-header__search-btn {
    background: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-header__mobile-menu-btn {
    display: none;

    border: none;
    width: 35px;
    height: 35px;
    background-color: #3064ff;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.main-header__mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #2d2d2d;
    z-index: 1000;
    width: 100%;
}

.main-header__mobile-menu.active {
    display: block;
    animation: slideDown 0.3s ease;
}

.main-header__mobile-nav {
    list-style: none;
    padding: 20px;
    margin-bottom: 0;
}

.main-header__mobile-nav li {
    margin-bottom: 15px;
}

.main-header__mobile-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    display: block;
    padding: 10px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.main-header__mobile-nav a:hover {
    background: rgba(79, 124, 255, 0.2);
    color: #4f7cff;
}

.main-header__mobile-actions {
    padding: 0 20px 20px;
    display: flex;
    gap: 15px;
    flex-direction: column;
}
.main-header__mobile-actions .main-btn {
    width: fit-content;
}
.main-header__search-form {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    padding: 20px;
    justify-content: end;
    align-items: flex-start;
    padding-top: 140px;
    padding-right: 105px;
}

.main-header__search-form.active {
    display: flex;
}

.main-header__search-input {
    width: 100%;
    padding: 15px 64px;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    background: white;
    color: #282828;
}
.main-header__search-input::placeholder {
    color: #282828;
    font-weight: 400;
}

.main-header__search-form-icon {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.search-form-container {
    position: relative;
    width: 100%;
    max-width: 630px;
}
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1124px) {
    .main-header {
        padding: 0 20px;
        position: fixed;
        top: 0;
        padding-inline: 0;
    }
    .main-header__content {
        padding-inline: 15px;
        border-radius: 0;
    }
    .main-header__content::before {
        border-radius: 0;
    }

    .main-header__nav-container {
        height: 70px;
    }

    .main-header__logo {
        width: 124px;
    }

    .main-header__nav-menu {
        display: none;
    }

    .main-header__actions {
        gap: 10px;
    }
    .main-header .main-btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .main-header__btn-connect {
        display: none;
    }

    .main-header__mobile-menu-btn {
        display: flex;
    }

    .main-header__search-btn {
        width: 40px;
        height: 40px;
    }
    .main-header__search-form {
        padding-right: 20px;
        padding-top: 100px;
        justify-content: center;
    }
    .main-header__search-input {
        padding: 10px 50px;
    }
    .main-header__search-form-icon {
        left: 15px;
    }
    .main-header__mobile-actions .main-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .main-header__nav-container {
        height: 60px;
    }

    .main-header__logo {
        font-size: 20px;
    }
    .main-header__actions .main-btn {
        display: none;
    }
    .main-header__mobile-actions .main-btn {
        display: block;
    }
    .main-header__search-btn {
        width: 35px;
        height: 35px;
    }

    .main-header__search-icon {
        width: 16px;
        height: 16px;
    }
}
/* paltforme section */
.platform-section {
    position: relative;
    padding-top: 180px;
}
.platform-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://innov-stage.majjane.agency/assets/images/background-home.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -2;
    filter: blur(2px);
}
.platform-content {
    position: relative;
    padding-top: 80px;
    padding-bottom: 115px;
}
.platform-content::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://innov-stage.majjane.agency/assets/images/heuereux-jeunes.png");
    background-size: contain;
    background-position-x: right;
    background-position-y: bottom;
    background-repeat: no-repeat;
    z-index: -1;
}
.platform-text {
    max-width: 622px;
    margin-left: 12vw;
}

.platform-title {
    color: #000b33;
    font-size: 50px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 30px;
}

.platform-brand-name {
    color: white;
    border-radius: 0 20px 20px 20px;
    background: linear-gradient(90deg, #2da1ff 0%, #3064ff 100%);
    position: relative;
    display: inline-block;
    font-size: 42px;
    padding: 6px 11px;
    margin-left: 10px;
}
.platform-brand-name::after {
    content: "";
    position: absolute;
    bottom: -4px;
    right: -4px;

    width: 100%;
    height: 100%;
    border-radius: 0 20px 20px 20px;
    background: #2d2d2d;
    z-index: -1;
}

.platform-tagline {
    color: #000b33;
    font-size: 24px;
    font-weight: 600;
    line-height: 35px;
    max-width: 565px;
    margin-bottom: 26px;
}

.platform-description {
    color: #000;
    text-align: justify;
    font-size: 16px;
    font-weight: 400;
    max-width: 448px;
    margin-bottom: 28px;
}

.platform-partnership {
    color: #000;
    font-size: 16px;
    margin-bottom: 45px;
}

.platform-partner-link {
    color: #3064ff;
    font-weight: 700;
}

.platform-section .main-btn {
    background-color: #000b33;
    padding: 15px 39px;
    font-size: 16px;
    font-weight: 500;
}

@media (max-width: 1300px) {
    .platform-content::after {
        background-size: 63%;
    }
    .platform-text {
        margin-left: 6.6vw;
    }
}
@media (max-width: 1180px) {
    .platform-content::after {
        background-size: 60%;
    }
}
@media (max-width: 992px) {
    .platform-section {
        padding-top: 140px;
    }
    .platform-content {
        padding-top: 0px;
    }
    .platform-content::after {
        background-size: 54%;
    }
}
@media (max-width: 768px) {
    .platform-content {
        padding-bottom: 260px;
    }

    .platform-content::after {
        background-size: 445px;
    }
    .platform-text {
        margin-left: 3vw;
        margin-right: 3vw;
    }
    .platform-title {
        font-size: 28px;
    }
    .platform-brand-name {
        font-size: 22px;
        border-radius: 0 11.224px 11.224px 11.224px;
    }
    .platform-brand-name::after {
        border-radius: 0 11.224px 11.224px 11.224px;
    }
    .platform-tagline {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 15px;
    }
    .platform-description {
        font-size: 12px;
        line-height: 16px;
        margin-bottom: 15px;
    }
    .platform-description {
        font-size: 12px;
        line-height: 16px;
        margin-bottom: 15px;
    }
    .platform-partnership {
        font-size: 12px;
        margin-bottom: 40px;
    }

    .platform-section .main-btn {
        padding: 10px 15px;
        font-size: 12px;
    }
}
@media (max-width: 500px) {
    .platform-content {
        padding-bottom: 230px;
    }
    .platform-content::after {
        background-size: 345px;
    }
    .platform-partnership {
        display: flex;
        flex-wrap: wrap;
        column-gap: 20px;
    }
}
@media (max-width: 375px) {
    .platform-content {
        padding-bottom: 280px;
    }
}
/* section search-offer */
.search-offer-section {
    position: relative;
    background-color: white;
    border-radius: 57px 57px 0 0;
    padding-top: 70px;
    margin-top: -18px;

    margin-bottom: 113px;
}
.search-offer-section::before {
    content: "";
    position: absolute;
    top: -16px;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 57px 57px 0 0;
    background-color: #464646;
    z-index: -1;
}
.search-offer__container {
    max-width: 1132px;
    width: 100%;
    margin-inline: auto;
}

.search-offer__interface-card {
    animation: fadeInUp 0.8s ease forwards;
}

.search-offer__tab-header {
    display: flex;
    border-radius: 0px 20px 0 0;
    overflow: hidden;
    max-width: 684px;
    background-color: #a4a4a4;
}

.search-offer__tab {
    flex: 1;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    color: #fff;
    font-size: 24.539px;
    font-weight: 400;
}

.search-offer__tab.active {
    background-color: #000b33;
}

.candidates.active {
    border-top-left-radius: 20px;
}

.search-offer__tab.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #2da1ff;
}

.search-offer__content {
    background: #000b33;
    padding: 51px 78px 45px 78px;
    border-radius: 0 22px 22px 22px;
    color: white;
}

.search-offer__tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.search-offer__tab-content.active {
    display: block;
}

.search-offer__main-text {
    opacity: 0;
    animation: slideInText 0.6s ease 0.3s forwards;
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    margin-left: 16px;
    margin-bottom: 30px;
}

.search-offer__search-container {
    background: white;
    border-radius: 20px;
    padding: 10px 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    margin-bottom: 40px;
    opacity: 0;
    animation: slideInSearch 0.6s ease 0.5s forwards;
    column-gap: 8px;
}

.search-offer__field-container {
    display: flex;
    align-items: center;
    min-width: 80px;
}
.search-offer__field-container:nth-of-type(1) {
    flex: 0 0 30%;
}
.search-offer__field-container:nth-of-type(3) {
    flex: 0 0 20%;
}
.search-offer__field-container:nth-of-type(5) {
    flex: 0 0 32%;
}

.search-offer__search-field {
    flex: 1;
    padding: 18px 25px;
    border: none;
    outline: none;
    font-size: 16px;
    color: #333;
    background: transparent;
    min-width: 80px;
}

.search-offer__search-field::placeholder {
    color: #aaa;
    transition: color 0.3s ease;
}

.search-offer__search-field:focus::placeholder {
    color: #ccc;
}

.search-offer__field-separator {
    background: #000000;
    min-width: 2px;
    height: 55px;
}

.search-offer__search-container .main-btn {
    font-size: 12px;
    padding: 12px 26px;
    background-color: #000b33;
    
}

.search-offer__search-btn:hover {
    background: linear-gradient(135deg, #303f9f, #3f51b5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 35, 126, 0.4);
}

.search-offer__search-btn:active {
    transform: translateY(-1px);
}

.search-offer__quick-search {
    opacity: 0;
    animation: slideInTags 0.6s ease 0.7s forwards;
}

.search-offer__quick-search h3 {
    color: #2da1ff;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 32px;
    margin-left: 16px;
}

.search-offer__tags-container {
    display: flex;
    flex-wrap: wrap;
    column-gap: 16px;
    row-gap: 20px;
}

.search-offer__tag {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 5px 20px;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-offer__tag:hover {
    transform: translateY(-3px);
    background-color: #3064ff;
    color: white;
}

.search-offer__search-icon,
.search-offer__location-icon,
.search-offer__domain-icon {
    transition: opacity 0.3s ease;
}

.search-offer__field-container:hover .search-offer__search-icon,
.search-offer__field-container:hover .search-offer__location-icon,
.search-offer__field-container:hover .search-offer__domain-icon {
    opacity: 0.8;
}
.notre-vision-section {
    max-width: 1172px;
    width: 100%;
    margin-inline: auto;
    padding: 0 20px;
    margin-bottom: 74px;
}
.notre-vision__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.notre-vision__text {
    padding-right: 50px;
}
.notre-vision__title {
    color: #000b33;
    font-size: 64px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 37px;
}
p.notre-vision__description {
    color: #000;
    text-align: justify;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
}
.notre-vision__title span {
    font-weight: 700;
}
.notre-vision__image {
    border-radius: 30px;
    position: relative;
}
.notre-vision__image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: right;
}
.notre-vision__image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background-color: #002199;
    z-index: 0;
    transform: rotate(2.049deg);
}
/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes slideInSearch {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .search-offer-section {
        margin-bottom: 50px;
        border-radius: 35px 35px 0 0;
    }
    .search-offer-section::before {
        border-radius: 35px 35px 0 0;
    }
    .search-offer__search-container {
        flex-direction: column;
        border-radius: 20px;
        padding: 25px;
        gap: 15px;
    }

    .search-offer__field-separator {
        display: none;
    }

    .search-offer__search-field {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
        margin-bottom: 5px;
    }

    .search-offer__field-container {
        width: 100%;
        justify-content: center;
    }

    .search-offer__search-btn {
        width: 100%;
        margin: 0;
        padding: 20px;
    }
    .notre-vision__content {
        grid-template-columns: 1fr;
    }
    .notre-vision__text {
        padding-right: 0px;
    }
    .notre-vision__title {
        font-size: 56px;
    }
    .notre-vision__image {
        min-height: 280px;
    }
}
@media (max-width: 768px) {
    .notre-vision__title {
        font-size: 44px;
    }
    .search-offer__content {
        padding: 30px 20px;
        border-radius: 0;
    }

    .search-offer__main-text {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .search-offer__tab {
        font-size: 16px;
        padding: 15px 10px;
    }

    .search-offer__tags-container {
        justify-content: center;
    }
    p.notre-vision__description {
        text-align: start;
    }
}

@media (max-width: 480px) {
    .search-offer__main-text {
        font-size: 20px;
    }

    .search-offer__tab {
        font-size: 14px;
    }
}

.features-splide-section {
    margin-bottom: 70px;
}
.features-splide-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding-inline: 0px;
}

.section-title {
    color: #000;
    font-size: 40px;
    font-weight: 600;
    line-height: normal;
    text-align: center;
    margin-bottom: 55px;
    padding-inline: 20px;
    max-width: 800px;
    margin-inline: auto;
}

.section-title span {
    font-weight: 700;
}
.features-splide-section .splide__track {
    padding-bottom: 40px;
}
.features-splide__feature-card {
    background: #000b33;
    border-radius: 20px;
    padding: 30px 20px 12px;
    text-align: center;
    color: white;
    position: relative;
    transition: all 0.4s ease;
    min-height: 320px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}
.features-splide__feature-card::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    width: 100%;
    height: 100%;
    background: #3064ff;
    border-radius: 20px;
    z-index: -1;
}

.features-splide__feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    fill: white;
    transition: all 0.3s ease;
}

.features-splide__feature-title {
    color: #fff;
    text-align: center;
    font-size: 23px;
    font-style: normal;
    font-weight: 600;
    line-height: 33px;
}

.features-splide__check-icon {
    text-align: right;
}
.offer-stages-section {
    margin-bottom: 100px;
}

/* offers-satges-section */

.offers-satges-section {
    margin-bottom: 72px;
}
.offers-satges-section .container {
    max-width: 1175px;
    margin: 0 auto;
}

.offers-satges__header {
    text-align: center;
    margin-bottom: 46px;
}

.offers-satges__header h2 {
    margin-bottom: 8px;
}

.offers-satges__header p {
    margin-bottom: 0;
    color: #000;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.offers-satges__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 44px;
    margin-bottom: 52px;
}

.offers-satges__card {
    padding: 20px 13px 16px 26px;
    border-radius: 20px;
    border: 1px solid #2d2d2d;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.offers-satges__card::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 100%;
    height: 100%;
    background: #2d2d2d;
    border-radius: 20px;
    z-index: -1;
}

.offers-satges__card-header {
    display: flex;
    align-items: flex-start;
    gap: 35px;
}

.offers-satges__logo {
    width: 103px;
    height: 99px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.25);
}

.offers-satges__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offers-satges__company-info h3 {
    margin-bottom: 3px;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
}

.offers-satges__company-description {
    font-weight: 500;
}

.offers-satges__card-footer {
    display: flex;
    justify-content: space-between;
    align-items: end;
    column-gap: 5px;
}
.offers-satges__missions {
    color: #000;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-top: 10px;
}

.offers-satges__card-footer .main-btn {
    font-size: 16px;
    background-color: #2d2d2d;
    padding: 4px 22px;
    border-radius: 13px;
    min-width: fit-content;
}
.page-interns .offers-satges__card-footer .main-btn {
    margin-right: 28px;
}
.offers-satges__footer {
    text-decoration: none;
    display: flex;
    justify-content: center;
    width: fit-content;
    margin-inline: auto;
}
.offers-satges__footer .main-btn {
    font-size: 16px;
    padding: 15px 33px;
    border-radius: 61.066px;
    background-color: #000b33;
}
.main-btn.main-btn__flech {
    background-color: #000b33;
    padding: 0;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.offers-satges__footer:hover .main-btn {
    border-color: white;
    box-shadow: 0 0 8px 0 #3064ff;
}

.main-btn__flech svg {
    position: absolute;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

/* état par défaut */
.offers-satges__footer .flech-svg-1 {
    transform: translate(0%, 0%);
}
.offers-satges__footer .flech-svg-2 {
    transform: translate(-160%, 160%);
}

/* au hover */
.offers-satges__footer:hover .flech-svg-1 {
    transform: translate(160%, -160%);
}

.offers-satges__footer:hover .flech-svg-2 {
    transform: translate(0%, 0%);
}

@media (max-width: 768px) {
    .offers-satges__grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        padding-block: 24px;
        scrollbar-width: none;
        gap: 25px;
        margin-bottom: 25px;
    }

    .offers-satges__card {
        padding: 15px;
        min-width: 85%;
        display: flex;
        flex-direction: column;

        border: 1px solid #e2e8f0;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .offers-satges__card:hover {
        transform: translateY(-5px);
    }
    .offers-satges__card::before {
        display: none;
    }
    .offers-satges__card-header {
        gap: 15px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .offers-satges__company-info h3 {
        font-size: 20px;
    }
    .offers-satges__company-description {
        font-size: 12px;
    }
    .offers-satges__pathway {
        font-size: 12px;
    }
    .offers-satges__card-footer {
        flex-direction: column;
        row-gap: 20px;
        align-items: center;
        justify-content: space-around;
        flex-grow: 1;
    }
    .offers-satges__card-footer .main-btn {
        font-size: 14px;
        padding: 4px 15px;
    }
    .page-interns .offers-satges__card-footer .main-btn {
        margin-right: 0px;
    }
    .offers-satges__footer .main-btn {
        font-size: 14px;
        padding: 9px 15px;
    }
    .main-btn.main-btn__flech {
        width: 40px;
        height: 40px;
    }
    .main-btn.main-btn__flech svg {
        width: 15px;
    }
}

/* testimonials section */

.testimonials-section {
    margin-bottom: 35px;
    padding-top: 67px;
}

.testimonials-section .splide__track {
    padding-top: 32px;
    padding-bottom: 3rem;
}
.testimonials-section .splide__slide {
    transition: transform 0.3s ease;
}
.testimonials-section .splide__slide.is-active {
    transform: translateY(-30px);
}
.testimonials-section .splide__arrow {
    top: auto;
    bottom: -20px;
}

.testimonials-section .testimonial-card {
    background-image: url("/assets/images/bg-testimonials-card.png");
    background-color: #2d2d2d;
    background-repeat: no-repeat;
    background-position: top right;
    box-shadow: 0 0 12px 3px #000 inset;
    border-radius: 19px;
    padding: 20px 50px;
    padding-bottom: 25px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.testimonials-section .stars {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 7px;
}

.testimonials-section .star {
}

.testimonials-section .rating-text {
    color: #fff;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    margin-left: 12px;
}

.testimonial-text {
    margin-bottom: 20px;
    flex: 1;
    color: #fff;
    font-size: 20px;
    line-height: normal;
}

.testimonials-section .author {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.testimonials-section .author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonials-section .author-info h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 130.013%;
    margin-bottom: 0px;
}

.testimonials-section .author-info p {
    color: #fff;
    font-size: 14px;
    line-height: normal;
    margin-bottom: 0;
}

.testimonials-section .quote-mark {
    position: absolute;
    bottom: 15px;
    right: 33px;
}

@media (max-width: 992px) {
    .testimonials-section {
        padding-top: 40px;
    }

    .section-title {
        font-size: 36px;
    }
    .testimonials-section .testimonial-card {
        padding-inline: 20px;
    }
    .testimonials-section .stars {
        margin-bottom: 10px;
        gap: 5px;
    }
    .testimonial-text {
        font-size: 16px;
        margin-bottom: 10px;
    }
}
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
}

/* section articles */
.articles-section {
    margin-bottom: 106px;
}
@media (min-width: 1200px) and (max-width: 1400px) {
    .articles-section .container {
        max-width: 1190px;
    }
}
.articles-section .articles-section-content {
    display: grid;
    grid-template-columns: 55% 1fr;
    align-items: stretch;
    row-gap: 50px;
    column-gap: 55px;
    width: 100%;
}
.articles-header {
    margin-left: 48px;
}
.articles-title h2 {
    color: #000;
    font-size: 40px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 5px;
}
.articles-title p {
    color: #000;
    max-width: 500px;
    margin-bottom: 0;
}
.other-articles-title {
    color: #040404;
    font-size: 36px;
    font-weight: 500;
    line-height: normal;
    padding-left: 28px;
    padding-bottom: 5px;
    margin-bottom: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.other-articles-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #000b33;
}

.featured-article {
    height: 412px;
    width: 100%;
    position: relative;
    border-radius: 30px;
    background: linear-gradient(
            180deg,
            rgba(48, 100, 255, 0) 20.32%,
            #3064ff 93.43%
        ),
        url("/assets/images/featured-article-image.png") lightgray -33.309px -46px /
            110.36% 111.881% no-repeat;
    background-size: cover;
    background-position: center;
}
.featured-article::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2d2d2d;
    border-radius: 30px;
    z-index: -1;
}
.featured-article .bookmark-icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 56px;
    height: 56px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom-left-radius: 30px;
}
.featured-article .bookmark-icon img {
    width: 30px;
    height: 30px;
}
.featured-content {
    padding-bottom: 20px;
    padding-inline: 36px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    position: relative;
}
.featured-content .main-btn {
    padding: 14px 20px;
    background-color: #000;
    font-weight: 500;
    position: absolute;
    bottom: 20px;
    right: 3px;
    display: flex;
    justify-content: center;
}
.featured-content h3 {
    color: #fff;
    font-size: 28px;
    line-height: normal;
    margin-bottom: 15px;
}
.featured-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.featured-date {
    color: #fff;
    font-size: 15px;
}

.other-articles {
    height: 422px;
    overflow-y: scroll;
    padding-right: 15px;
}
.article-item {
    display: grid;
    grid-template-columns: 55px 1fr;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid #464646;
    margin-bottom: 32px;
    padding-bottom: 12px;
}
.article-number {
    height: 50px;
    width: 50px;
    background-color: #000b33;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    position: relative;
    top: -8px;
    right: -4px;
}
.article-number::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #3064ff;
    transform: translate(2px, 2px);
    z-index: -1;
}
.article-info {
    position: relative;
}
.article-title {
    color: #000;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-thickness: 8%;
    text-underline-offset: 19.5%;
    text-underline-position: from-font;
    word-spacing: -3px;
}

.article-date {
    display: block;
    text-align: end;
    color: #464646;
    font-size: 15px;
    line-height: normal;
    position: absolute;
    right: 10px;
    bottom: 7px;
}
@media (max-width: 1275px) {
    .articles-section .article-date,
    .articles-section .main-btn {
        position: relative;
        right: 0;
        bottom: 0;
    }
}
@media (max-width: 992px) {
    .articles-section .articles-section-content {
        grid-template-columns: 1fr;
        row-gap: 30px;
    }
    .articles-header {
        align-items: center;
        margin-left: 0;
    }
    .other-articles-title {
        grid-row-start: 3;
    }
    .featured-content {
        padding-inline: 15px;
    }
    .featured-article .bookmark-icon {
        width: 50px;
        height: 50px;
        border-bottom-left-radius: 20px;
    }
    .featured-content h3 {
        font-size: 24px;
        line-height: 130%;
    }
    .featured-content .main-btn {
        padding: 8px 15px;
    }
    .article-item {
        margin-bottom: 20px;
    }
    .article-number {
        top: -5px;
    }
}
@media (max-width: 768px) {
    .articles-title h2 {
        font-size: 34px;
    }

    .featured-content h3 {
        font-size: 20px;
    }

    .other-articles-title {
        font-size: 32px;
        padding-left: 0;
        text-align: center;
    }
    .article-number {
        height: 40px;
        width: 40px;
    }
    .article-title {
        font-size: 16px;
    }
}

/* parcours section */

.parcours-section {
    background: linear-gradient(95deg, #3064ff -13.84%, #000b33 100%);
    padding-block: 20px 12px;
    margin-bottom: 56px;
    overflow: hidden;
}

.parcours-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: 24px 84px;
}
.parcours-title {
    color: #000;
    font-size: 24px;
    font-weight: 600;
    line-height: normal;
    text-align: center;
    margin-bottom: 41px;
}

/* Slide content */
.slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 30px;
    height: 100%;
}
.slide-content__text {
    overflow: hidden;
}

.parcours-section .slide-title {
    color: #000;
    font-size: 36px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 40px;
    word-spacing: 3px;
    transition: transform 0.3s;
}

.slide-title .step-number {
    color: #000;
    font-size: 64px;
    font-weight: 500;
    line-height: 116%;
}

.slide-text {
    color: #000;
    font-size: 20px;
    line-height: normal;
    transition: opacity 0.3s;
}

/* Image container */
.titled-image {
    width: 420px;
    height: 214px;
    position: relative;
}
.titled-image::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #002199;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 30px;
    transform: rotate(-4deg) translateX(-10px);
    z-index: 0;
}

.titled-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    transform: translateX(200%) rotate(45deg);
    transition: transform 0.5s, opacity 0.2s;
}
.splide__pagination__page.is-active {
    background-color: #3064ff;
}
.splide__pagination__page {
    margin-inline: 5px;
    background: #000b33;
    width: 11px;
    height: 11px;
}
/* Splide customization */
.parcours-section .splide__track {
    overflow: visible;
    padding-block: 1rem 4rem;
}
.parcours-section .splide__track--fade > .splide__list > .splide__slide {
    opacity: 1;
}

.parcours-section
    .splide__track--fade
    > .splide__list
    > .splide__slide
    .slide-text {
    opacity: 0;
}
.parcours-section
    .splide__track--fade
    > .splide__list
    > .splide__slide.is-prev
    .slide-title {
    transform: translateX(-100%);
}

.parcours-section
    .splide__track--fade
    > .splide__list
    > .splide__slide.is-next
    .titled-image__img {
    transform: translateX(0%) rotate(0deg);
    opacity: 0;
}
.parcours-section
    .splide__track--fade
    > .splide__list
    > .splide__slide:not(.is-next):not(.is-prev):not(.is-active)
    .titled-image__img {
    display: none;
}
.parcours-section
    .splide__track--fade
    > .splide__list
    > .splide__slide
    .titled-image::before {
    opacity: 0;
}

.parcours-section
    .splide__track--fade
    > .splide__list
    > .splide__slide.is-next
    .slide-title {
    transform: translateX(100%);
}

.parcours-section
    .splide__track--fade
    > .splide__list
    > .splide__slide
    .slide-title {
    transform: translateX(100%);
}

.parcours-section
    .splide__track--fade
    > .splide__list
    > .splide__slide.is-active
    .slide-text {
    opacity: 1;
}

.parcours-section
    .splide__track--fade
    > .splide__list
    > .splide__slide.is-active
    .slide-title {
    transform: translateX(0%);
}
.parcours-section
    .splide__track--fade
    > .splide__list
    > .splide__slide.is-active
    .titled-image__img {
    opacity: 1;
    transform: translateX(0%);
}
.parcours-section
    .splide__track--fade
    > .splide__list
    > .splide__slide.is-active
    .titled-image::before {
    opacity: 1;
}

/* Custom arrow styles */
.parcours-section .splide__arrow {
    background-color: transparent;
    width: 40px;
    height: 40px;
    border: none;
    top: auto;
    bottom: 0;
    transform: translateY(0);
}
.parcours-section .splide__arrow img {
    width: 100%;
    height: 100%;
}

.parcours-section .splide__arrow svg {
    width: 20px;
    height: 20px;
    fill: #000;
}

.parcours-section .splide__arrow--prev {
    left: 18px;
}

.parcours-section .splide__arrow--next {
    right: auto;
    left: 83px;
}

/* Pagination dots */

/* Animations */
.title-transition {
    /* animation: fadeInLeft 0.8s ease; */
}
.titled-image {
    /* animation: fadeInLeft 0.8s ease; */
}

.text-transition {
    /* animation: fadeInUp 0.8s ease 0.2s both; */
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive design */
@media (min-width: 1400px) {
    .parcours-section .titled-image {
        width: 90%;
        height: auto;
    }
}
@media (min-width: 1200px) and (max-width: 1400px) {
    .parcours-section .container {
        max-width: 955px;
    }
}
@media (max-width: 992px) {
    .parcours-section .wrapper {
        padding-block: 24px 60px;
    }
    .parcours-title {
        margin-bottom: 10px;
    }
    .slide-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    .parcours-section .titled-image {
        width: 510px;
        height: auto;
        margin-inline: auto;
    }

    .parcours-section .splide__arrow--prev {
        left: 0px;
    }

    .parcours-section .splide__arrow--next {
        right: auto;
        left: 50px;
    }
}

@media (max-width: 768px) {
    .parcours-section {
        border-radius: 20px 20px 0 0;
    }

    .parcours-section .titled-image {
        width: 100%;
        height: auto;
    }
    .parcours-section .titled-image::before {
        display: none;
    }
    .parcours-section .slide-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    .slide-title .step-number {
        font-size: 45px;
        line-height: 100%;
    }
}

@media (max-width: 480px) {
}

/* signup-section */
/* signup-section */
.signup-section {
    padding-top: 12.6875rem; /* 203px */
    background-image: url("/assets/images/bg-sign-up-2.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.signup-section__content {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-between;
    z-index: 2;
    gap: 2.5rem; /* 40px */
}

.signup-header {
    margin-left: 5.4375rem; /* 87px */
    padding-top: 0.8125rem; /* 13px */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.signup-title {
    color: #000;
    font-size: 2.8575rem; /* 45.723px */
    font-weight: 500;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 0.625rem; /* 10px */
    margin-bottom: 0.125rem; /* 2px */
}

.signup-subtitle {
    color: #000;
    font-size: 1rem; /* 16px */
    font-weight: 400;
    line-height: normal;
}
.signup-header__abonnement {
    display: none;
}
.signup-header__abonnement.active {
    display: block;
}
h2.abonnement-title {
    color: #0d0303;
    text-align: center;
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    margin-bottom: 22px;
    line-height: 26px;
}
.abonnement-logos {
    text-align: center;
}
/* Left Navigation */
.signup-footer {
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.left-navigation {
    background-color: #2d2d2d;
    background-image: url("/assets/images/left-navigation-bg.svg");
    background-repeat: no-repeat;
    background-position: right top;
    border-top-right-radius: 3.125rem; /* 50px */
    max-width: 30.875rem; /* 494px */
    position: relative;
    padding-left: 4.375rem; /* 70px */
    padding-right: 3.4375rem; /* 55px */
    padding-top: 1.25rem; /* 20px */
    padding-bottom: 2.4375rem; /* 39px */
}

.left-navigation__icon {
    position: absolute;
}

.left-navigation__icon.icon-top {
    top: 0;
    left: 0;
    transform: translateY(-95%);
}

.left-navigation__icon.icon-bottom {
    bottom: -1px;
    right: 0;
    transform: translateX(98%);
}

.left-navigation .nav-item {
    padding-block: 1.063rem;
    color: white;
    font-size: 1.0625rem; /* 17px */
    font-weight: 400;
    line-height: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    transition: color 0.3s, border 0.3s;
    display: flex;
    align-items: center;
    gap: 0.6875rem; /* 11px */
    position: relative;
}

.left-navigation .nav-item::before {
    content: "";
    width: 2px;
    background-color: #2da1ff;
    display: block;
    align-self: stretch;
}

.left-navigation .nav-item.active {
    color: #2da1ff;
    font-size: 1.25rem; /* 20px */
    border-bottom: 2px solid #2da1ff;
}

.left-navigation .nav-item:hover {
    color: #2da1ff;
}

/* Right Section - Form */
.right-section {
    flex: 1;
    display: flex;
    align-items: start;
    justify-content: end;
    padding-bottom: 5.125rem; /* 82px */
    grid-area: 1 / 2 / 3 / 3;
}

.right-section .form-container {
    background: #2d2d2d;
    border-radius: 1rem; /* 16px */
    padding: 2.5rem 1.875rem; /* 40px 30px */
    margin-right: 4.875rem; /* 78px */
    width: 100%;
    max-width: 30.8125rem; /* 493px */
}

.signup-step {
    display: none;
}

.signup-step.active {
    display: block;
}

.right-section .google-btn {
    width: 100%;
    background: white;
    border: none;
    border-radius: 2px;
    padding: 0.6875rem 1.25rem; /* 11px 20px */
    font-size: 0.875rem; /* 14px */
    font-weight: 400;
    color: #3d4145;
    cursor: pointer;
    margin-bottom: 1.25rem; /* 20px */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem; /* 8px */
    text-decoration: none;
}

.right-section .form-row {
    display: flex;
    gap: 0.625rem; /* 10px */
    padding-top: 1.25rem; /* 20px */
    border-top: 1px solid #95a1b8;
}

.right-section .form-group {
    flex: 1;
    position: relative;
    margin-bottom: 0.625rem; /* 10px */
}

.right-section .form-group.full-width {
    width: 100%;
}

.right-section .form-input {
    width: 100%;
    background: rgba(75, 75, 75, 0.8);
    border: 1px solid rgba(107, 114, 128, 0.3);
    border-radius: 5px;
    padding: 0.625rem 1rem; /* 10px 16px */
    font-size: 0.875rem; /* 14px */
    color: #ffffff;
    transition: all 0.3s ease;
}

.right-section .form-group .form-text {
    color: #ef4444;
    font-size: 0.75rem; /* 12px */
    margin-top: 0.3125rem; /* 5px */
}

.right-section .form-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: none;
}

.right-section .form-input::placeholder {
    color: #ffffff;
}

.right-section .phone-container .iti {
    width: 100%;
}

.right-section .country-code::after {
    content: "";
    height: 100%;
    width: 1px;
    background-color: white;
    display: block;
}

.right-section .select-wrapper {
    position: relative;
}

.right-section .form-select:focus,
.right-section input:focus {
    border-color: #3064ff;
    outline: 0;
    box-shadow: none;
}

.right-section .form-select {
    width: 100%;
    background: rgba(75, 75, 75, 0.8);
    border: 1px solid rgba(107, 114, 128, 0.3);
    border-radius: 5px;
    padding: 0.625rem 2.5rem 0.625rem 1rem; /* 10px 40px 10px 16px */
    font-size: 0.875rem; /* 14px */
    color: #fff;
    cursor: pointer;
    appearance: none;
    margin-bottom: 0;
}

.right-section .select-wrapper::after {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.64844 1.00342L5.45869 4.81367L9.26894 1.00342' stroke='white' stroke-width='1.42884' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    position: absolute;
    width: 10px;
    height: 6px;
    right: 1rem; /* 16px */
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.avatar-preview {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 10px auto;
}

.right-section .password-container {
    position: relative;
}

.right-section .password-toggle {
    position: absolute;
    right: 1rem; /* 16px */
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    font-size: 1rem; /* 16px */
}

.right-section .checkbox-container {
    display: none;
    align-items: center;
    margin-bottom: 1.125rem; /* 18px */
    gap: 0.625rem; /* 10px */
}

.form-container.step-1 .checkbox-container {
    display: flex;
}
.right-section .checkbox-container.active {
    display: flex;
}

.right-section .checkbox-container input {
    width: 1.6875rem; /* 27px */
    height: 1.75rem; /* 28px */
    position: relative;
    background-color: white;
    appearance: none;
    border-radius: 2px;
}

.right-section .checkbox-container input[type="checkbox"]:checked::after {
    content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='10' viewBox='0 0 14 10' fill='none'><path d='M1.81641 5.02353L5.38946 8.53389L12.2151 1.18555' stroke='%233064FF' stroke-width='1.90513' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    color: #007bff;
    font-size: 14px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.right-section .checkbox-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem; /* 14px */
}

.right-section .checkbox-label a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
}
.right-section .form-container.step-5 {
    margin-right: 1rem;
    max-width: 34rem;
}
.pricing-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    align-items: end;
    font-family: "Poppins", "kanit-regular";
}

.pricing-card {
    background: white;
    border-radius: 5px;
    padding-inline: 20px;
    padding-top: 20px;
    position: relative;
    height: fit-content;
}

.pricing-card.professional {
    background: #464646;
    color: white;
    border: 2px solid #4285f4;
}

.pricing-card-header {
    margin-bottom: 14px;
}

.plan-name {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
    padding: 2.859px 7.147px;
    border-radius: 2.859px;
    background-color: #f1f1f1;
    color: #000b33;
    margin-bottom: 10px;
}

.pricing-card.professional .plan-name {
    background-color: #f1f1f1;
}

.popular-badge {
    width: fit-content;
    border-radius: 2px;
    background: #a9b2ff;
    color: #000b6b;
    font-size: 10px;
    line-height: 1;
    padding: 3px 8px;
    margin-bottom: 10px;
}

.plan-description {
    color: #000;
    font-size: 12px;
    font-weight: 300;
    line-height: normal;
}
.pricing {
    padding-block: 14px;
    position: relative;
    margin-bottom: 14px;
}
.pricing::after,
.pricing::before {
    content: "";
    position: absolute;
    left: 0;
    height: 0.7px;
    width: 100%;
    opacity: 0.4;
    background: #001c80;
}
.professional .pricing::after,
.professional .pricing::before {
    background: #fff;
}
.pricing::after {
    bottom: 0;
}
.pricing::before {
    top: 0;
}

.professional .plan-description {
    color: #ffffff;
}

.price {
    font-size: 34px;
    font-weight: 700;
    color: #000b33;
    line-height: 1;
}

.professional .price {
    color: #ffffff;
}

.price-period {
    font-size: 10px;
    color: #000;
    font-weight: 600;
}

.professional .price-period {
    color: #ffffff;
}

.features-list {
    list-style: none;
    margin-bottom: 1rem;
    padding-left: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 10px;
    gap: 6px;
}

.feature-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
}

.feature-icon.check {
    background: #141414;
    color: white;
}

.feature-icon.cross {
    background: #ff0000;
    color: white;
}

.feature-text {
    flex: 1;
    color: #000000;
}

.professional .feature-text {
    color: #ffffff;
}

.feature-badge {
    color: #3064ff;
    font-size: 8px;
    padding: 0 4px;
    border-radius: 2px;
    background: #c9e2fa;
}

.pricing-card-btn {
    width: 100%;
    border: none;
    border-radius: 2px;
    text-align: center;
    font-size: 12px;
    padding-block: 10px;
}
.pricing-card-btn.basic {
    background: #000000;
    color: white;
}

.pricing-card-btn.basic:hover {
    background: #555;
}

.pricing-card-btn.professional {
    background: #f9d783;
    color: #000b6b;
}

.pricing-card-btn.professional:hover {
    background: #c4a85a;
}

.no-credit {
    text-align: center;
    color: #444;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    padding-block: 10px;
}

.professional .no-credit {
    color: #ffffff;
}

.right-section .form-footer {
    border-top: 1px solid #95a1b8;
    margin-top: 2.5625rem; /* 41px */
    padding-top: 0.625rem; /* 10px */
}

.form-container:not(.step-1) .form-footer {
    padding-top: 1.875rem; /* 30px */
}

.form-footer__buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.right-section .submit-btn {
    width: 9.375rem; /* 150px */
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: #3064ff;
    border-radius: 5px;
    padding: 0.625rem 0; /* 10px 0 */
    font-size: 0.875rem; /* 14px */
    color: white;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.03125rem; /* 0.5px */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.625rem; /* 10px */
}

.right-section .submit-btn.btn-next {
    margin-left: auto;
}

.right-section .submit-btn.btn-prev {
    border-color: #fff;
    background: #464646;
}

.right-section .submit-btn:hover {
    transform: translateY(-2px);
}

/* CV Upload Container */
.cv-upload-container,
.avatar-upload-container {
    padding: 1.625rem 1.875rem; /* 26px 30px */
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-height: 12.5rem; /* 200px */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.9375rem; /* 15px */
    border: 1px solid #3064ff;
    background: #464646;
}

.cv-upload-container:hover,
.avatar-upload-container:hover {
    border-color: #3b82f6;
    background: rgba(245, 160, 160, 0.4);
}

.cv-upload-container.dragover,
.avatar-upload-container.dragover {
    border-color: #1d4ed8;
    background: rgba(59, 130, 246, 0.1);
    transform: scale(1.02);
    display: none;
}

.cv-upload-content,
.avatar-upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9375rem; /* 15px */
}

.cv-upload-icon,
.avatar-upload-icon {
    margin-bottom: 0.625rem; /* 10px */
}

.cv-upload-title,
.avatar-upload-title {
    color: white;
    font-size: 1rem; /* 16px */
    font-weight: 400;
    margin: 0;
    max-width: 21.875rem; /* 350px */
    line-height: 1.4;
}

.cv-upload-btn {
    background: transparent;
    border: 1px solid #fff;
    border-radius: 6px;
    padding: 0.625rem 1.5rem; /* 10px 24px */
    color: #fff;
    font-size: 0.875rem; /* 14px */
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cv-upload-btn:hover {
    background: #60a5fa;
    color: white;
}

.cv-upload-info,
.avatar-upload-info {
    display: flex;
    flex-direction: column;
    gap: 0.3125rem; /* 5px */
}

.cv-upload-info p,
.avatar-upload-info {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem; /* 12px */
    margin: 0;
}

.cv-file-input {
    display: none !important;
}

/* Selected file display */
.cv-selected-file {
    margin-top: 0.9375rem; /* 15px */
    padding: 0.75rem; /* 12px */
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #22c55e;
    font-size: 0.875rem; /* 14px */
}

.cv-remove-btn {
    background: none;
    border: none;
    color: #ef4444;
    font-size: 1.125rem; /* 18px */
    cursor: pointer;
    padding: 0;
    width: 1.25rem; /* 20px */
    height: 1.25rem; /* 20px */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.cv-remove-btn:hover {
    background: rgba(239, 68, 68, 0.1);
}
.signup-step__post {
    border-radius: 15px;
    border: 1px solid #3064ff;
    background: #2d2d2d;
    padding: 15px 25px 0;
}
.signup-step__post * {
    scrollbar-color: #3064ff transparent;
}
.post-container {
    max-height: 300px;
    overflow-y: scroll;
    padding-right: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .signup-section {
        padding-top: 5rem;
    }

    .signup-section__content {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .signup-header {
        margin-left: 1.25rem;
        margin-right: 1.25rem;
        margin-bottom: 2rem;
        row-gap: 2rem;
    }

    .right-section .form-container {
        margin-right: 1.25rem; /* 20px */
        margin-left: 1.25rem; /* 20px */
        padding: 1.875rem 1.25rem; /* 30px 20px */
    }
    /* .right-section .form-container.step-5{
        margin-right: 0; 
        margin-left: 0; 
        padding: 10px; 
    } */

    .signup-footer {
        margin-bottom: 2.5rem; /* 40px */
    }

    .left-navigation {
        max-width: none;
        border-radius: 1.25rem; /* 20px */
        margin: 0 1.25rem; /* 0 20px */
        padding-left: 2.1875rem; /* 35px */
        padding-right: 2.1875rem; /* 35px */
    }

    .left-navigation .left-navigation__icon {
        display: none;
    }

    .right-section {
        grid-area: 2 / 1 / 3 / 2;
        padding-bottom: 2.5rem; /* 40px */
        align-items: center;
        justify-content: center;
    }
    .pricing-cards {
        gap: 10px;
    }
    .pricing-card {
        padding-inline: 10px;
    }
}

@media (max-width: 768px) {
    .signup-title {
        display: block;
        line-height: 100%;
        margin-bottom: 1rem;
    }
    .right-section .form-row {
        flex-direction: column;
        gap: 0;
    }
    .pricing-cards {
        grid-template-columns: 90%;
        justify-content: center;
    }
}

/* signin */

.signin .left-navigation .nav-item {
    font-size: 15.241px;
    line-height: 21.337px;
}
.reseaux__sociaux {
    padding-top: 1rem;
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.reseaux__sociaux span {
    color: #fff;
    font-size: 16px;
    line-height: 1;
}
.reseaux__sociaux a {
    text-decoration: none;
}

.signin .google-btn + .form-group.full-width {
    padding-top: 1.25rem;
    border-top: 1px solid #95a1b8;
}
.forgot-password {
    margin-bottom: 1.125rem;
}

.forgot-password a {
    margin-bottom: 1.125rem;
    color: #ff1a3f;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
}
.signin .submit-btn {
    width: 100%;
    margin-bottom: 1.125rem;
}
.signup-link {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: #fff;
    border-radius: 5px;
    padding: 0.625rem 0;
    font-size: 0.875rem;
    color: #3d4145;
    letter-spacing: 0.03125rem;
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
}

/* entreprise */
.page-intro {
    padding-block: 204px 172px;
    padding-inline: 20px;
    position: relative;
}
.page-interns .page-intro {
    padding-block: 204px 160px;
}
.page-intro::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);
}
.page-intro__content {
    max-width: 926px;
    margin-inline: auto;
    text-align: center;
}
.page-intro__title {
    font-size: 50px;
    font-weight: 600;
    line-height: normal;
    max-width: 780px;
    margin-inline: auto;
    margin-bottom: 26px;
}
.page-intro__title span {
    color: white;
    border-radius: 0 20px 20px 20px;
    background: linear-gradient(90deg, #2da1ff 0%, #3064ff 100%);
    position: relative;
    display: inline-block;
    margin-inline: 10px;
    line-height: 1;
    padding-block: 5px;
    padding-inline: 12px;
}
.page-intro__title span::before {
    content: "";
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 100%;
    height: 100%;
    border-radius: 0 20px 20px 20px;
    background: #2d2d2d;
    z-index: -1;
}

.page-intro__text {
    text-align: center;
}

.page-content {
    position: relative;
    background-color: white;
    border-radius: 57px 57px 0 0;
    margin-bottom: 113px;
    margin-top: -32px;
}
.page-content .container {
    max-width: 1164px;
}
.page-interns .page-content .container {
    max-width: 1172px;
}
.page-content::before {
    content: "";
    position: absolute;
    top: -16px;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 57px 57px 0 0;
    background-color: #2da1ff;
    z-index: -1;
}
.interns__search {
    padding: 34px 50px;
    border-radius: 20px;
    background: #2d2d2d;
    position: relative;
    transform: translateY(calc(-50% - 5px));
    margin-bottom: 8px;
    max-width: 1078px;
    margin-inline: auto;
}
.interns__content {
    position: relative;
    z-index: 1;
}
.page-interns .interns__content {
    transform: translateY(-26px);
}
.page-interns .offers-satges__flex {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.interns__search .search-offer__search-container {
    margin-bottom: 0;
}
.interns__search .main-btn {
    background-color: #3064ff;
}

.interns__profiles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
    row-gap: 41px;
}

.interns__profile-card {
    border-radius: 20px;
    border: 1px solid #2d2d2d;
    background: #fff;
    padding: 22px 18px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 32px;
    position: relative;
}
.interns__profile-card::before {
    position: absolute;
    content: "";
    border-radius: 20px;
    background: #2d2d2d;
    width: 100%;
    height: 100%;
    bottom: -4px;
    right: -4px;
    z-index: -1;
}

.pinterns__rofile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #4299e1;
}

.interns__profile-image {
    width: 184px;
    height: 176px;
    border-radius: 6px;
    overflow: hidden;
}

.interns__profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.interns__profile-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.interns__profile-name {
    margin-bottom: 0;
    color: #000;
    font-size: 24px;
    font-weight: 500;
    line-height: normal;
}

.interns__profile-details {
    color: #000;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
}

.interns__profile-card .main-btn {
    padding: 6px 19px;
    font-size: 1rem;
    background-color: #2d2d2d;
    margin-left: auto;
    transform: translateY(18px);
    border-radius: 10px;
}
@media (max-width: 992px) {
    .page-content {
        padding-top: 30px;
    }
    .page-intro,
    .page-interns .page-intro {
        padding-block: 120px 95px;
    }
    .interns__search {
        transform: translateY(0);
        padding: 24px 24px;
        margin-bottom: 40px;
        max-width: 600px;
    }
    .page-interns .interns__content {
        gap: 20px;
        transform: none;
    }
    .interns__profiles-grid {
        row-gap: 30px;
    }
    .interns__profile-card {
        gap: 20px;
        padding: 20px 14px;
    }
    .interns__profile-image {
        width: 120px;
        height: 120px;
    }
    .interns__profile-name {
        font-size: 20px;
    }
    .interns__profile-details {
        font-size: 16px;
    }
    .interns__profile-card .main-btn {
        padding: 4px 10px;
        font-size: 12px;
        transform: translateY(0);
    }
}
@media (max-width: 768px) {
    .page-intro__title {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    .page-content {
        border-radius: 20px 20px 0 0;
    }
    .page-interns .page-content {
        position: static;
    }

    .page-interns .page-content::before {
        display: none;
    }
    .page-interns .interns__content {
        position: static;
    }
    .page-content::before {
        border-radius: 20px 20px 0 0;
    }
    .interns__profiles-grid {
        grid-template-columns: 1fr;
    }
}
/* .offers-satges__detail */
.page-interns .interns__content.active {
    display: grid;
    gap: 42px;
    grid-template-columns: 48.2% auto;
}
.offers-satges__detail {
    display: none;
    /* top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 400px;*/

    /* z-index: 1000; */
    /* max-height: 80vh;
    overflow-y: auto; */
}
.offers-satges__detail-content {
    background: white;
    border-radius: 20px;
    padding: 20px 43px;
    padding-right: 58px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid #2d2d2d;
    position: relative;
}
.offers-satges__detail-content::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 100%;
    height: 100%;
    background: #2d2d2d;
    border-radius: 20px;
    opacity: 1;
    z-index: -1;
    display: block;
}
.offers-satges__detail.active {
    display: block;
    /* animation: slideIn 0.3s ease-out; */
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

.detail__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}
.detail__logo {
    border-radius: 6px;
    overflow: hidden;
    width: 118px;
    height: 113px;
}
.detail__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail__close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 5px;
    right: 15px;
}

.detail__close:hover {
    color: #000;
}

.detail__company-info {
    flex: 1;
}

.detail__company-name {
    margin-bottom: 4px;
    font-size: 30.28px;
    line-height: normal;
}

.detail__company-description {
    font-size: 20.187px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 3px;
}

.detail__pathway {
    font-size: 20.187px;
    line-height: normal;
    margin-bottom: 0;
}
.detail__divider {
    margin-block: 32px 40px;
    margin-inline: 32px;
    border-top-color: #2da1ff;
    opacity: 1;
}

.detail__section {
    margin-bottom: 22px;
}

.detail__section-title {
    margin-bottom: 0px;
    font-size: 14px;
    line-height: normal;
    font-weight: 600;
}
.detail__section-title span {
    font-weight: 400;
}
.detail__list {
    list-style: disc;
    padding-left: 28px;
    margin: 0;
}

.detail__list-item {
    padding-bottom: 0;
    font-size: 14px;
}

.detail__list-item:last-child {
    border-bottom: none;
}

.detail__apply .main-btn {
    background: #3064ff;
    color: white;
    padding: 6px 44px;
    border-radius: 15.351px;
    font-size: 25px;
    cursor: pointer;
}

.detail__signup .main-btn {
    font-size: 20px;
    margin: 0 0 0 auto;
}

/* Overlay pour fermer en cliquant à l'extérieur */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.overlay.active {
    display: block;
}
@media screen and (max-width: 992px) {
    .page-interns .interns__content.active {
        gap: 30px;
        grid-template-columns: 1fr 1fr;
    }
    .offers-satges__detail-content {
        padding: 15px 20px;
        padding-right: 20px;
    }
    .offers-satges__detail-content::before {
        display: none;
    }
    .detail__apply .main-btn {
        padding: 6px 20px;
        font-size: 18px;
    }
}
@media screen and (max-width: 768px) {
    .page-interns .interns__content.active {
        grid-template-columns: 1fr;
    }

    .offers-satges__detail {
        position: fixed;
        top: 70px;
        left: 50%;
        transform: translateX(-100%);
        transition: transform 0.5s ease-out;
        width: 95%;
        height: 100vh;
        z-index: 5;
    }
    .offers-satges__detail-content {
        max-height: 80vh;
        overflow-y: scroll;
    }
    .offers-satges__detail.active {
        transform: translateX(-50%);
    }
}
@media (max-width: 480px) {
    .offers-satges__detail {
        top: 60px;
    }
}

.page-faq .page-intro {
    padding-block: 204px 95px;
}
.page-faq .page-content {
    font-family: "Montserrat";
    padding-top: 110px;
}
.page-faq .page-content .container {
    max-width: 1153px;
}
.faq__header {
    margin-bottom: 72px;
}

.faq__header h2 {
    color: #000b33;
    font-size: 40.761px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.faq__header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 158px;
}

.faq__header-title {
    flex: 1;
}

.faq__header-description {
    color: rgba(0, 0, 0, 0.9);
    font-size: 14.822px;
    font-weight: 500;
    line-height: 26.086px; /* 162.5% */
    flex: 1;
}

.faq__container {
    max-width: 1068px;
    margin-inline: auto;
}

.faq__item {
    border-radius: 18.528px;
    background-color: rgba(8, 52, 78, 0.02);
    padding: 16.675px 18.528px 16.172px 29.644px;
    margin-bottom: 18px;
}

.faq__question {
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    gap: 21px;
}

.faq__question:hover {
}
.faq__question-text {
    color: #000b33;
    font-size: 18.528px;
    font-weight: 500;
    line-height: 31.497px;
    flex: 1;
    padding: 0 0;
    border-radius: 46.319px;
    transition: all 0.3s ease;
}
.faq__question.active .faq__question-text {
    background-color: #000b33;
    color: white;
    padding: 6px 27px;
}

.faq__icon {
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background-color: #007bff;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq__question.active .faq__icon {
    background-color: #000b33;
}

.faq__icon::after {
    content: "+";
    transition: transform 0.3s ease;
}
.faq__question.active {
    margin-top: 5px;
}
.faq__question.active .faq__icon::after {
    content: "-";
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq__answer.active {
    max-height: 500px;
}

.faq__answer-content {
    padding-top: 34px;
    padding-inline: 24px;
    color: #000b33;
    text-align: justify;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 25.012px;
    padding-bottom: 24px;
}

.faq__answer-content p {
    margin-bottom: 24px;
}

.faq__answer-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .page-faq .page-intro {
        padding-block: 120px 95px;
    }
    .page-faq .page-content {
        padding-top: 60px;
    }

    .faq__header-content {
        gap: 40px;
    }
}
@media (max-width: 768px) {
    .faq__header h2 {
        font-size: 2rem;
        text-align: center;
    }

    .faq__header-content {
        flex-direction: column;
        gap: 20px;
    }
    .faq__item {
        padding: 0px;
    }
    .faq__question {
        padding: 10px;
    }
    .faq__question-text {
        font-size: 14px;
        font-weight: 600;
        border-radius: 0;
    }
    .faq__question.active .faq__question-text {
        padding: 10px 10px;
        color: #000b33;
        border-bottom: 1px solid #000b33;
        background-color: transparent;
    }

    .faq__answer-content {
        padding: 0 10px 10px 10px;
        font-size: 12px;
    }
}

/* promise slider section */
.promise-slider-section {
    background: #000b33;
    border-radius: 57px;
    color: white;
    position: relative;
    padding-block: 35px 50px;
    margin-bottom: 16px;
    font-family: "kanit";
}
.promise-slider-section::before {
    content: "";
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 100%;
    height: 157px;
    border-radius: 0 0 57px 57px;
    background: linear-gradient(95deg, #2da1ff -5.32%, #3064ff 104.02%);
    z-index: -1;
    opacity: 0.8;
}

.promise-slider__container {
    max-width: 1174px;
    margin: 0 auto;
    padding-inline: 20px;
}

.promise-slider__main-title {
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    line-height: normal;
    text-align: center;
    padding-bottom: 32px;
    border-bottom: 2px solid #fff;
    margin-bottom: 50px;
}

.promise-slider__main-title .highlight {
    color: #2da1ff;
}

.promise-slider__content {
    display: flex;
    gap: 70px;
    padding-left: 55px;
    padding-right: 38px;
    padding-bottom: 10px;
}

.promise-slider__content-left {
    flex: 1;
}

.promise-slider__content-right {
    flex: 1;
    padding-left: 20px;
    padding-top: 24px;
    overflow: hidden;
}

.promise-card {
    background: #fff;
    border-radius: 57px;
    position: relative;
    max-width: 650px;
    margin-inline: auto;
}

.promise-title {
    color: #000b33;
    font-size: 32px;
    font-weight: 500;
    line-height: 120.026%; /* 38.408px */
    margin-bottom: 15px;
    padding: 21px 51px 0 51px;
    /* word-spacing: -5px; */
    transition: transform 0.5s ease;
}
.promise-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 30px 30px 0px 0px;
    width: 100%;
    height: 336px;
    padding-top: 30px;
}
.promise-image-container::after {
    position: absolute;
    content: "";
    top: 16px;
    left: 50%;
    width: 92%;
    height: 269px;
    transform: translateX(-50%);
    background: #c5c5c5;
    z-index: 1;
    border-radius: 30px;
}
.promise-image-container::before {
    position: absolute;
    content: "";
    top: 1px;
    left: 50%;
    width: 85%;
    height: 243px;
    transform: translateX(-50%);
    background: #efeded;
    z-index: 0;
    border-radius: 30px;
}

.promise-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 30px;
    position: relative;
    z-index: 2;
}

.promise-number {
    position: absolute;
    bottom: -19px;
    right: -20px;
    background-color: #000b33;
    width: 167px;
    height: 167px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}
.promise-number::before {
    position: absolute;
    content: "";
    bottom: 12px;
    left: -5px;
    background: transparent;
    width: 24px;
    height: 24px;
    border-bottom-right-radius: 11px;
    box-shadow: 6px 6px 0 5px #000b33;
    transform: rotate(-24deg);
    z-index: 3;
}
.promise-number::after {
    position: absolute;
    content: "";
    top: -6px;
    right: 16px;
    background: transparent;
    width: 24px;
    height: 24px;
    border-bottom-right-radius: 11px;
    box-shadow: 6px 6px 0 5px #000b33;
    transform: rotate(29deg);
    z-index: 3;
}

.promise-number__content {
    background-color: #fff;
    color: #000b33;
    font-size: 96px;
    font-weight: 500;
    line-height: 1;
    width: 142px;
    height: 142px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.promise-number__content span {
    display: inline-block;
    transition: transform 0.5s ease;
}
.promise-description {
    color: #fff;
    text-align: justify;
    font-size: 24px;
    line-height: normal;
    transition: transform 0.5s ease;
}

/* Splide Custom Styling */
/* .splide__track {
    overflow: visible;
} */

.promise-slider-section .splide__arrows {
    position: absolute;
    bottom: 30px;
    right: 56px;
    width: 130px;
}

.promise-slider-section .splide__arrow {
    background-color: transparent;
    width: 54px;
    height: 54px;
    border: none;
    top: auto;
    bottom: 0;
    transform: translateY(0);
    opacity: 1;
}
.promise-slider-section .splide__arrow:disabled {
    opacity: 0.3;
}

/* .splide__arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
} */
.promise-slider-section .splide__arrow--prev {
    left: 0;
}
.promise-slider-section .splide__arrow--next {
    right: 0;
}

.promise-slider-section .splide__arrow img {
    width: 100%;
    height: 100%;
    filter: brightness(0) saturate(100%) invert(100%) sepia(19%) saturate(3942%)
        hue-rotate(186deg) brightness(124%) contrast(111%);
}

.promise-slider-section
    .splide__track--fade
    > .splide__list
    > .splide__slide.is-active
    .promise-title,
.promise-slider-section
    .splide__track--fade
    > .splide__list
    > .splide__slide.is-active
    .promise-description,
.promise-slider-section
    .splide__track--fade
    > .splide__list
    > .splide__slide.is-active
    .promise-number__content
    span {
    transform: translateX(0%);
}
.promise-slider-section
    .splide__track--fade
    > .splide__list
    > .splide__slide.is-next
    .promise-title,
.promise-slider-section
    .splide__track--fade
    > .splide__list
    > .splide__slide.is-next
    .promise-description,
.promise-slider-section
    .splide__track--fade
    > .splide__list
    > .splide__slide.is-next
    .promise-number__content
    span {
    transform: translateX(100%);
}
.promise-slider-section
    .splide__track--fade
    > .splide__list
    > .splide__slide.is-prev
    .promise-title,
.promise-slider-section
    .splide__track--fade
    > .splide__list
    > .splide__slide.is-prev
    .promise-description,
.promise-slider-section
    .splide__track--fade
    > .splide__list
    > .splide__slide.is-prev
    .promise-number__content
    span {
    transform: translateX(-100%);
}

.promise-slider-section
    .splide__track--fade
    > .splide__list
    > .splide__slide.is-active
    .promise-image {
    transform: translateY(0%);
}
.promise-slider-section
    .splide__track--fade
    > .splide__list
    > .splide__slide.is-next
    .promise-image {
    transform: translateY(0%);
}
.promise-slider-section
    .splide__track--fade
    > .splide__list
    > .splide__slide.is-prev
    .promise-image {
    transform: translateY(100%);
}

/* Responsive Design */
@media (max-width: 992px) {
    .promise-card {
        border-radius: 30px;
    }
    .promise-slider__content {
        gap: 30px;
        padding-left: 0px;
        padding-right: 0px;
    }
    .promise-title {
        font-size: 26px;
        padding: 20px 30px 0 30px;
    }
    .promise-number {
        width: 120px;
        height: 120px;
    }
    .promise-number::before {
        left: -14px;
    }
    .promise-number::after {
        top: -15px;
    }
    .promise-number__content {
        width: 90px;
        height: 90px;
        font-size: 42px;
    }
    .promise-slider__content-right {
        padding-left: 0;
        padding-top: 10px;
    }
    .promise-description {
        font-size: 20px;
    }
}
@media (max-width: 768px) {
    .promise-slider__container {
        padding-inline: 10px;
    }
    .promise-slider__main-title {
        font-size: 32px;
        padding-bottom: 22px;
        margin-bottom: 34px;
    }
    .promise-slider__content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px 10px;
    }

    .promise-slider__content-right {
        /* padding-left: 0; */
    }

    .promise-card {
        /* padding: 20px; */
    }

    .promise-number {
        /* position: static;
        margin: 20px auto 0;
        width: 60px;
        height: 60px;
        font-size: 2rem; */
    }

    .promise-description {
        font-size: 16px;
    }

    .promise-slider__main-title {
        /* margin-bottom: 30px; */
    }
    .promise-slider-section .splide__arrows {
        bottom: -30px;
        right: 0;
        width: 100%;
    }
    .promise-slider-section .splide__arrow {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    /* .promise-slider__container {
        padding: 10px;
    }

    .promise-image {
        height: 200px;
    } */
}

/* Animation */
.promise-slider__content {
    opacity: 0;
    transform: translateY(20px);
    animation: slideIn 0.6s ease forwards;
}

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