


.myslider {
    /*margin-top: 90px;*/
}

.carousel-item img {
  filter: brightness(50%);
}


.company-dsc {
    width:100%;
    z-index:1000;
    /*position:absolute;*/
}

.company-dsc p {
    text-align:center;
    color:white;
    line-height:1.5;
}

@media only screen and (max-width: 992px) {

    .myslider {
        margin-top: 120px;
    }

    .company-dsc {
        /*width:100%;*/
        /*z-index:1000;*/
        /*position:absolute;*/
        /*top: 130px;*/
    }

    .company-dsc p {
        font-size: 0.7em;
    }
}

@media (min-width:992px) {
    #site-header div.navbar-collapse ul.navbar-nav {
        margin-left: 150px;
    }

    .company-dsc {
        /*width:100%;*/
        /*z-index:1000;*/
        /*position:absolute;*/
        /*top:50vh;*/
    }

    .company-dsc p {
        font-size: 1.4em;
    }
}

/*           */


.company-title {
    font-size: 1.4em;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff8c42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(255, 107, 53, 0.2);
}

#site-header {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff8c42 100%);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

/* Alternative 1: Orange vif */
#site-header.orange-vibrant {
    background-color: #ff6b35;
}

/* Alternative 2: Orange dégradé chaud */
#site-header.orange-warm {
    background: linear-gradient(to right, #ff7e5f, #feb47b);
}

/* Alternative 3: Orange profond */
#site-header.orange-deep {
    background: linear-gradient(135deg, #d35400, #e67e22);
}

/* Liens de navigation */
#site-header .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

#site-header .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: #ffffff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

#site-header .nav-link:hover::after,
#site-header .nav-link.active::after {
    width: 80%;
}

#site-header .nav-link:hover,
#site-header .nav-link.active {
    color: #ffffff !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Dropdown menu */
#site-header .dropdown-menu {
    background-color: #ffffff;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

#site-header .dropdown-item {
    color: #2c3e50;
    transition: all 0.3s ease;
    padding: 12px 20px;
}

#site-header .dropdown-item:hover {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    padding-left: 25px;
}

/* Bouton Purchase */
#site-header .btn-primary {
    background-color: #ffffff;
    border: none;
    color: #ff6b35;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

#site-header .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.4);
    background-color: #2c3e50;
    color: #ffffff;
}

/* Icône de recherche */
#site-header .search-search {
    color: #ffffff;
    transition: all 0.3s ease;
    font-size: 18px;
}

#site-header .search-search:hover {
    transform: scale(1.1);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Toggle burger menu */
#site-header .navbar-toggler {
    border: 2px solid #ffffff;
}

#site-header .navbar-toggler-icon {
    color: #ffffff;
}

/* Theme switcher */
#site-header .mode-container i {
    color: #ffffff;
}

/* Effet hover sur le header */
#site-header {
    transition: all 0.3s ease;
}

/* Animation subtile pour les éléments */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#site-header .navbar-nav {
    animation: fadeInDown 0.6s ease-out;
}


/*-----*/

/* ==========================================
   STYLE TITRE NOURIVOIRE - VERSION COMPLÈTE AVEC ANIMATIONS
   ========================================== */

/* Container principal (optionnel - à adapter selon votre structure) */
.nourivoire-hero {
    padding: 60px;
    background: white;
    /*border-radius: 30px;*/
    /*box-shadow: 0 20px 60px rgba(255, 107, 53, 0.15);*/
    position: relative;
    overflow: hidden;
}

/* Effet de fond rotatif (optionnel) */
.nourivoire-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 140, 66, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Badge décoratif */
.company-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: slideIn 0.6s ease-out;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Titre principal NOURIVOIRE */
.company-title {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 30%, #ff8c42 60%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    line-height: 1.2;
}

/* Ligne décorative sous le titre */
/*.company-title::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: -10px;*/
/*    left: 0;*/
/*    width: 0;*/
/*    height: 4px;*/
/*    background: linear-gradient(90deg, #ff6b35, #f7931e);*/
/*    !*border-radius: 2px;*!*/
/*    animation: expandWidth 1s ease-out 0.5s forwards;*/
/*}*/

@keyframes expandWidth {
    to { width: 100px; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Séparateur ":" */
.company-title-separator {
    color: #ff6b35;
    font-weight: 800;
    font-size: 4rem;
    margin: 0 5px;
}

/* Description de l'entreprise */
.company-description {
    font-size: 1.4rem;
    color: #2c3e50;
    line-height: 1.8;
    margin-top: 35px;
    font-weight: 400;
    animation: fadeIn 1s ease-out 0.3s backwards;
    max-width: 800px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Mots en gras dans la description */
.company-description strong {
    color: #ff6b35;
    font-weight: 600;
}

/* Particules décoratives flottantes (optionnel) */
.decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    opacity: 0.1;
    pointer-events: none;
}

.decoration-1 {
    top: 20%;
    right: 10%;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    animation: float 6s ease-in-out infinite;
}

.decoration-2 {
    bottom: 15%;
    left: 5%;
    background: linear-gradient(135deg, #f7931e, #ff8c42);
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

/* Version alternative avec animation de dégradé */
.company-title.animated-gradient {
    background: linear-gradient(90deg, #ff6b35 0%, #f7931e 50%, #ff8c42 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient 3s ease infinite;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Contenu wrapper pour z-index */
.nourivoire-content {
    position: relative;
    z-index: 1;
}

/* Responsive pour tablettes */
@media (max-width: 768px) {
    .nourivoire-hero {
        padding: 40px 30px;
        border-radius: 20px;
    }

    .company-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .company-title-separator {
        font-size: 2.5rem;
    }

    .company-description {
        font-size: 1.1rem;
        margin-top: 25px;
    }

    .company-badge {
        font-size: 0.75rem;
        padding: 6px 15px;
    }
}

/* Responsive pour mobiles */
@media (max-width: 480px) {
    .nourivoire-hero {
        padding: 30px 20px;
    }

    .company-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .company-title-separator {
        font-size: 1.8rem;
    }

    .company-description {
        font-size: 1rem;
    }
}

/*-------------*/

/* Style du conteneur (pour un bouton flottant dans le coin, si désiré) */
.whatsapp-fixed-btn-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1050;
}

/* Style du bouton moderne et large */
.whatsapp-large-btn {
    /* Override de la couleur de Bootstrap pour le vert officiel de WhatsApp */
    background-color: #25D366;
    border-color: #25D366;
    color: white;
    font-weight: 700; /* Plus d'emphase */
    font-size: 1.15rem; /* Augmente la taille du texte */
    padding: 15px 35px; /* Augmente l'espace intérieur pour la taille */
    border-radius: 60px; /* Forme de pilule légèrement plus grande */
    transition: all 0.3s ease-in-out;
}

/* Effet au survol (moderne) */
.whatsapp-large-btn:hover {
    background-color: #128C7E; /* Vert plus foncé au survol */
    border-color: #128C7E;
    color: white;
    transform: translateY(-4px); /* Effet de soulèvement plus prononcé */
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.5); /* Ombre plus visible */
}

/* S'assurer que les icônes Font Awesome sont bien alignées */
.whatsapp-large-btn i {
    font-size: 1.5em; /* Icône plus grande pour correspondre au bouton */
    margin-right: 15px !important; /* Ajout d'espace supplémentaire entre l'icône et le texte */
}


/*-----------*/

#projects {
    background: linear-gradient(135deg, #f3e7e2 0%, #fff 50%, #fef5f1 100%);
}

/* Section principale */
#about {
    background: linear-gradient(135deg, #f3e7e2 0%, #fff 50%, #fef5f1 100%);
    position: relative;
    overflow: hidden;
}

#about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="%23ff6b35" opacity="0.05"/></svg>');
    pointer-events: none;
}

/* En-tête de section */
.header-sec {
    position: relative;
    z-index: 1;
}

.title-subhny {
    color: #ff6b35;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.title-subhny::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.title-w3l {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-sec-paraw3 p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.9;
    font-weight: 400;
}

/* Grilles des chiffres clés */
.bottom_grids {
    position: relative;
    z-index: 1;
}

.grid-block {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.grid-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.grid-block:hover::before {
    opacity: 1;
}

.grid-block:hover {
    transform: translateY(-10px);
    border-color: #ff6b35;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

/* Bloc actif */
.grid-block.active {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-color: #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.grid-block.active::before {
    opacity: 0;
}

.grid-block.active .grid-block-icon span {
    color: white;
    background: rgba(255, 255, 255, 0.2);
}

.grid-block.active h4,
.grid-block.active p {
    color: white;
}

/* Icônes */
.grid-block-icon {
    margin-bottom: 1.5rem;
}

.grid-block-icon span {
    font-size: 2.5rem;
    color: #ff6b35;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.4s ease;
    position: relative;
}

.grid-block:hover .grid-block-icon span {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
}

/* Titres des blocs */
.grid-block h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 1.5rem 0 1rem;
    transition: color 0.3s ease;
}

.grid-block:hover h4 {
    color: #ff6b35;
}

/* Descriptions des blocs */
.grid-block p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

.grid-block:hover p {
    color: #555;
}

/* Animation au scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.grid-block {
    animation: fadeInUp 0.6s ease-out backwards;
}

.grid-block:nth-child(1) {
    animation-delay: 0.1s;
}

.grid-block:nth-child(2) {
    animation-delay: 0.2s;
}

.grid-block:nth-child(3) {
    animation-delay: 0.3s;
}

.grid-block:nth-child(4) {
    animation-delay: 0.4s;
}

/* Badge décoratif (optionnel) */
.stats-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 991px) {
    .title-w3l {
        font-size: 2rem;
    }

    .header-sec-paraw3 p {
        font-size: 1rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 767px) {
    .title-w3l {
        font-size: 1.75rem;
    }

    .grid-block {
        padding: 30px 20px;
    }

    .grid-block-icon span {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .grid-block h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .title-w3l {
        font-size: 1.5rem;
    }

    .grid-block {
        padding: 25px 15px;
    }

    .grid-block-icon span {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }

    .grid-block h4 {
        font-size: 1.2rem;
    }

    .grid-block p {
        font-size: 0.9rem;
    }
}

/**/

.dg-policy li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    color: #555;
}

.dg-policy li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #2a7d2e;
    font-weight: 600;
}

.dg-signature {
    margin-top: 25px;
    font-style: italic;
    color: #333;
}

/**/

#features {
    background-color: #f1ce7a;
}

.w3l-features .box-wrap {
    border-radius: 16px;
    transition: all 0.3s ease;
}

.w3l-features .box-wrap:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

#features .icon i {
    font-size: 38px;
    color: #33475c;
}

#features .box-wrap h4 a  {
    color: #33475c;
}


/*------------*/

#contact-page-header {
    margin-top: 80px;
}

/*-----*/


.order-instructions {
    list-style: none;
    padding: 0;
    /*max-width: 420px;   !* largeur réduite *!*/

}

.order-instructions li {

    padding: 8px 12px; /* moins haut */
    margin-bottom: 8px;

    display: inline-block;
    margin-right: 10px;

    border-radius: 8px;
    border-left: 3px solid #2a7d2e;
    transition: transform 0.2s ease;

    background: transparent;
    border-left: 2px solid #2a7d2e;
}

.order-instructions li:hover {
    transform: translateX(3px); /* plus discret */
}

/* Icônes plus petites */
.step-icon {
    width: 28px;
    height: 28px;
    background: rgba(42, 125, 46, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2a7d2e;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* Texte plus fin */
.step-text {
    font-size: 0.85rem;
    color: #333;
    font-weight: 500;
    line-height: 1.4;
}
