* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark: #0b2533;
    --muted: #526878;
    --border: #d9e1e6;
    --blue: rgb(69, 175, 229);
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: #fff;
}

a {
    text-decoration: none;
}

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

.topbar {
    /* background: linear-gradient(to right, #3FA7DB, #6EC1E6, #A9D9F2, #ffffff); */
    background: #45afe5;
    height: 60px;
    padding: 0;
    font-size: 14px;
    transition: all 0.5s;
}

.topbar .contact-info i {
    font-style: normal;
    color: #fff;
    font-size: 15px;
}

.topbar .contact-info i a,
.topbar .contact-info i span {
    padding-left: 5px;
    color: #fff;
    text-decoration: none;
}

@media (max-width: 575px) {

    .topbar .contact-info i a,
    .topbar .contact-info i span {
        font-size: 13px;
    }
}

.topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
}

.topbar .contact-info i a:hover {
    color: #fff;
    text-decoration: none;
}

.topbar .social-links a {
    color: color-mix(in srgb, rgba(69, 175, 229, .94), transparent 40%);
    line-height: 0;
    transition: 0.3s;
    margin-left: 20px;
}

.topbar .social-links a:hover {
    color: rgba(69, 175, 229, .94);
}

.share-button {
    width: 35px;
    height: 35px;
    margin: 5px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(to bottom right, rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0.1));
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.3),
        /* top highlight */
        0 2px 10px rgba(0, 0, 0, 0.3),
        /* main shadow */
        0 1px 0 rgba(255, 255, 255, 0.2);
    /* subtle rim */
    transition: all 0.2s ease-in-out;
    position: relative;
}

.share-button:hover {
    transform: translateY(-2px);
    box-shadow:
        inset 0 2px 2px rgba(255, 255, 255, 0.3),
        0 8px 12px rgba(0, 0, 0, 0.547),
        0 2px 0 rgba(255, 255, 255, 0.2);
}

.promo-button:hover {
    transform: translateY(-2px);
    box-shadow:
        inset 0 2px 2px rgba(255, 255, 255, 0.3),
        0 8px 12px rgba(0, 0, 0, 0.547),
        0 2px 0 rgba(255, 255, 255, 0.2);
}

.share-promo-button {
    width: 35px;
    height: 35px;
    margin: 5px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(to bottom right, rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0.1));
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.3),
        /* top highlight */
        0 2px 10px rgba(0, 0, 0, 0.3),
        /* main shadow */
        0 1px 0 rgba(255, 255, 255, 0.2);
    /* subtle rim */
    transition: all 0.2s ease-in-out;
    position: relative;
}



.share-promo-button:hover {
    transform: translateY(-2px);
    box-shadow:
        inset 0 2px 2px rgba(255, 255, 255, 0.3),
        0 8px 12px rgba(0, 0, 0, 0.547),
        0 2px 0 rgba(255, 255, 255, 0.2);
}

.whatsapp {
    background-color: #25D366;
}

.facebook {
    background-color: #1877F2;
    color: aliceblue;
}

.cancel {
    background-color: #000000;
}

.linkedin {
    background-color: #0077B5;
}

.instagram {
    background-color: #f43565;
    color: aliceblue;
}

.share-button img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
    z-index: 2;
}

.navbar-brand img {
    max-width: 60px;
}

/* =====================================================
       NAVBAR
    ====================================================== */

.custom-navbar {
    background: #fff;
    min-height: 74px;
    border-top: 1px solid #f2f2f2;
    border-bottom: 1px solid #f1f1f1;
    padding: 0;
    position: relative;
    z-index: 999;
}

.navbar-nav {
    gap: 8px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #111 !important;
    font-size: 15px;
    font-weight: 600;
    padding: 26px 12px !important;
    transition: 0.3s;
    white-space: nowrap;
}

.nav-link:hover {
    color: rgb(69, 175, 229) !important;
}

.nav-link i {
    font-size: 11px;
    margin-left: 5px;
}

/* =====================================================
       DROPDOWN
    ====================================================== */

.custom-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #fff;
    border-radius: 10px;
    padding: 12px 0;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all .35s ease;
    z-index: 999;
}

.custom-dropdown a {
    display: block;
    padding: 12px 22px;
    color: #111;
    font-size: 14px;
    font-weight: 500;
    transition: .3s;
}

.custom-dropdown a:hover {
    background: #f4f8ff;
    color: rgb(69, 175, 229);
    padding-left: 28px;
}

.nav-item.dropdown:hover .custom-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* =====================================================
       SEARCH
    ====================================================== */

.search-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #111;
    transition: 0.3s;
}

.search-btn:hover {
    color: rgb(69, 175, 229);
}

/* =====================================================
       BUTTON
    ====================================================== */

.order-btn {
    background: rgb(69, 175, 229);
    color: #fff;
    border: none;
    padding: 14px 24px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
    min-width: 132px;
    text-align: center;
}

.order-btn:hover {
    background: rgb(69, 175, 229);
    color: #fff;
}

/* =====================================================
       RESPONSIVE
    ====================================================== */

@media(max-width:1200px) {

    .logo-title {
        font-size: 58px;
    }

    .logo-circle {
        width: 46px;
        height: 46px;
        left: 67px;
        top: 9px;
        font-size: 18px;
    }

    .nav-link {
        font-size: 14px;
        padding: 24px 8px !important;
    }
}

@media(max-width:992px) {

    .top-header {
        height: auto;
    }

    .top-wrapper {
        flex-direction: column;
    }

    .logo-side,
    .slider-side {
        width: 100%;
    }

    .logo-side {
        padding: 30px 20px;
    }

    .slide-item {
        min-width: 100%;
        height: 200px;
    }

    .custom-navbar {
        padding: 12px 0;
    }

    .navbar-collapse {
        padding-top: 15px;
    }

    .nav-link {
        padding: 12px 0 !important;
    }

    .navbar-actions {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 18px;
        margin-top: 20px;
    }

    /* Mobile Dropdown */

    .custom-dropdown {
        position: relative;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0 0 0 15px;
        display: none;
        min-width: 100%;
    }

    .custom-dropdown a {
        padding: 10px 0;
    }

    .nav-item.dropdown.active .custom-dropdown {
        display: block;
    }

    .nav-item.dropdown:hover .custom-dropdown {
        transform: none;
    }
}

@media(max-width:768px) {

    .logo-title {
        font-size: 50px;
    }

    .logo-circle {
        width: 42px;
        height: 42px;
        left: 60px;
        top: 8px;
    }

    .slide-item {
        height: 180px;
    }

    .slider-arrow {
        width: 38px;
        height: 38px;
        font-size: 22px;
    }
}

@media(max-width:480px) {

    .logo-title {
        font-size: 42px;
    }

    .logo-circle {
        width: 38px;
        height: 38px;
        left: 51px;
        top: 7px;
        font-size: 15px;
    }

    .logo-slogan {
        font-size: 12px;
    }

    .slide-item {
        height: 160px;
    }

    .order-btn {
        width: 100%;
    }
}

.hero-section {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background:
        linear-gradient(120deg, rgba(69, 175, 229, .94), rgba(69, 175, 229, .82)),
        url("https://images.unsplash.com/photo-1550751827-4bd374c3f58b?q=80&w=1800&auto=format&fit=crop") center/cover no-repeat;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 25% 42%, rgba(69, 175, 229, .45), transparent 38%),
        radial-gradient(circle at 75% 40%, rgba(69, 175, 229, .18), transparent 35%),
        linear-gradient(90deg, rgba(69, 175, 229, .72), rgba(69, 175, 229, .76));
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px),
        radial-gradient(rgba(63, 167, 219, .55) 2px, transparent 2px);
    background-size: 90px 90px, 90px 90px, 58px 58px;
    opacity: .55;
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 5;
    max-width: 1350px;
}

@media(max-width:480px) {
    .hero-container {
        max-width: 1370px;
    }
}

.hero-title {
    font-size: 45px;
    line-height: 1.05;
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
}

.hero-subtitle {
    font-size: 28px;
    line-height: 1.18;
    font-weight: 400;
    color: #fff;
    max-width: 620px;
    margin-bottom: 28px;
}

.hero-text {
    color: rgba(255, 255, 255, .88);
    font-size: 18px;
    line-height: 1.55;
    max-width: 520px;
    margin-bottom: 42px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    color: #fff;
    border: 2px solid rgb(69, 175, 229);
    border-radius: 50px;
    padding: 14px 28px;
    min-width: 220px;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    transition: .35s;
}

.hero-btn:hover {
    background: rgb(69, 175, 229);
    color: #fff;
    box-shadow: 0 18px 35px rgba(69, 175, 229, .3);
    transform: translateY(-3px);
}

.down-btn {
    position: absolute;
    left: 110px;
    bottom: 18px;
    width: 30px;
    height: 30px;
    border: 1px solid rgb(69, 175, 229);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 8;
    font-size: 18px;
}

.orange-blob {
    position: absolute;
    right: 62px;
    bottom: -35px;
    width: 72px;
    height: 72px;
    background: rgb(69, 175, 229);
    border-radius: 50%;
    z-index: 3;
}


@media(max-width:1200px) {
    .hero-title {
        font-size: 52px;
    }
}

@media(max-width:992px) {
    .hero-section {
        min-height: auto;
        padding: 0;
    }

    .hero-content {
        text-align: center;
    }

    .hero-text,
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .down-btn {
        left: 35px;
    }
}

@media(max-width:768px) {
    .hero-title {
        font-size: 44px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .hero-text {
        font-size: 16px;
    }

    .slider-area {
        height: 400px;
    }

    .decor-square,
    .decor-dots {
        display: none;
    }
}

.center-visual {
    margin-left: auto;
}


@media(max-width:480px) {
    .hero-section {
        padding: 0;
        min-height: 480px;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 21px;
    }

    .hero-btn {
        width: 100%;
    }

    .slider-area {
        height: 400px;
    }

    .down-btn {
        left: 20px;
    }
}


.center-visual {
    z-index: 2;
}

.main-img {
    width: 100%;
    height: 570px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
}

.floating-logo {
    position: absolute;
    right: -45px;
    bottom: -35px;
    width: 160px;
    height: 110px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(14px);
    border-radius: 35px;
    box-shadow: 0 18px 40px rgba(0, 87, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(10deg);
}

.floating-logo2 {
    position: absolute;
    left: -45px;
    bottom: -35px;
    width: 160px;
    height: 110px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(14px);
    border-radius: 35px;
    box-shadow: 0 18px 40px rgba(0, 87, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(10deg);
}

.floating-logo span,
.floating-logo2 span {
    color: var(--blue);
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
}


/* pourquoi choisir */
.choose-wrapper {
    position: relative;
    background: #fff;
    padding-bottom: 140px;
}

.choose-wrapper2 {
    position: relative;
    background: #fff;
    padding-bottom: 20px;
}

.choose-section {
    position: relative;
    background: rgb(69, 175, 229);
    min-height: 595px;
    padding: 70px 0 120px;
    overflow: visible;
}

.domain-section {
    position: relative;
    background: rgb(69, 175, 229);
    padding: 70px 0 120px;
    overflow: visible;
}

.choose-container {
    max-width: 1160px;
    position: relative;
    z-index: 5;
}

.portfolio-box {
    position: relative;
    background: #fff;
    padding: 10px;
    border-radius: 0;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    min-height: 600px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 14px;
}

.portfolio-item {
    height: 100%;
    overflow: hidden;
    background: #ddd;
}

.portfolio-item.large {
    height: 100%;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 580px;
}

.speed-card {
    position: absolute;
    left: -22px;
    bottom: -22px;
    width: 205px;
    min-height: 248px;
    background: rgba(0, 0, 0, 0.72);
    border-radius: 4px;
    padding: 28px 26px;
    z-index: 10;
    color: #fff;
}

.progress-ring {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, rgba(0, 0, 0, 0.6) 55%, transparent 56%),
        conic-gradient(#45afe5 0 342deg, rgba(255, 255, 255, 0.18) 342deg 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #45afe5;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 22px;
}

.speed-title {
    font-size: 24px;
    line-height: 1.15;
    font-weight: 600;
    margin-bottom: 28px;
}

.speed-text {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.right-content {
    padding-left: 20px;
    padding-top: 5px;
}

.label-orange {
    color: #45afe5;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.choose-title {
    font-size: 25px;
    line-height: 1.2;
    font-weight: 500;
    color: #fff;
    margin-bottom: 26px;
}

.choose-title span {
    color: #59e1df;
    font-weight: 700;
}

.accordion-custom {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: rgba(255, 255, 255, 0.22);
    --bs-accordion-btn-focus-box-shadow: none;
    --bs-accordion-active-bg: transparent;
    --bs-accordion-active-color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.accordion-custom .accordion-item {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.accordion-custom .accordion-button {
    background: transparent;
    color: #fff;
    padding: 15px 0;
    font-size: 16px;
    font-weight: 400;
    box-shadow: none;
}

.accordion-custom .accordion-button::after {
    filter: brightness(0) invert(1);
    width: 14px;
    height: 14px;
    background-size: 14px;
}

.accordion-custom .accordion-button:not(.collapsed) {
    color: #fff;
    box-shadow: none;
}

.accordion-title {
    display: flex;
    align-items: center;
    gap: 14px;
}

.accordion-title i {
    font-size: 17px;
    color: #fff;
}

.partners-banner {
    position: absolute;
    left: 50%;
    bottom: -140px;
    transform: translateX(-50%);
    width: 54%;
    min-height: 235px;
    border-radius: 12px;
    overflow: hidden;
    z-index: 20;
    background: url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?q=80&w=1400&auto=format&fit=crop') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.partners-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 15, 35, 0.66);
    z-index: 1;
}

.partners-content {
    position: relative;
    z-index: 2;
    padding: 30px;
}

.partners-title {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.partners-title span {
    color: #59e1df;
}

.partners-text {
    font-size: 18px;
    color: #fff;
    margin: 0;
}

.chat-btn {
    position: fixed;
    right: 70px;
    bottom: 38px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #4dc247;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 8px 18px rgba(244, 90, 42, 0.35);
    z-index: 999;
}

@media(max-width:1200px) {
    .choose-title {
        font-size: 36px;
    }

    .partners-banner {
        width: 65%;
    }
}

@media(max-width:992px) {
    .choose-section {
        padding: 70px 0 180px;
    }

    .portfolio-box {
        margin-top: 0;
        padding: 5px;
        min-height: auto;
    }

    .right-content {
        padding-left: 0;
        margin-top: 10px;
    }

    .partners-banner {
        width: 82%;
        bottom: -90px;
    }

    .main-container {
        padding: 0;
    }
}


@media(max-width:768px) {
    .choose-section {
        padding: 55px 18px 180px;
    }

    .portfolio-box {
        padding: 5px;
        min-height: auto;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .portfolio-item,
    .portfolio-item.large {
        height: 300px;
    }

    .portfolio-item img {
        object-fit: cover;
        min-height: 100%;
    }

    .right-content {
        padding-left: 0;
        margin-top: 10px;
    }

    .speed-card {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        margin-top: 18px;
    }

    .choose-title {
        font-size: 30px;
    }

    .partners-banner {
        width: 90%;
        min-height: 200px;
    }

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

    .partners-text {
        font-size: 15px;
    }

    .chat-btn {
        right: 22px;
        bottom: 24px;
    }

    .main-container {
        padding: 0;
    }
}

@media(max-width:480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .choose-title {
        font-size: 27px;
    }

    .right-content {
        padding-left: 0;
        margin-top: 10px;
    }

    .main-container {
        padding: 0;
    }
}

/* ABOUT */

.why-section {
    background: #45afe5;
    min-height: auto;
    padding: 34px 0;
    color: #fff;
}

/* .main-container {
    max-width: 1160px;
} */

.why-label {
    color: #45afe5;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.why-title {
    font-size: 25px;
    line-height: 1.25;
    font-weight: 500;
    color: #fff;
}

.why-title span {
    color: #59e1df;
    font-weight: 700;
}

.accordion-custom {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: rgba(255, 255, 255, 0.22);
    --bs-accordion-btn-focus-box-shadow: none;
    --bs-accordion-active-bg: transparent;
    --bs-accordion-active-color: #fff;
}

.accordion-custom .accordion-item {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.accordion-custom .accordion-button {
    background: transparent;
    color: #fff;
    box-shadow: none;
    padding: 12px 0;
    font-size: 17px;
    font-weight: 400;
}

.accordion-custom .accordion-button::after {
    filter: brightness(0) invert(1);
    width: 12px;
    height: 12px;
    background-size: 12px;
}

.accordion-custom .accordion-body {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    line-height: 1.55;
    padding: 0 0 16px 36px;
}

.accordion-title {
    display: flex;
    align-items: center;
    gap: 16px;
}

.accordion-title i {
    font-size: 18px;
    color: #fff;
}

.institution-section {
    background: #f5f5f5;
    padding: 38px 0 65px;
}

.intro-title {
    font-size: 19px;
    line-height: 1.25;
    font-weight: 400;
    color: #222;
    margin-bottom: 12px;
}

.intro-text {
    color: #333;
    font-size: 12px;
    line-height: 1.65;
    margin-bottom: 24px;
    max-width: 360px;
}

.training-img {
    width: 100%;
    height: 158px;
    object-fit: cover;
    display: block;
    margin-bottom: 14px;
}

.info-card {
    background: #fff;
    border-left: 3px solid #45afe5;
    padding: 18px 20px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
    margin-bottom: 20px;
}

.info-card.big {
    padding: 20px 22px;
}

.info-title {
    color: #45afe5;
    font-size: 19px;
    line-height: 1.2;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: .3px;
}

.info-text {
    color: #222;
    font-size: 12px;
    line-height: 1.75;
    margin-bottom: 12px;
}

.info-text:last-child {
    margin-bottom: 0;
}

@media(max-width:992px) {
    .why-section {
        padding: 50px 18px;
    }

    .why-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .institution-section {
        padding: 50px 18px;
    }

    .intro-text {
        max-width: 100%;
    }

    .right-cards {
        margin-top: 20px;
    }
}

@media(max-width:576px) {
    .why-title {
        font-size: 24px;
    }

    .accordion-custom .accordion-button {
        font-size: 15px;
    }

    .info-title {
        font-size: 17px;
    }
}


/* =====================================================
       NOS SERVICES
    ====================================================== */
.cards-container {
    padding-top: 40px;
    padding-bottom: 40px;
    position: relative;
    z-index: 10;
}

.service-card {
    height: 100%;
    border-radius: 0 38px 38px 38px;
    padding: 10px 14px 18px;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* Card Variants */

.card-orange {
    background: #3FA7DB;
    color: #fff;
}

.card-border {
    background: #fff;
    border: 1.5px solid #45afe5;
    color: #111;
}

.service-card .card-gray:hover {
    background: #f1f1f1;
    color: #111;
    border-radius: 0 38px 38px 38px;
    padding: 10px;
    transition: 1s;
    cursor: pointer;
}

/* Icon */

.service-top {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 22px;
}

.icon-box {
    min-width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.card-orange .icon-box {
    background: #fff;
    color: #45afe5;
}

.card-border .icon-box,
.card-gray .icon-box {
    background: #45afe5;
    color: #fff;
}

/* Titles */

.service-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.service-subtitle {
    font-size: 15px;
    line-height: 1.7;
    font-weight: 400;
}

.card-orange .service-subtitle {
    color: rgba(255, 255, 255, 0.88);
}

.card-border .service-subtitle,
.card-gray .service-subtitle {
    color: #666;
}

/* Divider */

.service-divider {
    width: 100%;
    height: 1px;
    margin: 24px 0 20px;
}

.card-orange .service-divider {
    background: rgba(255, 255, 255, 0.35);
}

.card-border .service-divider,
.card-gray .service-divider {
    background: #cfcfcf;
}

/* Description */

.service-description {
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 28px;
}

.card-orange .service-description {
    color: rgba(255, 255, 255, 0.94);
}

.card-border .service-description,
.card-gray .service-description {
    color: #333;
}

/* Button */

.service-btn {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.card-orange .service-btn {
    background: #fff;
    color: #45afe5;
}

.card-border .service-btn,
.card-gray .service-btn {
    background: #45afe5;
    color: #fff;
}

.service-btn:hover {
    transform: translateY(-2px);
}

/* =====================================================
       RESPONSIVE
    ====================================================== */

@media(max-width:992px) {
    .service-card {
        margin-bottom: 25px;
    }
}

@media(max-width:768px) {
    .cards-container {
        padding: 0 18px;
    }

    .service-card {
        border-radius: 0 28px 28px 28px;
    }
}

@media(max-width:480px) {

    .service-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-btn {
        width: 100%;
        text-align: center;
    }
}






/* =====================================================
       SECTION
    ====================================================== */

.pricing-section {
    position: relative;
    padding: 40px 0 80px;
    background: #fff;
    overflow: hidden;
}

.pricing-container {
    position: relative;
    z-index: 5;
}

/* =====================================================
       HEADER
    ====================================================== */


.section-header {
    width: 50%;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 70px;
}

@media (max-width: 768px) {
    .section-header {
        width: 90%;
    }
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #a8b7d6;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-tag::before,
.section-tag::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #45afe5;
}


/* =====================================================
       PRICING CARDS
    ====================================================== */

.pricing-card {
    position: relative;
    background: #fff;
    border-radius: 18px;
    /* padding:0 28px 40px; */
    min-height: 600px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

/* Decorative shapes */

.pricing-card::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: #eef5ff;
    top: -70px;
    right: -40px;
    z-index: 1;
}

.pricing-card::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #eef5ff;
    bottom: -45px;
    left: -30px;
    z-index: 1;
}

.card-content {
    position: relative;
    z-index: 5;
}

.card-content img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* Badge */

.plan-badge {
    position: absolute;
    top: 18px;
    left: 0;
    padding: 10px 18px;
    border-radius: 0 12px 12px 0;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 10;
}

.badge-light-blue {
    background: #45afe5;
}

.badge-blue {
    background: #45afe5;
}

.badge-orange {
    background: #45afe5;
}

/* Illustration */

.plan-illustration {
    width: 110px;
    height: 110px;
    margin: 40px auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
}

.plan-illustration img {
    width: 100%;
    object-fit: contain;
}

/* Price */

.plan-price {
    font-size: 56px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 12px;
}

.price-light-blue {
    color: #45afe5;
}

.price-blue {
    color: #45afe5;
}

.price-orange {
    color: #45afe5;
}

.plan-subprice {
    color: #a1afd0;
    font-size: 15px;
    margin-bottom: 35px;
    font-weight: 500;
}

.divider {
    width: 100%;
    height: 1px;
    background: #e8e8e8;
    margin-bottom: 34px;
}

/* Services */

.service-list li {
    color: #666;
    font-size: 15px;
    line-height: 2.8;
    font-weight: 400;
}

/* Buttons */

.plan-btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 5px 10px;
    border-radius: 60px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    min-width: 125px;
    justify-content: center;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
    z-index: 20;

}

.plan-btn span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.btn-light-blue {
    background: #45afe5;
}

.btn-light-blue span {
    color: #45afe5;
}

.btn-blue {
    background: #45afe5;
}

.btn-blue span {
    color: #45afe5;
}

.btn-orange {
    background: #45afe5;
}

.btn-orange span {
    color: #45afe5;
}

.section-subtitle {
    text-align: center;
}

/* =====================================================
       RESPONSIVE
    ====================================================== */
@media(max-width:992px) {

    .pricing-card {
        margin-bottom: 55px;
        min-height: auto;
        padding-bottom: 60px;
    }
}

@media(max-width:768px) {

    .pricing-section {
        padding: 80px 18px 70px;
    }

    .card-content img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .plan-price {
        font-size: 46px;
    }
}

@media(max-width:480px) {

    .section-title {
        font-size: 30px;
    }

    /* .pricing-card {
        padding: 0 20px 60px;
    } */

    .plan-btn {
        width: 80%;
    }
}

/* ABOUT */
.why-section {
    background: #45afe5;
    min-height: 285px;
    padding: 34px 0;
    color: #fff;
}

.why-label {
    color: #45afe5;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.why-title {
    font-size: 25px;
    line-height: 1.25;
    font-weight: 500;
    color: #fff;
}

.why-title span {
    color: #45afe5;
    font-weight: 700;
}

.accordion-custom {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: rgba(255, 255, 255, 0.22);
    --bs-accordion-btn-focus-box-shadow: none;
    --bs-accordion-active-bg: transparent;
    --bs-accordion-active-color: #fff;
}

.accordion-custom .accordion-item {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.accordion-custom .accordion-button {
    background: transparent;
    color: #fff;
    box-shadow: none;
    padding: 12px 0;
    font-size: 17px;
    font-weight: 400;
}

.accordion-custom .accordion-button::after {
    filter: brightness(0) invert(1);
    width: 12px;
    height: 12px;
    background-size: 12px;
}


.accordion-title {
    display: flex;
    align-items: center;
    gap: 16px;
}

.accordion-title i {
    font-size: 18px;
    color: #fff;
}

.institution-section {
    background: #f5f5f5;
    padding: 38px 0 65px;
}

.intro-title {
    font-size: 19px;
    line-height: 1.25;
    font-weight: 400;
    color: #222;
    margin-bottom: 12px;
}

.intro-text {
    color: #333;
    font-size: 12px;
    line-height: 1.65;
    margin-bottom: 24px;
    max-width: 360px;
}

.training-img {
    width: 100%;
    height: 158px;
    object-fit: cover;
    display: block;
    margin-bottom: 14px;
}

.info-card.big {
    padding: 20px 22px;
}

.info-title {
    color: #45afe5;
    font-size: 19px;
    line-height: 1.2;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: .3px;
}

.info-text {
    color: #222;
    font-size: 12px;
    line-height: 1.75;
    margin-bottom: 12px;
}

.info-text:last-child {
    margin-bottom: 0;
}

@media(max-width:992px) {
    .why-section {
        padding: 50px 18px;
    }

    .why-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .institution-section {
        padding: 50px 18px;
    }

    .intro-text {
        max-width: 100%;
    }

    .right-cards {
        margin-top: 20px;
    }
}

@media(max-width:576px) {
    .why-title {
        font-size: 24px;
    }

    .accordion-custom .accordion-button {
        font-size: 15px;
    }

    .info-title {
        font-size: 17px;
    }
}

/* CONTACT */

/* CONTACT TOP */

.contact-section {
    padding: 60px 0;
}

/* CONTACT CARD */

.contact-card {

    box-shadow: 0 10px 25px rgba(88, 87, 87, 0.1);

    padding: 30px;

    border-radius: 10px;

    transition: 0.3s;

    height: 100%;

}

.contact-card i {

    font-size: 28px;

    color: #45afe5;

    margin-bottom: 10px;

}

.contact-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);

}


/* QUESTION BOX */

.question-box {

    background: linear-gradient(120deg, rgba(69, 175, 229, .94), rgba(69, 175, 229, .82));

    border-radius: 12px;

    padding: 40px;

    color: white;

    position: relative;

    overflow: hidden;

    min-height: 465px;

}

.question-box img {
    width: 200px;
    height: 200px;
    object-fit: cover;
}

.question-text {
    max-width: 300px;
}

.agent {

    position: absolute;

    right: 0;

    bottom: 0;

    height: 260px;

}


/* FORM SECTION */

.contact-form {


    padding: 50px 0;

}


/* INPUT STYLE */

.form-control {

    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
    outline: none;
}

input {
    outline: none;
}

/* MAP */

.map iframe {

    width: 100%;

    height: 340px;

    border: 0;

    border-radius: 10px;

}





/* =========================================
       FOOTER
========================================== */
.footer-section {
    position: relative;
    background: #000;
    padding-top: 70px;
    overflow: hidden;
}

.footer-container {
    position: relative;
    z-index: 5;
}

/* Background Shapes */
.footer-shape-left {
    position: absolute;
    width: 520px;
    height: 520px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 45%;
    left: -180px;
    top: 120px;
    z-index: 1;
}

.footer-shape-right {
    position: absolute;
    width: 460px;
    height: 460px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    right: -150px;
    bottom: -80px;
    z-index: 1;
}


/* =========================================
       NEWSLETTER
    ========================================== */

.newsletter-wrapper {
    /* position: absolute;
    top: -120px; 
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 20;
    padding: 0 20px; */

    position: absolute;
    left: 50%;
    top: -170px;
    transform: translateX(-50%);
    width: 54%;
    min-height: 235px;
    border-radius: 12px;
    overflow: hidden;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.newsletter-card {
    max-width: 920px;
    margin: auto;
    background: linear-gradient(90deg, #4c43ff 0%, #45afe5 100%);
    border-radius: 18px;
    padding: 42px 45px;
    box-shadow: 0 25px 45px rgba(255, 84, 62, 0.28);
    position: relative;
    overflow: hidden;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-left {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    color: #fff;
}

.rocket-icon {
    font-size: 38px;
    line-height: 1;
    margin-top: 3px;
}

.newsletter-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.1;
}

.newsletter-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.8;
    max-width: 360px;
}

/* Newsletter Form */

.newsletter-form {
    width: 100%;
    max-width: 430px;
    background: #fff;
    border-radius: 60px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.newsletter-input {
    border: none;
    outline: none;
    width: 100%;
    padding: 0 18px;
    font-size: 15px;
    color: #444;
    background: transparent;
}

.newsletter-input::placeholder {
    color: #9f9f9f;
}

.newsletter-btn {
    border: none;
    background: #45afe5;
    color: #fff;
    border-radius: 50px;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    transition: 0.3s;
}

.newsletter-btn:hover {
    background: #45afe5;
}

.newsletter-btn span {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* =========================================
       FOOTER CONTENT
    ========================================== */

.footer-content {
    padding-bottom: 70px;
    position: relative;
    z-index: 5;
}

.footer-logo {
    font-size: 42px;
    font-weight: 800;
    line-height: 0.95;
    color: #45afe5;
    margin-bottom: 28px;
}

.footer-logo span {
    color: #fff;
    display: block;
    font-size: 26px;
    letter-spacing: 1px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 2;
    font-size: 15px;
    max-width: 300px;
    margin-bottom: 30px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    color: #45afe5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: 0.3s;
}

.social-icons a:hover {
    transform: translateY(-4px);
}

.footer-title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 28px;
}

.footer-contact li,
.footer-services li {
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    line-height: 2.2;
    margin-bottom: 2px;
}

.footer-contact strong {
    color: #fff;
    font-weight: 600;
}

.footer-contact a {
    color: #fff;
}

.footer-services li {
    transition: 0.3s;
    cursor: pointer;
}

.footer-services li:hover {
    transform: translateX(6px);
}

/* =========================================
       GALLERY
    ========================================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.gallery-item {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* =========================================
       COPYRIGHT
    ========================================== */

.copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 24px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    position: relative;
    z-index: 5;
}

/* =========================================
       RESPONSIVE
    ========================================== */

@media(max-width:1199px) {

    .newsletter-title {
        font-size: 28px;
    }
}

@media(max-width:991px) {

    .footer-section {
        padding-top: 70px;
    }

    .newsletter-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .newsletter-form {
        max-width: 100%;
    }

    .footer-column {
        margin-bottom: 10px;
    }
}

@media(max-width:767px) {

    .footer-section {
        padding-top: 70px;
    }

    .newsletter-card {
        padding: 35px 24px;
    }

    .newsletter-left {
        flex-direction: column;
        gap: 18px;
    }

    .newsletter-title {
        font-size: 24px;
    }

    .newsletter-form {
        flex-direction: column;
        border-radius: 22px;
        padding: 16px;
    }

    .newsletter-input {
        width: 100%;
        height: 50px;
        padding: 0 10px;
    }

    .newsletter-btn {
        width: 100%;
        justify-content: center;
    }

    .footer-logo {
        font-size: 36px;
    }

    .footer-logo span {
        font-size: 22px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}






.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    z-index: 20;
    cursor: pointer;
    transition: 0.3s;
    backdrop-filter: blur(4px);
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.32);
}

.slider-prev {
    left: 16px;
}

.slider-next {
    right: 16px;
}

/* PROFILE */
.followers-card {
    width: 860px;
    max-width: 100%;
    background: #fff;
    border: 1px solid #eef1f6;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 30px;
    margin-bottom: 30px;
}

.followers-header {
    height: 57px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(120deg, rgba(69, 175, 229, .94), rgba(69, 175, 229, .82));
}

.followers-title {
    margin: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

.followers-link {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}

.followers-link:hover {
    color: #fff;
    text-decoration: underline;
    text-decoration: none;
}

.followers-row {
    border-bottom: 3px solid #f3f5f9;
}

.followers-row:last-child {
    border-bottom: none;
}

.follower-item {
    min-height: 192px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 22px 12px;
}

.follower-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.15);
    margin-bottom: 13px;
    background: #fff;
}

.follower-name {
    color: rgba(69, 175, 229, .94);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.follower-desc {
    color: #6b7a90;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;
    margin: 0;
}

@media (max-width: 991px) {
    .followers-row {
        border-bottom: none;
    }

    .follower-item {
        min-height: 178px;
        border-bottom: 3px solid #f3f5f9;
    }
}

@media (max-width: 575px) {
    .followers-header {
        padding: 0 14px;
    }

    .followers-title {
        font-size: 17px;
    }

    .followers-link {
        font-size: 14px;
    }

    .follower-item {
        min-height: 165px;
    }

    .follower-img {
        width: 78px;
        height: 78px;
    }
}

@media (max-width: 360px) {
    .followers-title {
        font-size: 15px;
    }

    .followers-link {
        font-size: 13px;
    }

    .follower-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* SHOW PROFILE */

.profile-card {
    width: 650px;
    background: #fff;
    border: 1px solid #dee2e6;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.08);
    position: relative;
}

.cover-img {
    width: 100%;
    height: 193px;
    object-fit: cover;
    display: block;
    filter: brightness(0.75);
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #fff;
    position: absolute;
    top: 108px;
    left: 20px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
    background: #fff;
}

.profile-body {
    padding: 94px 20px 38px;
}

.profile-name {
    font-size: 24px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.verified {
    color: #45afe5;
    font-size: 16px;
}

.profile-job {
    color: #374151;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 4px;
}

.profile-location {
    color: #9aa7b8;
    font-size: 16px;
    margin-bottom: 16px;
}

.profile-btn {
    min-width: 88px;
    height: 32px;
    border: 1px solid #dee2e6;
    background: #fff;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(15, 23, 42, 0.08);
}

.btn-follow {
    color: #45afe5;
}

.btn-message {
    color: #374151;
}

.company-list {
    padding-top: 2px;
    padding-left: 10px;
}

.company-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 17px;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.company-icon {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 28px;
}

.followers-icon {
    background: #6b7c90;
    color: #fff;
    border-radius: 50%;
    font-size: 22px;
}

.google-icon {
    font-weight: 700;
    font-size: 28px;
    font-family: Arial, sans-serif;
    background: conic-gradient(from -35deg,
            #4285f4 0deg 90deg,
            #34a853 90deg 170deg,
            #AB2E28 170deg 250deg,
            #AB2E28 250deg 360deg);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.apple-icon {
    color: #b5c0cd;
}

.hp-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #45afe5;
    color: #fff;
    font-style: italic;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -2px;
    font-family: Arial, sans-serif;
}

@media (max-width: 767px) {
    .profile-card {
        width: 100%;
        max-width: 430px;
    }

    .cover-img {
        height: 170px;
    }

    .profile-img {
        width: 130px;
        height: 130px;
        left: 50%;
        top: 105px;
        transform: translateX(-50%);
    }

    .profile-body {
        padding: 82px 18px 32px;
        text-align: center;
    }

    .profile-name {
        justify-content: center;
        font-size: 22px;
    }

    .profile-job,
    .profile-location {
        font-size: 14px;
    }

    .btn-group-custom {
        justify-content: center;
    }

    .company-list {
        padding-left: 0;
        margin-top: 30px;
        display: inline-block;
        text-align: left;
    }
}

/* Slider Arrows */

.heroSwiper {
    width: 100%;
    position: relative;
    z-index: 5;
}

.heroSwiper .swiper-slide {
    display: flex;
    align-items: center;

}

.slider-area {
    position: relative;

}

.center-visual {
    position: relative;


}

@media(max-width: 992px) {
    .heroSwiper .swiper-slide {
        min-height: auto;
    }

    .center-visual {
        margin: 0 auto 0;
    }
}

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

/* CARD 1 */
.id-card {
    position: relative;
    width: 640px;
    height: 410px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .15);
    font-family: 'Oswald', Arial, sans-serif;
    color: #111;
}

.blue-band {
    position: absolute;
    left: -10px;
    bottom: -12px;
    width: 110%;
    height: 112px;
    background: #45afe5;
    clip-path: polygon(0 0, 100% 48%, 100% 100%, 0 100%);
    z-index: 1;
}

.watermark {
    position: absolute;
    width: 265px;
    height: 265px;
    border-radius: 50%;
    left: 112px;
    top: 55px;
    opacity: .08;
    z-index: 2;
    border: 2px solid #999;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 120px;
    transform: rotate(-12deg);
}

.watermark::before {
    content: '';
    position: absolute;
    width: 215px;
    height: 215px;
    border-radius: 50%;
    border: 18px solid #45afe5;
    opacity: .45;
}

.watermark::after {
    content: 'SYCODIP';
    position: absolute;
    bottom: 30px;
    font-size: 26px;
    font-weight: 700;
    color: #45afe5;
    letter-spacing: 4px;
}

.card-content {
    position: relative;
    z-index: 5;
    width: 100%;
    height: 100%;
}

.header-text {
    text-align: center;
    padding-top: 22px;
    line-height: 1.05;
}

.country {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 900;
    color: #202020;
}

.syndicat {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: #45afe5;
}

.sycodip {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: #45afe5;
    margin-top: 4px;
    letter-spacing: 1px;
}

.sycodip .star {
    font-size: 17px;
    vertical-align: middle;
    margin: 0 8px;
}

.flag {
    position: absolute;
    right: 0;
    top: 19px;
    width: 76px;
    height: 56px;
    background: #3d7dc4;
    overflow: hidden;
}

.flag::before {
    content: '';
    position: absolute;
    width: 140px;
    height: 14px;
    background: #ffdf22;
    transform: rotate(-35deg);
    left: -28px;
    top: 23px;
}

.flag::after {
    content: '';
    position: absolute;
    width: 140px;
    height: 8px;
    background: #ef3b35;
    transform: rotate(-35deg);
    left: -28px;
    top: 26px;
}

.flag-star {
    position: absolute;
    left: 9px;
    top: 5px;
    color: #ffdf22;
    font-size: 20px;
    z-index: 4;
}

.info-block {
    position: absolute;
    left: 63px;
    top: 125px;
    z-index: 6;
}

.info-row {
    display: grid;
    grid-template-columns: 82px 18px 1fr;
    align-items: center;
    font-size: 21px;
    line-height: 1.75;
    color: #111;
}

.label {
    font-weight: 400;
}

.colon {
    font-weight: 700;
    text-align: center;
}

.value {
    font-weight: 700;
}

.photo-box {
    position: absolute;
    right: 60px;
    top: 104px;
    width: 194px;
    height: 194px;
    border: 3px solid #45afe5;
    background: #fff;
    z-index: 6;
    overflow: hidden;
}

.photo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.qr-box {
    position: absolute;
    left: 150px;
    top: 240px;

    width: 130px !important;
    height: 130px !important;

    background: #fff;
    padding: 5px;

    z-index: 999;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 5px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}

.qr-box img {
    width: 100% !important;
    height: 100% !important;

    max-width: none !important;
    max-height: none !important;

    object-fit: contain;
    display: block;
}

/* .qr-grid {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(13, 1fr);
    grid-template-rows: repeat(13, 1fr);
    gap: 2px;
    background: #fff;
} */

.qr-grid span {
    background: #222;
}

.footer-email {
    position: absolute;
    right: 111px;
    bottom: 28px;
    z-index: 8;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
}

.footer-email i {
    font-size: 30px;
}



.floating-download {
    position: fixed;
    right: 25px;
    bottom: 100px;
    z-index: 9999;
    font-family: 'Montserrat', sans-serif;
}

.download-main {
    background: #ef3b35;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 22px;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 15px 35px rgba(239, 59, 53, .35);
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.download-menu {
    position: absolute;
    right: 0;
    bottom: 62px;
    width: 230px;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
    display: none;
}

.download-menu.show {
    display: block
}

.download-menu button {
    width: 100%;
    border: none;
    background: #fff;
    padding: 14px 18px;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    color: #111;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: .25s;
}

.download-menu button:hover {
    background: #f4f8ff;
    color: #ef3b35;
}

@media(max-width:700px) {
    .card-scale {
        width: 100%;
        max-width: 640px;
        aspect-ratio: 640/410;
        position: relative;
    }

    .id-card {
        transform-origin: top left;
        position: absolute;
        left: 0;
        top: 0;
    }

    .floating-download {
        right: 15px;
        bottom: 15px;
    }

    .download-main {
        padding: 12px 18px;
    }
}

/* CARD 2 */

.member-card2 {
    position: relative;
    width: 640px;
    height: 410px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .15);
}

.card-content2 {
    position: relative;
    z-index: 5;
    height: 100%;
    text-align: center;
    padding: 34px 28px 0;
}

.country2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.1;
    font-weight: 900;
    color: #222;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.syndicat2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    line-height: 1.02;
    font-weight: 900;
    color: #45afe5;
    text-transform: uppercase;
    margin-bottom: 38px;
}

.seal2 {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    margin: 0 auto 28px;
    position: relative;
    border: 8px solid rgba(33, 96, 155, .45);
    background: #f5f0e5;
    box-shadow: 0 0 0 4px rgba(40, 70, 130, .18);
    opacity: .78;
    filter: blur(.6px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.seal2::before {
    content: 'SYCODIP';
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%) rotate(8deg);
    color: #45afe5;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1px;
}

.seal2::after {
    content: 'Kinshasa • Goma • Lubumbashi';
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    color: #45afe5;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.seal-inner2 {
    width: 88px;
    height: 88px;
    border: 4px solid rgba(40, 70, 130, .55);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #354f96;
    font-size: 56px;
    margin-top: 35px;
}

.seal-star2 {
    position: absolute;
    color: #45afe5;
    font-size: 30px;
    top: 94px;
}

.seal-star2.left {
    left: 34px;
}

.seal-star2.right {
    right: 34px;
}

.card-title2 {
    font-family: 'Montserrat', sans-serif;
    color: #AB2E28;
    font-size: 36px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.description2 {
    color: #111;
    font-size: 17px;
    line-height: 1.12;
    font-weight: 400;
    margin: 0 auto;
    max-width: 345px;
}

.bottom-red2 {
    position: absolute;
    left: 0;
    bottom: 55px;
    width: 100%;
    height: 78px;
    background: #45afe5;
    clip-path: polygon(0 28%, 100% 96%, 100% 100%, 0 100%);
    z-index: 2;
}

.bottom-blue2 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 110px;
    background: #45afe5;
    z-index: 3;
}

.footer-email2 {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 32px;
    z-index: 8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
}

.footer-email2 i {
    font-size: 29px;
}

@media(max-width:460px) {
    .member-card2 {
        width: 100%;
        max-width: 405px;
        aspect-ratio: 380/550;
        height: auto;
    }

    .card-content2 {
        padding: 8.4% 6.9% 0;
    }

    .country2 {
        font-size: 3.9vw;
    }

    .syndicat2 {
        font-size: 4.9vw;
        margin-bottom: 9vw;
    }

    .seal2 {
        width: 54vw;
        height: 54vw;
        max-width: 220px;
        max-height: 220px;
        margin-bottom: 7vw;
    }

    .card-title2 {
        font-size: 8.8vw;
    }

    .description2 {
        font-size: 4.1vw;
    }

    .footer-email2 {
        bottom: 5vw;
        font-size: 4vw;
    }
}


/* PARTENAIRE */
.bloc_partenaire {
    padding-top: 15px;
}

/* apropos */
.partenairesSwiper {
    /* border-top: 1px solid #000; */
    padding-bottom: 30px;
}

.write-container {
    font-size: 40px;
    /* font-family: cursive; */
    position: relative;
    display: inline-block;
    margin-top: 15px;
}

.text,
.text2 {
    padding-right: 5px;
    color: #45afe5;
    font-weight: bold;
    font-family: "Helvetica", Sans-serif;
}

.hand,
.hand2 {
    position: absolute;
    top: -10px;
    left: 0;
    font-size: 45px;
    transition: left 0.15s linear;
}


/*********************************
7. partenaire
*********************************/
.logo-slider {
    max-height: 150px;
    object-fit: contain;
    filter: grayscale(0%);
    transition: 0.3s;
}

.logo-slider:hover {
    transform: scale(1.05);
}

/* espace pour pagination */
.swiper {
    padding-bottom: 40px;
}

.swiper-button-next,
.swiper-button-prev {
    width: 30px;
    height: 30px;
    text-align: center;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 30px !important;
}

.swiper-button-next,
.swiper-button-prev {
    transform: scale(0.7);
    text-align: center;
}

.swiper-pagination {
    position: relative !important;
    margin-top: 20px !important;
}

.bloc_partenaire {
    padding-top: 15px;
}

.trust-section {
    position: relative;
    padding: 110px 0;
    background: #eee;
    overflow: hidden;
}

.container-custom {
    max-width: 1200px;
    position: relative;
    z-index: 3;
}

/* Decorative Background Shapes */

.shape-left {
    position: absolute;
    width: 320px;
    height: 320px;
    background: #eef5fd;
    border-radius: 45% 55% 60% 40%;
    left: -140px;
    top: 60px;
    z-index: 1;
}

.shape-right {
    position: absolute;
    width: 360px;
    height: 360px;
    background: #eef5fd;
    border-radius: 50%;
    right: -160px;
    top: 120px;
    z-index: 1;
}

.line-shape {
    position: absolute;
    width: 750px;
    height: 380px;
    border: 1px solid rgba(64, 191, 245, 0.08);
    border-radius: 50%;
    left: -180px;
    bottom: -170px;
    z-index: 1;
}

.line-shape-2 {
    position: absolute;
    width: 650px;
    height: 340px;
    border: 1px solid rgba(64, 191, 245, 0.08);
    border-radius: 50%;
    right: -180px;
    top: 90px;
    z-index: 1;
}

/* Decorative dots */

.dot {
    position: absolute;
    border-radius: 50%;
    z-index: 2;
}

.dot-blue {
    background: #45afe5;
}

.dot-orange {
    background: #45afe5;
}

.dot-sm {
    width: 6px;
    height: 6px;
}

.dot-md {
    width: 9px;
    height: 9px;
}

.dot1 {
    top: 160px;
    left: 38%;
}

.dot2 {
    top: 310px;
    left: 48%;
}

.dot3 {
    bottom: 120px;
    left: 18%;
}

.dot4 {
    top: 180px;
    right: 22%;
}

.dot5 {
    bottom: 150px;
    right: 40%;
}

.section-tag {
    /* color: #9cb8dc;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 1px;
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      gap: 10px; */
}

.section-tag::before {
    content: '';
    width: 7px;
    height: 7px;
    background: #45afe5;
    border-radius: 50%;
}

.main-title {
    font-size: 28px;
    line-height: 1.08;
    font-weight: 800;
    color: #111;
    max-width: 520px;
    margin-bottom: 40px;
}

/* Tabs */

.custom-tabs {
    display: flex;
    gap: 14px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.custom-tabs .nav-link {
    border: 1px solid #dfe7f1;
    border-radius: 60px;
    /* padding: 10px 24px; */
    padding: 0;
    font-size: 15px;
    font-weight: 600;
    color: #8e9bae;
    background: #fff;
    transition: all .35s ease;
}

.custom-tabs .nav-link.active {
    background: #45afe5;
    border-color: #45afe5;
    color: #fff;
    box-shadow: 0 10px 25px rgba(64, 191, 245, 0.28);
}

/* Tab content animation */

.tab-pane.fade {
    transition: all .4s ease;
}

/* Content */

.argument-block {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 45px;
}

.check-icon {
    min-width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #45afe5;
    margin-top: 2px;
}

.argument-title {
    font-size: 22px;
    color: #444;
    font-weight: 500;
    margin-bottom: 12px;
}

.argument-text {
    color: #666;
    line-height: 1.9;
    font-size: 17px;
    max-width: 520px;
}

/* Contact Info */

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: #f5fbff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #45afe5;
    font-size: 22px;
    flex-shrink: 0;
}

.contact-title {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 6px;
}

.contact-text {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}

.contact-description {
    color: #666;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 35px;
    max-width: 520px;
}

/* Image */

.image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.circle-image {
    width: 560px;
    height: 560px;
    border-radius: 10%;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
}

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

/* Responsive */

@media(max-width:1200px) {

    .main-title {
        font-size: 48px;
    }

    .circle-image {
        width: 480px;
        height: 480px;
    }
}

@media(max-width:992px) {

    .trust-section {
        padding: 90px 0;
    }

    .main-title {
        font-size: 42px;
    }

    .left-content {
        text-align: center;
    }

    .custom-tabs {
        justify-content: center;
    }

    .circle-image {
        width: 430px;
        height: 430px;
        margin-top: 40px;
    }

    .argument-block,
    .contact-item {
        text-align: left;
    }
}

@media(max-width:768px) {

    .trust-section {
        padding: 70px 18px;
    }

    .main-title {
        font-size: 34px;
    }

    .custom-tabs {
        flex-direction: column;
    }

    .custom-tabs .nav-link {
        width: 100%;
    }

    .circle-image {
        width: 320px;
        height: 320px;
    }

    .argument-title {
        font-size: 19px;
    }

    .argument-text,
    .contact-description,
    .contact-text {
        font-size: 15px;
    }
}



/* SHOW POST */

.page-wrapper {
    max-width: 1024px;
    margin: 14px auto 40px;
    padding: 0 6px;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 648px) 325px;
    gap: 38px;
    align-items: start;
}

.article-main {
    border-top: 1px solid var(--border);
    padding-top: 12px;
}

.article-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 24px;
}

.meta {
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.6;
}

.meta-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.meta-time {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding-left: 8px;
    border-left: 1px solid var(--border);
}

.author {
    font-size: 14px;
    color: var(--muted);
    font-weight: 700;
}

.author a {
    color: #425b69;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.share-btn {
    height: 30px;
    padding: 0 9px;
    background: #fff;
    border: 1px solid #cfd8df;
    color: var(--dark);
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.main-image {
    width: 100%;
    height: 365px;
    object-fit: cover;
    display: block;
}

.caption {
    font-size: 12px;
    line-height: 1.45;
    color: #061923;
    margin-top: 4px;
    margin-bottom: 40px;
}

.article-text {
    font-size: 20px;
    line-height: 1.52;
    color: var(--dark);
    font-weight: 400;
}

.article-text a {
    color: var(--dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.sidebar {
    border: 1px solid #111;
    padding: 22px 16px 0;
    background: #fff;
}

.sidebar-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 900;
    margin: 0 0 24px;
    color: #071b26;
    line-height: 1.15;
}

.blue-square {
    width: 16px;
    height: 16px;
    background: var(--blue);
    flex-shrink: 0;
}

.news-item {
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border);
}

.news-item .main-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #dddd;
}

.news-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.news-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.45;
    color: #071b26;
    margin-bottom: 12px;
}

.choose-title span {
    color: #fff;
    font-weight: 500;
}

.category {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 900;
    color: #071b26;
    text-transform: uppercase;
}

.category::before {
    content: "";
    width: 11px;
    height: 11px;
    background: var(--blue);
    display: inline-block;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .page-wrapper {
        max-width: 760px;
        padding: 0 16px;
    }

    .article-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sidebar {
        width: 100%;
    }

}

@media (max-width: 576px) {
    .page-wrapper {
        margin-top: 10px;
        padding: 0 12px;
    }


    .article-top {
        flex-direction: column;
        margin-bottom: 18px;
    }

    .share-btn {
        align-self: flex-start;
    }

    .main-image {
        height: 245px;
    }

    .caption {
        margin-bottom: 28px;
    }

    .article-text {
        font-size: 18px;
    }

    .sidebar {
        padding: 20px 14px 0;
    }

    .sidebar-title {
        font-size: 18px;
    }
}


/* BANNER */

.services-banner {
    position: relative;
    background: #eef6ff;
    height: 245px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Dotted world map effect */
.services-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.95) 1.8px, transparent 1.8px);
    background-size: 10px 10px;
    opacity: 0.7;
    clip-path: polygon(5% 10%, 35% 5%, 60% 10%, 95% 0%, 100% 70%, 85% 100%, 50% 90%, 15% 100%, 0% 60%);
    z-index: 1;
}

/* Decorative diagonal shapes */
.diag {
    position: absolute;
    width: 42px;
    height: 12px;
    border-radius: 30px;
    background: #45afe5;
    transform: rotate(-35deg);
    opacity: 0.8;
    z-index: 2;
}

.diag1 {
    left: 8%;
    bottom: 40px;
}

.diag2 {
    top: 40px;
    left: 29%;
    background: #45afe5;
}

.diag3 {
    right: 31%;
    bottom: 28px;
}

.banner-content {
    position: relative;
    z-index: 5;
}

.banner-title {
    font-size: 45px;
    line-height: 1.1;
    font-weight: 800;
    color: #1f1f25;
    margin-bottom: 22px;
    letter-spacing: -1px;
}

/* Breadcrumb */
.breadcrumb-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
}

.breadcrumb-home {
    color: #45afe5;
}

.breadcrumb-current {
    color: #555;
}

.breadcrumb-icon {
    color: #b7bfd3;
    font-size: 12px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 16px 32px;
    background: transparent;
    color: var(--accent-color);
    border: 2px solid #45afe5;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}


.btn-view-all:hover {
    background: #45afe5;
    color: var(--contrast-color);
    transform: translateY(-2px);
    text-decoration: none;
    box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}


.btn-view-all i {
    transition: transform 0.3s ease;
}

.btn-view-all:hover i,
.btn-view-all:hover i {
    transform: translateX(4px);
}



/* =====================================================
       TEAM SECTION
    ====================================================== */

.team-section {
    position: relative;
    background: #45afe5;
    padding: 40px 0 40px;
    overflow: hidden;
}

.team-section2 {
    position: relative;
    background: #45b0e556;
    padding: 40px 0 40px;
    overflow: hidden;
}

.team-container {
    position: relative;
    z-index: 5;
}

/* =====================================================
       BACKGROUND SHAPES
    ====================================================== */

.shape-left {
    position: absolute;
    width: 520px;
    height: 520px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 45%;
    left: -230px;
    top: 160px;
    z-index: 1;
}

.shape-center {
    position: absolute;
    width: 540px;
    height: 540px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -220px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.shape-right {
    position: absolute;
    width: 520px;
    height: 520px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 45%;
    right: -180px;
    top: 120px;
    z-index: 1;
}

/* Decorative dots */

.dot {
    position: absolute;
    border-radius: 50%;
    background: #40bff5;
    z-index: 2;
}

.dot-sm {
    width: 5px;
    height: 5px;
}

.dot-md {
    width: 7px;
    height: 7px;
}

.dot1 {
    top: 95px;
    left: 44%;
}

.dot2 {
    top: 120px;
    right: 38%;
}

.dot3 {
    bottom: 42px;
    left: 8%;
}

.dot4 {
    bottom: 65px;
    right: 44%;
}

/* =====================================================
       HEADER
    ====================================================== */

.section-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 5;
}

.section-tag2 {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #6fd2ff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.section-tag2::before,
.section-tag2::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #40bff5;
}

.section-title2 {
    color: #fff;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.section-subtitle2 {
    color: rgba(255, 255, 255, 0.92);
    font-size: 17px;
    line-height: 2;
    max-width: 920px;
    margin: auto;
}

/* =====================================================
       TEAM CARDS
    ====================================================== */

.team-card {
    position: relative;
    max-width: 320px;
    margin: auto;
}

.team-image {
    width: 100%;
    height: 390px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.member-info {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -32px;
    width: 86%;
    background: #fff;
    border-radius: 16px;
    padding: 26px 22px 24px;
    text-align: center;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
    z-index: 5;
}

.member-name {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
    text-transform: lowercase;
}

.member-role {
    font-size: 15px;
    color: #777;
    font-weight: 400;
}

.plus-btn {
    position: absolute;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #40bff5;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    right: 34px;
    bottom: -18px;
    box-shadow: 0 10px 20px rgba(64, 191, 245, 0.35);
}

/* =====================================================
       RESPONSIVE
    ====================================================== */

@media(max-width:1200px) {

    .section-title {
        font-size: 48px;
    }
}

@media(max-width:992px) {

    .team-section {
        padding: 80px 0 110px;
    }

    .team-section2 {
        padding: 80px 0 110px;
    }

    .section-title {
        font-size: 42px;
    }

    .team-card {
        margin-bottom: 80px;
    }
}

@media(max-width:768px) {

    .team-section {
        padding: 70px 18px 100px;
    }

    .team-section2 {
        padding: 70px 18px 100px;
    }


    .section-title {
        font-size: 36px;
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .team-image {
        height: 360px;
    }
}

@media(max-width:480px) {

    .section-title {
        font-size: 32px;
    }

    .member-info {
        width: 90%;
    }
}




.modern-input {
    position: relative;
    margin-top: 30px;
}

/* Style commun INPUT + TEXTAREA */
.modern-input input,
.modern-input textarea {
    width: 100%;
    padding: 15px 45px 10px 45px;
    /* espace pour l'icône */
    border: 2px solid #084A69;
    border-radius: 12px;
    background: #f8f9fa;
    outline: none;
    transition: 0.3s;
    font-size: 16px;
}

.modern-input textarea {
    resize: none;
}

.modern-input input:focus,
.modern-input textarea:focus {
    background: #eeedff;
    border-color: #084A69;
    box-shadow: 0px 4px 12px rgba(108, 99, 255, 0.3);
}

/* Label flottant */
.modern-input label {
    position: absolute;
    left: 45px;
    top: 50%;
    transform: translateY(-50%);
    background: #f8f9fa;
    padding: 0 6px;
    font-size: 16px;
    color: #084A69;
    pointer-events: none;
    transition: 0.3s;
}

/* Ajustement pour textarea (le textarea est plus haut) */
.modern-input textarea+label {
    top: 22px;
    transform: none;
}

/* Animation du label */
.modern-input input:focus+label,
.modern-input textarea:focus+label,
.modern-input input:not(:placeholder-shown)+label,
.modern-input textarea:not(:placeholder-shown)+label {
    top: -10px;
    transform: none;
    font-size: 13px;
    color: #084A69;
}

/* Icône interne */
.modern-input .input-icon {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    font-size: 22px;
    color: #084A69;
    pointer-events: none;
}

/* icône textarea (centrage adapté) */
.modern-input textarea~.input-icon {
    top: 22px;
    transform: none;
}


/* Style du SELECT comme un input */
.modern-input select {
    width: 100%;
    padding: 15px 45px 10px 45px;
    border: 2px solid #084A69;
    border-radius: 12px;
    background: #f8f9fa;
    appearance: none;
    /* supprime la flèche classique */
    outline: none;
    transition: 0.3s;
    font-size: 16px;
    cursor: pointer;
}

.modern-input select:focus {
    background: #eeedff;
    border-color: #084A69;
    box-shadow: 0px 4px 12px rgba(108, 99, 255, 0.3);
}


/* Quand le select a une vraie valeur */
.modern-input select:valid+label,
.modern-input select:focus+label {
    top: -10px;
    transform: none;
    font-size: 13px;
    color: #084A69;
}

/* Icône flèche personnalisée */
.modern-input .arrow-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #084A69;
    pointer-events: none;
}




.input-radio,
.input-checkbox {
    position: relative;
    display: block;
}

.input-radio input[type="radio"]:not(:checked),
.input-radio input[type="radio"]:checked,
.input-checkbox input[type="checkbox"]:not(:checked),
.input-checkbox input[type="checkbox"]:checked {
    position: absolute;
    margin-left: -9999px;
    visibility: hidden;
}

.input-radio label,
.input-checkbox label {
    font-weight: 500;
    min-height: 20px;
    padding-left: 20px;
    margin-bottom: 0;
    cursor: pointer;
    font-size: 15px;
}

.input-radio input[type="radio"]+label span,
.input-checkbox input[type="checkbox"]+label span {
    position: absolute;
    left: 2px;
    top: 6px;
    width: 18px;
    height: 18px;
    border: 2px solid #E4E7ED;
    background: #FFF;
}

.input-checkbox input[type="checkbox"]+label span:after {
    content: '✔';
    position: absolute;
    top: -11px;
    left: 1px;
    font-size: 30px;
    color: #084A69;
    opacity: 0;
    border: none;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.input-radio input[type="radio"]:checked+label span,
.input-checkbox input[type="checkbox"]:checked+label span {
    background-color: #fff;
    border: none;
}

.input-radio input[type="radio"]:checked+label span:after {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}

.input-checkbox input[type="checkbox"]:checked+label span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.input-radio .caption,
.input-checkbox .caption {
    margin-top: 5px;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: 0.3s max-height;
    transition: 0.3s max-height;
}

.input-radio input[type="radio"]:checked~.caption,
.input-checkbox input[type="checkbox"]:checked~.caption {
    max-height: 800px;
}


.intl-tel-input {
    width: 100% !important;
    /* Force le conteneur */
}

.intl-tel-input input {
    width: 100% !important;
    /* Force le champ de saisie */
}

.iti {
    width: 100% !important;
}

/* .iti__country-list{
            max-height: 300px;
        } */
.iti__country-name {
    /* display: none; */
}

.field-error {
    color: red;
    font-size: 13px;
    margin-top: 4px;
    display: block;
}

.input-error {
    border-color: red !important;
}

#connexion_btn_cours,
#send_btn {
    padding: 15px;
    background-color: #40bff5;
    border: none;
}








/* FORMULAIRE */
.trust-section {
    position: relative;
    padding: 0;
    background: #fff;
    overflow: hidden;
}

.trust-section .container-custom {
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* Decorative background shapes */
.trust-section .shape-left {
    position: absolute;
    left: -140px;
    top: 60px;
    width: 320px;
    height: 320px;
    background: #eef5fd;
    border-radius: 45% 55% 60% 40%;
    opacity: 0.9;
    z-index: 1;
}

.trust-section .shape-right {
    position: absolute;
    right: -120px;
    top: 80px;
    width: 340px;
    height: 340px;
    background: #eef5fd;
    border-radius: 50%;
    opacity: 0.85;
    z-index: 1;
}

.trust-section .wave-line {
    position: absolute;
    width: 700px;
    height: 400px;
    border: 1px solid rgba(64, 191, 245, 0.08);
    border-radius: 50%;
    left: -120px;
    bottom: -180px;
    z-index: 1;
}

.trust-section .wave-line2 {
    position: absolute;
    width: 600px;
    height: 350px;
    border: 1px solid rgba(64, 191, 245, 0.08);
    border-radius: 50%;
    right: -150px;
    top: 120px;
    z-index: 1;
}

.trust-section .section-tag {
    color: #9bb8db;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-section .section-tag::before {
    content: '';
    width: 7px;
    height: 7px;
    background: #8bb8ff;
    border-radius: 50%;
    display: block;
}

.trust-section .main-title {
    font-size: 54px;
    line-height: 1.1;
    font-weight: 800;
    color: #111;
    max-width: 520px;
    margin-bottom: 35px;
}

.trust-section .pill-buttons {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid #dfe8f3;
    width: fit-content;
    border-radius: 60px;
    overflow: hidden;
    margin-bottom: 55px;
    background: #fff;
}

.trust-section .pill-btn {
    padding: 16px 34px;
    border: none;
    background: transparent;
    font-weight: 600;
    font-size: 15px;
    color: #9aa8bb;
    transition: 0.3s;
}

.pill-btn.active {
    background: #40bff5;
    color: #fff;
    box-shadow: 0 8px 20px rgba(64, 191, 245, 0.35);
    border-radius: 60px;
}

.trust-section .argument-block {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 45px;
}

.trust-section .check-icon {
    min-width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ff553e;
    font-size: 22px;
    margin-top: 2px;
}

.trust-section .argument-title {
    font-size: 21px;
    font-weight: 500;
    color: #4b4b4b;
    margin-bottom: 12px;
}

.trust-section .argument-text {
    font-size: 17px;
    line-height: 1.9;
    color: #666;
    max-width: 520px;
}

.trust-section .image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.trust-section .circle-image {
    width: 560px;
    height: 560px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.trust-section .circle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Decorative dots */
.trust-section .dot {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.trust-section .dot.blue {
    background: #40bff5;
}

.trust-section .dot.orange {
    background: #ff553e;
}

.trust-section .dot.small {
    width: 5px;
    height: 5px;
}

.trust-section .dot.medium {
    width: 8px;
    height: 8px;
}

.trust-section .dot1 {
    top: 150px;
    left: 38%;
}

.trust-section .dot2 {
    top: 300px;
    left: 46%;
}

.trust-section .dot3 {
    bottom: 120px;
    left: 22%;
}

.trust-section .dot4 {
    top: 170px;
    right: 22%;
}

.trust-section .dot5 {
    bottom: 140px;
    right: 44%;
}

.trust-section.dot6 {
    bottom: 80px;
    left: 56%;
}

/* Responsive */
@media(max-width:1199px) {

    .trust-section .main-title {
        font-size: 46px;
    }

    .trust-section .circle-image {
        width: 480px;
        height: 480px;
    }
}

@media(max-width:991px) {

    .trust-section {
        padding: 80px 0;
    }

    .trust-section .main-title {
        font-size: 40px;
    }

    .trust-section .circle-image {
        width: 420px;
        height: 420px;
        margin-top: 50px;
    }

    .trust-section .left-content {
        text-align: center;
    }

    .trust-section .pill-buttons {
        margin-left: auto;
        margin-right: auto;
    }

    .trust-section .argument-block {
        text-align: left;
    }
}

@media(max-width:767px) {

    .trust-section {
        padding: 70px 20px;
    }

    .trust-section .main-title {
        font-size: 34px;
    }

    .trust-section .pill-buttons {
        flex-direction: column;
        border: none;
        gap: 12px;
        background: transparent;
    }

    .trust-section .pill-btn {
        width: 100%;
        border: 1px solid #dfe8f3;
        border-radius: 50px !important;
    }

    .trust-section .circle-image {
        width: 320px;
        height: 320px;
    }

    .trust-section .argument-title {
        font-size: 18px;
    }

    .trust-section .argument-text {
        font-size: 15px;
    }
}

/* GALERIE PHOTO */
.gallery-header {
    padding: 70px 0 45px;
    text-align: center;
}

.gallery-header h1 {
    font-weight: 800;
    color: #111;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.gallery-header p {
    color: #6c757d;
    font-size: 1.1rem;
    margin-top: 10px;
}

.gallery-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    background: #fff;
}

.gallery-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.45s ease;
    display: block;
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.48);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: #fff;
    font-size: 2.5rem;
    background: #40bff5;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 25px;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 950px;
    width: 100%;
    text-align: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 18px;
    object-fit: contain;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
    opacity: 1;
    transition: opacity 0.25s ease;
}

.lightbox-img.fade {
    opacity: 0;
}

.lightbox-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.close-btn,
.nav-btn {
    position: absolute;
    border: none;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: 0.3s ease;
    z-index: 2;
}

.close-btn:hover,
.nav-btn:hover {
    background: #40bff5;
}

.close-btn {
    top: 25px;
    right: 25px;
}

.prev-btn {
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
}

.next-btn {
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}

.counter {
    margin-top: 18px;
    color: #fff;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.14);
    padding: 8px 18px;
    border-radius: 30px;
    display: inline-block;
}

@media (max-width: 768px) {
    .gallery-card img {
        height: 210px;
    }

    .nav-btn {
        width: 48px;
        height: 48px;
        font-size: 1.7rem;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .close-btn {
        top: 15px;
        right: 15px;
    }

    .lightbox-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 420px) {
    .gallery-card img {
        height: 230px;
    }
}



.scroll-shat {
    width: 50px;
    height: 50px;
    line-height: 40px;
    background: #4dc247;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    color: #fff !important;
    position: fixed;
    bottom: 40px;
    right: 65px;
    z-index: 9;
    cursor: pointer;
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    border-radius: 50px;
    cursor: pointer;
}






.floating-share {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
}

.share-main-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: #0d6efd;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.share-main-btn:hover {
    transform: scale(1.08);
    background: #0b5ed7;
}

.share-socials {
    position: absolute;
    bottom: 75px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: 0.3s;
}

.share-socials.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.share-socials a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
}

.share-socials a:hover {
    transform: scale(1.1);
}

.facebook {
    background: #1877f2;
}

.twitter {
    background: #000;
}

.whatsapp {
    background: #25d366;
}

.linkedin {
    background: #0a66c2;
}

.telegram {
    background: #229ED9;
}

.copylink {
    background: #6c757d;
}


/* Tablette */
@media (max-width: 991px) {
    .floating-share {
        right: 18px;
        bottom: 18px;
    }

    .share-main-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }

    .share-socials {
        bottom: 70px;
        gap: 9px;
    }

    .share-socials a {
        width: 48px;
        height: 48px;
        font-size: 21px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .floating-share {
        right: 15px;
        bottom: 15px;
    }

    .share-main-btn {
        width: 52px;
        height: 52px;
        font-size: 21px;
    }

    .share-socials {
        bottom: 65px;
        right: 0;
        gap: 8px;
    }

    .share-socials a {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

/* Très petit écran */
@media (max-width: 360px) {
    .floating-share {
        right: 10px;
        bottom: 10px;
    }

    .share-main-btn {
        width: 48px;
        height: 48px;
        font-size: 19px;
    }

    .share-socials {
        bottom: 60px;
    }

    .share-socials a {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
}