/* Base Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    overflow-x: hidden;
}

.navbar {
    background-color: #333333;
}

.nav-link {
    color: #ffffff;
}

.section {
    padding: 60px 0;
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('combo.png') no-repeat center center;
    background-size: cover;
    color: #ffffff;
}

#hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

/* Portfolio Item Styling */
.portfolio-item {
    height: 200px;
    background-color: #444444;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: scale(1.05);
}

.portfolio-item img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}

/* Button Styling */
.btn-light {
    background-color: #ffffff;
    color: #333333;
    border-radius: 20px;
}

/* Smooth Scroll for Sections */
html {
    scroll-behavior: smooth;
}

/* Sliding Effect */
.section {
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section.slide-in {
    opacity: 1;
    transform: translateX(0);
}

.logo {
    width: 40px;
    height: auto;
}

.navbar-brand span {
    font-size: 1.5rem;
    color: #fff;
}

#services .service-item {
    background-color: #444444;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}
