* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #222222;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

.banner {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
    background-color: #222222;
}

.banner-image {
    max-width: 95%;
    max-height: 95vh;
    object-fit: contain;
    display: block;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    background-color: rgba(34, 34, 34, 0.8);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.nav-links a, .nav-right a {
    color: #fff;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a.active, .nav-right a.active {
    color: #FFD700; /* Gold color for active tab */
    font-weight: bold;
    border-bottom: 2px solid #FFD700;
}

.nav-links a:hover, .nav-right a:hover {
    color: #888;
}

.nav-right span {
    color: #fff;
    margin: 0 0.5rem;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 2rem;
    }
    
    .nav-links, .nav-right {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
}

.projects-content {
    padding: 8rem 4rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.project-card {
    background-color: rgba(51, 51, 51, 0.8);
    border-radius: 8px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.project-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.project-info h2 {
    font-size: 2.5rem;
    font-weight: 500;
    color: #fff;
}

.project-info h3 {
    font-size: 1.8rem;
    font-weight: 400;
    color: #ccc;
}

.project-info p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #fff;
}

.software-used {
    color: #888 !important;
    margin-top: auto;
}

.project-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.project-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.project-images.single-image {
    display: block;
    grid-template-columns: 1fr;
}

.project-images.single-image .full-width-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    max-height: 800px;
}

@media (max-width: 1024px) {
    .project-card {
        grid-template-columns: 1fr;
    }
    
    .project-images.single-image {
        order: -1;
    }
    
    .project-images.single-image .full-width-image {
        max-height: 600px;
    }
}

@media (max-width: 768px) {
    .projects-content {
        padding: 8rem 2rem 2rem;
    }
    
    .project-card {
        padding: 2rem;
    }
    
    .project-info h2 {
        font-size: 2rem;
    }
    
    .project-info h3 {
        font-size: 1.5rem;
    }
    
    .project-images {
        grid-template-columns: 1fr;
    }
}

.home-gallery {
    position: relative;
    z-index: 1;
    padding: 4rem;
    background-color: #222222;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background-color: #111;
    width: 100%;
    height: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.gallery-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.03);
}

@media (max-width: 1024px) {
    .home-gallery {
        padding: 2rem;
    }
    
    .gallery-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        gap: 2rem;
        margin: 0 auto;
    }
} 