:root {
    --primary-color: #FFC107;
    --bg-card: #2A2A2A;
    --text-light: #FFFFFF;
    --text-gray: #999999;
    --nav-width: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: black;
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Styles */
.sidebar {
    width: var(--nav-width);
    background-color: var(--bg-dark);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
}

.logo {
    font-size: 1.5rem;
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 3rem;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Main Content Styles */
.main-content {
    flex: 1;
    margin-left: var(--nav-width);
    padding: 2rem;
}

.services-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.hero-image {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.profile-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
}

.services-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    position: relative;
    padding-bottom: 1rem;
}

.services-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card.highlighted {
    border-bottom: 2px solid var(--primary-color);
}

.service-icon {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.service-description {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .container {
        flex-direction: row; /* Keep sidebar on left */
    }

    .sidebar {
        width: var(--nav-width);
        height: 100vh;
        position: fixed;
        flex-direction: column;
        padding: 2rem 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 2rem;
    }

    .main-content {
        margin-left: var(--nav-width);
        padding: 1rem;
        height: 100vh;
        overflow-y: auto;
    }

    .services-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-content {
        order: 0; /* Reset order to keep it after image */
    }

    .hero-image {
        display: none; /* Hide the hero image on mobile */
    }

    .services-title {
        font-size: 2.5rem;
        text-align: left;
        margin-top: 2rem;
    }

    .services-title::after {
        left: 0;
        transform: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        text-align: left;
        background: var(--bg-card);
        border-radius: 15px;
        padding: 2rem;
    }

    .service-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .service-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .service-description {
        font-size: 0.9rem;
        line-height: 1.5;
        color: var(--text-gray);
    }
}

/* Styles for when services icon is clicked on mobile */
@media (max-width: 768px) {
    .services-active .services-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        padding: 1rem;
    }

    .services-active .service-card {
        margin-bottom: 1rem;
        border-bottom: 2px solid var(--primary-color);
    }
}