/**
* Template Name: SnapFolio
* Template URL: https://bootstrapmade.com/snapfolio-bootstrap-portfolio-template/
* Updated: Jul 21 2025 with Bootstrap v5.3.7
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font: "Roboto",  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: "Ubuntu",  sans-serif;
    --nav-font: "Nunito",  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: #e3e3e3; /* Background color for the entire website, including individual sections */
    --default-color: #00aaff; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #00aaff; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #0093ff; /* 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: #232323; /* 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: #310606; /* 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: #cbefff;  /* The default color of the main navmenu links */
    --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #393939; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #393939; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #ffffff; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #ececec; /* 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: #2c2c2c;
    --surface-color: #323232;
}

.dark-background {
    --background-color: #040b14;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #151f2b;
    --contrast-color: #ffffff;
}

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

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

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

a:hover {
    color: #006090;
    text-decoration: none;
}

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

h3 {
    margin: 25px 5px 15px 5px;
}
h4 {
    font-size: 22px;
    font-style: italic;
    color: #0070a8;
    padding: 10px 10px 10px 20px;
    text-shadow: 1px 1px 2px rgba(119, 119, 119, 0.1);
}
p {
    /*text-align: justify;*/
}
p i, li i {
    color: #00aaff;
    padding-right: 4px;
}

p::selection, ul::selection, ol::selection {
    color: #eee;
    background-color: #00a0f4;
}
p::-moz-selection, ul::-moz-selection, ol::-moz-selection {
    color: #eee;
    background-color: #00a0f4;
}


/* 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
--------------------------------------------------------------*/
.header {
    background-color: #d2ecff; 
    color: var(--default-color);
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    padding: 0 15px;
    width: 300px;
    transition: all ease-in-out 0.3s;
    overflow-y: auto;
    z-index: 997;
}

.header .header-container {
    border-radius: 10px;
    padding: 15px;

    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#5e8f93+0,006090+26,006090+100 */
    /*background: linear-gradient(320deg,  #285267 0%,#004567 40%,#005884 100%); */
    background: linear-gradient(320deg, #0093ff 0%,rgba(0, 147, 255, 0.67),#0093ff 100%); 
    box-shadow: -1px -1px 4px rgba(103, 204, 255, 0.05);

    box-shadow: 2px 0px 15px 1px rgba(255, 255, 255, 0.5) inset;

}
.navmenu li.haut_menu a {
    color: #F0F0F0;
    padding-left: 20px;
}
.navmenu li.haut_menu a:hover {
    color: #00334d;
}
.navmenu li.haut_menu i {
    color: #ffe34b;
}

.emoji_menu {
    padding-left: 3px;
    opacity: 0.7;
    transition: 0.3s;
}
a:hover .emoji_menu {
    opacity: 1;
    font-size: 1.2em;
}

.header .social-links {
    margin: 0 0 10px 0;
}

.header .social-links a {
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--default-color), transparent 90%);
    color: var(--default-color);
    margin: 0 2px;
    border-radius: 50%;
    text-align: center;
    width: 40px;
    height: 40px;
    transition: 0.3s;
}

.header .social-links a:hover {
    color: var(--contrast-color);
    background: var(--accent-color);
}

@media (min-width: 1200px) {

    .header~main,
    .header~#footer {
        margin-left: 330px;
    }
}

@media (max-width: 1199px) {
    .header {
        left: -100%;
    }
}

.header.header-show {
    left: 0;
}

.header .header-toggle {
    color: var(--contrast-color);
    background-color: var(--accent-color);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 9999;
    transition: background-color 0.3s;
}

.header .header-toggle:hover {
    color: var(--contrast-color);
    background-color: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.mobile-nav-toggle {
    display: none;
}

.navmenu {
    padding: 0;
    z-index: 9997;
    width: 100%;
}

.navmenu ul {
    list-style: none;
    padding: 0 0 20px 0;
    margin: 0;
}

.navmenu a,
.navmenu a:focus {
    color:#1d1d1d;
    padding: 5px 10px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 400;
    display: flex;
    align-items: center;
    white-space: nowrap;
    transition: 0.3s;
    width: 100%;
}



.navmenu a .navicon {
    width: 20px;
}



.navmenu a .navicon,
.navmenu a:focus .navicon {
    font-size: 20px;
    margin-right: 10px;
}

.navmenu a .toggle-dropdown,
.navmenu a:focus .toggle-dropdown {
    font-size: 12px;
    line-height: 0;
    margin-left: auto;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    flex-shrink: 0;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.navmenu a .toggle-dropdown:hover,
.navmenu a:focus .toggle-dropdown:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
    color: var(--nav-hover-color);
}

.navmenu a:hover .navicon,
.navmenu .active .navicon,
.navmenu .active:focus .navicon {
    color: #006090;
}

.navmenu .active .toggle-dropdown,
.navmenu .active:focus .toggle-dropdown {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
}

.navmenu .dropdown {
    display: block;
}

.navmenu .dropdown a,
.navmenu .dropdown a:focus {
    color: --nav-dropdown-color;
}

.navmenu .dropdown a:hover,
.navmenu .dropdown .active,
.navmenu .dropdown .active:focus {
    color: var(--nav-dropdown-hover-color);
}

.navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 5px 10px;
    margin: 5px 10px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
}

.navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
}

.navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    color:#cbefff;
    background: linear-gradient(270deg,  rgb(0, 57, 85) 0%,#006090 40%,#006090 100%); 
    position: relative;
    padding: 20px 0 0 0;
    font-size: 15px;
    /*border-left: 15px solid #00aaff;*/
    /*border-right: 15px solid #fff;*/
    box-shadow: inset 0px 12px 9px -6px rgba(0, 40, 50, 0.3);
}
.footer a {
    color:#cbefff;
}
.footer strong {
    color:#87daff;
}
.footer .footer-top {
    padding-bottom: 40px;
}
.footer h3 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #f2f2f2;
    font-weight: 700;
}
.footer h4 {
    font-size: 18px;
    font-weight: 700;
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 12px;
    color: #f2f2f2;
}
.footer h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 1px;
    background-color:rgba(242, 242, 242, 0.63);
}
.footer .footer-info {
    background-color: rgba(134, 134, 134, 0.1);
    padding: 5px 10px 25px 15px;
    border-radius: 30px 10px 10px 10px;
}

.footer .footer-info p {
    margin-bottom: 25px;
    line-height: 1.7;
}
.footer .social-links {
    display: flex;
    margin-top: 25px;
}
.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 16px;
    color: var(--background-color);
    background-color: #00405d;
    margin-right: 10px;
    transition: all 0.5s ease;
}
.footer .social-links a:hover {
    background-color: #00aaff;
    transform: translateY(-3px);
    box-shadow: 2px 2px 2px rgba(0, 64, 93, 0.73);

}
.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer .footer-links li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}
.footer .footer-links li:first-child {
    padding-top: 0;
}
.footer .footer-links li i {
    font-size: 12px;
    color: #f2f2f2;
    margin-right: 8px;
    line-height: 0;
}
.footer .footer-links li a {
    color: var(--default-color);
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}
.footer .footer-links li a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}
.footer .footer-contact .contact-info {
    margin-top: 15px;
}
.footer .footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}
.footer .footer-contact .contact-item i {
    flex-shrink: 0;
    font-size: 18px;
    color: rgb(54, 188, 255);
    margin-top: 4px;
    margin-right: 15px;
    line-height: 1;
}
.footer .footer-contact .contact-item p {
    margin: 0;
    line-height: 1.5;
}
.footer .footer-newsletter p {
    margin-bottom: 15px;
}
.footer .footer-newsletter form {
    position: relative;
    margin-bottom: 30px;
}
.footer .footer-newsletter form input[type=email] {
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    padding: 10px 15px;
    width: 100%;
    height: 44px;
    border-radius: 4px;
    background-color: var(--surface-color);
    color: var(--default-color);
    font-size: 14px;
}
.footer .footer-newsletter form input[type=email]:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent-color), transparent 75%);
    outline: none;
}
.footer .footer-newsletter form input[type=email]::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.footer .footer-newsletter form button {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border: 0;
    padding: 10px 15px;
    height: 44px;
    border-radius: 0 4px 4px 0;
    transition: 0.3s;
}
.footer .footer-newsletter form button:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}
.footer .footer-newsletter .opening-hours {
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding-top: 20px;
}
.footer .footer-newsletter .opening-hours h5 {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
}
.footer .footer-newsletter .opening-hours h5 i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 18px;
}
.footer .footer-newsletter .opening-hours p {
    margin-bottom: 0;
    line-height: 1.7;
}
.footer .copyright {
    padding: 25px 0;
    margin-top: 20px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.footer .copyright p {
    margin-bottom: 0;
    font-size: 14px;
}
.footer .copyright .sitename {
    color: var(--accent-color);
}
.footer .credits {
    padding-top: 5px;
    font-size: 13px;
}
.footer .credits a {
    color: var(--accent-color);
}
.footer .credits a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
}
@media (max-width: 992px) {
    .footer .footer-info,
    .footer .footer-links,
    .footer .footer-contact,
    .footer .footer-newsletter {
        margin-bottom: 30px;
    }
}
@media (max-width: 768px) {
    .footer h4 {
        text-align: center;
    }
    .footer h4::after {
        /* left: 50%;
        transform: translateX(-50%);*/
        width: 100%;

    }
    .footer .footer-links li {
        justify-content: center;
    }
    .footer .footer-contact .contact-item {
        justify-content: center;
        text-align: center;
    }
    .footer .footer-contact .contact-item i {
        margin-right: 10px;
    }
    .footer .footer-contact .contact-item p {
        text-align: center;
    }
    .footer .opening-hours h5 {
        justify-content: center;
    }
    .footer .opening-hours p {
        text-align: center;
    }
    .footer .footer-info p {
        text-align: center;
    }
    .footer .social-links {
        justify-content: center;
    }
} 

.footer .copyright p.copyright_poseuse {
    font-size: 13px;
}
.mention_c_poseuse a {
    font-size: 0.7em;
    color: rgb(90, 200, 255);
    letter-spacing: 0.2em;
}
/*--------------------------------------------------------------
# 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 {
    color: #0af;
    padding: 25px 0 0 0;
    position: relative;
}

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

.page-title h1 {
    font-size: 24px;
    font-weight: 700;
}

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

.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 {
    background-color:#ffffff;
    padding: 20px 15px 15px 15px;
    overflow: clip;
    margin: 0px 10px 20px 0;
}

.section_sans_marge {
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

section.bg_degrade {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,f2f2f2+44,f2f2f2+44,fcfcfc+100 */
    background: linear-gradient(135deg,  #ddf4ff 0%,#f2f2f2 44%,#f2f2f2 44%,#fcfcfc 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    box-shadow: inset 0px 9px 9px -6px rgba(133, 149, 157, 0.2);   
    border-radius: 15px 0px 0px 10px;
}



/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    /*text-align: center;*/
    padding-bottom: 5px;
    margin: 0;
    position: relative;
    border-radius: 0px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    position: relative;
}

.section-title h2:before,
.section-title h2:after {
    content: "";
    width: 50px;
    height: 2px;
    background: var(--accent-color);
    display: inline-block;
}

.section-title h2:before {
    margin: 0 15px 10px 0;
}

.section-title h2:after {
    margin: 0 0 10px 15px;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;    
}

.hero .background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero .background-elements .bg-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 95%));
    animation: float 6s ease-in-out infinite;
}

.hero .background-elements .bg-circle.circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.hero .background-elements .bg-circle.circle-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.hero .hero-content {
    position: relative;
    width: 100%;
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero .hero-text h1 {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    color: var(--heading-color);

    text-shadow: 2px 2px 4px rgba(0, 81, 121, 0.55), 0px -5px 35px rgba(255,255,255,0.3);
}

.hero .hero-text h1 .accent-text {
    color: var(--accent-color);
    position: relative;
}

.hero .hero-text h1 .accent-text::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 50%));
}

.hero .hero-text h2 {
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0.1em;
    /*color: var(--heading-color);*/
    margin-bottom: 10px;

    /*background-color: #00aaff;*/
    color: #4e4e4e;
    padding-left: 10px;
    border-radius: 5px;
}

.lead {
    font-size: 24px;
    text-shadow: 1px 1px 2px #fff;
    padding: 0 0 5px 100px;
    margin-bottom: 0px;
    color: var(--default-color);
}
@media (max-width: 992px) {
    .lead {
        padding: 0 0 5px 20px;
    }
}
.lead span {
    color: var(--accent-color);
    font-weight: 600;
    /*border-bottom: 2px solid var(--accent-color);*/
    padding: 2px 2px 2px 2px;
}

.hero .hero-text .description {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 40px;
    max-width: 500px;
    margin-top: 5px;

}


.hero .hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero .hero-actions .btn {
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid;
}

.hero .hero-actions .btn.btn-primary {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-color: var(--accent-color);
}

.hero .hero-actions .btn.btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 10%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.hero .hero-actions .btn.btn-outline {
    background-color: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.hero .hero-actions .btn.btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

.hero .social-links {
    display: flex;
    gap: 20px;
}

.hero .social-links a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #c1eaff;
    color: rgba(0, 96, 144, 0.81);
    border-radius: 50%;
    font-size: 20px;
    transition: all 0.3s ease;
}

.hero .social-links a:hover {
    color: var(--contrast-color);
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.hero .hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.hero .hero-visual .profile-container {
    position: relative;
    width: 400px;
    height: 400px;
    box-shadow: 3px 0px 15px #bcbcbc;
    border-radius: 20px;
}

.hero .hero-visual .profile-container .profile-background {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 100%;
    height: 100%;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 30px;
    z-index: 1;
}

.hero .hero-visual .profile-container .profile-image {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    z-index: 2;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

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

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

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

@media (max-width: 992px) {
    .hero .hero-text {
        /*text-align: center;
        margin-bottom: 50px;*/
    }

    .hero .hero-text h1 {
        font-size: 56px;
    }

    .hero .hero-text h2 {
        font-size: 28px;
    }

    .lead {
        font-size: 20px;
    }

    .hero .hero-visual .profile-container {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .hero .hero-text h1 {
        font-size: 42px;
    }

    .hero .hero-text h2 {
        font-size: 24px;
    }

    .lead {
        font-size: 18px;
    }

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

    .hero .hero-actions {
        justify-content: center;
    }

    .hero .hero-actions .btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .hero .hero-visual .profile-container {
        width: 300px;
        height: 300px;
    }

    .hero .background-elements .bg-circle.circle-1 {
        width: 200px;
        height: 200px;
    }

    .hero .background-elements .bg-circle.circle-2 {
        width: 150px;
        height: 150px;
    }

    .hero .background-elements .bg-circle.circle-3 {
        width: 100px;
        height: 100px;
    }
}



/*--------------------------------------------------------------
# Section
--------------------------------------------------------------*/
section h1 {
    font-size:48px;
    color: #999;
    line-height: 1em;
    /*border-bottom: 1px solid #888;*/
    padding: 15px 0px 0px 7px;
    margin: 0px 30px 30px 0px;
    font-weight: normal;
    font-style: italic;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    font-family:serif;
    text-align: center;

}

@media (max-width: 768px) {
    section h1 {
        clear: both;
        font-size:32px;
        color: #aaa;
        padding: 0px 0px 0px 7px;
        margin: 10px 10px 15px 0px;
    }
}


@media (min-width: 400px) {
    section h1::first-letter {
        font-size:70px;
        color: #52c3ff;
        text-shadow: 2px 2px 4px #666;
    }
}


.section-title #logo_poseuse_head img {
    width: 280px;
    position:relative;
    margin-right: 20px;
    top:-10px;
    float: left;
    opacity: 0;               /* invisible au départ */
    animation: fadeIn 1.5s ease forwards;
    animation-delay: 0.5s;      /* commence 1 seconde après */ 

    -webkit-animation: fadeIn 1.5s ease forwards;
    -webkit-animation-delay: 0.5s;
}

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

@media (max-width: 760px) {
    .section-title #logo_poseuse_head img {
        width: 150px;
    }
}



section h2 {
    font-size:40px;
    color: #006090;
    letter-spacing: 1px;
    line-height: 1em;
    padding: 8px 5px 5px 20px;
    margin: 0px 0px 15px 0px;
    font-weight: normal;
    font-style: italic;
    font-family:serif;
    background-color: rgba(100, 203, 255, 0.1);
    border-bottom: 1px solid #eee;
    border-left: 1px solid #eee;
    border-radius: 10px 5px 0px 10px;
}
@media (max-width: 768px) {
    section h2 {
        font-size:28px;
        letter-spacing: 0px;
        line-height: 1em;
        padding: 8px 5px 5px 20px;
        margin: 20px 0px 15px 0px;
    }
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .profile-card {
    background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 5%) 100%);
    border-radius: 2rem;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
    position: relative;
    overflow: hidden;
}

.about .profile-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
}

@media (max-width: 991px) {
    .about .profile-card {
        margin-bottom: 3rem;
    }
}

.about .profile-header {
    position: relative;
    margin-bottom: 2rem;
}

.about .profile-header .profile-image {
    width: 160px;
    height: 160px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about .profile-header .profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about .profile-header .profile-badge {
    position: absolute;
    bottom: 20px;
    right: calc(50% - 65px);
    width: 32px;
    height: 32px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--surface-color);
}

.about .profile-header .profile-badge i {
    color: var(--contrast-color);
    font-size: 14px;
}

.about .profile-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--heading-color);
}

.about .profile-content .profession {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 2rem;
}

.about .contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about .contact-links .contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 50%);
    border-radius: 0.75rem;
    text-decoration: none;
    color: var(--default-color);
    transition: all 0.3s;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.about .contact-links .contact-item:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.about .contact-links .contact-item i {
    font-size: 1rem;
    width: 18px;
}

.about .about-content {
    padding-left: 3rem;
}

@media (max-width: 991px) {
    .about .about-content {
        padding-left: 0;
    }
}

.about .about-content .section-header {
    margin-bottom: 2rem;
}

.about .about-content .section-header .badge-text {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
    color: var(--contrast-color);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.about .about-content .section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

@media (max-width: 768px) {
    .about .about-content .section-header h2 {
        font-size: 1.875rem;
    }
}

.about .about-content .description {
    margin-bottom: 2.5rem;
}

.about .about-content .description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 1.5rem;
}

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

.about .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background-color: var(--surface-color);
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .about .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
}

.about .stats-grid .stat-item {
    text-align: center;
}

.about .stats-grid .stat-item .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.5rem;
}

.about .stats-grid .stat-item .stat-label {
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-weight: 500;
}

.about .details-grid {
    margin-bottom: 2.5rem;
}

.about .details-grid .detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .about .details-grid .detail-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.about .details-grid .detail-row:last-child {
    margin-bottom: 0;
}

.about .details-grid .detail-item .detail-label {
    display: block;
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.about .details-grid .detail-item .detail-value {
    display: block;
    font-weight: 600;
    color: var(--heading-color);
    font-size: 1rem;
}

.about .cta-section {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.about .cta-section .btn {
    padding: 0.875rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid transparent;
}

.about .cta-section .btn.btn-primary {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

.about .cta-section .btn.btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 15%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.about .cta-section .btn.btn-outline {
    background-color: transparent;
    color: var(--default-color);
    border-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.about .cta-section .btn.btn-outline:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 992px) {
    .stats .stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats .stats-wrapper {
        grid-template-columns: 1fr;
    }
}

.stats .stats-item {
    background: linear-gradient(135deg, color-mix(in srgb, var(--surface-color), transparent 5%), var(--surface-color));
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.stats .stats-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.stats .stats-item:hover .icon-wrapper {
    transform: scale(1.1);
}

.stats .stats-item:nth-child(1) .icon-wrapper {
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.stats .stats-item:nth-child(1) .icon-wrapper i {
    color: color-mix(in srgb, var(--accent-color), transparent 10%);
}

.stats .stats-item:nth-child(2) .icon-wrapper {
    background-color: color-mix(in srgb, #ff7e00, transparent 85%);
}

.stats .stats-item:nth-child(2) .icon-wrapper i {
    color: color-mix(in srgb, #ff7e00, transparent 10%);
}

.stats .stats-item:nth-child(3) .icon-wrapper {
    background-color: color-mix(in srgb, #00c875, transparent 85%);
}

.stats .stats-item:nth-child(3) .icon-wrapper i {
    color: color-mix(in srgb, #00c875, transparent 10%);
}

.stats .stats-item:nth-child(4) .icon-wrapper {
    background-color: color-mix(in srgb, #e83e8c, transparent 85%);
}

.stats .stats-item:nth-child(4) .icon-wrapper i {
    color: color-mix(in srgb, #e83e8c, transparent 10%);
}

.stats .stats-item .icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.stats .stats-item .icon-wrapper i {
    font-size: 36px;
}

.stats .stats-item span {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 10px;
    line-height: 1;
    font-family: var(--heading-font);
}

.stats .stats-item p {
    color: var(--default-color);
    font-size: 18px;
    margin: 0;
    font-weight: 500;
    font-family: var(--heading-font);
    opacity: 0.8;
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .skills-category {
    background-color: var(--surface-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s;
}

.skills .skills-category:hover {
    transform: translateY(-5px);
}

.skills .skills-category h3 {
    font-size: 24px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.skills .skills-category h3:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

.skills .skill-item {
    margin-bottom: 25px;
}

.skills .skill-item:last-child {
    margin-bottom: 0;
}

.skills .skill-item h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.skills .skill-item .skill-percentage {
    font-size: 14px;
    color: color-mix(in srgb, var(--heading-color), transparent 30%);
}

.skills .skill-item .progress {
    height: 8px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.skills .skill-item .progress .progress-bar {
    background-color: var(--accent-color);
    transition: width 1.5s ease-in-out;
    width: 0;
    height: 100%;
    border-radius: 20px;
}

.skills .skill-item .skill-tooltip {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-top: 8px;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s;
}

.skills .skill-item:hover .skill-tooltip {
    opacity: 1;
    transform: translateY(0);
}

.skills .skill-box {
    background-color: var(--surface-color);
    padding: 25px 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.skills .skill-box:hover {
    transform: translateY(-5px);
}

.skills .skill-box:hover i {
    color: var(--accent-color);
    transform: scale(1.1);
}

.skills .skill-box:hover .skill-tooltip {
    opacity: 1;
    transform: translateY(0);
}

.skills .skill-box i {
    font-size: 36px;
    color: color-mix(in srgb, var(--accent-color), transparent 20%);
    margin-bottom: 15px;
    display: inline-block;
    transition: all 0.3s;
}

.skills .skill-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.skills .skill-box .skill-tooltip {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.3s;
}

@media (max-width: 991.98px) {
    .skills .skills-category {
        margin-bottom: 30px;
    }

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

@media (max-width: 767.98px) {
    .skills .skill-box {
        margin-bottom: 20px;
    }

    .skills .skill-box:last-child {
        margin-bottom: 0;
    }
}

/*--------------------------------------------------------------
# Resume Section
--------------------------------------------------------------*/
.resume .resume-side {
    background-color: var(--surface-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.resume .resume-side .profile-img {
    text-align: center;
}

.resume .resume-side .profile-img img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 5px solid color-mix(in srgb, var(--accent-color), transparent 85%);
    border-radius: 50%;
}

.resume .resume-side h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--heading-color);
    font-weight: 600;
}

.resume .resume-side .contact-info li {
    margin-bottom: 1rem;
    color: var(--default-color);
}

.resume .resume-side .contact-info li i {
    width: 25px;
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.resume .resume-side .skill-item {
    margin-bottom: 1.5rem;
}

.resume .resume-side .skill-item span {
    font-size: 0.9rem;
    color: var(--default-color);
}

.resume .resume-side .skill-item .progress {
    height: 8px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 4px;
    margin-top: 0.5rem;
}

.resume .resume-side .skill-item .progress .progress-bar {
    background-color: var(--accent-color);
    width: 0;
    transition: width 1s ease;
}

.resume .resume-section {
    margin-bottom: 3rem;
}

.resume .resume-section h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
    font-weight: 600;
}

.resume .resume-section h3 i {
    color: var(--accent-color);
}

.resume .resume-section .resume-item {
    padding-left: 1.5rem;
    border-left: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
    margin-bottom: 2rem;
    position: relative;
}

.resume .resume-section .resume-item:before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    left: -9px;
    top: 0;
    background: var(--accent-color);
}

.resume .resume-section .resume-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--heading-color);
    font-weight: 600;
}

.resume .resume-section .resume-item h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.resume .resume-section .resume-item .company {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.resume .resume-section .resume-item .company i {
    margin-right: 0.5rem;
}

.resume .resume-section .resume-item ul {
    padding-left: 1.2rem;
}

.resume .resume-section .resume-item ul li {
    margin-bottom: 0.5rem;
    color: var(--default-color);
}

.resume .resume-section .resume-item p {
    color: var(--default-color);
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .resume .resume-side {
        margin-bottom: 2rem;
    }
}

/* ggggggggggggggggggggggggggggggggggggggg*/

/*--------------------------------------------------------------
# Portfolio Section du template https://bootstrapmade.com/content/demo/Passion/#portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-container {
    position: relative;
    padding-bottom: 20px;
    border-bottom: 1px dotted rgb(93, 199, 255);
    border-radius: 20px;
    background-color: rgba(0, 96, 144, 0.06);
}

.portfolio .portfolio-filters {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.portfolio .portfolio-filters li {

    color: #d6f1ff;

    background: linear-gradient(320deg, #0093ff 0%,#007cd6 40%,#48b1ff 100%);
    box-shadow: -1px -1px 2px rgba(0, 170, 255, 0.55);


    cursor: pointer;
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    transition: all 0.3s ease-in-out;
    border-radius: 10px 5px 10px 10px;
}

.portfolio .portfolio-filters li:hover {
    color: var(--accent-color);
}

.portfolio .portfolio-filters li.filter-active {
    color:#00293e;
    background: linear-gradient(320deg, #0079d3 0%,#4fb4ff 40%,#0076cc 100%);
}

.portfolio .portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    z-index: 1;
}

.portfolio .portfolio-wrap::before {
    content: "";
    background: rgba(0, 147, 255, 0.25);
    background: linear-gradient(320deg, rgba(0, 160, 244, 0.2) 10%,rgba(0, 96, 144, 0.2) 90%);

    position: absolute;
    left: 30px;
    right: 30px;
    top: 30px;
    bottom: 30px;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 0;
}

.portfolio .portfolio-wrap img {
    transition: 0.3s;
    width: 100%;
}

.portfolio .portfolio-wrap .portfolio-info {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 30px;
    color: #edf9ff;
    padding: 5px;
    border-radius: 5px;    
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);

    background: rgba(0, 96, 144, 0.67);
    font-weight: 600;
    margin-bottom: 5px;
    font-family: serif;

}

.portfolio .portfolio-wrap .portfolio-info p {
    color: #006090;
    background: rgba(237, 249, 255, 0.76);  
    font-size: 14px;
    margin: 0 0 15px 0;
    padding: 5px;
    padding: 5px;
    border-radius: 5px;
}

.portfolio .portfolio-wrap .portfolio-info .portfolio-links {
    display: flex;
    gap: 15px;
}

.portfolio .portfolio-wrap .portfolio-info .portfolio-links a {
    color: #006090;
    background: rgba(237, 249, 255, 0.9);  
    box-shadow: 0 0 3px rgba(255, 255, 255, 0.4);

    font-size: 20px;
    transition: 0.3s;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 0;
}

.portfolio .portfolio-wrap .portfolio-info .portfolio-links a:hover {
    background: #00a0f4;  
    color: #ceefff;

}

.portfolio .portfolio-wrap:hover::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.5;
}

.portfolio .portfolio-wrap:hover img {
    transform: scale(1.1);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
    opacity: 1;
}

/*gggggggggggggggggggggggggggggggg*/
/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-header {
    margin-bottom: 60px;
}

.services .service-header .service-intro .service-heading {
    font-size: 48px;
    margin-bottom: 0;
    font-weight: 700;
    line-height: 1.2;
    color: var(--heading-color);
}

.services .service-header .service-intro .service-heading div {
    display: block;
    position: relative;
}

.services .service-header .service-intro .service-heading span {
    display: block;
    color: var(--accent-color);
}

@media (max-width: 992px) {
    .services .service-header .service-intro .service-heading {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .services .service-header .service-intro .service-heading {
        font-size: 30px;
        margin-bottom: 20px;
    }
}

.services .service-header .service-summary p {
    margin-bottom: 25px;
    color: var(--default-color);
}

.services .service-header .service-summary .service-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.services .service-header .service-summary .service-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.services .service-header .service-summary .service-btn:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
    color: var(--contrast-color);
}

.services .service-header .service-summary .service-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .services .service-header .service-summary {
        margin-top: 30px;
    }
}

.services .service-card {
    padding: 40px 40px 40px 40px;
    margin-bottom: 30px;
    border: 2px solid color-mix(in srgb, var(--accent-color), transparent 90%);
    transition: all 0.3s ease;
}

.services .service-card .service-icon {
    margin-bottom: 25px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    width: 64px;
    height: 64px;
}

.services .service-card .service-icon i {
    font-size: 32px;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.services .service-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
}

.services .service-card h3 a {
    color: var(--heading-color);
    transition: color 0.3s ease;
}

.services .service-card h3 a span {
    display: block;
}

.services .service-card h3 a:hover {
    color: var(--accent-color);
}

.services .service-card p {
    color: var(--default-color);
    transition: color 0.3s ease;
    margin-bottom: 0;
}

.services .service-card .card-action {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-color);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.services .service-card .card-action i {
    font-size: 24px;
    color: var(--contrast-color);
    transition: transform 0.3s ease;
}

.services .service-card .card-action:hover i {
    transform: rotate(45deg);
}

.services .service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--surface-color);
    clip-path: polygon(70% 0, 100% 30%, 100% 100%, 0 100%, 0 0);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.services .service-card:hover {
    border-color: transparent;
}

.services .service-card:hover::before {
    opacity: 1;
    visibility: visible;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.services .service-card:hover h3 a {
    color: var(--accent-color);
}

.services .service-card:hover h3 a:hover {
    color: var(--accent-color);
}

.services .service-card:hover p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services .service-card:hover .card-action {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.services .service-card:hover .service-icon i {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .services .service-card {
        padding: 150px 25px 25px;
    }

    .services .service-card h3 {
        font-size: 24px;
    }

    .services .service-card .service-icon {
        position: absolute;
        top: 40px;
        left: 25px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 70px 0 50px;
    }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.testimonials .testimonial-masonry::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, color-mix(in srgb, var(--accent-color), transparent 95%), transparent);
    opacity: 0.5;
    z-index: -1;
}

.testimonials .testimonial-item:nth-child(3n-1) {
    margin-top: 3rem;
}

.testimonials .testimonial-item:nth-child(3n) {
    margin-top: 1.5rem;
}

.testimonials .testimonial-item.highlight .testimonial-content {
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.testimonials .testimonial-item.highlight .testimonial-content .quote-pattern {
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.testimonials .testimonial-item.highlight .testimonial-content .quote-pattern i {
    color: var(--accent-color);
}

.testimonials .testimonial-content {
    background-color: var(--surface-color);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .testimonial-content:hover {
    transform: translateY(-5px);
}

.testimonials .testimonial-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.5rem 0;
    position: relative;
}

.testimonials .quote-pattern {
    position: absolute;
    top: -1.25rem;
    left: 2rem;
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--surface-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .quote-pattern i {
    font-size: 1.25rem;
    color: var(--accent-color);
}

.testimonials .client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .client-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.testimonials .client-details h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.testimonials .client-details .position {
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--heading-color), transparent 40%);
}

@media (max-width: 1199.98px) {
    .testimonials .testimonial-masonry {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .testimonials .testimonial-item:nth-child(3n-1),
    .testimonials .testimonial-item:nth-child(3n) {
        margin-top: 0;
    }

    .testimonials .testimonial-item:nth-child(even) {
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .testimonials .testimonial-masonry {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonials .testimonial-item:nth-child(even) {
        margin-top: 0;
    }

    .testimonials .testimonial-content {
        padding: 1.5rem;
    }

    .testimonials .testimonial-content p {
        font-size: 0.9375rem;
        margin: 1.25rem 0;
    }

    .testimonials .quote-pattern {
        width: 2.25rem;
        height: 2.25rem;
        top: -1.125rem;
    }

    .testimonials .quote-pattern i {
        font-size: 1.125rem;
    }

    .testimonials .client-info {
        margin-top: 1.25rem;
        padding-top: 1.25rem;
    }

    .testimonials .client-image {
        width: 45px;
        height: 45px;
    }

    .testimonials .client-details h3 {
        font-size: 1rem;
    }

    .testimonials .client-details .position {
        font-size: 0.8125rem;
    }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-box {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 3rem;
    border-radius: 1rem;
    height: 100%;
}

.contact .info-box h3 {
    color: var(--contrast-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
    .contact .info-box h3 {
        font-size: 1.75rem;
    }
}

.contact .info-box p {
    opacity: 0.8;
    margin-bottom: 2rem;
}

.contact .info-box a {
    color: var(--contrast-color);
}

@media (max-width: 992px) {
    .contact .info-box {
        padding: 1.5rem;
    }
}

.contact .info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

.contact .info-item .icon-box {
    width: 3.5rem;
    height: 3.5rem;
    background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.3s;
}

.contact .info-item .icon-box i {
    font-size: 1.5rem;
    color: var(--contrast-color);
}

.contact .info-item:hover .icon-box {
    background-color: color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.contact .info-item .content h4 {
    color: var(--contrast-color);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact .info-item .content p {
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.contact .info-item .content p:last-child {
    margin-bottom: 0;
}

.contact .contact-form {
    background-color: var(--surface-color);
    padding: 3rem;
    border-radius: 1rem;
    height: 100%;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
    .contact .contact-form {
        padding: 1.5rem;
    }
}

.contact .contact-form h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .contact .contact-form h3 {
        font-size: 1.75rem;
    }
}

.contact .contact-form p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 2rem;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
    padding: 0.875rem 1.25rem;
    border-color: color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 0.5rem;
    background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
    color: var(--default-color);
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
    box-shadow: none;
    border-color: var(--accent-color);
}

.contact .contact-form .form-control::placeholder,
.contact .contact-form .form-select::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact .contact-form .btn {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 1rem 2rem;
    border-radius: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: 0.3s;
}

.contact .contact-form .btn i {
    font-size: 1.25rem;
}

.contact .contact-form .btn:hover {
    background-color: color-mix(in srgb, var(--accent-color), var(--contrast-color) 20%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(var(--default-color), 0.1);
}

.portfolio-details .portfolio-details-slider .swiper-wrapper {
    height: auto !important;
}

.portfolio-details .portfolio-details-slider img {
    aspect-ratio: 16/9;
    object-fit: cover;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
    position: absolute;
    bottom: 20px;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--contrast-color);
    opacity: 0.5;
    transition: 0.3s;
}

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

.portfolio-details .portfolio-info {
    padding: 30px;
    background-color: var(--surface-color);
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(var(--default-color), 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 90%);
}

.portfolio-details .portfolio-info ul {
    padding: 0;
    list-style: none;
}

.portfolio-details .portfolio-info ul li {
    padding: 10px 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.portfolio-details .portfolio-info ul li:last-child {
    border-bottom: 0;
}

.portfolio-details .portfolio-info ul li strong {
    font-weight: 600;
    margin-right: 10px;
    color: var(--heading-color);
}

.portfolio-details .portfolio-info ul li a {
    color: var(--accent-color);
    transition: 0.3s;
}

.portfolio-details .portfolio-info ul li a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: underline;
}

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

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

.portfolio-details .portfolio-description .features h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 30px;
}

.portfolio-details .portfolio-description .features .feature-item {
    padding: 30px;
    background-color: var(--surface-color);
    border-radius: 8px;
    height: 100%;
    transition: 0.3s;
    box-shadow: 0 0 30px rgba(var(--default-color), 0.1);
}

.portfolio-details .portfolio-description .features .feature-item:hover {
    transform: translateY(-5px);
}

.portfolio-details .portfolio-description .features .feature-item i {
    font-size: 32px;
    color: var(--accent-color);
    margin-bottom: 20px;
    display: inline-block;
}

.portfolio-details .portfolio-description .features .feature-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.portfolio-details .portfolio-description .features .feature-item p {
    margin: 0;
    font-size: 15px;
}

@media (max-width: 991px) {
    .portfolio-details .portfolio-info {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .portfolio-details .portfolio-description h2 {
        font-size: 24px;
    }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-details-slider {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    z-index: 1;
}

.service-details .service-details-slider .swiper-wrapper {
    height: auto !important;
}

.service-details .service-details-slider .swiper-pagination {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 2;
}

.service-details .service-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: var(--contrast-color);
    opacity: 0.5;
    transition: 0.3s;
}

.service-details .service-details-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
    width: 20px;
    border-radius: 5px;
}

.service-details .content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-details .content p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 15px;
}

.service-details .content .features .feature-box {
    padding: 20px;
    background: var(--surface-color);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: 0.3s;
}

.service-details .content .features .feature-box:hover {
    transform: translateY(-5px);
}

.service-details .content .features .feature-box i {
    font-size: 24px;
    color: var(--accent-color);
    margin-right: 15px;
}

.service-details .content .features .feature-box h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.service-details .service-info {
    background: var(--surface-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.service-details .service-info h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.service-details .service-info .info-item {
    margin-bottom: 25px;
}

.service-details .service-info .info-item:last-child {
    margin-bottom: 0;
}

.service-details .service-info .info-item i {
    font-size: 24px;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.service-details .service-info .info-item h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.service-details .service-info .info-item p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 0;
}

.service-details .related-services {
    background: var(--surface-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.service-details .related-services h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.service-details .related-services .service-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .related-services .service-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.service-details .related-services .service-item i {
    font-size: 24px;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.service-details .related-services .service-item h5 {
    font-size: 18px;
    margin-bottom: 10px;
}

.service-details .related-services .service-item h5 a {
    color: var(--heading-color);
    transition: 0.3s;
}

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

.service-details .related-services .service-item p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 0;
    font-size: 14px;
}

@media (max-width: 991px) {

    .service-details .service-info,
    .service-details .related-services {
        margin-top: 30px;
    }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
    /* Add your styles here */
}





/* ///////////////////////////////////////////////////////////////
Gallery
/////////////////////////////////////////////////////////////// */

.section#gallery {
    background: transparent;
    box-shadow:none;
    /*    background:#f2f2f2;
    border-radius: 15px;
    box-shadow: 3px 3px 10px rgba(188, 188, 188, 0.3);*/
}

.gallery {
    overflow: hidden;
}
.gallery .gallery-container {
    padding: 20px 0 40px;
    position: relative;
}
.gallery .swiper-wrapper {
    height: auto !important;
    align-items: center;
    padding: 30px 0;
}
.gallery .gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}
.gallery .gallery-img {
    position: relative;
    overflow: hidden;
}
.gallery .gallery-img img {
    transition: transform 0.6s ease;
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}
.gallery .gallery-img .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: color-mix(in srgb, var(--accent-color), transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}
.gallery .gallery-img .gallery-overlay i {
    color: var(--contrast-color);
    font-size: 3rem;
    transform: scale(0.5);
    transition: all 0.3s ease;
}
.gallery .gallery-img:hover img {
    transform: scale(1.1);
}
.gallery .gallery-img:hover .gallery-overlay {
    opacity: 1;
}
.gallery .gallery-img:hover .gallery-overlay i {
    transform: scale(1);
}
.gallery .swiper-pagination {
    position: relative;
    margin-top: 20px;
}
.gallery .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: transparent;
    border: 2px solid var(--accent-color);
    opacity: 0.7;
    transition: all 0.3s ease;
}
.gallery .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--accent-color);
    opacity: 1;
    transform: scale(1.2);
}
.gallery .swiper-button-next,
.gallery .swiper-button-prev {
    color: var(--accent-color);
    background: var(--surface-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: all 0.3s ease;
}
.gallery .swiper-button-next:after,
.gallery .swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
}
.gallery:hover .swiper-button-next,
.gallery:hover .swiper-button-prev {
    opacity: 0.9;
}
.gallery:hover .swiper-button-next:hover,
.gallery:hover .swiper-button-prev:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}
@media (max-width: 991px) {
    .gallery .gallery-item {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    }
    .gallery .swiper-button-next,
    .gallery .swiper-button-prev {
        display: none;
    }
}
@media (max-width: 767px) {
    .gallery .swiper-wrapper {
        padding: 15px 0;
    }
    .gallery .gallery-img .gallery-overlay i {
        font-size: 2rem;
    }
} 








/* //////////////////////////////////////////////////////
Cards
/* ///////////////////////////////////////////////////// */

.card_pricing  {
    background-color: #F8F8F8;
    border-radius: 15px;
}

.card_pricing h3.pricing-card-title {
    font-size: 50px;
    color: #00a0f4;
    text-align: center;
    text-shadow: 1px 2px 2px rgba(119, 119, 119, 0.3);
}

.card_pricing .card-header {
    background-color: #eee;
    border-radius: 15px 15px 0px 0px;
}




.card_pricing .card-header h4 {
    font-size: 20px;
    text-align: center;
    /*letter-spacing: 0.0em;*/
    height: 25px;
    padding-top: 5px;
}

.card_header_poseuse {
    color: #BBBBBB;

    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#00a0f4+0,00a0f4+76,4fbaef+92,00a0f4+100 */
    background: #00a0f4; /* Old browsers */
    background: -moz-linear-gradient(-45deg, #00a0f4 0%, #00a0f4 76%, #4fbaef 92%, #00a0f4 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, #00a0f4 0%,#00a0f4 76%,#4fbaef 92%,#00a0f4 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, #00a0f4 0%,#00a0f4 76%,#4fbaef 92%,#00a0f4 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00a0f4', endColorstr='#00a0f4',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */


}
.card_header_poseuse h3 {
    font-size: 1.6rem;
    color: #ddd;
    font-weight: bold;
    text-shadow: 1px 1px 2px #ddd;
}




.card-body ul {
    list-style: none; /* on enlève les bullets natifs */
    padding: 0;
}

.card-body li {
    position: relative;
    padding: 0px 0px 5px 15px;
}

.card-body ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #00a0f4; 
    font-weight: bold;
    font-family: Baskerville;
}

/* BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB */
.btn_poseuse {
    color:#f3f3f3;
    padding: 10px 25px;
    /*font-family:fantasy;*/
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid transparent;
    text-shadow: 1px 1px 4px rgba(0, 61, 92, 0.5);
    font-size: 20px;
    margin: 10px auto;
    box-shadow: 2px 1px 3px 0px rgba(0, 0, 0, 0.3);
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#00a0f4+0,00a0f4+76,4fbaef+92,00a0f4+100 */
    background:#0093ff;
    background: linear-gradient(135deg,#0070A0 0%,#0093ff 76%,#25a3ff 92%,#00aaff 100%);     
}

.btn_poseuse:hover {
    color: #0093ff;
    background: linear-gradient(135deg,#ceeeff 0%,#b5e4fc 76%,#71cfff 100%); 

    transform: translateY(-2px);
    box-shadow: 0 10px 10px color-mix(in srgb, var(--accent-color), transparent 60%);
}

/* # BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB */


/* -------------------------------- */


.prix_bouton {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;

}

.prix_bouton .btn {
    padding: 0.875rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid transparent;
    font-size: 18px;
    margin: 10px auto;
    box-shadow: 2px 1px 3px 0px rgba(0, 0, 0, 0.3);
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#00a0f4+0,00a0f4+76,4fbaef+92,00a0f4+100 */
    background:#0093ff;
    background: linear-gradient(135deg,  rgba(0, 96, 144, 0.5) 0%,rgba(0, 147, 255, 0.5) 76%,rgba(37, 163, 255, 0.99) 92%,rgba(0, 170, 255, 0.5) 100%); 

}

.prix_bouton .btn.btn-primary {
    background-color: var(--accent-color);
    color: #f3f3f3;
}

.prix_bouton .btn.btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 15%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.prix_bouton .btn.btn-outline {
    background-color: transparent;
    color: var(--default-color);
    border-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.prix_bouton .btn.btn-outline:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
}




/* Table de couleurs */
.color_code_table {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.une_case_color_code {
    width:15px;
    height:15px;
    float:left;
    color:#000;
    text-align:center;
    border-radius: 4px;
    margin-left: 3px;
}


#logo_haut_page {
    display: block; 
    height: 200px;
    opacity: 0.8;
    /* background-color: firebrick;*/

    background-image: url('../../design/logo_section.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
}


.img_reserve {
    height: 200px;
    width: auto;
    object-fit: contain; 
    padding: 0px;
    margin: 5px;
}


.temoignage  {
    background-color: #006090;
    border-radius: 30px 30px 35px 35px;
    box-shadow: 4px 4px 4px rgba(0, 170, 255, 0.16);
}

.temoignage_chevron {
    text-align: center;
}
.temoignage_chevron i {
    text-align: center;
    font-size: 4rem;
    color: #e7f7ff;
}

.temoignage_texte {
    background: linear-gradient(0deg, #006090 0%, #00456a 100%);
    font-style: italic;
    color: #eef9ff;
    font-size: 20px;
    line-height: 27px;
    text-align: center;
    border-radius: 30px 30px 0px 0px;
    padding: 20px 10px 0px 10px;
}
.temoignage_texte .signature {
    color: #bde8ff;
    font-size: 1.3em;
    text-align: right;
    font-family:serif;
    padding: 10px 30px 0px 0px;
}
.temoignage_texte  i {
    color: rgba(255, 255, 7, 0.83);
    font-size: 1rem;
    margin: 0px;
    padding: 0px 0px 0px 0px;
}


.temoignage_image img {
    border-radius: 70px 70px 30px 30px;
    margin-bottom: 15px;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);

}


.texte_centre {
    text-align: center;
}

.pic_radius_sans {
    border-radius: 0px;
}
.pic_radius_normal {
    border-radius: 15px;
}


ol {
    list-style: none;
    counter-reset: item;
}

ol li {
    counter-increment: item;
    position: relative;
    padding-left: 40px; /* espace pour le numéro */
    padding-bottom: 4px;
}

ol li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    width: 2em;
    text-align: right;
    color: #00aaff;
    font-weight: 700;
}


.form_poseuse {
    background-color: #eaf6ff;
    box-shadow: -1px -1px 4px rgba(177, 177, 177, 0.3);
    border-radius: 15px;
}


/* -----------------------------------   VIGNETTES   -----------------------------------*/

img.une_vignette {
    padding: 0;
    margin: 8px;
    float: left;
    border-radius: 4px;
    -webkit-box-shadow: 2px 2px 10px -2px rgba(0,0,0,0.48);
    -moz-box-shadow: 2px 2px 10px -2px rgba(0,0,0,0.48);
    box-shadow: 2px 2px 10px -2px rgba(0,0,0,0.48);
    /*min-width: 113px;*/

    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
}

img.une_vignette:hover {
    transform: rotate(-5deg);
    opacity: 0.9;
}



.logo_home {
    height: 350px;
    display: flex;
    align-items: center;   /* centre verticalement l'image */
    justify-content: center; /* optionnel : centre horizontalement */
}
@media (max-width: 992px) {
    .logo_home {
        height: 250px;
    }
}
@media (max-width: 768px) {
    .logo_home {
        height: 150px;
    }
}
.logo_home img {
    height: 100%;
    width: auto;     /* important pour éviter toute déformation */
    max-height: 100%; 
    object-fit: contain; /* garantit aucun étirement */
}


/* Caroussel */ 

#carousel_home .carousel-item img {
    height: 550px;      /* Hauteur fixe */
    width: auto;        /* Largeur auto : conservation des proportions */
    object-fit: contain;/* L'image reste entière */
    display: block;
    margin: 0 auto;     /* Centre l'image horizontalement */
}

#carousel_home .carousel-inner {
    height: 550px;      /* Hauteur fixe globale du carousel */
}


.carousel-indicators {
    position: static;     /* Plus de position absolue */
    margin-top: 3px;     /* Un peu d'espace sous le carousel */
}

.carousel-indicators [data-bs-target] {
    background-color: #65beff;
    width: 15px;
    height: 4px;
    border-bottom: 1px solid #3bacff;
}



.social_links_contact_poseuse {
    display: flex;
    justify-content: center;   /* centre le contenu horizontalement */    margin-bottom: 20px;
    text-align: center;
    padding: 10px 0 0 0 ;
    margin: 15px 0px 15px 0px;
    border-top: 1px solid #e2e2e2;
}

.social_links_contact_poseuse a {
    width: 40px;
    height: 40px;
    display: flex;
    margin-right: 20px;
    align-items: center;
    justify-content: center;
    background-color: #0093ff;
    color: #f3f3f3;
    border-radius: 45%;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social_links_contact_poseuse a:hover {
    color: var(--contrast-color);
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}



.evidence {
    background-color: rgba(0, 160, 244, 0.1);
    background: linear-gradient(130deg,  #deebf2 0%,#deebf2 20%,#bfdeef 50%,#deebf2 100%); 
    background: linear-gradient(45deg, #deebf2 0%,rgba(240, 240, 240, 0.71) 31%,#deebf2 54%,#deebf2 100%);

    font-size: 1.07em;
    color: #4b4b4b;
    padding: 10px 10px 10px 15px;
    border-radius: 8px;
    border-top: 2px solid rgba(0, 147, 255, 0.06);
    border-left: 2px solid rgba(0, 147, 255, 0.05);
}
.evidence i {
    display: inline-block;
    position: relative;
    top:-5px;
    padding: 4px 9px 3px 8px;
    margin: 0 5px 0 0 ;
    background-color: #0093ff;
    color: #FFF775;
    border-radius: 8px;
    box-shadow: 0px 0px 0px 2px #FFF775;
    transform: rotate(-10deg);
    /*F68A7E
    F68A7E*/
}

.fond_blanc {
    background-color: #fff;
    border-radius: 10px;
    border: 2px solid #e3e3e3;
    padding: 10px 15px 10px 20px;
    margin: 15px 0 15px 0;
}


/*  ----------------------------   Bulle contact  ----------------------------    */

.bulle_contact {
    font-size: 16px;

    border-radius: 20px;
    border: 1px solid rgba(200, 221, 232, 0.5);
    padding: 30px 10px 10px 30px;
    transition: all 0.3s;
}

.bulle_contact ul {
    margin-top: 15px;
}
.bulle_contact li {
    padding-bottom: 5px;
}


.bulle_contact_claire {
    background-color: #e7f7ff;
    box-shadow: 2px 1px 3px 0px rgba(0, 0, 0, 0.3);
}
.bulle_contact_sombre {
    color:#d1efff;
    padding: 10px 25px;
    border: 2px solid transparent;
    box-shadow: 2px 1px 3px 0px rgba(0, 0, 0, 0.3);
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#00a0f4+0,00a0f4+76,4fbaef+92,00a0f4+100 */
    background:#0093ff;
    background: linear-gradient(135deg,#0070A0 0%,#0093ff 76%,#25a3ff 92%,#00aaff 100%);     
}


.bulle_contact_claire h3 {
    font-family:serif;
    color: #0093ff;
    font-weight: 700;
    border-bottom: 1px dashed rgba(209, 239, 255, 0.5);
    margin: 5px 20px 15px 20px;
}

.bulle_contact_sombre h3 {
    font-family:serif;
    color: #d1efff;
    font-weight: 700;
    border-bottom: 1px dashed rgba(209, 239, 255, 0.5);
    margin: 5px 20px 15px 20px;
}
.bulle_contact_claire a {
    color: #0093ff;
    border-bottom: 1px dashed rgba(209, 239, 255, 0.5);
}
.bulle_contact_sombre a {
    color: #d1efff;
    border-bottom: 1px dashed rgba(209, 239, 255, 0.5);
}
.bulle_contact i {
    font-size: 1.3em;
}
.bulle_contact_sombre i {
    color: #003853;
}




.quelques_photos img {
    padding: 5px;
    border-radius: 15px;
}
.quelques_photos_container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

@media (max-width: 768px) {
    .quelques_photos_container {
        flex-direction: column;
        align-items: center;
    }
}
.quelques_photos a {
    position: relative;
    display: inline-block;
}
.quelques_photos i {
    position: absolute;
    top: 10%;
    left: 10%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    color: rgba(95, 151, 193, 0.4);
    pointer-events: none;
}


/* Changement couleurs des flèches du diapo */
.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%230093ff' stroke-width='2.5' viewBox='0 0 24 24'%3E%3Cpath d='M15 18l-6-6 6-6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%230093ff' stroke-width='2.5' viewBox='0 0 24 24'%3E%3Cpath d='M9 6l6 6-6 6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.carousel-control-prev-icon, .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    opacity: 0.4;
}



/* Galerie photo */
.glightbox-clean .gslide-title {
    font-size: 12px;
    font-style: italic;
    /*letter-spacing: 1px;*/
    text-shadow: 1px 1px 3px rgba(0, 96, 144, 0.1);
    font-weight: normal;
    font-family: serif;
    color: #22a1ff;
    text-align: center;
    margin-bottom: 4px;
    line-height: 1.1em;
}
.glightbox-clean .gdesc-inner {
    padding: 5px 20px;
}


.legende_photo {
    display: block;
    clear: both;
    text-align: center;
}
.legende_photo p {
    font-size: 13px;
    color: #888;
}
.legende_photo p a {
    color: #67b7f2;
}



.opa70 {
    opacity: 0.7;
}



.error_page, .error_page section {
    background-color: #d1efff;
}

.error_page .haut_erreur {
    margin-top: 0px;
    text-align: center;
}

.error_page .icone i {
    font-size: 150px;
    color: #00aaff;
    text-shadow: 1px 1px 5px rgba(119, 119, 119, 0.9);
}

.error_page .logo_error {
    opacity: 0.8;
}


