<style type="text/css">
  
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600&display=swap');

body, h1, h2, p, ul, li {
    margin: 0;
    padding: 0;
}

/* Apply a background color and font to the body */
body {
    background-color: white;
    font-family: 'Outfit', sans-serif;
}

/* Style the container for the main content */
.container-portofoliu {
    max-width: 1170px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding-bottom: 0;

}

.col-container {
    display: flex;
    flex-wrap: wrap;
}

/* Style the left column */
.col-stanga-portofoliu {
    flex: 0 0 65%;
    padding: 30px 60px;
    box-sizing: border-box;
}

/* Style the right column */
.col-dreapta-portofoliu {
    flex: 0 0 35%;
    padding: 20px;
    box-sizing: border-box;
    background: linear-gradient(to right, #eb0084, #ffb4a2);
    border-radius: 7px;
    z-index: 2;
    padding: 60px 70px;


}

/* Add some spacing and alignment for smaller screens */
@media screen and (max-width: 768px) {
    .col-stanga-portofoliu, .col-dreapta-portofoliu {
        width: 100%;
        margin-bottom: 20px;
    }
}


/* Style the section title */
.section-title h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #333;
}

/* Style the main content paragraph */
.col-stanga-portofoliu-content p {
    font-size: 22px;
    line-height: 32px;
    color: #7e7e7e;
    margin-bottom: 20px;
    margin-right: 40px;
}



/* Style the project details list */
.portofoliu-descriere-proiect ul {
    list-style: none;
    box-sizing: border-box;
}

.portofoliu-descriere-proiect li {
    margin-bottom: 10px;
    font-size: 18px;
    color: white;
    
}




.portofoliu-descriere-proiect li:not(:last-child) {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid whitesmoke;
}

.portofoliu-descriere-proiect span {
    color: white;
    margin: 0;
    padding: 0;
    font-size: 20px;
}

.portofoliu-descriere-proiect h3 {
    font-weight: bold;
    color: white;
    line-height: 1.5;
    font-size: 27px;
    margin-top: 0;
    margin-bottom: 10px;

}

/* Add some spacing and alignment for smaller screens */
@media screen and (max-width: 768px) {
    .container-portofoliu {
        flex-direction: column;
    }

    .col-stanga-portofoliu, .col-dreapta-portofoliu {
        width: 100%;
        margin-bottom: 20px;
    }
}


.slider-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    width: 100%;
    margin-bottom: 70px;
}

.slide {
    display: none; // All slides start as hidden
    position: absolute;
    width: 100%;
    height: 800px;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.slide:first-child {
    display: block; // Show the first slide
}


.slider-control {
    position: absolute;
    top: 50%;
    z-index: 1000;
    background: linear-gradient(#eb0084, #ffb4a2);
    border: none;
    cursor: pointer;
    padding: 20px;
    transform: translateY(-50%);
    color: white;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    font-family: outfit;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}





.section-title {
  padding-right: 40px;
  margin-bottom: 75px;
}




.section-title p {
    font-size: 24px;
    line-height: 32px;
    color: #7e7e7e;
    margin-bottom: 20px;
}




.row-align-items-center {
  display: flex;
  flex-wrap: wrap;
}

.section-subtitle::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #ccc; /* Adjust the color as needed */
    margin-top: 40px; /* Adjust the margin to control the spacing below the line */
    clear: both; /* Clear any floated elements */
}


.slide {
    display: none;
    width: 100%;
}

.thumbnail-wrapper {
    width: 100%;
    overflow: hidden;
}

.thumbnail-container {
    display: flex;
    transition: transform 0.3s ease;
}

.thumbnail {
    width: 100px;
    margin: 5px;
    cursor: pointer;
    opacity: 0.7;
}

.thumbnail.active {
    opacity: 1;
    border: 4px solid transparent; /* Make sure the border is transparent initially */
    background-image: linear-gradient(#eb0084, #ffb4a2); /* Set the gradient background */
    border-radius: 5px; /* Optional: For rounded corners if desired */
}






@media only screen and (max-width: 655px) {

    .row-align-items-center {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: space-between;
        align-content: center;
    }
 

    .col-stanga-portofoliu {
        padding-inline: 20px;
    }


    .section-title {
        margin-bottom: 50px;
        padding-inline: 0;
    }


    .col-stanga-portofoliu-content p {
        margin-right: 0;


    }

    .col-dreapta-portofoliu {
        padding: 40px 50px;
    }
    .slider-container{
        margin: 0;
    }

    .slide {
        height: 500px;
    }

    .thumbnail {
        height: 50px;
    }
}


</style>