/* ==========================================
   COMPANY PRESENTATION
========================================== */
body{
    font-family:'Inter', Arial, sans-serif;
    background:var(--light);
    color:var(--dark);
    line-height:1.6;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{
    --primary:#0d6efd;
    --dark:#1f2937;
    --light:#f5f7fb;
    --white:#ffffff;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:var(--light);
    color:var(--dark);
}
img{
    max-width:100%;
    height:auto;
    display:block;
}
.logo{
    width:auto;
    height:75px;
}
a{
    text-decoration:none;
}

.container{
    width:100%;
    max-width:1100px;
    margin:auto;
    padding:0 20px;
}

.presentation-title{

    font-size:25px;
    font-weight:700;
    text-align:center;
    margin:0 0 25px;
    color:#16233b;
    line-height:1.25;

}

.presentation-title span{

    color:#2159A4;

}

/* ==========================
HEADER
========================== */

header{
    background:#fff;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 3px 15px rgba(0,0,0,.08);
}

header .container{

    height:80px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo{
    height:75px;
}




.call-btn{

    background:#2159A4;

    color:#fff;

    padding:13px 24px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

   

}

.call-btn:hover{

    background:#18498a;

    transform:translateY(-2px);

}

/* ==========================
MAIN
========================== */

main{

    padding:40px 0 60px;

}

.presentation{

    position:relative;

}

.companySlider{

    max-width:1080px;

    margin:auto;

    border-radius:20px;

    overflow:hidden;

    background:#fff;

    box-shadow:
        0 15px 50px rgba(0,0,0,.12);

}

.swiper-slide{

    display:flex;

    justify-content:center;

    align-items:center;

    background:#fff;

}
.swiper-slide img{

    width:100%;

    max-width:900px;

    height:auto;

    margin:auto;

    border-radius:16px;
     transition:transform 8s ease;

}



/* Slow Zoom */

.swiper-slide-active img{

    transform:scale(1.03);

}

/* ==========================
ARROWS
========================== */

.swiper-button-next,
.swiper-button-prev{

    width:52px !important;
    height:52px !important;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(10px);

    border-radius:50%;

    color:#2159A4 !important;

    box-shadow:0 8px 25px rgba(0,0,0,.18);

    opacity:0;
    visibility:hidden;

    transition:all .35s ease;

}

.swiper-button-prev{

    transform:translateX(-15px);

}

.swiper-button-next{

    transform:translateX(15px);

}

.companySlider:hover .swiper-button-next,
.companySlider:hover .swiper-button-prev{

    opacity:1;
    visibility:visible;

    transform:translateX(0);

}

.swiper-button-next:hover,
.swiper-button-prev:hover{

    background:#2159A4;

    color:#fff !important;

}

.swiper-button-next::after,
.swiper-button-prev::after{

    font-size:18px !important;

    font-weight:700;

}

/* ==========================
DOTS
========================== */

.swiper-pagination{

    bottom:15px !important;

}


.swiper-pagination-bullet{ width:10px; height:10px; background:#ccc; opacity:.5; transition:.3s;} 
.swiper-pagination-bullet-active{ opacity:1; background:var(--primary); width:28px; border-radius:20px; }


/* ==========================
SLIDE COUNTER
========================== */

.slide-counter{
    display:none;

    margin-top:18px;

    text-align:center;

    font-size:18px;

    font-weight:bold;

    color:#444;

}

/* ==========================
FOOTER
========================== */

footer{

    background:#16233b;

    color:#fff;
font-size:15px;

    margin-top:50px;

}

.footer-content{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    padding:35px 20px;

}

.footer-content strong{

    display:block;

    margin-bottom:8px;

}

.footer-content a{

    color:#fff;

}

/* ==========================
TABLET
========================== */

@media(max-width:992px){

.footer-content{

grid-template-columns:repeat(2,1fr);

}

}

/* ==========================
MOBILE
========================== */

@media(max-width:768px){

header .container{

height:auto;

padding:15px 20px;

flex-direction:column;

gap:15px;

}

.logo{
        height:70px !important;
        width:auto !important;
    }

.presentation-title{

        font-size:20px;
        margin-bottom:15px;
        padding:0 10px;
        text-align:center;
    }

.call-btn{

width:100%;

text-align:center;

}



main{

padding:20px 0 30px;

}

.swiper-button-next,
.swiper-button-prev{

width:42px !important;

height:42px !important;

}   
 .swiper-pagination{
        display:none !important;
    }

    .slide-counter{
        display:none;
    }


.footer-content{

grid-template-columns:1fr;

text-align:center;

}

.slide-counter{

font-size:16px;

}

}