:root {
    /* Charte couleurs Tom Coach */
    --bs-primary: #48D433;
    --bs-primary-rgb: 72, 212, 51;
    --bs-primary-hover: #48D433;
    --bs-dark: #0B0F0E;
    --bs-dark-rgb: 11, 15, 14;
    --bs-light: #F2F5F3;
    --bs-light-rgb: 242, 245, 243;
    --bs-white: #F2F5F3;
    --bs-black: #0B0F0E;
    --bs-danger: #48D433;
    --bs-danger-rgb: 72, 212, 51;
    --bs-red: #48D433;
    --bs-link-color: #48D433;
    --bs-link-hover-color: #48D433;
    --bs-body-color: #0B0F0E;
    --bs-body-bg: #F2F5F3;
    --bs-body: #0B0F0E;

    /* Suppression du bleu Bootstrap */
    --bs-blue: #48D433;
    --bs-info: #48D433;
    --bs-info-rgb: 72, 212, 51;

    /* Nouvelles variables modernes */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --shadow-sm: 0 2px 8px rgba(11, 15, 14, 0.08);
    --shadow-md: 0 4px 16px rgba(11, 15, 14, 0.12);
    --shadow-lg: 0 8px 32px rgba(11, 15, 14, 0.16);
    --shadow-glow: 0 0 20px rgba(72, 212, 51, 0.3);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --glass-bg: rgba(11, 15, 14, 0.7);
    --glass-border: rgba(242, 245, 243, 0.1);

    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Force bg-dark à utiliser la bonne couleur (override Bootstrap) */
.bg-dark {
    background-color: #0B0F0E !important;
}

.bg-light {
    background-color: #F2F5F3 !important;
}

/* Typography moderne */
body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.display-1, .display-2 {
    font-weight: 800;
}

p {
    font-family: var(--font-body);
    color: var(--bs-body-color);
}

/* Texte clair sur fond sombre */
.bg-dark p,
.bg-dark li,
.bg-overlay-dark p,
.bg-overlay-dark li,
.bg-breadcrumb p,
.about p,
.footer p {
    color: rgba(242, 245, 243, 0.85);
}

.bg-dark .bg-light li,
.bg-dark .bg-white li {
    color: #0B0F0E;
}

.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4, .bg-dark h5, .bg-dark h6,
.bg-overlay-dark h1, .bg-overlay-dark h2, .bg-overlay-dark h3, .bg-overlay-dark h4, .bg-overlay-dark h5, .bg-overlay-dark h6,
.bg-breadcrumb h1, .bg-breadcrumb h2, .bg-breadcrumb h3, .bg-breadcrumb h4, .bg-breadcrumb h5, .bg-breadcrumb h6,
.about h1, .about h2, .about h3, .about h4, .about h5, .about h6 {
    color: #F2F5F3;
}

/* Force tous les liens en vert (pas de bleu Bootstrap) */
a {
    color: var(--bs-primary);
}

a:hover {
    color: var(--bs-primary-hover);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--bs-primary);
    color: var(--bs-dark);
}

/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

/* back-to-to */
.back-to-top a {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 50px;
    right: 40px;
    width: 50px;
    height: 40px;
    margin: 0px;
    font-size: 18px;
    background: var(--bs-primary);
    color: var(--bs-white);
    transition: 0.5s;
    z-index: 999;
    transform: skew(18deg);
}

.back-to-top a i {
    transform: skew(-18deg);
}

.back-to-top a:hover {
    background: var(--bs-dark);
    color: var(--bs-white); 
}

/*** Button Start - Design Moderne 2025 ***/
.btn {
    font-weight: 600;
    border-radius: var(--border-radius-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.text-primary {
    color: var(--bs-primary) !important;
}

.bg-primary {
    background-color: var(--bs-primary) !important;
}

.btn-primary {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-primary-hover) 100%);
    border: none;
    color: var(--bs-dark) !important;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: linear-gradient(135deg, var(--bs-primary-hover) 0%, var(--bs-primary) 100%);
    border: none;
    color: var(--bs-dark) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.text-danger {
    color: var(--bs-primary) !important;
}

.bg-danger {
    background-color: var(--bs-primary) !important;
}

.border-danger {
    border-color: var(--bs-primary) !important;
}

.btn-danger {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-primary-hover) 100%);
    border: none;
    color: var(--bs-dark) !important;
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active {
    background: linear-gradient(135deg, var(--bs-primary-hover) 0%, var(--bs-primary) 100%);
    border: none;
    color: var(--bs-dark) !important;
    transform: translateY(-2px);
}

.btn-square {
    width: 32px;
    height: 32px;
    border-radius: var(--border-radius-sm);
}

.btn-sm-square {
    width: 38px;
    height: 38px;
    border-radius: var(--border-radius-sm);
}

.btn-md-square {
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius-md);
}

.btn-lg-square {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-md);
}

.btn-xl-square {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-lg);
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-dark);
    border: none;
    transform: none;
    transition: var(--transition-normal);
}

.btn.btn-primary span,
.btn.btn-primary i {
    display: inline-block;
    transform: none;
}

.btn.btn-primary:hover {
    background: var(--bs-white);
    color: var(--bs-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
    transform: none;
    transition: var(--transition-normal);
    background: var(--bs-light);
}

.btn.btn-light span,
.btn.btn-light i {
    display: inline-block;
    transform: none;
}

.btn.btn-light:hover {
    color: var(--bs-dark);
    background: var(--bs-primary);
    transform: translateY(-2px);
}

.btn.btn-light.btn-light-keep:hover {
    color: var(--bs-primary);
    background: var(--bs-white);
    transform: translateY(-2px);
}

.btn.btn-dark {
    color: var(--bs-light);
    border: none;
    transform: none;
    transition: var(--transition-normal);
    background: var(--bs-dark);
}

.btn.btn-dark span,
.btn.btn-dark i {
    display: inline-block;
    transform: none;
}

.btn.btn-dark:hover {
    color: var(--bs-dark);
    background: var(--bs-primary);
    transform: translateY(-2px);
}

/* Outline button moderne */
.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--bs-primary);
    color: var(--bs-primary);
}

.btn-outline-primary:hover {
    background: var(--bs-primary);
    color: var(--bs-dark);
    transform: translateY(-2px);
}

/*** Navbar Start ***/
.header-top {
    height: 100%;
    position: relative;
    background-color: var(--bs-dark);
    transition: background-color 0.3s, box-shadow 0.3s;
    z-index: 1000;
}

/* Sticky header */
.header-top.header-scrolled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background-color: rgba(242, 245, 243, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(11, 15, 14, 0.12);
    z-index: 1050;
}

.header-top.header-scrolled .navbar {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}

.header-top.header-scrolled .header-logo {
    height: 48px;
}

.header-top.header-scrolled .navbar-brand {
    padding: 10px 30px 10px 0;
}

.header-top.header-scrolled::after,
.header-top.header-scrolled::before,
.header-top.header-scrolled .navbar-brand::before {
    opacity: 0;
}

.header-spacer {
    display: none;
}

.header-spacer.active {
    display: block;
}

/* Logo */
.header-logo {
    height: 72px;
    width: auto;
    transition: height 0.3s;
}

@media (min-width: 992px) {
    .topbar .text-muted.small {
        color: rgba(242, 245, 243, 0.92) !important;
        font-size: 0.95rem;
        font-weight: 500;
    }

    .topbar .btn.p-0.text-primary {
        color: rgba(242, 245, 243, 0.92) !important;
        opacity: 0.9;
    }

    .topbar .btn.p-0.text-primary:hover {
        opacity: 1;
        color: var(--bs-primary) !important;
    }
}

.header-top::after {
    content: "";
    position: absolute;
    overflow: hidden;
    width: 16%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--bs-dark);
    z-index: 1;
    transition: opacity 0.3s;
}

.topbar .login-btn {
    position: relative;
}

.topbar .login-btn::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
    top: 0;
    right: -1px;
    background: var(--bs-primary);
    transform: skew(18deg);
}

@media (min-width: 992px) {
    .header-top::before {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 100%;
        height: 45px;
        top: 0;
        right: 0;
        background: var(--bs-dark);
        z-index: -1;
        transition: opacity 0.3s;
    }

    .navbar-brand-2 {
        display: none;
    }
}

@media (max-width: 991px) {
    .header-top {
        max-height: none;
    }

    .navbar {
        justify-content: space-between;
    }

    .header-top .container {
        max-height: none;
    }

    .navbar-brand {
        display: flex;
    }

    .navbar-brand-2 {
        position: relative;
        overflow: hidden;
        width: 180px;
        height: 100%;
        padding: 0;
        display: flex;
        align-items: center;
        z-index: 99;
    }

    .navbar-brand-2::before {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 100%;
        height: 600px;
        top: -200px;
        right: 18px;
        background: var(--bs-dark);
        transform: rotate(-18deg);
        z-index: -1;
    }

    .navbar.navbar-light {
        height: 100%;
        padding: 0;
    }

    .navbar .navbar-collapse {
        margin-top: -20px;
    }

}

.mega-menu {
    border: 0;
    border-radius: 12px;
    background: rgba(11, 15, 14, 0.96);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(242, 245, 243, 0.12);
}

.mega-menu .dropdown-item {
    color: rgba(242, 245, 243, 0.92);
    border-radius: 10px;
    padding: 10px 12px;
}

.mega-menu .dropdown-item:hover,
.mega-menu .dropdown-item:focus {
    color: #0B0F0E;
    background-color: #48D433;
}

@media (min-width: 992px) {
    .navbar .dropdown-menu.mega-menu {
        width: min(860px, 92vw);
        left: 50%;
        transform: translateX(-50%);
        margin-top: 14px;
    }
}

/* Nav links – default dark header */
.header-top .navbar .nav-link {
    color: rgba(242, 245, 243, 0.88) !important;
    font-weight: 500;
    letter-spacing: 0.01em;
    background-color: transparent;
    border-radius: var(--border-radius-sm);
    padding: 9px 16px;
    margin: 0 2px;
    transition: var(--transition-normal);
    font-size: 0.92rem;
    text-transform: none;
    position: relative;
}

.header-top .navbar .nav-link:hover,
.header-top .navbar .nav-link:focus {
    color: #fff !important;
    background-color: rgba(242, 245, 243, 0.1);
}

.header-top .navbar .nav-link.active {
    color: var(--bs-primary) !important;
}

/* Scrolled state – light header links */
.header-top.header-scrolled .navbar .nav-link {
    color: var(--bs-dark) !important;
}

.header-top.header-scrolled .navbar .nav-link:hover,
.header-top.header-scrolled .navbar .nav-link:focus {
    color: var(--bs-primary) !important;
    background-color: rgba(11, 15, 14, 0.06);
}

.header-top.header-scrolled .navbar .nav-link.active {
    color: var(--bs-primary) !important;
}

.header-top .navbar .dropdown-menu.mega-menu {
    background-color: rgba(11, 15, 14, 0.96) !important;
}

.navbar-brand {
    position: relative;
    overflow: hidden;
    padding: 30px 50px 30px 0;
    transition: padding 0.3s;
}

.navbar-brand h1,
.navbar-brand-2 h1 {
    letter-spacing: 0.02em;
    font-weight: 700;
}

.navbar-brand h1.text-primary,
.navbar-brand-2 h1.text-primary {
    color: rgba(242, 245, 243, 0.98) !important;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: none;
}

.navbar-brand h1 {
    font-size: 1.65rem;
    line-height: 1.1;
}

.navbar-brand-2 h1 {
    font-size: 1.25rem;
    line-height: 1.1;
}

.navbar-brand h1.text-primary i,
.navbar-brand-2 h1.text-primary i {
    color: var(--bs-primary) !important;
}

.navbar-brand::before {
    content: "";
    position: absolute;
    overflow: hidden;
    width: 300px;
    height: 600px;
    top: -200px;
    right: 18px;
    background: var(--bs-dark);
    transform: rotate(-18deg);
    z-index: -1;
    transition: opacity 0.3s;
}

.header-top .navbar-brand {
    position: relative;
    z-index: 99;
}

.nav-bar .navbar {
    z-index: 9;
}

.nav-bar {
    background: transparent;
}

@media (min-width: 992px) {
    .nav-bar .navbar-nav {
        box-shadow: none;
        border: none;
    }
}

.navbar-light .navbar-brand img {
    max-height: 72px;
    transition: .5s;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 14px 10px;
    font-size: 1rem;
    letter-spacing: 0.02em;
    font-weight: 600;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 0;
    margin-right: 10px;
}

.navbar .navbar-nav .nav-link.nav-cta {
    background: var(--bs-primary);
    color: var(--bs-white) !important;
    border-radius: 10px;
    padding: 10px 14px;
    box-shadow: 0 10px 20px rgba(22, 163, 74, 0.18);
}

.navbar .navbar-nav .nav-link.nav-cta:hover,
.navbar .navbar-nav .nav-item.active .nav-link.nav-cta {
    background: var(--bs-dark);
    color: var(--bs-white) !important;
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: var(--bs-primary);
}

@media (max-width: 991px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 12px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        margin-left: 50px;
        background: var(--bs-light);
    }

    /* Mobile menu: dark text on light background */
    .header-top .navbar .nav-link {
        color: var(--bs-dark) !important;
    }

    .header-top .navbar .nav-link:hover,
    .header-top .navbar .nav-link:focus {
        color: var(--bs-primary) !important;
        background-color: rgba(11, 15, 14, 0.06);
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        flex-direction: column;
    }

    .navbar .navbar-nav .nav-btn a.btn {
        margin-right: 15px;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: none;
        background: var(--bs-primary);
        color: var(--bs-dark);
        transform: skew(18deg);
    }

    .navbar.navbar-expand-lg .navbar-toggler span {
        transform: skew(-18deg);
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu .dropdown-item:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .navbar-nav .nav-btn {
        display: inline-flex;
        margin-left: auto;
        background: transparent;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: transparent;
        border-radius: 10px;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 19px;
        background: var(--bs-white);
        transition: .5s;
        opacity: 1;
    }

    .navbar-nav {
        background: transparent !important;
    }

}

/* CTA button inside navbar */
.nav-cta-btn {
    white-space: nowrap;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    font-size: 0.88rem;
    letter-spacing: 0.02em;
    box-shadow: 0 0 16px rgba(72, 212, 51, 0.25);
    transition: var(--transition-normal);
}

.nav-cta-btn:hover {
    box-shadow: 0 0 24px rgba(72, 212, 51, 0.4);
    transform: translateY(-1px);
}

@media (max-width: 991px) {
    .header-logo {
        height: 56px;
    }

    .nav-cta-btn {
        align-self: flex-start;
        margin-left: 12px;
    }

    .header-top.header-scrolled .header-logo {
        height: 40px;
    }

    .header-top.header-scrolled .navbar-brand {
        padding: 8px 15px 8px 0;
    }
}
/*** Navbar End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background-color: var(--bs-dark);
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb::before {
    content: '';
    position: absolute;
    inset: -10px;
    background-image: url(../img/goal-background-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(4px);
    z-index: 0;
}

.bg-breadcrumb[style*="background-image"]::before {
    background-image: inherit;
}

.bg-breadcrumb > * {
    position: relative;
    z-index: 1;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/


/*** Carousel Hero Header Start ***/
.hero-section {
    background-image: none;
    background: linear-gradient(135deg, #0B0F0E 0%, #0B0F0E 40%, #F2F5F3 100%);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-half-1 {
    background-image: url(../img/header-2.jpg);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
    filter: grayscale(15%);
    transform: scale(100% - 50%);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    width: 58%;
    height: 100%;
    right: 0;
    top: 0;
}

.hero-bg-half-2 {
    background-image: none;
    background: linear-gradient(135deg, #0B0F0E 0%, #48D433 45%, #F2F5F3 100%);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
    filter: none;
    transform: scale(100% - 50%);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    width: 58%;
    height: 100%;
    right: 0;
    top: 0;
}

.hero-section .hero-bg-half-1,
.hero-section .hero-bg-half-2 {
    z-index: 0;
    pointer-events: none;
}

.hero-section > .container {
    position: relative;
    z-index: 1;
}

.hero-section .btn-primary {
    background-color: #48D433;
    border-color: #48D433;
    color: #0B0F0E;
}

.hero-section .btn-primary:hover {
    background-color: #48D433;
    border-color: #48D433;
    color: #0B0F0E;
}

.hero-section .btn-dark {
    background-color: #0B0F0E;
    border-color: #0B0F0E;
    color: #F2F5F3;
}

.hero-section .btn-dark:hover {
    background-color: #0B0F0E;
    border-color: #0B0F0E;
    color: #F2F5F3;
}

.hero-section .bg-dark.bg-opacity-50 {
    background-color: rgba(11, 15, 14, 0.55) !important;
}

@media (max-width: 991px) {
    .hero-bg-half-1 {
        background-image: url(../img/header-2.jpg);
        clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
        filter: grayscale(0%);
        transform: scale(100% - 0%);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
        width: 100%;
        height: 100%;
        right: 0;
        top: 0;
    }

    .hero-bg-half-2 {
        background-image: none;
        background: linear-gradient(135deg, #0B0F0E 0%, #48D433 45%, #F2F5F3 100%);
        clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
        filter: none;
        transform: scale(100% - 0%);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
        width: 100%;
        height: 100%;
        right: 0;
        top: 0;
    }
}

/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item {
    height: 700px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    transform: skew(18deg);
    background: var(--bs-white);
    color: var(--bs-primary);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 51%;
}
.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    right: 51%;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: var(--bs-dark);
    display: flex;
    align-items: center;
    z-index: 9;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }

    .header-carousel.owl-carousel,
    .header-carousel .header-carousel-item {
        height: 700px;
    }
}
/*** Carousel Hero Header End ***/


/*** About Start ***/
.about {
    position: relative;
    overflow: hidden;
    background: var(--bs-dark);
}

@media (min-width: 992px) {
    .about::before {
        content: "";
        position: absolute;
        width: 70%;
        height: 100%;
        top: 0;
        right: -400px;
        background: var(--bs-primary);
        transform: skew(28deg);
    }

    .about .about-content {
        margin-bottom: 60px;
    }
}

@media (max-width: 991px) {
    .about::after {
        content: "";
        position: absolute;
        width: 70%;
        height: 100%;
        top: 0;
        left: -400px;
        background: var(--bs-primary);
        transform: skew(28deg);
    }

    .about .about-content {
        margin-bottom: 0px !important;
    }
}

.about .about-content {
    position: relative;
    z-index: 9;
}

.about .about-img {
    position: relative;
    z-index: 10;
}

.about .tab-class .nav .nav-item a {
    position: relative;
    transform: skew(18deg);
    text-align: center;
    background: var(--bs-white);
    color: var(--bs-dark);
}

.about .tab-class .nav .nav-item a span {
    transform: skew(-18deg);
}

.about .tab-class .nav .nav-item a.active {
    background: var(--bs-primary);
    color: var(--bs-white);
}
/*** About End ***/

/*** Courses Start - Design Moderne 2025 avec Glassmorphism ***/
.courses {
    position: relative;
    overflow: hidden;
    background-color: var(--bs-dark);
    background-image: url(../img/coach\ tom\ avec\ barre\ dans\ salle\ de\ sport.jpeg);
    background-position: center 20%;
    background-repeat: no-repeat;
    background-size: cover;
}

.courses::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 15, 14, 0.85) 0%, rgba(11, 15, 14, 0.95) 100%);
    z-index: 0;
}

.courses > .container {
    position: relative;
    z-index: 1;
}

.courses .courses-item {
    position: relative;
    overflow: hidden;
}

.courses .courses-item p {
    color: rgba(242, 245, 243, 0.8);
    transition: var(--transition-normal);
    font-size: 0.95rem;
    line-height: 1.7;
}

.courses .courses-item:hover p {
    color: var(--bs-white);
}

/* Cards Glassmorphism modernes */
.courses-item .courses-item-inner {
    position: relative;
    transform: none;
    margin: 0 8px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-xl);
    transition: var(--transition-normal);
    overflow: hidden;
}

.courses-item .courses-item-inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bs-primary) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-normal);
}

.courses-item:hover .courses-item-inner {
    background: rgba(11, 15, 14, 0.85);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(72, 212, 51, 0.1);
    border-color: rgba(72, 212, 51, 0.3);
}

.courses-item:hover .courses-item-inner::before {
    opacity: 1;
}

.courses-item .courses-item-inner .data-info .courses-trainer {
    color: var(--bs-white);
    transition: var(--transition-normal);
}

.courses-item:hover .courses-item-inner .data-info .courses-trainer {
    color: var(--bs-primary);
}

.courses-item .courses-item-inner .data-info .courses-date {
    font-size: 13px;
}

/* Image container moderne */
.courses-item .courses-item-inner .courses-icon-img {
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(72, 212, 51, 0.1);
    border: 1px solid rgba(72, 212, 51, 0.2);
    border-radius: var(--border-radius-lg);
    color: var(--bs-primary);
    transition: var(--transition-normal);
    overflow: hidden;
}

.courses-item .courses-item-inner .courses-icon-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
    transition: var(--transition-normal);
}

.courses-item .courses-item-inner .courses-icon-img i {
    font-size: 32px;
    line-height: 1;
}

.courses-item:hover .courses-item-inner .courses-icon-img {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.courses-item:hover .courses-item-inner .courses-icon-img img {
    transform: scale(1.1);
}

.courses-item-inner a.h4,
.courses-item-inner a.d-inline-block.h4 {
    color: var(--bs-white);
    transition: var(--transition-normal);
    font-weight: 600;
}

.courses-item-inner:hover a.h4,
.courses-item-inner:hover a.d-inline-block.h4 {
    color: var(--bs-primary);
}

/* Suppression de l'ancien effet de fond */
.courses-item-inner::after {
    display: none;
}
/*** Courses End ***/

/*** Team Start ***/
.team {
    overflow: hidden;
}

.team .team-item {
    position: relative;
}
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    transform: matrix(1, -0.1, 0, 1, 0, 0);
    transition: 0.5s;
}

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    transition: 0.5s;
    z-index: 1;
}

.team .team-item:hover .team-img::after {
    height: 100%;
    background: var(--bs-light);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    display: flex;
    z-index: 2;
}

.team .team-item .team-img .team-icon a {
    transition: 0.5s;
}

.team .team-item:hover .team-img .team-icon a  {
    margin: 0 7px;
}

.team .team-item .team-content {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 25px;
    border: 1px solid var(--bs-primary);
    border-top: none;
    transform: matrix(1, -0.1, 0, 1, 0, 0);
    transition: 0.5s;
}

.team .team-item .team-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    transition: 0.5s;
    z-index: -1;
}

.team .team-item:hover .team-content,
.team .team-item:hover .team-img {
    transform: matrix(1, 0.1, 0, 1, 0, 0);
    border: none;
}

.team .team-item:hover .team-content::after {
    height: 100%;
    background: var(--bs-dark);
}

.team .team-item .team-content h4 {
    transition: 0.5s;
}

.team .team-item:hover .team-content h4 {
    color: var(--bs-white);
}

.team .team-item--single {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.team .team-item--single .team-img,
.team .team-item--single .team-content,
.team .team-item--single:hover .team-img,
.team .team-item--single:hover .team-content {
    transform: none;
}

.team .team-item--single .team-img {
    border-radius: 16px 16px 0 0;
}

.team .team-item--single .team-img img {
    height: 520px;
    object-fit: cover;
}

 .team .team-item--single .team-img::after {
     height: 0;
     background: transparent;
 }

 .team .team-item--single:hover .team-img::after {
     height: 0;
     background: transparent;
 }

.team .team-item--single .team-content {
    border-radius: 0 0 16px 16px;
}

 .team .team-item--single .team-content {
     background: rgba(11, 15, 14, 0.88);
     border-color: rgba(242, 245, 243, 0.18);
 }

 .team .team-item--single .team-content h4,
 .team .team-item--single .team-content p {
     color: var(--bs-white);
 }

 .team .team-item--single .team-img .team-icon {
     bottom: 32px;
 }

@media (max-width: 991px) {
    .team .team-item--single .team-img img {
        height: 420px;
    }
}

@media (max-width: 575px) {
    .team .team-item--single .team-img img {
        height: 360px;
    }
}
/*** Team End ***/

/*** Testimonial Start - Design Moderne 2025 ***/
.testimonial {
    position: relative;
    overflow: hidden;
    background-color: var(--bs-dark);
}

.testimonial::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/exercice tom coach rameur.jpeg");
    background-position: center 72%;
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(4px) brightness(0.6);
    transform: scale(1.03);
    z-index: 0;
}

.testimonial::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 15, 14, 0.7) 0%, rgba(11, 15, 14, 0.9) 100%);
    z-index: 1;
}

.testimonial > * {
    position: relative;
    z-index: 2;
}

/* Card témoignage moderne */
.testimonial-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-xl);
    padding: 3rem 2rem;
    margin: 0 auto;
}

.testimonial-item .quote-icon {
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    color: var(--bs-primary);
    opacity: 0.3;
    font-size: 3rem;
}

.testimonial-item p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(242, 245, 243, 0.9);
    font-style: italic;
}

.testimonial-item h4 {
    color: var(--bs-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.testimonial-item .d-flex i.fa-star {
    color: var(--bs-primary);
    font-size: 1rem;
    margin: 0 2px;
}

/* Navigation carousel moderne */
.testimonial-carousel .carousel-nav {
    margin-top: 2rem;
}

.testimonial-carousel .carousel-nav button {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-md);
    background: var(--bs-primary);
    color: var(--bs-dark);
    border: none;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    margin: 0 0.5rem;
}

.testimonial-carousel .carousel-nav button:hover {
    background: var(--bs-white);
    color: var(--bs-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Ancien owl carousel (fallback) */
.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    width: 48px;
    height: 48px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bs-primary);
    color: var(--bs-dark);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    border-radius: var(--border-radius-md);
}

.testimonial-carousel .owl-nav .owl-prev i,
.testimonial-carousel .owl-nav .owl-next i {
    transform: none;
}

.testimonial-carousel .owl-nav .owl-prev {
    left: -60px;
}

.testimonial-carousel .owl-nav .owl-next {
    right: -60px;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--bs-white);
    color: var(--bs-dark);
    transform: translateY(-50%) scale(1.05);
}

@media (max-width: 991px) {
    .testimonial-carousel .owl-nav .owl-prev,
    .testimonial-carousel .owl-nav .owl-next {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        transform: none;
        margin: 1rem 0.5rem 0;
    }

    .testimonial-carousel .owl-nav {
        display: flex;
        justify-content: center;
        margin-top: 1rem;
    }
}
/*** Testimonial End ***/

/*** Conatct Start ***/
.contact {
    overflow: hidden;
}

.contact .form-section form .form-section-col {
    transform: skewX(18deg);
    margin: 0 12px;
}

.contact .contact-banner {
    position: relative;
    overflow: hidden;
    display: flex;
    border: 2px solid var(--bs-dark);
    background: var(--bs-light);
}

.contact .contact-banner::after {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    bottom: 0;
    right: 0;
    background-image: url(../img/contact-banner.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.contact form button {
    border: none;
    transition: 0.5s;
}

.contact form button:hover {
    background: var(--bs-white);
    color: var(--bs-primary);
}
/*** Contact End ***/

/*** Footer Start - Design Moderne 2025 ***/
.footer {
    position: relative;
    overflow: hidden;
    background-color: var(--bs-dark);
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(../img/services-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(12px) brightness(0.4);
    transform: scale(1.06);
    opacity: 0.6;
    z-index: 0;
}

.footer > .container {
    position: relative;
    z-index: 1;
}

/* Newsletter masquée par défaut */
.footer .position-relative.d-flex {
    display: none !important;
}

/* Boutons réseaux sociaux modernes */
.footer .btn-primary.btn-md-square {
    background: rgba(72, 212, 51, 0.15);
    border: 1px solid rgba(72, 212, 51, 0.3);
    color: var(--bs-primary);
    backdrop-filter: blur(8px);
}

.footer .btn-primary.btn-md-square:hover {
    background: var(--bs-primary);
    color: var(--bs-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.footer button {
    border: none;
    transition: var(--transition-normal);
}

.footer button:hover {
    background: var(--bs-white);
    color: var(--bs-dark);
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item h4 {
    color: var(--bs-white);
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer .footer-item h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--bs-primary);
    border-radius: 2px;
}

.footer .footer-item .footer-item-img {
    transform: none;
    transition: var(--transition-normal);
}

.footer .footer-item .footer-item-img:hover {
    transform: scale(1.02);
}

.footer .footer-item .footer-item-img img {
    filter: none;
    transition: var(--transition-normal);
    border-radius: var(--border-radius-md);
}

.footer .footer-item .footer-item-img:hover img {
    filter: brightness(1.1);
}

.footer .footer-item a {
    line-height: 2.2;
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(242, 245, 243, 0.8);
    transition: var(--transition-normal);
    display: inline-block;
}

.footer .footer-item p {
    line-height: 1.8;
    color: rgba(242, 245, 243, 0.7);
    font-size: 0.95rem;
}

.footer .footer-item a:hover {
    color: var(--bs-primary);
    transform: translateX(5px);
}

.footer .footer-item .footer-btn a {
    transition: var(--transition-normal);
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
    color: var(--bs-primary);
}

/* Contact info moderne */
.footer .footer-item h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--bs-white);
    margin-bottom: 0.25rem;
}

.footer .footer-item .d-flex {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(242, 245, 243, 0.08);
}

.footer .footer-item .d-flex:last-child {
    border-bottom: none;
}

.footer .footer-item .d-flex i {
    font-size: 1.1rem;
    width: 20px;
    margin-top: 2px;
}
/*** Footer End ***/

/*** Copyright Start - Design Moderne ***/
.copyright {
    border-top: 1px solid rgba(242, 245, 243, 0.1);
    background: rgba(11, 15, 14, 0.95);
}

.copyright .text-body {
    color: rgba(242, 245, 243, 0.6) !important;
    font-size: 0.9rem;
}

.copyright a {
    transition: var(--transition-normal);
}

.copyright a:hover {
    color: var(--bs-primary) !important;
}
/*** Copyright End ***/

/*** Back to Top Moderne ***/
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.back-to-top a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: var(--bs-primary);
    color: var(--bs-dark);
    border-radius: var(--border-radius-md);
    font-size: 1.2rem;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
    transform: none;
}

.back-to-top a i {
    transform: none;
}

.back-to-top a:hover {
    background: var(--bs-white);
    color: var(--bs-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/*** Accordion FAQ - Design Moderne ***/
.accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: transparent;
}

.accordion-item {
    background: rgba(242, 245, 243, 0.03);
    border: 1px solid rgba(242, 245, 243, 0.1) !important;
    border-radius: var(--border-radius-lg) !important;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.accordion-item:hover {
    background: rgba(242, 245, 243, 0.06);
    border-color: rgba(72, 212, 51, 0.3) !important;
}

.accordion-button {
    background: transparent !important;
    color: #F2F5F3 !important;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 1.25rem 1.5rem;
    border: none !important;
    box-shadow: none !important;
    transition: var(--transition-normal);
}

.accordion-button:not(.collapsed) {
    background: rgba(72, 212, 51, 0.1) !important;
    color: #48D433 !important;
    box-shadow: none !important;
}

.accordion-button:focus {
    box-shadow: none !important;
    border-color: transparent !important;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23F2F5F3'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: var(--transition-normal);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2348D433'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}

.accordion-body {
    padding: 0 1.5rem 1.25rem 1.5rem;
    color: rgba(242, 245, 243, 0.8);
    font-size: 0.95rem;
    line-height: 1.7;
    border-top: 1px solid rgba(242, 245, 243, 0.08);
    margin-top: 0;
    padding-top: 1.25rem;
}

/* Accordion sur fond clair (bg-light, bg-white, ou section sans bg-dark) */
.bg-light .accordion-item,
.bg-white .accordion-item,
section:not(.bg-dark):not(.bg-overlay-dark) .accordion-item {
    background: #ffffff;
    border-color: rgba(11, 15, 14, 0.12) !important;
    box-shadow: 0 2px 8px rgba(11, 15, 14, 0.06);
}

section:not(.bg-dark):not(.bg-overlay-dark) .accordion-item:hover {
    background: #ffffff;
    border-color: rgba(72, 212, 51, 0.4) !important;
}

.bg-light .accordion-button,
.bg-white .accordion-button,
section:not(.bg-dark):not(.bg-overlay-dark) .accordion-button {
    color: #0B0F0E !important;
}

.bg-light .accordion-button:not(.collapsed),
.bg-white .accordion-button:not(.collapsed),
section:not(.bg-dark):not(.bg-overlay-dark) .accordion-button:not(.collapsed) {
    color: #48D433 !important;
    background: rgba(72, 212, 51, 0.08) !important;
}

.bg-light .accordion-button::after,
.bg-white .accordion-button::after,
section:not(.bg-dark):not(.bg-overlay-dark) .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230B0F0E'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.bg-light .accordion-button:not(.collapsed)::after,
.bg-white .accordion-button:not(.collapsed)::after,
section:not(.bg-dark):not(.bg-overlay-dark) .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2348D433'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.bg-light .accordion-body,
.bg-white .accordion-body,
section:not(.bg-dark):not(.bg-overlay-dark) .accordion-body {
    color: #333333;
    border-top-color: rgba(11, 15, 14, 0.1);
}

/* Bordure gauche verte sur item actif - fond clair */
section:not(.bg-dark):not(.bg-overlay-dark) .accordion-item:has(.accordion-button:not(.collapsed)) {
    border-left: 3px solid #48D433 !important;
}

.accordion-collapse {
    transition: var(--transition-normal);
}

/* Effet de bordure gauche sur item actif */
.accordion-item:has(.accordion-button:not(.collapsed)) {
    border-left: 3px solid #48D433 !important;
}

/* Assurer la lisibilité du texte sur fonds clairs */
.bg-white strong,
.bg-light strong,
.bg-white b,
.bg-light b {
    color: #0B0F0E;
}

.bg-white p,
.bg-light p,
.bg-white .mb-0 {
    color: #0B0F0E;
}

.bg-white h1,
.bg-white h2,
.bg-white h3,
.bg-white h4,
.bg-white h5,
.bg-white h6,
.bg-light h1,
.bg-light h2,
.bg-light h3,
.bg-light h4,
.bg-light h5,
.bg-light h6 {
    color: #0B0F0E;
}


