/*==========================================================
    SEME CONGO
    UI SYSTEM
    Version : 2.0
    Auteur : INTEGRA Tech
==========================================================*/



/*==========================================================
01. DESIGN TOKENS
==========================================================*/

:root{

    /* Couleurs principales */

    --primary:#0E4EA6;
    --primary-dark:#0A2F6B;
    --primary-light:#2F7DE1;

    /* Couleurs neutres */

    --white:#FFFFFF;
    --light:#F7F9FC;
    --light-2:#EEF3F8;

    --dark:#172B4D;

    --text:#5E6675;

    --border:#E7ECF2;

    /* Ombres */

    --shadow-sm:0 8px 24px rgba(0,0,0,.05);

    --shadow-md:0 16px 40px rgba(0,0,0,.08);

    --shadow-lg:0 24px 60px rgba(0,0,0,.12);

    /* Border Radius */

    --radius-sm:12px;

    --radius-md:18px;

    --radius-lg:24px;

    --radius-xl:32px;

    /* Espacements */

    --space-10:10px;
    --space-20:20px;
    --space-30:30px;
    --space-40:40px;
    --space-60:60px;
    --space-80:80px;
    --space-120:120px;

    /* Transition */

    --transition:.35s ease;

}



/*==========================================================
02. RESET
==========================================================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    overflow-x:hidden;

}



/*==========================================================
03. TYPOGRAPHIE
==========================================================*/

body{

    font-family:'Poppins',sans-serif;

    font-size:16px;

    line-height:1.8;

    color:var(--text);

    background:var(--white);

}

h1,
h2,
h3,
h4,
h5,
h6{

    color:var(--dark);

    font-weight:700;

    line-height:1.25;

    margin-bottom:20px;

}

h1{

    font-size:clamp(2.8rem,5vw,4.2rem);

}

h2{

    font-size:clamp(2rem,4vw,3rem);

}

h3{

    font-size:1.6rem;

}

h4{

    font-size:1.25rem;

}

p{

    margin-bottom:20px;

    color:var(--text);

}

a{

    text-decoration:none;

    transition:var(--transition);

}

img{

    display:block;

    max-width:100%;

}



/*==========================================================
04. LAYOUT
==========================================================*/

.container{

    max-width:1320px;

}

.section-padding{

    padding:120px 0;

}

.section-padding-sm{

    padding:80px 0;

}



/*==========================================================
05. SECTION TITLE
==========================================================*/

.section-title{

    margin-bottom:60px;

}

.section-title.text-center{

    max-width:760px;

    margin-left:auto;

    margin-right:auto;

}

.section-title .subtitle{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:8px 18px;

    margin-bottom:20px;

    border-radius:50px;

    background:rgba(14,78,166,.08);

    color:var(--primary);

    font-size:14px;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:.08em;

}

.section-title h2{

    margin-bottom:20px;

}

.section-title h2 span{

    color:var(--primary);

}

.section-title p{

    max-width:700px;

    margin:0 auto;

    font-size:17px;

}



/*==========================================================
06. UTILITIES
==========================================================*/

.bg-light-custom{

    background:var(--light);

}

.bg-white{

    background:var(--white);

}

.radius-lg{

    border-radius:var(--radius-lg);

}

.radius-xl{

    border-radius:var(--radius-xl);

}

.shadow-soft{

    box-shadow:var(--shadow-sm);

}

.shadow-medium{

    box-shadow:var(--shadow-md);

}

.shadow-large{

    box-shadow:var(--shadow-lg);

}

/*==========================================================
07. BUTTONS
==========================================================*/

.btn{

    border-radius:50px;

    font-weight:600;

    padding:14px 34px;

    transition:var(--transition);

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    border:none;

}

.btn-primary-custom{

    background:var(--primary);

    color:var(--white);

    box-shadow:0 10px 25px rgba(14,78,166,.25);

}

.btn-primary-custom:hover{

    background:var(--primary-dark);

    color:var(--white);

    transform:translateY(-3px);

    box-shadow:0 18px 35px rgba(14,78,166,.35);

}

/*.btn-outline-custom{

    background:transparent;

    color:var(--primary);

    border:2px solid var(--primary);

}

.btn-outline-custom:hover{

    background:var(--primary);

    color:#fff;

    transform:translateY(-3px);

}*/

.btn-white{

    background:#fff;

    color:var(--primary);

}

.btn-white:hover{

    transform:translateY(-3px);

}



/*==========================================================
08. PREMIUM CARD
==========================================================*/

.card-premium{

    background:#fff;

    border-radius:var(--radius-lg);

    padding:35px;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

    border:1px solid var(--border);

    height:100%;

}

.card-premium:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}



/*==========================================================
09. ICON BOX
==========================================================*/

.icon-box{

    width:72px;

    height:72px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:20px;

    background:rgba(14,78,166,.08);

    color:var(--primary);

    font-size:30px;

    margin-bottom:25px;

    transition:var(--transition);

}

.card-premium:hover .icon-box{

    background:var(--primary);

    color:#fff;

    transform:rotate(-8deg);

}



/*==========================================================
10. BADGES
==========================================================*/

.badge-custom{

    display:inline-block;

    padding:8px 18px;

    border-radius:50px;

    background:rgba(14,78,166,.08);

    color:var(--primary);

    font-size:13px;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:.08em;

}



/*==========================================================
11. IMAGE SYSTEM
==========================================================*/

.img-premium{

    border-radius:var(--radius-lg);

    overflow:hidden;

    box-shadow:var(--shadow-md);

}

.img-premium img{

    transition:.6s;

}

.img-premium:hover img{

    transform:scale(1.06);

}



/*==========================================================
12. HOVER EFFECT
==========================================================*/

.hover-lift{

    transition:var(--transition);

}

.hover-lift:hover{

    transform:translateY(-8px);

}



/*==========================================================
13. PAGE HERO
==========================================================*/

.page-hero{

    position:relative;

    min-height:460px;

    display:flex;

    align-items:center;

    padding-top:120px;

    color:#fff;

    overflow:hidden;

}

.page-hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(10,47,107,.82),
        rgba(14,78,166,.72)
    );

}

.page-hero .container{

    position:relative;

    z-index:2;

}

.page-hero h1{

    color:#fff;

    margin-bottom:20px;

}

.page-hero p{

    color:rgba(255,255,255,.90);

    max-width:650px;

}

.page-hero .breadcrumb{

    background:none;

    padding:0;

    margin-top:20px;

}

.page-hero .breadcrumb-item,

.page-hero .breadcrumb-item a{

    color:#fff;

}



/*==========================================================
14. TRANSITIONS
==========================================================*/

.section-divider{

    position:relative;

}

.section-divider::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:-1px;

    transform:translateX(-50%);

    width:120px;

    height:4px;

    background:linear-gradient(
        90deg,
        transparent,
        var(--primary),
        transparent
    );

    border-radius:50px;

}



/*==========================================================
15. RESPONSIVE
==========================================================*/

@media(max-width:991px){

    .section-padding{

        padding:90px 0;

    }

    .section-title{

        margin-bottom:45px;

    }

    .card-premium{

        padding:30px;

    }

    .page-hero{

        min-height:380px;

        text-align:center;

    }

    .page-hero p{

        margin:auto;

    }

}

@media(max-width:576px){

    .btn{

        width:100%;

    }

    .section-padding{

        padding:70px 0;

    }

    .icon-box{

        width:64px;

        height:64px;

        font-size:26px;

    }

}

.stats h2, .stats p{
		color: #fff;
	}