
body {
    font-family: 'Nunito', sans-serif;
}

.portfolio-item {
    margin-bottom: 30px;
    transition: transform 0.3s ease-in-out;
}

.portfolio-item img {
    height: 200px; /* Adjust as needed */
    object-fit: cover;
}

.portfolio-item:hover {
    transform: scale(1.05);
}

.navbar-brand img {
    transition: transform 0.3s ease-in-out;
}

.navbar-brand:hover img {
    transform: rotate(360deg);
}

.social-links a {
    transition: all 0.3s ease-in-out;
}

.social-links a:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero {
        padding: 50px 15px;
    }
}

/* New styles for expanded content */
.about-detailed {
    margin-top: 20px;
}

.project-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    border-radius: 50%;
    padding: 10px;
}