/* Custom Styles */
body {
    padding-top: 56px;
}

.hero-section {
    background-color: #f8f9fa;
    padding: 100px 0;
    margin-bottom: 30px;
}

.card {
    cursor: pointer;
    transition: transform 0.3s  ease;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card-text {
    font-size: 1.5rem;
}

badge {
    font-size: 0.7rem;
    margin-right: 5px;
}

.modal-content {
    border-radius: 10px;
}

.modal-body img {
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.modal-body h4 {
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.modal-body ul {
    padding-left: 20px;
}

.modal-body ul li {
    margin-bottom: 8px;
}

section {
    padding: 80px 0;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}
/* Portfolio Thumbnail Image */
.portfolio-thumbnail {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover; /* Ensures image covers the area without distortion */
    transition: transform 0.3s ease;
}

.portfolio-thumbnail:hover {
    transform: scale(1.03); /* Slight zoom on hover */
}

/* Portfolio Detail Page Image */
.portfolio-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.portfolio-gallery img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.portfolio-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}