body{
    padding-top: 90px;
    font-family: Arial, Helvetica, sans-serif;
    background:#f8f9fa;
}

main{
    min-height:70vh;
}

.navbar-brand{
    font-size:1.4rem;
}


/* ================= HERO ================= */

.hero{
    background: url("../images/hero.jpg") center center/cover no-repeat;
    height: 90vh;
    position: relative;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.55);
}

.hero-content{
    max-width:700px;
    color:white;
}

.hero-content h1{
    font-size:3.5rem;
    font-weight:700;
}

.hero-content p{
    font-size:1.2rem;
    margin:25px 0;
}

.hero .btn{
    padding:12px 28px;
    font-weight:600;
}

/* Responsive */

@media(max-width:768px){

    .hero{
        height:70vh;
    }

    .hero-content h1{
        font-size:2.2rem;
    }

    .hero-content p{
        font-size:1rem;
    }

}

/* ================= SERVICES ================= */

.service-card{

    background:#fff;
    border-radius:18px;
    padding:35px 25px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.4s;

    height:100%;
}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 40px rgba(0,0,0,.15);

}

.service-icon{

    width:90px;
    height:90px;

    margin:auto;
    margin-bottom:25px;

    background:#ffb703;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:38px;

    color:white;

    transition:.4s;

}

.service-card:hover .service-icon{

    transform:rotate(10deg) scale(1.1);

}
.service-card h4{

    font-weight:700;

    margin-bottom:15px;

}

/*================ SERVICES =================*/

.service-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.4s;

    height:100%;

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.18);

}

.service-image{

    position:relative;

    height:240px;

    overflow:hidden;

}

.service-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.service-card:hover .service-image img{

    transform:scale(1.08);

}

.service-icon{

    position:absolute;

    bottom:-28px;

    left:25px;

    width:60px;

    height:60px;

    background:#ffb703;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:24px;

    box-shadow:0 8px 20px rgba(0,0,0,.2);

}

.service-content{

    padding:45px 25px 25px;

}

.service-content h4{

    font-weight:700;

    margin-bottom:15px;

}

.service-content p{

    color:#666;

    line-height:1.7;

    margin-bottom:20px;

}

.service-link{

    text-decoration:none;

    color:#ffb703;

    font-weight:700;

    transition:.3s;

}

.service-link:hover{

    letter-spacing:1px;

}

/* ================= À PROPOS ================= */

.about-section{

    background:#ffffff;

}

.about-image{

    overflow:hidden;

    border-radius:25px;

    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.about-image img{

    width:100%;

    transition:.6s;

}

.about-image:hover img{

    transform:scale(1.05);

}

.section-tag{

    display:inline-block;

    background:#ffb703;

    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    font-size:.9rem;

    font-weight:600;

    letter-spacing:1px;

}

.about-section h2{

    font-weight:700;

    font-size:2.5rem;

}

.about-section h3{

    color:#ffb703;

    font-size:2rem;

    font-weight:700;

}

.about-section p{

    color:#666;

    line-height:1.8;

}

/* ================= TEXTE FLOTTANT ================= */

.about-image{
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
}

.floating-box{
    position: absolute;
    bottom: 25px;
    left: 25px;

    max-width: 320px;

    background: rgba(255,255,255,.95);
    backdrop-filter: blur(8px);

    padding: 18px 22px;

    border-left: 5px solid #ffb703;
    border-radius: 15px;

    box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

.floating-box h4{
    margin-bottom: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #222;
}

.floating-box{
    position: absolute;
    bottom: 30px;
    left: 30px;

    max-width: 340px;

    background: rgba(255,255,255,.95);
    backdrop-filter: blur(10px);

    padding: 20px 25px;

    border-radius: 18px;
    border-left: 5px solid #ffb703;

    box-shadow: 0 15px 35px rgba(0,0,0,.2);

    animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {

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

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

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

}

@media (max-width: 768px){

    .floating-box{
        position: static;
        margin: 20px;
        max-width: 100%;
    }

}


.service-icon {
    
    width: 55px;
    height: 55px;

    margin: 0 auto 20px;

    background: #ffb703;
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    transition: .4s;
}

.service-card:hover .service-icon {
    transform: rotate(10deg) scale(1.1);
}

/* ================= RÉALISATIONS ================= */

.project-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.4s;

    height:100%;

}

.project-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.18);

}

.project-image{

    position:relative;

    overflow:hidden;

    height:260px;

}

.project-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.project-card:hover img{

    transform:scale(1.1);

}

.project-overlay{

    position:absolute;

    left:15px;

    bottom:15px;

}

.project-overlay span{

    background:#ffb703;

    color:#fff;

    padding:8px 16px;

    border-radius:30px;

    font-size:.9rem;

    font-weight:600;

}

.project-content{

    padding:25px;

}

.project-content h4{

    font-weight:700;

    margin-bottom:15px;

}

.project-location{

    color:#ffb703 !important;

    font-weight:600;

}

.project-content p{

    color:#666;

    line-height:1.7;

}
/*================ FILTRES =================*/

.filter-btn{

    border:none;

    background:#fff;

    padding:12px 24px;

    margin:6px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

}

.filter-btn:hover{

    background:#ffb703;

    color:white;

}

.filter-btn.active{

    background:#ffb703;

    color:white;

}

/*================ AUTH =================*/

.auth-card{

    background:#fff;

    padding:40px;

    border-radius:20px;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

}

.auth-icon{

    width:80px;

    height:80px;

    background:#ffb703;

    color:#fff;

    border-radius:50%;

    display:inline-flex;

    justify-content:center;

    align-items:center;

    font-size:32px;

    margin-bottom:15px;

}

.auth-card .form-control{

    height:50px;

    border-radius:12px;

}

.auth-card .btn{

    height:50px;

    border-radius:12px;

    font-weight:600;

}

/*================ DASHBOARD =================*/

.dashboard-card{

    background:#fff;

    padding:35px 25px;

    border-radius:18px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.dashboard-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.15);

}

.dashboard-card i{

    font-size:42px;

    color:#ffb703;

    margin-bottom:20px;

}

.dashboard-card h4{

    font-weight:700;

    margin-bottom:15px;

}

.dashboard-card p{

    color:#666;

}

/*================ AUTH =================*/

.auth-section{

    min-height:85vh;

    display:flex;

    align-items:center;

    background:#f4f6f9;

}

.auth-card{

    background:#fff;

    padding:45px;

    border-radius:25px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    animation:fadeUp .7s ease;

}

.auth-logo{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    background:#ffb703;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:38px;

}

.auth-card h2{

    font-weight:700;

}

.auth-card label{

    font-weight:600;

    margin-bottom:8px;

}

.auth-card .form-control{

    height:52px;

    border-radius:12px;

}

.auth-card .btn{

    height:52px;

    border-radius:12px;

    font-weight:700;

}

.auth-card a{

    color:#ffb703;

    text-decoration:none;

    font-weight:600;

}

.auth-card a:hover{

    text-decoration:underline;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*================ NAVBAR =================*/

.custom-navbar{

    background: rgba(0,0,0,.80);

    backdrop-filter: blur(10px);

    transition: .4s;

    padding: 15px 0;

}

.custom-navbar .navbar-brand{

    font-size: 1.5rem;

    font-weight: 700;

}

.custom-navbar .nav-link{

    color: #fff !important;

    font-weight: 500;

    margin: 0 8px;

    transition: .3s;

}

.custom-navbar .nav-link:hover{

    color: #ffb703 !important;

}

.dropdown-menu{

    background: #ffffff;

    border: none;

    border-radius: 15px;

    box-shadow: 0 10px 30px rgba(0,0,0,.15);

    padding: 10px;

    z-index: 9999;

}

.dropdown-item{

    color: #222 !important;

    border-radius: 10px;

    padding: 10px 15px;

    font-weight: 500;

}

.dropdown-item:hover{

    background: #ffb703;

    color: #fff !important;

}

.custom-navbar .btn{

    border-radius: 30px;

    padding: 10px 22px;

    font-weight: 600;

}



/*================ TOP BAR =================*/

.top-bar{
    background:#111;
    color:#fff;
    padding:10px 0;
}

.top-contact{
    display:flex;
    flex-wrap:wrap;
    gap:25px;
}

.top-contact span{
    display:flex;
    align-items:center;
    gap:8px;
}

.top-contact i{
    color:#ffb703;
}

.top-social a{
    color:#fff;
    margin-left:15px;
}

.top-social a:hover{
    color:#ffb703;
}




/* ================= BACKGROUND PREMIUM ================= */

body{
    background-color: #f8f9fb;
    background-image:
        radial-gradient(circle at 10% 15%, rgba(255,193,7,.15) 0, transparent 250px),
        radial-gradient(circle at 90% 20%, rgba(13,110,253,.08) 0, transparent 300px),
        radial-gradient(circle at 30% 90%, rgba(25,135,84,.08) 0, transparent 250px),
        radial-gradient(circle at 80% 80%, rgba(255,140,0,.10) 0, transparent 250px);
    background-attachment: fixed;
}

section{
    position: relative;
    z-index: 2;
}

.bg-light{
    background: rgba(255,255,255,.80) !important;
    backdrop-filter: blur(8px);
    border-radius: 20px;
    margin: 40px auto;
}

.about-section{
    background: rgba(255,255,255,.90);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    margin: 40px auto;
}

.counter-section{
    margin-top:-50px;
    position:relative;
    z-index:10;
}

.counter-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.3s;
}

.counter-card:hover{
    transform:translateY(-8px);
}

.counter-card i{
    font-size:40px;
    color:#f8b400;
    margin-bottom:15px;
}

.counter-card h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:10px;
}

.counter-card p{
    color:#777;
    margin:0;
}


.expertise-hero{

padding:120px 0;

background:linear-gradient(135deg,#0d1b2a,#1b263b);

color:white;

}

.expertise-icon{

font-size:220px;

color:#ffc107;

opacity:.9;

}

.expert-card{

background:white;

padding:35px;

border-radius:20px;

text-align:center;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.4s;

height:100%;

}

.expert-card:hover{

transform:translateY(-8px);

}

.expert-card i{

font-size:45px;

color:#ffc107;

margin-bottom:20px;

}

.expertise-list{

list-style:none;

padding:0;

}

.expertise-list li{

margin-bottom:15px;

font-size:18px;

}

.expertise-list i{

color:#ffc107;

margin-right:10px;

}


.top-contact a{
    color: inherit;
    text-decoration: none;
}

.top-contact a:hover{
    color: #ffc107;
}


.hero-contact{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    margin-top:50px;
}

.hero-contact-box{

    background: linear-gradient(135deg,#1e88e5,#1565c0);
    border-radius:25px;
    padding:35px;
    color:#fff;
    box-shadow:0 15px 40px rgba(30,136,229,.35);

}

.hero-contact-box h3{

    margin-bottom:30px;
    font-weight:700;
    color:#fff;

}

.contact-item{

    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:25px;
    padding-bottom:20px;
    border-bottom:1px solid rgba(255,255,255,.15);

}

.contact-item:last-child{

    border-bottom:none;
    margin-bottom:0;

}

.contact-item .icon{

    width:58px;
    height:58px;
    background:#ffc107;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#1e3a5f;
    font-size:22px;

}

.contact-item span{

    display:block;
    color:#dbeafe;
    font-size:14px;

}

.contact-item strong{

    color:#fff;
    font-size:16px;
    font-weight:600;

}

.hero-contact-box .btn{

    border-radius:50px;
    padding:14px;
    font-weight:600;

}

.contact-hero{

    background:linear-gradient(rgba(9,31,62,.80),rgba(9,31,62,.80)),
    url("../images/contact-banner.jpg");

    background-size:cover;
    background-position:center;

    padding:120px 0;

}

.contact-hero h1{

    font-size:55px;
    font-weight:800;
    margin-bottom:20px;

}

.contact-hero p{

    max-width:700px;
    margin:auto;
    font-size:20px;
    color:#f1f1f1;

}

@media(max-width:768px){

.contact-hero{

padding:80px 0;

}

.contact-hero h1{

font-size:38px;

}

.contact-hero p{

font-size:17px;

}

}


/*================ ABOUT HERO =================*/

.about-hero{

    background:
    linear-gradient(rgba(10,34,57,.82),
    rgba(10,34,57,.82)),
    url("../images/about-banner.jpg");

    background-size:cover;
    background-position:center;

    padding:140px 0;

}

.about-hero h1{

    font-size:58px;
    font-weight:800;

}

.about-hero p{

    max-width:720px;
    margin:25px auto 0;
    font-size:20px;

}

/*================ ABOUT =================*/

.about-company{

    background:#f8f9fa;

}

.about-company h2{

    font-weight:700;
    color:#0d2d52;

}

.about-company p{

    color:#666;
    line-height:1.9;

}

.section-tag{

    background:#ffc107;
    color:#000;
    padding:8px 18px;
    border-radius:30px;
    font-weight:600;
    display:inline-block;

}
.about-image{

    width:100%;
    height:450px;

    object-fit:cover;

    border-radius:25px;

    box-shadow:0 15px 40px rgba(0,0,0,.15);

    transition:.4s;

}

.about-image:hover{

    transform:scale(1.02);

}

@media(max-width:768px){

.about-image{

height:280px;

}

}

/*================ HERO VALEURS ================*/

.values-hero{

    background:
    linear-gradient(rgba(10,34,57,.82),rgba(10,34,57,.82)),
    url("../images/values-banner.jpg");

    background-size:cover;
    background-position:center;

    padding:170px 0 110px;

}

.values-hero h1{

    font-size:58px;
    font-weight:800;

}

.values-hero p{

    max-width:720px;
    margin:20px auto 0;
    font-size:20px;

}

/*================ IMAGE ================*/

.values-image{

    width:100%;
    height:450px;

    object-fit:cover;

    border-radius:25px;

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

/*================ CARTES ================*/

.value-card{

    background:#fff;

    padding:40px 30px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.4s;

    height:100%;

}

.value-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.value-card i{

    font-size:45px;

    color:#ffc107;

    margin-bottom:20px;

}

.value-card h4{

    color:#0d2d52;

    margin-bottom:15px;

    font-weight:700;

}

.value-card p{

    color:#666;

    line-height:1.8;

}


/*==================================================
                PAGE SERVICES
==================================================*/

.services-hero{
    background: linear-gradient(rgba(0,35,75,.75),rgba(0,35,75,.75)),
                url("../images/services-banner.jpg") center/cover no-repeat;
    min-height: 420px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:120px 0;
}

.services-hero h1{
    font-size:3rem;
    font-weight:700;
    margin-bottom:20px;
}

.services-hero p{
    font-size:1.15rem;
    max-width:700px;
    margin:auto;
    opacity:.95;
}

/* Badge */

.section-tag{
    display:inline-block;
    background:#0d6efd;
    color:#fff;
    padding:8px 18px;
    border-radius:50px;
    font-size:.85rem;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
}

/* Cartes */

.service-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 45px rgba(0,0,0,.15);
}

/* Image */

.service-image{
    width:100%;
    height:240px;
    object-fit:cover;
    transition:.5s;
}

.service-card:hover .service-image{
    transform:scale(1.08);
}

/* Contenu */

.service-card .p-4{
    padding:30px !important;
}

.service-card h4{
    font-size:1.35rem;
    font-weight:700;
    margin-bottom:15px;
    color:#0b2545;
}

.service-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

/* Icône */

.service-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#0d6efd;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:20px;
    transition:.35s;
}

.service-card:hover .service-icon{
    background:#ffc107;
    color:#000;
    transform:rotate(8deg);
}

/* Bouton */

.service-card .btn{
    border-radius:30px;
    padding:10px 28px;
    font-weight:600;
    transition:.3s;
}

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

/* CTA */

.bg-primary{
    background:#0b5ed7 !important;
}

.bg-primary h2{
    font-weight:700;
}

.bg-primary p{
    max-width:700px;
    margin:auto;
    opacity:.95;
}

.bg-primary .btn{
    border-radius:40px;
    padding:12px 34px;
    font-weight:600;
}

/* Responsive */

@media (max-width:991px){

    .services-hero{
        min-height:340px;
    }

    .services-hero h1{
        font-size:2.4rem;
    }

}

@media (max-width:768px){

    .services-hero{
        min-height:280px;
        padding:80px 0;
    }

    .services-hero h1{
        font-size:2rem;
    }

    .services-hero p{
        font-size:1rem;
    }

    .service-image{
        height:220px;
    }

}

@media (max-width:576px){

    .services-hero h1{
        font-size:1.8rem;
    }

    .service-card .p-4{
        padding:22px !important;
    }

    .service-icon{
        width:60px;
        height:60px;
        font-size:24px;
    }

}

.hero-content h1 {
    font-size: 55px;
    font-weight: 800;
}


.hero-content p {
    font-size: 20px;
    line-height: 1.7;
}



@media(max-width: 768px){


    .hero-content {

        text-align: center;

    }


    .hero-content h1 {

        font-size: 38px;

    }


    .hero-content p {

        font-size: 16px;

    }


    .hero-content .btn {

        width: 100%;

        max-width: 300px;

    }


    .hero-contact-box {

        margin-top: 20px;

    }


}

/* NAVBAR COMPACT */
.custom-navbar {
    padding: 8px 0;
    min-height: 70px;
}


.navbar-brand img {
    width: 45px;
    height: 45px;
    object-fit: cover;
}


.navbar-nav .nav-link {
    font-size: 16px;
    padding: 8px 15px;
}


/* MOBILE */
@media (max-width: 991px) {

    .navbar {
        padding: 5px 15px;
    }


    .navbar-brand img {
        height: 45px;
    }


    .navbar-collapse {
        margin-top: 10px;
    }


    .navbar-nav .nav-link {
        padding: 10px;
    }
}
body {
    padding-top: 70px;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.hero-content h1 {
    color: #ffffff;
}

.hero-content p {
    color: #ffffff;
}

/* ============================= */
/* WHATSAPP FLOAT */
/* ============================= */

.whatsapp-float{
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: #fff !important;
    border-radius: 50%;
    display: flex !important;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    text-decoration: none;
    z-index: 999999;
    box-shadow: 0 8px 20px rgba(0,0,0,.3);
}

.whatsapp-float:hover{
    background: #20ba5a;
    transform: scale(1.1);
}

/* ========================= */
/* FOOTER */
/* ========================= */

.footer{

    background:#111827;

    color:#fff;

    padding:70px 0 25px;

}

.footer h4,
.footer h5{

    margin-bottom:20px;

    font-weight:700;

}

.footer p{

    color:#d1d5db;

    line-height:1.8;

}

.footer-links{

    list-style:none;

    padding:0;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    color:#d1d5db;

    text-decoration:none;

    transition:.3s;

}

.footer-links a:hover{

    color:#f4b400;

    padding-left:6px;

}

.social-icons{

    display:flex;

    gap:15px;

    margin-top:20px;

}

.social-icons a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:#f4b400;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#111827;

    font-size:20px;

    transition:.3s;

    text-decoration:none;

}

.social-icons a:hover{

    transform:translateY(-5px);

    background:#fff;

}

.footer hr{

    border-color:rgba(255,255,255,.15);

    margin:40px 0 20px;

}

.footer-bottom{

    text-align:center;

    color:#cbd5e1;

    font-size:15px;

}

@media(max-width:768px){

    .footer{

        text-align:center;

    }

    .social-icons{

        justify-content:center;

    }

}