body {
    background-color: black;
    color: white;
    text-align: center;
}

.section-title {
    font-size: 40px;
    font-weight: bold;
    margin-top: 20px;
}

/* 📌 Video Section */
.video-box {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 10px 30px rgba(255, 255, 255, 0.2);
}

#service-video {
    width: 100%;
}

/* 📌 Filter Tabs */
/* 📌 Filter Tabs */
.filter-tabs {
    width: 100%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px auto;
    position: relative;
}

/* 📌 Individual Filter Buttons */
.filter-btn {
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 12px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s ease;
    flex: 1;
    text-align: center;
}

/* 📌 Active Button */
.filter-btn.active {
    background: white;
    color: black;
    font-weight: bold;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.3);
}

/* 📌 Hover Effect */
.filter-btn:hover {
    color: white;
}

/* 📌 Responsive Design */
@media (max-width: 768px) {
    .filter-tabs {
        max-width: 100%;
        overflow-x: auto;
        display: flex;
        justify-content: flex-start;
        padding: 5px;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 12px;
        white-space: nowrap;
    }
}


/* 📌 Portfolio Gallery */
#portfolio-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.1);
    width: 250px;
    padding: 20px;
    border-radius: 15px;
    margin: 10px;
    text-align: center;
    box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.2);
    transition: transform 0.3s;
}

/* 📌 Card Hover Effect */
.service-card:hover {
    transform: translateY(-5px);
}

/* 📌 Responsive Grid Fixes */
@media (max-width: 992px) {
    .service-card {
        width: calc(50% - 20px); /* 2 cards per row on tablets */
    }
}

@media (max-width: 768px) {
    .service-card {
        width: calc(100% - 20px); /* 1 card per row on mobile */
    }
}