/********** Template CSS **********/
:root {
    --primary: #1178b3;
    --secondary: #FE8800;
    --light: #F5F5F5;
    --dark: #14141F;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    margin-right: 25px;
    padding: 35px 0;
    color: #FFFFFF !important;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}


/*** Hero Header ***/
.hero-header {
    background: linear-gradient(rgba(20, 20, 31, .7), rgba(20, 20, 31, .7)), url(../img/IMG_0224.JPG.jpeg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Destination ***/
.destination img {
    transition: .5s;
}

.destination a:hover img {
    transform: scale(1.1);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}





































.project-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
}

.project-card img{
    width:100%;
    height:300px;
    object-fit:cover;
    transition:.5s;
}

.project-card:hover img{
    transform:scale(1.1);
}

.project-overlay{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:25px;
    color:#fff;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.9),
        rgba(0,0,0,.1)
    );
}

.project-overlay h5{
    color:#fff;
}



.news-ticker{
background:#1178b3;
color:white;
overflow:hidden;
white-space:nowrap;
padding:12px 0;
}

.ticker-content{
display:inline-block;
animation:ticker 20s linear infinite;
font-weight:600;
}

@keyframes ticker{
0%{transform:translateX(100%);}
100%{transform:translateX(-100%);}
}

.value-box{
background:#fff;
border-radius:20px;
padding:35px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.4s;
}

.value-box:hover{
transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.value-box i{
font-size:50px;
color:#1178b3;
margin-bottom:20px;
}

.counter{
font-weight:800;
}



.premium-ticker{
    display:flex;
    align-items:center;
    overflow:hidden;
    background:linear-gradient(90deg,#1178b3,#003b8e);
    color:#fff;
    height:60px;
    position:relative;
    box-shadow:0 8px 25px rgba(0,0,0,.12);
}

.ticker-label{
    min-width:180px;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    font-weight:700;
    letter-spacing:1px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(10px);
    border-right:1px solid rgba(255,255,255,.2);
}

.ticker-label i{
    color:#ffd700;
}

.ticker-wrapper{
    flex:1;
    overflow:hidden;
    white-space:nowrap;
}

.ticker-content{
    display:inline-block;
    padding-left:100%;
    animation:tickerMove 30s linear infinite;
}

.ticker-content span{
    margin-right:80px;
    font-size:15px;
    font-weight:500;
}

.ticker-content i{
    color:#ffd700;
    margin-right:8px;
}

@keyframes tickerMove{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-100%);
    }
}

/* Effet de lumière */
.premium-ticker::before{
    content:'';
    position:absolute;
    top:0;
    left:-150px;
    width:100px;
    height:100%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.25),
        transparent
    );
    animation:shine 4s infinite;
}

@keyframes shine{
    0%{
        left:-150px;
    }
    100%{
        left:100%;
    }
}

/* Mobile */
@media(max-width:768px){

    .ticker-label{
        min-width:120px;
        font-size:12px;
    }

    .ticker-content span{
        font-size:13px;
        margin-right:50px;
    }

}




.stats-section{
    background:linear-gradient(
        135deg,
        #1178b3,
        #003b8e
    );
    position:relative;
    overflow:hidden;
}

.stat-card{
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.15);
    border-radius:25px;
    padding:35px 20px;
    text-align:center;
    color:white;
    transition:.4s;
    height:100%;
    position:relative;
    overflow:hidden;
}

.stat-card:hover{
    transform:translateY(-10px);
    background:rgba(255,255,255,.18);
    box-shadow:0 20px 40px rgba(0,0,0,.2);
}

.stat-icon{
    width:80px;
    height:80px;
    margin:auto;
    margin-bottom:20px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    display:flex;
    align-items:center;
    justify-content:center;
}

.stat-icon i{
    font-size:32px;
    color:#fff;
}

.stat-card h2{
    font-size:42px;
    font-weight:800;
    margin-bottom:10px;
    color:#fff;
}

.stat-card p{
    margin:0;
    font-size:16px;
    opacity:.9;
}

/* Effet lumineux */

.stat-card::before{
    content:'';
    position:absolute;
    width:200px;
    height:200px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-100px;
    right:-100px;
}



.activity-card{
background:#fff;
border-radius:25px;
padding:35px 25px;
text-align:center;
position:relative;
overflow:hidden;
height:100%;
transition:.5s;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.activity-card:hover{
transform:translateY(-12px);
box-shadow:0 25px 50px rgba(0,0,0,.15);
}

.activity-card::before{
content:’’;
position:absolute;
top:0;
left:0;
width:100%;
height:5px;
background:linear-gradient(
90deg,
#1178b3,
#00c6ff
);
}

.activity-number{
position:absolute;
top:15px;
right:20px;
font-size:42px;
font-weight:800;
color:rgba(13,110,253,.08);
}

.activity-icon{
width:90px;
height:90px;
margin:auto;
margin-bottom:25px;
border-radius:50%;
background:linear-gradient(
135deg,
#1178b3,
#0044cc
);
display:flex;
align-items:center;
justify-content:center;
}

.activity-icon i{
font-size:38px;
color:white;
}

.activity-card h4{
font-weight:700;
margin-bottom:15px;
}

.activity-card p{
color:#666;
min-height:90px;
line-height:1.7;
}

.activity-btn{
text-decoration:none;
font-weight:600;
color:#1178b3;
}

.activity-btn i{
margin-left:5px;
transition:.3s;
}

.activity-btn:hover i{
transform:translateX(5px);
}











.gallery-slider{
overflow:hidden;
position:relative;
width:100%;
}

.gallery-track{
display:flex;
width:max-content;
animation:galleryScroll 30s linear infinite;
}

.gallery-slider:hover .gallery-track{
animation-play-state:paused;
}

.gallery-item{
width:320px;
height:240px;
margin:15px;
position:relative;
border-radius:25px;
overflow:hidden;
flex-shrink:0;
box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.gallery-item img{
width:100%;
height:100%;
object-fit:cover;
transition:0.8s;
}

.gallery-item:hover img{
transform:scale(1.15);
}

.gallery-overlay{
position:absolute;
bottom:0;
left:0;
width:100%;
padding:20px;
background:linear-gradient(
to top,
rgba(0,0,0,.9),
rgba(0,0,0,.1)
);
}

.gallery-overlay h5{
color:white;
margin:0;
font-weight:700;
}

@keyframes galleryScroll{

0%{
    transform:translateX(0);
}
100%{
    transform:translateX(-50%);
}

}

/* Effet lumineux */

.gallery-item::before{
content:’’;
position:absolute;
top:0;
left:-150%;
width:70%;
height:100%;
background:linear-gradient(
90deg,
transparent,
rgba(255,255,255,.3),
transparent
);
z-index:2;
transition:1s;
}

.gallery-item:hover::before{
left:150%;
}

/* Mobile */

@media(max-width:768px){

.gallery-item{
width:260px;
height:190px;
}

}









.hero-slider{
height:100vh;
overflow:hidden;
}

.hero-image{
height:100vh;
object-fit:cover;
transform:scale(1);
animation:heroZoom 12s linear infinite;
}

.hero-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.55);
}

.carousel-caption{
bottom:50%;
transform:translateY(50%);
z-index:2;
}

.hero-title{
font-size:65px;
font-weight:800;
color:white;
margin-bottom:20px;
animation:fadeUp 1.2s ease;
}

.hero-subtitle{
font-size:22px;
max-width:800px;
margin:auto;
color:white;
margin-bottom:30px;
animation:fadeUp 1.8s ease;
}

@keyframes fadeUp{

from{
    opacity:0;
    transform:translateY(50px);
}
to{
    opacity:1;
    transform:translateY(0);
}

}

@keyframes heroZoom{

0%{
    transform:scale(1);
}
100%{
    transform:scale(1.1);
}

}

.carousel-item{
transition:transform 1.5s ease-in-out;
}

@media(max-width:768px){

.hero-title{
font-size:36px;
}

.hero-subtitle{
font-size:16px;
}

.hero-slider,
.hero-image{
height:80vh;
}

}




.about-v4{
    background:linear-gradient(180deg,#f8fafc,#ffffff);
}

/* WRAPPER */
.about-wrapper{
    display:flex;
    align-items:center;
    gap:60px;
}

/* IMAGE BLOCK */
.about-media{
    flex:1;
    position:relative;
}

.media-inner{
    position:relative;
    border-radius:30px;
    overflow:hidden;
    height:480px;
    box-shadow:0 30px 90px rgba(0,0,0,.18);
}

.media-inner img{
    width:100%;
    height:100%;
    object-fit:cover;
    transform:scale(1);
    transition:1.2s ease;
}

.media-inner:hover img{
    transform:scale(1.1);
}

/* TAG FLOAT */
.media-tag{
    position:absolute;
    bottom:20px;
    left:20px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(12px);
    color:white;
    padding:10px 18px;
    border-radius:50px;
    font-size:13px;
    display:flex;
    align-items:center;
    gap:10px;
    border:1px solid rgba(255,255,255,.2);
}

.media-tag i{
    color:#1178b3;
}

/* TEXT SIDE */
.about-content{
    flex:1;
}

.about-kicker{
    display:inline-block;
    background:#1178b3;
    color:white;
    padding:6px 14px;
    border-radius:50px;
    font-size:12px;
    letter-spacing:2px;
    margin-bottom:15px;
}

.about-title{
    font-size:44px;
    font-weight:900;
    margin-bottom:20px;
    line-height:1.2;
}

.about-text{
    font-size:16px;
    color:#666;
    line-height:1.9;
}

/* STATS */
.about-stats{
    display:flex;
    gap:20px;
    margin:30px 0;
}

.stat{
    flex:1;
    background:white;
    padding:20px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.4s;
    border:1px solid rgba(0,0,0,.05);
}

.stat:hover{
    transform:translateY(-6px);
}

.stat h3{
    font-size:32px;
    font-weight:800;
    color:#1178b3;
}

.stat span{
    font-size:13px;
    color:#777;
}

/* BUTTON */
.about-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:linear-gradient(135deg,#1178b3,#003b8e);
    color:white;
    padding:14px 32px;
    border-radius:50px;
    font-weight:600;
    text-decoration:none;
    transition:.4s;
    box-shadow:0 10px 25px rgba(13,110,253,.25);
}

.about-btn:hover{
    transform:translateX(6px);
    color:white;
}

/* RESPONSIVE */
@media(max-width:991px){

.about-wrapper{
    flex-direction:column;
}

.media-inner{
    height:360px;
}

.about-title{
    font-size:32px;
}

.about-stats{
    flex-direction:column;
}
}












/* FLOAT ANIMATION GLOBAL */
@keyframes floatUp {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

.impact-section{
    position:relative;
    background-image:url("https://blservicesrdc.com/img/sunset-industrial-plant-conveyor-belt-coal-piles-mining-energy-production.jpg");
    background-size:cover;
    background-position:center;
    overflow:hidden;
    color:white;
}

/* overlay */
.impact-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.65);
    z-index:1;
}

/* wrapper animation */
.impact-wrapper{
    position:relative;
    z-index:2;
    display:flex;
    gap:70px;
    align-items:center;

    animation: fadeIn 1s ease-in-out;
}

/* BADGE glow */
.impact-badge{
    display:inline-block;
    background:rgba(255,255,255,0.12);
    padding:6px 14px;
    border-radius:50px;
    font-size:12px;
    letter-spacing:2px;

    animation: floatUp 4s ease-in-out infinite;
}

/* TEXT */
.impact-text h1{
    font-size:44px;
    font-weight:900;
    line-height:1.3;
}

.impact-desc{
    color:rgba(255,255,255,0.9);
    line-height:1.8;
}

/* LIST hover animation */
.impact-list div{
    margin:10px 0;
    transition:0.3s;
}

.impact-list div:hover{
    transform:translateX(10px);
    color:#4da3ff;
}

/* CARD glow effect */
.impact-card{
    flex:1;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.15);
    backdrop-filter:blur(15px);
    border-radius:25px;
    padding:40px;

    transition:0.4s;
}

.impact-card:hover{
    transform:translateY(-10px) scale(1.02);
    box-shadow:0 20px 60px rgba(0,0,0,0.4);
}

/* BIG NUMBER pulse */
.big-number h2{
    font-size:70px;
    color:#4da3ff;
    font-weight:900;
}

/* MINI BOX hover */
.impact-mini{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    margin-top:25px;
}

.mini-box{
    text-align:center;
    background:rgba(255,255,255,0.05);
    padding:15px;
    border-radius:15px;
    transition:0.3s;
}

.mini-box:hover{
    transform:translateY(-8px);
    background:rgba(255,255,255,0.12);
    box-shadow:0 10px 30px rgba(0,0,0,0.3);
}

/* RESPONSIVE */
@media(max-width:991px){
    .impact-wrapper{
        flex-direction:column;
        text-align:center;
    }

    .impact-text h1{
        font-size:28px;
    }
}








@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}


.company-intro{
    background:#f8f9fa;
}

.company-intro h2{
    color:#1c1c1c;
    line-height:1.2;
}

.company-intro img{
    transition:0.4s;
}

.company-intro img:hover{
    transform:scale(1.03);
}

.company-intro .btn{
    border-radius:50px;
}




.stats-section{
    background:#0f172a;
    color:white;
}

.stat-box h2{
    font-size:60px;
    font-weight:700;
}

.feature-card{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.feature-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.feature-card i{
    font-size:45px;
    color:#1178b3;
    margin-bottom:20px;
}

.step-box{
    padding:30px;
}

.step-box span{
    width:80px;
    height:80px;
    background:#1178b3;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    font-size:24px;
    font-weight:bold;
}

.cta-section{
    padding:100px 0;
    background:linear-gradient(
        rgba(0,0,0,.7),
        rgba(0,0,0,.7)
    ),
    url('img/banner.jpg');
    background-size:cover;
    background-position:center;
    color:white;
}

.reveal{
    opacity:0;
    transform:translateY(60px);
    transition:1s;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}







.services-section{
    background:#f8fafc;
}

.section-subtitle{
    color:#1178b3;
    font-weight:700;
    letter-spacing:2px;
}

.section-title{
    font-size:48px;
    font-weight:800;
    margin-top:10px;
}

.service-card{
    position:relative;
    overflow:hidden;
    border-radius:25px;
    height:400px;
    cursor:pointer;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.service-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:1s;
}

.service-card:hover img{
    transform:scale(1.15);
}

.service-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.9),
        rgba(0,0,0,.25)
    );
    color:white;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:30px;
    transition:.5s;
}

.service-card:hover .service-overlay{
    background:linear-gradient(
        to top,
        rgba(13,110,253,.95),
        rgba(0,0,0,.2)
    );
}

.service-overlay i{
    font-size:45px;
    margin-bottom:15px;
}

.service-overlay h4{
    font-weight:700;
    margin-bottom:10px;
}

.service-overlay p{
    margin:0;
    opacity:.9;
}

.reveal{
    opacity:0;
    transform:translateY(70px);
    transition:1s;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}









.services-premium{
    background:#f8fafc;
}

.section-badge{
    color:#1178b3;
    font-weight:700;
    letter-spacing:2px;
}

.section-title{
    font-size:48px;
    font-weight:800;
    margin-top:15px;
}

.section-text{
    max-width:800px;
    margin:auto;
    color:#6c757d;
}

.service-box{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.5s;
    height:100%;
}

.service-box:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.service-image{
    height:280px;
    overflow:hidden;
}

.service-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:1s;
}

.service-box:hover img{
    transform:scale(1.1);
}

.service-content{
    padding:30px;
}

.service-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#1178b3;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:20px;
}

.service-content h3{
    font-weight:700;
    margin-bottom:15px;
}

.service-content p{
    color:#6c757d;
    margin-bottom:20px;
}

.service-content ul{
    padding-left:20px;
    margin-bottom:25px;
}

.service-content ul li{
    margin-bottom:8px;
}

.btn-service{
    display:inline-block;
    padding:12px 25px;
    background:#1178b3;
    color:white;
    border-radius:50px;
    text-decoration:none;
    transition:.3s;
}

.btn-service:hover{
    background:#084298;
    color:white;
}

.reveal{
    opacity:0;
    transform:translateY(80px);
    transition:1s;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}










.blog-section{
    background:#ffffff;
}

.blog-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.blog-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.blog-image{
    position:relative;
    overflow:hidden;
    height:260px;
}

.blog-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:1s;
}

.blog-card:hover img{
    transform:scale(1.1);
}

.blog-category{
    position:absolute;
    top:20px;
    left:20px;
    background:#1178b3;
    color:#fff;
    padding:8px 15px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

.blog-content{
    padding:30px;
}

.blog-meta{
    color:#6c757d;
    margin-bottom:15px;
    font-size:14px;
}

.blog-content h4{
    font-weight:700;
    line-height:1.4;
    margin-bottom:15px;
}

.blog-content p{
    color:#6c757d;
    margin-bottom:20px;
}

.blog-btn{
    color:#1178b3;
    font-weight:600;
    text-decoration:none;
}

.blog-btn:hover{
    color:#084298;
}

.btn-blog-all{
    display:inline-block;
    padding:15px 35px;
    background:#1178b3;
    color:#fff;
    border-radius:50px;
    text-decoration:none;
    transition:.3s;
}

.btn-blog-all:hover{
    background:#084298;
    color:#fff;
}

.section-badge{
    color:#1178b3;
    font-weight:700;
    letter-spacing:2px;
}

.section-title{
    font-size:48px;
    font-weight:800;
    margin-top:15px;
}

.section-text{
    max-width:800px;
    margin:auto;
    color:#6c757d;
}









.article-cover{
    border-radius:25px;
    overflow:hidden;
    margin-bottom:30px;
}

.article-cover img{
    width:100%;
    height:550px;
    object-fit:cover;
}

.article-category{
    margin-bottom:20px;
}

.article-category span{
    background:#1178b3;
    color:white;
    padding:10px 20px;
    border-radius:30px;
    font-weight:600;
}

.article-title{
    font-size:52px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:25px;
}

.article-meta{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
    color:#6c757d;
    margin-bottom:40px;
}

.article-content{
    font-size:18px;
    line-height:1.9;
    color:#444;
}

.article-content h2{
    margin-top:40px;
    margin-bottom:20px;
    font-weight:700;
}

.article-content blockquote{
    border-left:5px solid #1178b3;
    padding:25px;
    background:#f8f9fa;
    margin:40px 0;
    font-size:22px;
    font-style:italic;
}

.article-tags{
    margin-top:50px;
}

.article-tags a{
    display:inline-block;
    margin:5px;
    padding:10px 20px;
    background:#f1f3f5;
    border-radius:30px;
    text-decoration:none;
    color:#333;
}

.article-share{
    margin-top:50px;
    padding-top:30px;
    border-top:1px solid #eee;
}

.article-share a{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#1178b3;
    color:white;
    display:inline-flex;
    justify-content:center;
    align-items:center;
    margin-right:10px;
    text-decoration:none;
}

.related-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.related-card:hover{
    transform:translateY(-10px);
}

.related-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.related-content{
    padding:25px;
}









.sidebar-widget{
    background:#fff;
    padding:30px;
    border-radius:20px;
    margin-bottom:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.sidebar-widget h4{
    font-weight:700;
    margin-bottom:20px;
}

.search-box{
    display:flex;
}

.search-box input{
    flex:1;
    border:none;
    background:#f4f6f9;
    padding:14px;
    border-radius:10px 0 0 10px;
}

.search-box button{
    border:none;
    background:#1178b3;
    color:#fff;
    padding:0 20px;
    border-radius:0 10px 10px 0;
}

.category-list{
    list-style:none;
    padding:0;
    margin:0;
}

.category-list li{
    margin-bottom:10px;
}

.category-list a{
    display:flex;
    justify-content:space-between;
    text-decoration:none;
    color:#333;
    padding:12px;
    background:#f8f9fa;
    border-radius:10px;
    transition:.3s;
}

.category-list a:hover{
    background:#1178b3;
    color:white;
}

.recent-post{
    display:flex;
    gap:15px;
    margin-bottom:20px;
}

.recent-post img{
    width:90px;
    height:70px;
    object-fit:cover;
    border-radius:10px;
}

.cta-widget{
    background:linear-gradient(
        135deg,
        #1178b3,
        #003ea8
    );
    color:white;
    text-align:center;
}

.tag-cloud a{
    display:inline-block;
    padding:10px 15px;
    margin:5px;
    background:#f1f3f5;
    border-radius:30px;
    text-decoration:none;
    color:#333;
    transition:.3s;
}

.tag-cloud a:hover{
    background:#1178b3;
    color:white;
}



.sidebar-sticky{
    position:sticky;
    top:120px;
}









.contact-hero{
    padding:140px 0;
    background:linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
    url('img/contact-banner.jpg');
    background-size:cover;
    background-position:center;
    color:#fff;
}

.contact-hero h1{
    font-size:60px;
    font-weight:800;
}

.contact-card{
    text-align:center;
    padding:40px 25px;
    border-radius:20px;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.contact-card:hover{
    transform:translateY(-10px);
}

.contact-card i{
    font-size:45px;
    color:#1178b3;
    margin-bottom:20px;
}

.contact-form-box{
    background:#fff;
    padding:40px;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-form-box .form-control{
    padding:15px;
    border-radius:12px;
}

.btn-contact{
    border:none;
    background:#1178b3;
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
}

.map-box{
    overflow:hidden;
    border-radius:25px;
    height:100%;
    min-height:550px;
}

.map-box iframe{
    width:100%;
    height:100%;
    border:0;
}

.contact-cta{
    padding:100px 0;
    background:linear-gradient(135deg,#1178b3,#003ea8);
    color:#fff;
}

.section-badge{
    color:#1178b3;
    font-weight:700;
    letter-spacing:2px;
}







.hero-bg {
    position: relative;
    width: 100%;
    height: 40vh;
    min-height: 280px;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    overflow: hidden;
}

/* image en vrai élément */
.hero-img {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    z-index: 0;
}

/* overlay opacité */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

/* contenu */
.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 15px;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.hero-content p {
    margin-bottom: 15px;
    opacity: 0.9;
}

.hero-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #ffcc00;
    color: black;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
}