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

:root {
    --dark: #0b2533;
    --muted: #526878;
    --border: #d9e1e6;
    --blue: #AB2E28;
}

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: #AB2E28;
    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(11, 51, 214, .94), transparent 40%);
    line-height: 0;
    transition: 0.3s;
    margin-left: 20px;
}

.topbar .social-links a:hover {
    color: rgba(11, 51, 214, .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: #005eff !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: #005eff;
    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: #005eff;
}

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

.order-btn {
    background: #AB2E28;
    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: #AB2E28;
    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(171, 46, 40, .94), rgba(35, 92, 255, .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(132, 87, 255, .45), transparent 38%),
        radial-gradient(circle at 75% 40%, rgba(0, 183, 255, .18), transparent 35%),
        linear-gradient(90deg, rgba(5, 25, 130, .72), rgba(171, 46, 40, .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(76, 200, 255, .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: 1220px;
}

.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 #AB2E28;
    border-radius: 50px;
    padding: 14px 28px;
    min-width: 220px;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    transition: .35s;
}

.hero-btn:hover {
    background: #AB2E28;
    color: #fff;
    box-shadow: 0 18px 35px rgba(255, 106, 43, .3);
    transform: translateY(-3px);
}

.down-btn {
    position: absolute;
    left: 110px;
    bottom: 18px;
    width: 30px;
    height: 30px;
    border: 1px solid #AB2E28;
    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: #AB2E28;
    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: 90px 0 60px;
    }

    .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: 470px;
    }

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

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


@media(max-width:480px) {
    .hero-section {
        padding: 70px 18px 55px;
    }

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

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

    .hero-btn {
        width: 100%;
    }

    .slider-area {
        height: 410px;
    }

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


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

.main-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 10%;
    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-logo 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: #AB2E28;
    min-height: 595px;
    padding: 70px 0 120px;
    overflow: visible;
}

.domain-section {
    position: relative;
    background: #AB2E28;
    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(#AB2E28 0 342deg, rgba(255, 255, 255, 0.18) 342deg 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #AB2E28;
    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: #AB2E28;
    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: 80px;
    }

    .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%;
    }

    .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;
    }

    .main-container {
        padding: 0;
    }
}

/* ABOUT */

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

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

.why-label {
    color: #AB2E28;
    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 #2f45ff;
    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: #AB2E28;
    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: #AB2E28;
    color: #fff;
}

.card-border {
    background: #fff;
    border: 1.5px solid #AB2E28;
    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: #2f45ff;
}

.card-border .icon-box,
.card-gray .icon-box {
    background: #AB2E28;
    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: #2f45ff;
}

.card-border .service-btn,
.card-gray .service-btn {
    background: #AB2E28;
    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: 100px 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: #40bff5;
}


/* =====================================================
       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: #AB2E28;
}

.badge-blue {
    background: #AB2E28;
}

.badge-orange {
    background: #AB2E28;
}

/* 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: #40bff5;
}

.price-blue {
    color: #005eff;
}

.price-orange {
    color: #AB2E28;
}

.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: #AB2E28;
}

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

.btn-blue {
    background: #AB2E28;
}

.btn-blue span {
    color: #AB2E28;
}

.btn-orange {
    background: #AB2E28;
}

.btn-orange span {
    color: #AB2E28;
}

.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: #1731a5;
    min-height: 285px;
    padding: 34px 0;
    color: #fff;
}

.why-label {
    color: #AB2E28;
    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-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: #AB2E28;
    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: #AB2E28;

    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(171, 46, 40, .94), rgba(35, 92, 255, .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%, #AB2E28 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: #AB2E28;
    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: #AB2E28;
}

.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: #AB2E28;
    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: #0756b8;
    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(11, 51, 214, .94), rgba(35, 92, 255, .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: 88px;
    height: 88px;
    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(11, 51, 214, .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: #2f80ed;
    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: #2f80ed;
}

.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: #5f9fe3;
    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: 50px 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 #AB2E28;
    opacity: .45;
}

.watermark::after {
    content: 'SYCODIP';
    position: absolute;
    bottom: 30px;
    font-size: 26px;
    font-weight: 700;
    color: #AB2E28;
    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: #AB2E28;
}

.sycodip {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: #48aee8;
    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: #AB2E28;
    transform: rotate(-35deg);
    left: -28px;
    top: 23px;
}

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

.flag-star {
    position: absolute;
    left: 9px;
    top: 5px;
    color: #AB2E28;
    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 #AB2E28;
    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: 242px;
    width: 124px;
    height: 124px;
    background: #fff;
    padding: 6px;
    z-index: 8;
}

.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;
}

@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;
    }
}

/* 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: #AB2E28;
    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: #267dc5;
    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: #267dc5;
    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: #267dc5;
    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: #AB2E28;
    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: #3FA7DB;
    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: #40bff5;
}

.dot-orange {
    background: #AB2E28;
}

.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: #9cc8ff;
    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: #40bff5;
    border-color: #40bff5;
    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: #AB2E28;
    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: #40bff5;
    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: #8fdcff;
    transform: rotate(-35deg);
    opacity: 0.8;
    z-index: 2;
}

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

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

.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: #8bb9ff;
}

.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 #AB2E28;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}


.btn-view-all:hover {
    background: #AB2E28;
    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);
}