:root {
    --primary-color: #ff6b00;
    --dark-bg: #1a1a1a;
    --text-light: #ffffff;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--dark-bg);
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
}

.service-container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Styles */
.service-sidebar {
    width: 250px;
    background-color: rgba(0, 0, 0, 0.3);
}

.breadcrumb {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.service-title {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.service-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-menu li {
    padding: 1rem 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.service-menu li:hover,
.service-menu li.active {
    color: var(--primary-color);
}

/* Main Content Styles */
.service-content {
    flex: 1;
}

.gallery-section {
    margin-bottom: 3rem;
}

.gallery-section h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
}

.gallery-container {
    position: relative;
}

.gallery-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 2;
}

.nav-btn {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.nav-btn:hover {
    background: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    position: relative;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 16/9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .service-container {
        flex-direction: column;
    }

    .service-sidebar {
        width: 100%;
        padding: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}


/* Add these styles for the tab system */
.tab-menu {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.tab-btn {
    background: none;
    border: none;
    color: var(--text-light);
    padding: 1rem;
    text-align: left;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0.7;
}

.tab-btn::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.tab-btn:hover {
    opacity: 1;
}

.tab-btn.active {
    color: var(--primary-color);
    opacity: 1;
}

.tab-btn.active::before {
    width: 100%;
}

.tab-content {
    display: none;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

/* Add animation for tab switching */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.tab-content.active {
    animation: fadeInRight 0.4s ease forwards;
}