/* Global styles */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Header styling */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #1a1a1a;
    color: white;
}

.logo-container {
    max-width: 150px;
}

.logo {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.hover {
    position: absolute;
    font-size: larger;
    top: 20px;
    left: 20px;
    background-color: #1a1a1a;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.hover:hover {
    background-color: #960680;
    transform: scale(1.05);
}

/* Main section styling */
main {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.text-box {
    color: #140696;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}

/* Project details styling */
h1, h3, h4 {
    color: #333;
    margin-top: 20px;
    font-weight: 500;
}

h3 {
    color: #140696;
}

p, ul {
    font-size: 1rem;
    margin-bottom: 20px;
}

ul {
    padding-left: 20px;
}

ul li {
    margin-bottom: 8px;
}

/* Section styles for enhanced readability */
#project-details p {
    margin-bottom: 15px;
}

/* Image containers and styling */
.image-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.image-container img {
    max-width: 180px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-container img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Testimonials styling */
.testimonials {
    margin-top: 30px;
    padding: 20px;
    background-color: #f0f0f0;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonials h5 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 15px;
}

.testimonials p {
    font-size: 1rem;
    margin-bottom: 10px;
}

.testimonials strong {
    color: #960680;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .image-container {
        flex-direction: column;
        align-items: center;
    }

    .back-button {
        top: 10px;
        left: 10px;
    }
}
