/* Premium package custom styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Hero carousel height */
.hero-carousel .carousel-item {
    max-height: 600px;
    overflow: hidden;
}
.hero-carousel .carousel-item img {
    object-fit: cover;
    height: 600px;
}

.carousel-caption {
    bottom: 20%;
}

/* Service and project cards */
.service-card, .project-card {
    border: none;
    border-radius: 0.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover, .project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* About image */
#about img {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
}