/* General Styles */
body {
    font-family: Arial, sans-serif;
    color: #444;
    background-color: #f4f4f4;
}

h2 {
    color: #333;
    margin-bottom: 1em;
}

.carousel-item img {
    opacity: 0.8;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.1);
}

.about-text {
    max-width: 600px;
    margin: 0 auto;
    color: #555;
}

/* Experience Section */
.experience-item {
    margin-bottom: 2em;
    background-color: #e9ecef;
    border-radius: 8px;
    padding: 1.5em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.experience-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Gallery Section */
.gallery-image {
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: #333;
    color: white;
}
