@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

body{
    background-color: #0D326F;
}

p,a{
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 100;
    font-style: normal;
}

h1,h2,h3,h4,h5,h6{
    font-family: "IBM Plex Sans Condensed", sans-serif;
    font-weight: 100;
    font-style: normal;
}

/*CUSTOM NAVBAR*/
.navbar {
    background-color: #0D326F;
    padding-left: 4.3%;
    padding-right: 4.3%;
}

.navbar-toggler {
    border-color: #0D326F;
    background-color: #0D326F;
}

.navbar-toggler-icon{
    color: #E99C29;
    margin-top: 10px;
}

.navbar-brand img {
    height: 32px;
    height: 26px;
    margin-top: -10px;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 350;
}

.btn-store {
    background-color: #E99C29;
    color: white;
    border: 1px solid white;
    border-radius: 20px;
    padding: 1px 10px; /* Up-Down / Left-Right */
}

.custom-brand-size{
    font-size: 16px;
    color: #E99C29;
}

.custom-brand-size:hover{
    color: white;
}

/*CARROUSEL CUSTOM*/
.carousel-custom .carousel-item {
    transition: transform 0.2s ease-in-out;  
}

.custom-img1,.custom-img2,.custom-img3,.custom-img4{
    height: 450px;
    object-fit: cover;
    border: 1px solid #E99C29;
    border-radius: 20px;
}

.title-block{
    top: 60%;
}

/*title*/
.custo-title{
    color: #E99C29;
}

/*Presentation*/
.card-team-img {
    background-image: url('../images/team.png');
    background-size: cover;
    background-position: center;
    border: 1px solid #E99C29;
    border-radius: 20px;
    height: 450px;
}

.custom-introduction-text {
    color: white !important;
    font-weight: 350;
    margin-top: 17%;
}

.cutom-btn-introduction{
    width: 23%;
}

/*SHOP ITEM SECTION*/

.custom-shop-item-text {
    color: white !important;
    font-weight: 350;
}

.custo-title-shop-item{
    color: #E99C29;
    margin-top: 18%;
}

.card-shop-img {
    background-image: url('../images/shop-item-computer-labtop.png');
    background-size: cover;
    background-position: center;
    border: 1px solid #E99C29;
    border-radius: 20px;
    height: 450px;
}

.cutom-item-link {
    color: white;
}

/*FAQ*/
.card-faq {
    background-color: #E99C29;
    border: 1px solid white;
    border-radius: 20px;
    padding: 20px; /* Added padding for spacing */
    box-sizing: border-box; /* Ensures padding is included in the total width */
}

.center-card {
    margin: 0 auto;
    float: none;
}

.custom-faq-card {
    width: 100%; /* Make it responsive */
    max-width: 505px; /* Set a maximum width */
    border: 2px solid #0D326F;
    border-radius: 20px;
    background-color: #E99C29;
    margin: 0 auto; /* Center align the card */
}

.custom-padding-top {
    padding-top: 30px; /* Reduced padding for responsiveness */
}

.custom-padding-bottom {
    padding-bottom: 30px; /* Reduced padding for responsiveness */
}

.faq-text {
    color: #0D326F !important;
    font-weight: 350;
    font-size: 20px;
}

.custom-hr {
    border: none;         
    height: 2px;          
    background-color: #0D326F;       
}

/* */

.faq-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 10px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.faq-item {
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    padding: 10px;
    border: 1px solid #0D326F;
    border-radius: 20px;
    text-align: left;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toggle-icon {
    font-size: 18px;
    color: #0D326F;
}

.faq-answer {
    display: none;
    background-color: #E99C29;
    padding-left: 5px;
}

.faq-answer p {
    margin: 0;
}

.faq-text-answer {
    color: #0D326F !important;
    font-weight: 350;
}

.custom-faq-title {
    color: #0D326F;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .custom-faq-card {
        width: 100%; /* Full width on smaller screens */
        margin: 10px 0; /* Reduce margin on smaller screens */
    }
    .custom-padding-top, .custom-padding-bottom {
        padding-top: 20px; /* Adjust padding for smaller screens */
        padding-bottom: 20px;
    }
}

/*PARTNER SECTION*/
.scroll-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.scroll-images {
    display: inline-block;
    white-space: nowrap;
    animation: scroll 7s linear infinite;
}

.scroll-images img {
    height: 100px; /* Ajuste la hauteur des images selon tes besoins */
    margin-right: 20px; /* Espace entre les images */
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/*FOOTER*/
.custom-footer {
    border-top: 5px solid #E99C29;
    width: 100%;
}

.custom-footer-text {
    color: white !important;
    font-weight: 350;
}

.custo-footer-title {
    font-size: 16px;
    color: #E99C29;
}

.footer-link {
    text-decoration: none;
    color: white;
}

.footer-link:hover {
    text-decoration: none;
    color: white;
}

.custom-social-logos {
    color: #E99C29;
    background-color: #0D326F;
    padding: 5px;
}

.custom-copyright {
    color: white;
    font-size: small;
}

/*ABOUT US*/
.custom-introduction-about {
    color: white !important;
    font-weight: 350;
}

.custom-title {
    color: white;
}

/*SERVICES*/
.custom-icon {
    color: #E99C29;
}

.custom-card-serv {
    background-color: #0D326F;
    border-top: 5px solid #E99C29;
    border-radius: 20px;
    border-bottom: 1px solid #E99C29;
    border-right: 1px solid #E99C29;
    border-left: 1px solid #E99C29;
}

/*CONTACT FORM*/
.custom-form {
    border-radius: 15px;
    border: 1px solid #0D326F;
    padding-top: 5px;
    padding-bottom: 7px;
    padding-left: 10px;
    background-color: #E99C29;
    width: 100%;
}

/* Style for placeholders */
::-webkit-input-placeholder {
    color: #0D326F; /* Color for Webkit browsers (Chrome, Safari) */
}
:-ms-input-placeholder {
    color: #0D326F; /* Color for Internet Explorer */
}
::-moz-placeholder {
    color: #0D326F; /* Color for Firefox */
}

.sumit-custom {
    background-color: #0D326F;
    color: white;
    border: 1px solid white;
    border-radius: 10px;
    padding-top: 5px;
    padding-bottom: 7px;
    padding-left: 10px;
    padding-right: 10px;
}

.custom-contact-card {
    width: 100%; /* Make it responsive */
    max-width: 505px; /* Set a maximum width */
    border: 2px solid #E99C29;
    border-radius: 20px;
    background-color: #E99C29;
    margin: 0 auto; /* Center align the card */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .custom-contact-card {
        width: 100%; /* Full width on smaller screens */
        margin: 10px 0; /* Reduce margin on smaller screens */
    }
}

.custom-map {
    width: 100%; 
    height: 200px;
}

/*SHOP*/
.card-shop-img1 {
    background-image: url('../images/Dell Latitude 5401 Laptop PC pic 1.png');
    background-size: cover;
    background-position: center;
    border: 1px solid #E99C29;
    border-radius: 20px;
    height: 450px;
    transition: background-image 0.3s ease-in-out;
}

.card-shop-img2 {
    background-image: url('../images/Dell Latitude 5410  Laptop PC pic 1.png');
    background-size: cover;
    background-position: center;
    border: 1px solid #E99C29;
    border-radius: 20px;
    height: 450px;
    transition: background-image 0.3s ease-in-out;
}

.card-shop-img1:hover {
    background-image: url('../images/Dell Latitude 5401 Laptop PC pic 2.png'); /* Remplacez par l'URL de l'image de survol */
}

.card-shop-img2:hover {
    background-image: url('../images/Dell Latitude 5410  Laptop PC pic 2.png'); /* Remplacez par l'URL de l'image de survol */
}

.custom-product-text {
    color: white !important;
    font-weight: 350;
}

.custo-title {
    color: #E99C29; /* Ajustez la couleur du titre selon vos besoins */
}
