

/* ======  head-pic (laptop) ====== */
/* ======  head-pic (laptop) ====== */


.head-pic {
    width: 100%;
    height: 200px; /* Adjust height as needed */
    overflow: hidden;
    position: relative;
}

.head-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    filter: brightness(90%); 
}


/* ======  contact (laptop) ====== */
/* ======  contact (laptop) ====== */

#contact{

    padding: 0 70px;
    margin: 50px 0;
    /* height: 100vh; */

    display: flex;

    /* background-color: coral; */
}

.left-side{

    width: 30%;
    
    /* background-color: chartreuse; */

    padding: 30px;

    /* display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center; */
}

.left-side h2{

    font-size: 30px;
    text-align: center;
    color: #051829;
}
.product-list .item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    color: #051829;
    background-color: #f5f2f2;
    padding: 10px;

    /* background-color: crimson; */

    text-decoration: none;
    margin: 10px 0;
    transition: 0.3s;

}

.product-list .item-1{
    color: #ffffff;
    background-color:  #00adf0;
}

.product-list .item:hover{
    color: #ffffff;
    background-color:  #00adf0;

}

.product-list .item p{

    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;

}

.clients-section {
    margin-top: 20px;
}

.clients-section h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #051829;
}

.clients-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.clients-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.clients-list ul li {
    font-size: 14px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.clients-list ul li::before {
    content: "🌍"; /* Optional globe icon */
    margin-right: 8px;
}

.right-side{

    width: 70%;
    padding: 30px;
    
    /* background-color: rgb(255, 196, 0); */

    display: flex;
    flex-direction: column;
    /* justify-content: flex-start;
    align-items: center;
    align-content: flex-start; */
   
}

.right-side h2{

    font-size: 30px;
    color: #00adf0;
    text-align: center;

}

.right-side h3{

    font-size: 20px;
    color: #00adf0;
    font-family: 'Montserrat', sans-serif;
    line-height: 30px;

}

.right-side img{

 width: 100%;

margin: 20px 0;

}

.right-side h4{

    text-align: left;
    margin: 20px 0 0 0;
    color: #000;
    font-weight: 500;

}

.right-side p{

    text-align: justify;
}

.right-side ol {
    list-style-type: disc; /* Ensures bullet dots */
    padding-left: 20px; /* Adds spacing from the left */
}


@media (max-width: 1000px) {
    #contact {
        flex-direction: column;
    }

    .right-side{
        order: -1;
        width: 100%;
        margin-bottom: 50px;
    }

    .left-side{
        width: 100%;
    }
}

@media (max-width: 768px) {
    .right-side{
        padding: 0;
    }

    .left-side{
        padding: 0;
    }

    .right-side h3 {
        font-size: 15px;
    }
}

@media (max-width: 500px) {
    #contact {
        padding: 0 20px;
        margin: 20px 0;
        display: flex;
    }
}