/**
* Template Name: Arsha
* Template URL: https://bootstrapmade.com/arsha-free-bootstrap-html-template-corporate/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font:
        "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
        "Noto Color Emoji";
    --heading-font: "Jost", sans-serif;
    --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #37517e; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #47b2e4; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #ffffff; /* The default color of the main navmenu links */
    --nav-hover-color: #47b2e4; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #47b2e4; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #f5f6f8;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #37517e;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #4668a2;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    padding-bottom: 50px;
    position: relative;
}

.footer .footer-newsletter {
    background-color: color-mix(in srgb, var(--heading-color), transparent 95%);
    padding: 50px 0;
}

.footer .footer-newsletter h4 {
    font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
    margin-top: 30px;
    margin-bottom: 15px;
    padding: 6px 8px;
    position: relative;
    background-color: color-mix(
        in srgb,
        var(--background-color),
        transparent 50%
    );
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    transition: 0.3s;
    border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
    border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"] {
    border: 0;
    padding: 4px;
    width: 100%;
    background-color: color-mix(
        in srgb,
        var(--background-color),
        transparent 50%
    );
    color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"]:focus-visible {
    outline: none;
}

.footer .footer-newsletter .newsletter-form input[type="submit"] {
    border: 0;
    font-size: 16px;
    padding: 0 20px;
    margin: -7px -8px -7px 0;
    background: var(--accent-color);
    color: var(--contrast-color);
    transition: 0.3s;
    border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type="submit"]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
    padding-top: 50px;
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-right: 10px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-links {
    margin-bottom: 30px;
}

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

.footer .footer-links ul i {
    margin-right: 3px;
    font-size: 12px;
    line-height: 0;
    color: var(--accent-color);
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    display: inline-block;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1;
}

.footer .footer-links ul a:hover {
    color: var(--accent-color);
}

.footer .footer-about a {
    color: var(--heading-color);
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--heading-font);
}

.footer .footer-contact p {
    margin-bottom: 5px;
}

.footer .copyright {
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid
        color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .credits {
    margin-top: 6px;
    font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ffffff;
    border-color: var(--accent-color) transparent var(--accent-color)
        transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    --background-color: color-mix(
        in srgb,
        var(--default-color),
        transparent 96%
    );
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 20px 0;
    position: relative;
}

.page-title h1 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 14px;
}

.page-title .breadcrumbs ol li + li {
    padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 88px;
    overflow: clip;
}

@media (max-width: 1199px) {
    section,
    .section {
        scroll-margin-top: 66px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    text-transform: uppercase;
    position: relative;
}

.section-title h2:before {
    content: "";
    position: absolute;
    display: block;
    width: 160px;
    height: 1px;
    background: color-mix(in srgb, var(--default-color), transparent 60%);
    left: 0;
    right: 0;
    bottom: 1px;
    margin: auto;
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 80vh;
    position: relative;
    padding: 120px 0 60px 0;
    display: flex;
    align-items: center;
}

.hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
}

.hero p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 5px 0 30px 0;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 600;
}

.hero .btn-get-started {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px 12px 28px;
    border-radius: 50px;
    transition: 0.5s;
}

.hero .btn-get-started:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .btn-watch-video {
    font-size: 16px;
    transition: 0.5s;
    margin-left: 25px;
    color: var(--default-color);
    font-weight: 600;
}

.hero .btn-watch-video i {
    color: var(--contrast-color);
    font-size: 32px;
    transition: 0.3s;
    line-height: 0;
    margin-right: 8px;
}

.hero .btn-watch-video:hover {
    color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
    color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    .hero p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    .hero .btn-get-started,
    .hero .btn-watch-video {
        font-size: 13px;
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
    padding: 12px 0;
}

.clients .swiper {
    padding: 10px 0;
}

.clients .swiper-wrapper {
    height: auto;
}

.clients .swiper-slide img {
    transition: 0.3s;
    padding: 0 10px;
}

.clients .swiper-slide img:hover {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about ul {
    list-style: none;
    padding: 0;
}

.about ul li {
    padding-bottom: 5px;
    display: flex;
    align-items: center;
}

.about ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--accent-color);
}

.about .read-more {
    color: var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 8px 28px;
    border-radius: 5px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent-color);
}

.about .read-more i {
    font-size: 18px;
    margin-left: 5px;
    line-height: 0;
    transition: 0.3s;
}

.about .read-more:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.about .read-more:hover i {
    transform: translate(5px, 0);
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us {
    padding: 30px 0;
}

.why-us .content h3 {
    font-weight: 400;
    font-size: 34px;
}

.why-us .content p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.why-us .faq-container .faq-item {
    background-color: var(--surface-color);
    position: relative;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.why-us .faq-container .faq-item:last-child {
    margin-bottom: 0;
}

.why-us .faq-container .faq-item h3 {
    font-weight: 500;
    font-size: 17px;
    line-height: 24px;
    margin: 0 30px 0 0;
    transition: 0.3s;
    cursor: pointer;
}

.why-us .faq-container .faq-item h3 span {
    color: var(--accent-color);
    padding-right: 5px;
    font-weight: 600;
}

.why-us .faq-container .faq-item h3:hover {
    color: var(--accent-color);
}

.why-us .faq-container .faq-item .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

.why-us .faq-container .faq-item .faq-content p {
    margin-bottom: 0;
    overflow: hidden;
}

.why-us .faq-container .faq-item .faq-icon {
    position: absolute;
    top: 22px;
    left: 20px;
    font-size: 22px;
    line-height: 0;
    transition: 0.3s;
    color: var(--accent-color);
}

.why-us .faq-container .faq-item .faq-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    line-height: 0;
    transition: 0.3s;
    cursor: pointer;
}

.why-us .faq-container .faq-item .faq-toggle:hover {
    color: var(--accent-color);
}

.why-us .faq-container .faq-active h3 {
    color: var(--accent-color);
}

.why-us .faq-container .faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    padding-top: 10px;
}

.why-us .faq-container .faq-active .faq-toggle {
    transform: rotate(90deg);
    color: var(--accent-color);
}

.why-us .why-us-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-us .why-us-img img {
    max-height: 70%;
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .content h3 {
    font-size: 2rem;
    font-weight: 700;
}

.skills .content p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

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

.skills .content ul {
    list-style: none;
    padding: 0;
}

.skills .content ul li {
    padding-bottom: 10px;
}

.skills .progress {
    height: 60px;
    display: block;
    background: none;
    border-radius: 0;
}

.skills .progress .skill {
    color: var(--default-color);
    padding: 0;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    display: block;
    font-weight: 600;
    font-family: var(--heading-font);
}

.skills .progress .skill .val {
    float: right;
    font-style: normal;
}

.skills .progress-bar-wrap {
    background: color-mix(in srgb, var(--heading-color), transparent 90%);
    height: 10px;
}

.skills .progress-bar {
    width: 1px;
    height: 10px;
    transition: 0.9s;
    background-color: var(--heading-color);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
    background-color: var(--surface-color);
    box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
    padding: 50px 30px;
    transition: all ease-in-out 0.4s;
    height: 100%;
}

.services .service-item .icon {
    margin-bottom: 10px;
}

.services .service-item .icon i {
    color: var(--success-color);
    font-size: 36px;
    transition: 0.3s;
}

.services .service-item h4 {
    color: var(--success-dark);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 20px;
}

.services .service-item h4 a {
    color: var(--heading-color);
    transition: ease-in-out 0.3s;
}

.services .service-item p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.services .service-item:hover {
    transform: translateY(-10px);
}

.services .service-item:hover h4 a {
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
    padding: 120px 0;
    position: relative;
    clip-path: inset(0);
}

.call-to-action img {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.call-to-action:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 35%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.call-to-action .container {
    position: relative;
    z-index: 3;
}

.call-to-action h3 {
    color: var(--default-color);
    font-size: 28px;
    font-weight: 700;
}

.call-to-action p {
    color: var(--default-color);
}

.call-to-action .cta-btn {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid var(--contrast-color);
    color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    text-align: center;
}

.portfolio .portfolio-filters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 20px 10px 20px;
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 5px;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
    color: var(--contrast-color);
    background-color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
    margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
    margin-right: 0;
}

@media (max-width: 575px) {
    .portfolio .portfolio-filters li {
        font-size: 14px;
        margin: 0 0 10px 0;
    }
}

.portfolio .portfolio-item {
    position: relative;
    overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
    opacity: 0;
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: -100%;
    z-index: 3;
    transition: all ease-in-out 0.5s;
    background: color-mix(in srgb, var(--background-color), transparent 10%);
    padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
    font-size: 18px;
    font-weight: 600;
    padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 14px;
    margin-bottom: 0;
    padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
    position: absolute;
    right: 50px;
    font-size: 24px;
    top: calc(50% - 14px);
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    transition: 0.3s;
    line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
    color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
    right: 14px;
    font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
    opacity: 1;
    bottom: 0;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
    background-color: var(--surface-color);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    border-radius: 5px;
    transition: 0.5s;
    padding: 30px;
    height: 100%;
}

@media (max-width: 468px) {
    .team .team-member {
        flex-direction: column;
        justify-content: center !important;
        align-items: center !important;
    }
}

.team .team-member .pic {
    overflow: hidden;
    width: 150px;
    border-radius: 50%;
    flex-shrink: 0;
}

.team .team-member .pic img {
    transition: ease-in-out 0.3s;
}

.team .team-member:hover {
    transform: translateY(-10px);
}

.team .team-member .member-info {
    padding-left: 30px;
}

@media (max-width: 468px) {
    .team .team-member .member-info {
        padding: 30px 0 0 0;
        text-align: center;
    }
}

.team .team-member h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 20px;
}

.team .team-member span {
    display: block;
    font-size: 15px;
    padding-bottom: 10px;
    position: relative;
    font-weight: 500;
}

.team .team-member span::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 1px;
    background: color-mix(in srgb, var(--default-color), transparent 85%);
    bottom: 0;
    left: 0;
}

@media (max-width: 468px) {
    .team .team-member span::after {
        left: calc(50% - 25px);
    }
}

.team .team-member p {
    margin: 10px 0 0 0;
    font-size: 14px;
}

.team .team-member .social {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
}

@media (max-width: 468px) {
    .team .team-member .social {
        justify-content: center;
    }
}

.team .team-member .social a {
    background: color-mix(in srgb, var(--default-color), transparent 94%);
    transition: ease-in-out 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    width: 36px;
    height: 36px;
}

.team .team-member .social a i {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 16px;
    margin: 0 2px;
}

.team .team-member .social a:hover {
    background: var(--accent-color);
}

.team .team-member .social a:hover i {
    color: var(--contrast-color);
}

.team .team-member .social a + a {
    margin-left: 8px;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
    background-color: var(--surface-color);
    box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--background-color);
    padding: 60px 40px;
    height: 100%;
    border-radius: 5px;
}

.pricing h3 {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 20px;
}

.pricing h4 {
    color: var(--accent-color);
    font-size: 48px;
    font-weight: 400;
    font-family: var(--heading-font);
    margin-bottom: 0;
}

.pricing h4 sup {
    font-size: 28px;
}

.pricing h4 span {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 18px;
}

.pricing ul {
    padding: 20px 0;
    list-style: none;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    text-align: left;
    line-height: 20px;
}

.pricing ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.pricing ul i {
    color: #059652;
    font-size: 24px;
    padding-right: 3px;
}

.pricing ul .na {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
    text-decoration: line-through;
}

.pricing .buy-btn {
    color: var(--accent-color);
    display: inline-block;
    padding: 8px 35px 10px 35px;
    border-radius: 50px;
    transition: none;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--heading-font);
    transition: 0.3s;
    border: 1px solid var(--accent-color);
}

.pricing .buy-btn:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.pricing .featured {
    border-top-color: var(--accent-color);
}

.pricing .featured .buy-btn {
    background: var(--accent-color);
    color: var(--contrast-color);
}

@media (max-width: 992px) {
    .pricing .box {
        max-width: 60%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 767px) {
    .pricing .box {
        max-width: 80%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 420px) {
    .pricing .box {
        max-width: 100%;
        margin: 0 auto 30px auto;
    }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .section-header {
    margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
    width: 120px;
    border-radius: 50%;
    border: 4px solid var(--background-color);
    margin: 0 auto;
}

.testimonials .testimonial-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin: 0 0 15px 0;
}

.testimonials .testimonial-item .stars {
    margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--accent-color), transparent 50%);
    font-size: 26px;
    line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
    height: auto;
}

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 1;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

@media (min-width: 992px) {
    .testimonials .testimonial-item p {
        width: 80%;
    }
}

/*--------------------------------------------------------------
# Faq 2 Section
--------------------------------------------------------------*/
.faq-2 .faq-container {
    margin-top: 15px;
}

.faq-2 .faq-container .faq-item {
    background-color: var(--surface-color);
    position: relative;
    padding: 20px;
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-2 .faq-container .faq-item:last-child {
    margin-bottom: 0;
}

.faq-2 .faq-container .faq-item h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    margin: 0 30px 0 32px;
    transition: 0.3s;
    cursor: pointer;
}

.faq-2 .faq-container .faq-item h3 span {
    color: var(--accent-color);
    padding-right: 5px;
}

.faq-2 .faq-container .faq-item h3:hover {
    color: var(--accent-color);
}

.faq-2 .faq-container .faq-item .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

.faq-2 .faq-container .faq-item .faq-content p {
    margin-bottom: 0;
    overflow: hidden;
}

.faq-2 .faq-container .faq-item .faq-icon {
    position: absolute;
    top: 22px;
    left: 20px;
    font-size: 20px;
    line-height: 0;
    transition: 0.3s;
    color: var(--accent-color);
}

.faq-2 .faq-container .faq-item .faq-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    line-height: 0;
    transition: 0.3s;
    cursor: pointer;
}

.faq-2 .faq-container .faq-item .faq-toggle:hover {
    color: var(--accent-color);
}

.faq-2 .faq-container .faq-active h3 {
    color: var(--accent-color);
}

.faq-2 .faq-container .faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    padding-top: 10px;
}

.faq-2 .faq-container .faq-active .faq-toggle {
    transform: rotate(90deg);
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
    background-color: var(--surface-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    border-top: 3px solid var(--accent-color);
    border-bottom: 3px solid var(--accent-color);
    padding: 30px;
    height: 100%;
}

@media (max-width: 575px) {
    .contact .info-wrap {
        padding: 20px;
    }
}

.contact .info-item {
    margin-bottom: 40px;
}

.contact .info-item i {
    font-size: 20px;
    color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
}

.contact .info-item h3 {
    padding: 0;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.contact .info-item:hover i {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.contact .php-email-form {
    background-color: var(--surface-color);
    height: 100%;
    padding: 30px;
    border-top: 3px solid var(--accent-color);
    border-bottom: 3px solid var(--accent-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
    .contact .php-email-form {
        padding: 20px;
    }
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form textarea {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: var(--default-color);
    background-color: color-mix(
        in srgb,
        var(--background-color),
        transparent 50%
    );
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type="text"]:focus,
.contact .php-email-form input[type="email"]:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--accent-color);
}

.contact .php-email-form input[type="text"]::placeholder,
.contact .php-email-form input[type="email"]::placeholder,
.contact .php-email-form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type="submit"] {
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.portfolio-details
    .portfolio-details-slider
    .swiper-pagination
    .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
    opacity: 1;
}

.portfolio-details
    .portfolio-details-slider
    .swiper-pagination
    .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
    background-color: var(--surface-color);
    padding: 30px;
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid
        color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
    background-color: var(--surface-color);
    padding: 10px 30px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    margin-bottom: 20px;
}

.service-details .services-list a {
    display: block;
    line-height: 1;
    padding: 8px 0 8px 15px;
    border-left: 3px solid
        color-mix(in srgb, var(--default-color), transparent 70%);
    margin: 20px 0;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    transition: 0.3s;
}

.service-details .services-list a.active {
    color: var(--heading-color);
    font-weight: 700;
    border-color: var(--accent-color);
}

.service-details .services-list a:hover {
    border-color: var(--accent-color);
}

.service-details .services-img {
    margin-bottom: 20px;
}

.service-details h3 {
    font-size: 26px;
    font-weight: 700;
}

.service-details h4 {
    font-size: 20px;
    font-weight: 700;
}

.service-details p {
    font-size: 15px;
}

.service-details ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.service-details ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.service-details ul i {
    font-size: 20px;
    margin-right: 8px;
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
    /* Add your styles here */
}
/* ===== BODY FIX (évite page cassée) ===== */
body {
    padding-top: 63px;
}

/* ===== HEADER ===== */
.header {
    background-color: #3d4d6a;
    padding: 5px 0;
    z-index: 1;
}

/* ===== NAV MENU DESKTOP ===== */
.navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navmenu a {
    color: #fff;
    padding: 10px 15px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}

.navmenu a:hover,
.navmenu a.active {
    color: #47b2e4;
}

/* ===== BUTTON ===== */
.btn-getstarted {
    color: #fff;
    background: #47b2e4;
    font-size: 0.85rem;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-getstarted:hover {
    background: #3698c4;
    transform: translateY(-2px);
}

.bg-success {
    background: #28a745 !important;
}

.bg-success:hover {
    background: #218838 !important;
}

/* ===== BURGER ICON ===== */
.mobile-nav-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
}

/* ================= MOBILE ================= */
@media (max-width: 1200px) {
    .mobile-nav-toggle {
        display: block;
        z-index: 1200;
        margin-left: 15px;
    }

    .navmenu ul {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #3d4d6a;
        flex-direction: column;
        padding: 100px 20px 20px;
        transition: 0.3s;
        z-index: 1150;
    }

    .navmenu ul.active {
        left: 0;
    }

    .navmenu ul li {
        width: 100%;
    }

    .navmenu ul li a {
        display: block;
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* bloque scroll quand menu ouvert */
body.mobile-nav-active {
    overflow: hidden;
}

/* Hero Section Styles - Version fond blanc */
.hero-section {
    position: relative;
    min-height: 100px;
    display: flex;
    align-items: center;
    background: #ffffff;
    overflow: hidden;
    padding: 10px 0 80px;
}

/* Effet de fond décoratif léger */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2000 2000"><path fill="rgba(61,88,135,0.02)" d="M0,0 L2000,0 L2000,2000 L0,2000 Z M1000,500 C800,500 700,600 700,800 C700,1000 800,1100 1000,1100 C1200,1100 1300,1000 1300,800 C1300,600 1200,500 1000,500 Z"/></svg>');
    background-size: cover;
    opacity: 0.5;
    pointer-events: none;
}

.hero-title {
    color: #105411;
    line-height: 1.2;
}

.hero-subtitle {
    color: #4a5568;
    font-weight: 400;
}

.hero-description {
    color: #4a5568;
    text-align: justify;
}

.hero-description strong {
    color: #3d5887;
}

/* Boutons */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: linear-gradient(135deg, #3d5887, #5a7ab3);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(61, 88, 135, 0.2);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(61, 88, 135, 0.3);
    color: white;
    background: linear-gradient(135deg, #2c3e66, #3d5887);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: transparent;
    color: #dcdfe3;
    border: 2px solid #3d5887;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: rgba(61, 88, 135, 0.1);
    border-color: #2c3e66;
    transform: translateY(-3px);
    color: #2c3e66;
}

/* Statistiques */
.hero-stats {
    border-top: 1px solid rgba(61, 88, 135, 0.1);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3d5887;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.8rem;
    color: #6c757d;
}

/* Image et cartes flottantes */
.hero-image-wrapper {
    position: relative;
}

.hero-image {
    background: #f8f9fa;
    border: 1px solid rgba(61, 88, 135, 0.1);
}

.floating-card {
    position: absolute;
    background: white;
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    animation: float 3s ease-in-out infinite;
    border: 1px solid rgba(61, 88, 135, 0.1);
}

.floating-card.top-0 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.floating-card.bottom-0 {
    bottom: 10%;
    left: -20px;
    animation-delay: 1.5s;
}

.floating-icon {
    width: 45px;
    height: 45px;
    background: rgba(61, 88, 135, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3d5887;
    font-size: 1.4rem;
}

.floating-card .text-muted {
    color: #6c757d !important;
}

.floating-card .text-dark {
    color: #1a2a4f !important;
}

/* Rendre la navbar toujours opaque */
.header {
    background-color: var(--success-light) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

/* Couleur des liens en blanc */
.navmenu a {
    color: #ffffff !important;
}

.navmenu a:hover {
    color: var(--success-light) !important;
}

/* Icône menu mobile blanche */
.mobile-nav-toggle {
    color: #ffffff !important;
}

/* Supprimer la transparence au scroll */
.index-page .header,
.index-page.scrolled .header {
    background-color: #0c6e0e !important;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        padding: 10px 24px;
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .floating-card {
        display: none;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }
}

.about-card {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    border: 1px solid rgba(61, 88, 135, 0.1);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px -10px rgba(61, 88, 135, 0.15) !important;
}

.mission-item {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.mission-item:hover {
    transform: translateX(8px);
    border-color: rgba(61, 88, 135, 0.1);
    box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.1) !important;
}

.hover-effect {
    transition: all 0.3s ease;
}

.read-more-link {
    color: #3d5887;
    position: relative;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.read-more-link:hover {
    color: #2c3e66;
    gap: 5px;
}

.read-more-link i {
    transition: transform 0.3s ease;
}

.read-more-link:hover i {
    transform: translateX(5px);
}

.vision-box {
    border-left: 4px solid #3d5887;
    transition: all 0.3s ease;
}

.vision-box:hover {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .about-card {
        padding: 1.5rem !important;
    }

    .mission-item {
        padding: 1rem !important;
    }

    .mission-icon div {
        width: 40px !important;
        height: 40px !important;
    }

    .mission-icon i {
        font-size: 0.9rem;
    }
}

/* Styles professionnels */
.presidente-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.1);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.presidente-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 50px -15px rgba(0, 0, 0, 0.15);
}

.badge-gradient {
    background: linear-gradient(135deg, #3d5887, #5a7ab3);
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(61, 88, 135, 0.25);
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    background: linear-gradient(135deg, #2c3e66, #1a2a4f);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(61, 88, 135, 0.2),
        rgba(0, 0, 0, 0.1)
    );
    pointer-events: none;
}

.image-wrapper img {
    transition: transform 0.5s ease;
}

.presidente-card:hover .image-wrapper img {
    transform: scale(1.02);
}

.content-wrapper {
    background: white;
}

.skill-tag {
    background: #f8f9fa;
    color: #3d5887;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid #e9ecef;
}

.skill-tag:hover {
    background: #3d5887;
    color: white;
    border-color: #3d5887;
    transform: translateY(-2px);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #f8f9fa;
    color: #3d5887;
    border-radius: 50%;
    margin-right: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid #e9ecef;
}

.social-icon:hover {
    background: #3d5887;
    color: white;
    transform: translateY(-3px);
    border-color: #3d5887;
}

.quote-box {
    border-left: 4px solid #3d5887;
}

@media (max-width: 992px) {
    .image-wrapper {
        min-height: 350px;
    }

    .badge-gradient {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}

.border-hover {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.border-hover:hover {
    border-color: #3d5887;
    background: #f8f9fa;
    transform: translateY(-2px);
}

.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1) !important;
}

.transition-all {
    transition: all 0.3s ease;
}

.horizontal-scroll {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.horizontal-scroll::-webkit-scrollbar {
    height: 6px;
}

.horizontal-scroll::-webkit-scrollbar-track {
    background: #e9ecef;
    border-radius: 10px;
}

.horizontal-scroll::-webkit-scrollbar-thumb {
    background: #3d5887;
    border-radius: 10px;
}

.horizontal-scroll::-webkit-scrollbar-thumb:hover {
    background: #5a7ab3;
}

.testimonial-card {
    flex: 0 0 auto;
    width: 300px;
    transition: all 0.3s ease;
    border-radius: 16px;
    overflow: hidden;
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(61, 88, 135, 0.15);
}

.testimonial-image {
    height: 170px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.4s ease;
}

.testimonial-card:hover .testimonial-image {
    transform: scale(1.03);
}

.testimonial-image-placeholder {
    height: 170px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    font-style: italic;
}

.btn-like {
    transition: all 0.3s ease;
    border-radius: 30px;
    padding: 5px 15px;
    font-size: 0.8rem;
}

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

.modal-content-custom {
    border: none;
    border-radius: 20px;
    overflow: hidden;
}

.modal-header-custom {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-bottom: 1px solid rgba(61, 88, 135, 0.1);
}

/* Styles existants + ajouts */
.email-field-wrapper {
    transition: all 0.3s ease;
}

.email-field-wrapper.show {
    display: block !important;
}

.testimonials-counter {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.counter-elegant {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 32px;
    box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.counter-elegant:hover {
    box-shadow: 0 20px 40px -12px rgba(61, 88, 135, 0.12);
}

/* Lignes décoratives */
.elegant-line {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.elegant-line span {
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #3d5887, #a0b4d4);
    border-radius: 2px;
}

.elegant-line span:nth-child(2) {
    width: 50px;
}

/* Icône */
.counter-icon i {
    font-size: 2.2rem;
    color: #3d5887;
    opacity: 0.6;
}

/* Chiffre */
.counter-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a2a4f;
    letter-spacing: -1px;
    line-height: 1;
}

.counter-suffix {
    font-size: 2rem;
    color: #3d5887;
    font-weight: 500;
}

/* Label */
.counter-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #3d5887;
    font-weight: 500;
    margin-top: 8px;
}

/* Description */
.counter-description {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 12px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .counter-number {
        font-size: 2.8rem;
    }

    .counter-suffix {
        font-size: 1.6rem;
    }

    .counter-elegant {
        padding: 1.5rem;
    }
}

.testimonials-section {
    background: #ffffff;
}

.btn-testimonial-cta {
    background: linear-gradient(135deg, #3d5887, #5a7ab3);
    border: none;
    padding: 10px 28px;
    border-radius: 40px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(61, 88, 135, 0.25);
}

.btn-testimonial-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(61, 88, 135, 0.35);
    color: white;
}

.testimonial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(61, 88, 135, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-size: 1.5rem;
}

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

.btn-like {
    border-radius: 30px;
    padding: 6px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

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

.testimonial-content {
    border-left: 3px solid #3d5887;
}

.btn-modal-close {
    background: transparent;
    border: 1px solid #dee2e6;
    padding: 8px 28px;
    border-radius: 40px;
    color: #6c757d;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-modal-close:hover {
    background: #f8f9fa;
    border-color: #3d5887;
    color: #3d5887;
}

.empty-state {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Section Actualités - Design professionnel */
.news-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.news-badge-header {
    background: rgba(61, 88, 135, 0.1);
    color: #3d5887;
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 500;
}

.divider-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.divider-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3d5887, transparent);
}

.divider-icon {
    color: #3d5887;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Carte actualité - Version moderne */
.news-card-v2 {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(61, 88, 135, 0.06);
}

.news-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 40px -12px rgba(61, 88, 135, 0.15);
    border-color: rgba(61, 88, 135, 0.1);
}

.news-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #3d5887, #2c3e66);
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card-v2:hover .news-card-image img {
    transform: scale(1.05);
}

.news-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(61, 88, 135, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-card-v2:hover .news-card-overlay {
    opacity: 1;
}

.btn-overlay {
    background: white;
    border: none;
    padding: 10px 24px;
    border-radius: 40px;
    color: #3d5887;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-overlay:hover {
    transform: scale(1.05);
    gap: 12px;
}

.news-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #adb5bd;
}

.news-date-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: white;
    border-radius: 12px;
    padding: 6px 12px;
    text-align: center;
    min-width: 55px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.date-day {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a2a4f;
    line-height: 1.2;
}

.date-month {
    display: block;
    font-size: 0.65rem;
    color: #3d5887;
    text-transform: uppercase;
}

.news-card-content {
    padding: 1.5rem;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 8px;
}

.meta-category,
.meta-read-time {
    font-size: 0.7rem;
    color: #6c757d;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.meta-category i,
.meta-read-time i {
    font-size: 0.65rem;
    color: #3d5887;
}

.news-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a2a4f;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.news-card-v2:hover .news-card-title {
    color: #3d5887;
}

.news-card-excerpt {
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-card-link {
    background: none;
    border: none;
    color: #3d5887;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    transition: all 0.3s ease;
}

.news-card-link:hover {
    gap: 12px;
    color: #5a7ab3;
}

/* Modal amélioré */
.modal-content-v2 {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    background: #3d5887;
    color: white;
    transform: rotate(90deg);
}

.modal-image {
    width: 100%;
    max-height: 350px;
    overflow: hidden;
}

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

.modal-body-v2 {
    padding: 2rem;
}

.modal-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.meta-date,
.meta-category-modal {
    font-size: 0.8rem;
    color: #6c757d;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.meta-date i,
.meta-category-modal i {
    color: #3d5887;
}

.modal-title-v2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a2a4f;
    margin-bottom: 20px;
    line-height: 1.3;
}

.modal-content-v2-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
}

.modal-content-v2-text p {
    margin-bottom: 1rem;
}

.modal-footer-v2 {
    padding: 1rem 2rem 2rem;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.btn-share {
    background: transparent;
    border: 1px solid #dee2e6;
    padding: 8px 20px;
    border-radius: 40px;
    color: #6c757d;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-share:hover {
    background: #f8f9fa;
    border-color: #3d5887;
    color: #3d5887;
}

.btn-close-modal {
    background: linear-gradient(135deg, #3d5887, #5a7ab3);
    border: none;
    padding: 8px 24px;
    border-radius: 40px;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-close-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(61, 88, 135, 0.3);
}

/* Empty state */
.empty-news-v2 {
    background: white;
    border-radius: 24px;
    padding: 3rem;
}

.empty-icon {
    width: 80px;
    height: 80px;
    background: rgba(61, 88, 135, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.empty-icon i {
    font-size: 2.5rem;
    color: #3d5887;
}

/* Responsive */
@media (max-width: 768px) {
    .news-card-image {
        height: 180px;
    }

    .news-card-content {
        padding: 1.2rem;
    }

    .news-card-title {
        font-size: 1rem;
    }

    .modal-body-v2 {
        padding: 1.5rem;
    }

    .modal-title-v2 {
        font-size: 1.3rem;
    }

    .modal-footer-v2 {
        flex-direction: column;
    }

    .btn-share,
    .btn-close-modal {
        width: 100%;
        text-align: center;
    }
}

.partners-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

/* Divider */
.divider-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.divider-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3d5887, transparent);
}

.divider-icon {
    color: #3d5887;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Slider container */
.partners-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.slider-track {
    display: flex;
    gap: 30px;
    animation: scrollPartners 35s linear infinite;
    width: fit-content;
}

.partners-slider-container:hover .slider-track {
    animation-play-state: paused;
}

@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Partner card dans le slider */
.slider-item {
    flex: 0 0 auto;
    width: 180px;
}

.partner-card {
    background: white;
    border-radius: 16px;
    padding: 1.2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(61, 88, 135, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -10px rgba(61, 88, 135, 0.15);
    border-color: rgba(61, 88, 135, 0.15);
}

.partner-img-wrapper {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.partner-img-slider {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-img-slider {
    transform: scale(1.03);
}

.partner-name-slider {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a2a4f;
    margin-bottom: 4px;
}

.partner-type {
    font-size: 0.65rem;
    color: #6c757d;
    display: block;
}

/* Message de remerciement */
.thanks-message {
    position: relative;
    display: inline-block;
    padding: 15px 35px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(61, 88, 135, 0.1);
}

.thanks-icon {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: #3d5887;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    box-shadow: 0 2px 8px rgba(61, 88, 135, 0.3);
}

.thanks-message p {
    color: #6c757d;
    font-size: 0.85rem;
    font-weight: 500;
}

.thanks-decoration {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.thanks-decoration span {
    width: 6px;
    height: 6px;
    background: #3d5887;
    border-radius: 50%;
    opacity: 0.3;
}

.thanks-decoration span:nth-child(2) {
    width: 8px;
    height: 8px;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
    .slider-item {
        width: 140px;
    }

    .partner-img-wrapper {
        height: 65px;
    }

    .partner-img-slider {
        max-height: 50px;
    }

    .partner-name-slider {
        font-size: 0.75rem;
    }

    .partner-type {
        font-size: 0.55rem;
    }

    .thanks-message {
        padding: 10px 20px;
    }

    .thanks-message p {
        font-size: 0.7rem;
    }

    .partner-card {
        padding: 0.8rem;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .slider-item {
        width: 160px;
    }
}

/* Contact Section Styles */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Divider */
.divider-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.divider-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3d5887, transparent);
}

.divider-icon {
    color: #3d5887;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Contact Info Card */
.contact-info-wrapper {
    height: 100%;
}

.contact-card {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    border: 1px solid rgba(61, 88, 135, 0.08);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px -12px rgba(61, 88, 135, 0.15);
}

.info-item {
    transition: all 0.3s ease;
    background: #f8f9fa;
    cursor: default;
}

.info-item:hover {
    background: white;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.transition-hover {
    transition: all 0.3s ease;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: rgba(61, 88, 135, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-wrapper {
    border: 1px solid rgba(61, 88, 135, 0.08);
}

/* Form Styles */
.form-wrapper .card {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.form-wrapper .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 40px -15px rgba(61, 88, 135, 0.2) !important;
}

.form-control {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 12px 16px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.form-control:focus {
    border-color: #3d5887;
    box-shadow: 0 0 0 3px rgba(61, 88, 135, 0.1);
    outline: none;
}

.form-control-lg {
    font-size: 0.95rem;
}

textarea.form-control {
    resize: vertical;
    border-radius: 16px;
}

.btn-submit {
    background: linear-gradient(135deg, #3d5887, #5a7ab3);
    border: none;
    padding: 12px 32px;
    border-radius: 40px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(61, 88, 135, 0.25);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(61, 88, 135, 0.35);
    background: linear-gradient(135deg, #2c3e66, #3d5887);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-card {
        margin-bottom: 1rem;
    }

    .info-item {
        padding: 0.75rem !important;
    }

    .info-icon {
        width: 40px;
        height: 40px;
    }

    .info-icon i {
        font-size: 1.2rem;
    }

    .btn-submit {
        width: 100%;
        padding: 10px 20px;
    }

    .card-body {
        padding: 1.5rem !important;
    }

    .card-header {
        padding: 1.5rem 1.5rem 0 !important;
    }

    h3 {
        font-size: 1.5rem;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .btn-submit {
        padding: 10px 24px;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-top: 1px solid rgba(61, 88, 135, 0.1);
}

.sitename {
    color: #1a2a4f;
    transition: color 0.3s ease;
}

.sitename:hover {
    color: #3d5887;
}

.footer-description {
    line-height: 1.6;
}

.footer-links li a {
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: #3d5887 !important;
    transform: translateX(3px);
}

.footer-links li i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.footer-links li:hover i {
    transform: translateX(3px);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: white;
    color: #3d5887;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(61, 88, 135, 0.15);
}

.social-icon:hover {
    background: #069450;
    color: white;
    transform: translateY(-3px);
    border-color: #3d5887;
}

.newsletter-box {
    background: white;
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid rgba(61, 88, 135, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.newsletter-box input:focus {
    border-color: #3d5887;
    box-shadow: 0 0 0 0.2rem rgba(61, 88, 135, 0.1);
}

.copyright {
    border-top-color: rgba(61, 88, 135, 0.1) !important;
}

/* Scroll Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: #3d5887;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 4px 12px rgba(61, 88, 135, 0.3);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: #5a7ab3;
    transform: translateY(-3px);
    color: white;
}

@media (max-width: 768px) {
    .social-links {
        justify-content: center;
    }

    .copyright .text-md-start,
    .copyright .text-md-end {
        text-align: center !important;
    }

    .copyright p {
        margin-bottom: 0.5rem;
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

/* MODAL PRINCIPAL */
.testimonial-modal-content {
    border: none;
    border-radius: 28px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* HEADER */
.testimonial-modal-header {
    background: linear-gradient(135deg, #1e2a4a, #2a3a60);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: none;
}

.modal-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #47b2e4;
}

.testimonial-modal-header .modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.modal-subtitle {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.65);
}

.btn-close-white {
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.btn-close-white:hover {
    opacity: 1;
    transform: rotate(90deg);
}

/* BODY */
.testimonial-modal-body {
    padding: 28px;
    background: #f8fafc;
}

/* FORM GROUP */
.form-group .form-label {
    color: #1a2a4f;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.form-control {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 12px 16px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    background: white;
}

.form-control:focus {
    border-color: #3d5887;
    box-shadow: 0 0 0 3px rgba(61, 88, 135, 0.1);
    outline: none;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

/* FILE UPLOAD */
.file-upload-wrapper small {
    display: block;
    margin-top: 6px;
    font-size: 0.7rem;
    color: #6c757d;
}

/* OPTIONS FIELDSET */
.options-fieldset {
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 20px;
    background: white;
}

.options-legend {
    float: none;
    width: auto;
    padding: 0 14px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #3d5887;
    background: white;
    border-radius: 30px;
    margin-bottom: 0;
}

.option-card {
    background: #f8fafc;
    border-radius: 14px;
    padding: 14px 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
}

.option-card:hover {
    background: rgba(61, 88, 135, 0.04);
    transform: translateY(-2px);
}

.option-card .form-check {
    padding-left: 0;
    margin-bottom: 0;
}

.option-card .form-check-input {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #3d5887;
}

.option-card .form-check-label {
    cursor: pointer;
    display: inline;
}

.option-card .form-check-label strong {
    color: #1a2a4f;
    display: inline;
    font-size: 0.9rem;
}

.option-card .form-check-label p {
    font-size: 0.7rem;
    color: #6c757d;
    margin-top: 4px;
    margin-bottom: 0;
}

.option-card .form-check-label i {
    margin-right: 6px;
    color: #3d5887;
}

/* FOOTER */
.testimonial-modal-footer {
    border-top: 1px solid #e2e8f0;
    padding: 20px 28px;
    background: white;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    border-radius: 0 0 28px 28px;
}

.btn-cancel {
    background: transparent;
    border: 1.5px solid #e2e8f0;
    padding: 10px 24px;
    border-radius: 40px;
    color: #64748b;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.btn-cancel:hover {
    background: #f1f5f9;
    border-color: #dc3545;
    color: #dc3545;
    transform: translateY(-2px);
}

.btn-submit-testimonial {
    background: linear-gradient(135deg, #3d5887, #5a7ab3);
    border: none;
    padding: 10px 28px;
    border-radius: 40px;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(61, 88, 135, 0.25);
}

.btn-submit-testimonial:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(61, 88, 135, 0.35);
    background: linear-gradient(135deg, #2c3e66, #3d5887);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );
    transition: left 0.5s ease;
}

.btn-submit-testimonial:hover .btn-shine {
    left: 100%;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .testimonial-modal-header {
        padding: 18px 20px;
        flex-wrap: wrap;
    }

    .modal-icon {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
    }

    .testimonial-modal-header .modal-title {
        font-size: 1rem;
    }

    .testimonial-modal-body {
        padding: 20px;
    }

    .row.g-3 {
        flex-direction: column;
    }

    .options-fieldset {
        padding: 16px;
    }

    .testimonial-modal-footer {
        padding: 16px 20px;
        flex-direction: column-reverse;
    }

    .btn-cancel,
    .btn-submit-testimonial {
        width: 100%;
        justify-content: center;
    }
}
/* Styles verts unifiés */
:root {
    --success-color: #28a745;
    --success-dark: #1e7e34;
    --success-light: #48c774;
    --success-soft: rgba(40, 167, 69, 0.1);
}

/* Boutons principaux */
.btn-getstarted {
    background: var(--success-color);
    color: white;
    border: none;
}

.btn-getstarted:hover {
    background: var(--success-dark);
    color: white;
}

/* Hero buttons */
.btn-hero-primary {
    background: var(--success-color);
    color: white;
}

.btn-hero-primary:hover {
    background: var(--success-dark);
    color: white;
}

.btn-hero-outline {
    border: 2px solid var(--success-color);
    color: var(--success-color);
}

.btn-hero-outline:hover {
    background: var(--success-color);
    color: white;
}

/* Navigation active */
.navmenu ul li a.active {
    color: var(--success-color);
}

.navmenu ul li a:hover {
    color: var(--success-color);
}

/* Floating cards */
.floating-icon {
    background: var(--success-color);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Section backgrounds */
.light-background {
    background-color: #f8f9fa;
}

/* Service items */
.service-item {
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    border-color: var(--success-color) !important;
}

/* Divider */
.divider-line {
    width: 60px;
    height: 2px;
    background: var(--success-color);
}

/* Support items */
.support-item {
    border: 1px solid rgba(40, 167, 69, 0.1);
}

.support-item:hover {
    transform: translateX(8px);
    border-color: rgba(40, 167, 69, 0.3);
}

/* Badge gradient */
.badge-gradient {
    background: var(--success-color);
    color: white;
}

/* Skill tags */
.skill-tag {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Testimonial button */
.btn-testimonial-cta {
    background: var(--success-color);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
}

.btn-testimonial-cta:hover {
    background: var(--success-dark);
    color: white;
}

/* Submit buttons */
.btn-submit,
.btn-submit-testimonial {
    background: var(--success-color);
    color: white;
    border: none;
}

/* Footer */
/* .footer {
    background: #1a2a4f;
    color: #fff;
} */

/* Scroll top */
.scroll-top {
    background: var(--success-color);
    color: white;
}

.scroll-top:hover {
    background: var(--success-dark);
    color: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-aos="fade-up"] {
    animation: fadeInUp 0.6s ease-out forwards;
}

.logo-container {
    display: inline-block;
    position: relative;
}

.main-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    position: relative;
    animation: pulseGlow 2s ease-in-out infinite;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-line-1 {
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    opacity: 0.9;
}

.logo-line-2 {
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #ffffff, #a8e6cf);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.logo-divider {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
    margin-left: 55px;
}

.divider-dot {
    width: 4px;
    height: 4px;
    background: #28a745;
    border-radius: 50%;
}

.divider-line {
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #28a745, rgba(40, 167, 69, 0.3));
}

.divider-line-small {
    width: 15px;
    height: 1px;
    background: rgba(40, 167, 69, 0.5);
}

.divider-dot-small {
    width: 3px;
    height: 3px;
    background: rgba(40, 167, 69, 0.5);
    border-radius: 50%;
}

.logo-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.65rem;
    letter-spacing: 1px;
    margin-top: 5px;
    margin-left: 55px;
    font-weight: 300;
}

@keyframes pulseGlow {
    0%,
    100% {
        filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.3));
    }

    50% {
        filter: drop-shadow(0 0 8px rgba(40, 167, 69, 0.5));
    }
}

/* Transition et animation des cartes support */
.support-item {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.support-item:hover {
    transform: translateX(8px);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.15) !important;
}

/* Transition des icônes */
.transition-icon {
    transition: all 0.3s ease;
}

.support-item:hover .transition-icon {
    transform: scale(1.1) rotate(5deg);
}

.support-item:hover .transition-icon i {
    animation: iconPulse 0.5s ease;
}

/* Animation de pulsation pour l'icône */
@keyframes iconPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* Couleurs personnalisées */
.text-purple {
    color: #6f42c1 !important;
}

.bg-purple-soft {
    background: rgba(111, 66, 193, 0.1);
}

/* Effet de brillance au hover sur le conteneur */
.support-item {
    position: relative;
    overflow: hidden;
}

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

.support-item:hover::before {
    left: 100%;
}

/* Animation d'entrée pour chaque item */
.support-item {
    opacity: 0;
    animation: slideInRight 0.5s ease forwards;
}

.support-item:nth-child(1) {
    animation-delay: 0.1s;
}

.support-item:nth-child(2) {
    animation-delay: 0.2s;
}

.support-item:nth-child(3) {
    animation-delay: 0.3s;
}

.support-item:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Version alternative : effet de bordure colorée au hover */
.support-item {
    position: relative;
    border-left: 3px solid transparent;
}

.support-item:hover {
    border-left-color: #28a745;
}

/* Icône spécifique par carte - effet de couleur au hover */
.support-item:hover .bi-shield-check {
    color: #0d6efd !important;
    text-shadow: 0 0 5px rgba(13, 110, 253, 0.5);
}

.support-item:hover .bi-eye {
    color: #28a745 !important;
    text-shadow: 0 0 5px rgba(40, 167, 69, 0.5);
}

.support-item:hover .bi-people {
    color: #fd7e14 !important;
    text-shadow: 0 0 5px rgba(253, 126, 20, 0.5);
}

.support-item:hover .bi-camera-reels {
    color: #6f42c1 !important;
    text-shadow: 0 0 5px rgba(111, 66, 193, 0.5);
}

/* Fond du cercle qui change de couleur au hover */
.support-item:hover .rounded-circle {
    transition: all 0.3s ease;
}

.support-item:hover .rounded-circle:has(.bi-shield-check) {
    background: rgba(13, 110, 253, 0.2) !important;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.2);
}

.support-item:hover .rounded-circle:has(.bi-eye) {
    background: rgba(40, 167, 69, 0.2) !important;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.2);
}

.support-item:hover .rounded-circle:has(.bi-people) {
    background: rgba(253, 126, 20, 0.2) !important;
    box-shadow: 0 0 0 3px rgba(253, 126, 20, 0.2);
}

.support-item:hover .rounded-circle:has(.bi-camera-reels) {
    background: rgba(111, 66, 193, 0.2) !important;
    box-shadow: 0 0 0 3px rgba(111, 66, 193, 0.2);
}
