﻿body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0b0f17;
    color: #e7eefc;
}

.container {
    width: min(1100px,92%);
    margin: auto
}

header {
    background: #101826;
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.nav-links {
    display: flex;
    gap: 10px
}

a {
    color: #22d3ee;
    text-decoration: none
}

.btn {
    padding: 8px 14px;
    background: #4f8cff;
    border-radius: 8px;
    color: white
}

h2 {
    margin-top: 40px
}

/* Gallery Slider - Fixed */
.gallery-wrapper {
    position: relative;
    overflow: hidden;
    margin: 20px 0;
    border-radius: 10px;
}

.gallery {
    display: flex;
    transition: transform 0.3s ease;
    gap: 14px;
}

    .gallery img {
        height: 800px;
        width: 400px;
        border-radius: 10px;
        object-fit: cover;
        flex-shrink: 0;
    }

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    font-size: 24px;
    padding: 12px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .arrow:hover {
        background: rgba(0,0,0,0.9);
        transform: translateY(-50%) scale(1.1);
    }

    .arrow.left {
        left: 10px;
    }

    .arrow.right {
        right: 10px;
    }

    .arrow:disabled {
        opacity: 0.3;
        cursor: not-allowed;
        background: rgba(0,0,0,0.3);
    }

.team {
    display: grid;
    gap: 16px;
    margin-top: 20px
}

.member {
    display: flex;
    gap: 14px;
    align-items: center;
    background: rgba(255,255,255,.05);
    padding: 12px;
    border-radius: 10px
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #4f8cff;
}

    .avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

    .avatar:hover {
        transform: scale(1.05);
        border-color: #22d3ee;
    }

.avatar-upload-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-size: 12px;
    text-align: center;
    pointer-events: none;
}

.avatar:hover .avatar-upload-overlay {
    opacity: 1;
}

.avatar-upload-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    text-decoration: none;
}

    .social-icon:hover {
        transform: scale(1.1);
    }

.github-icon {
    background: #333;
    color: white;
}

.linkedin-icon {
    background: #0077b5;
    color: white;
}

.module {
    margin-bottom: 20px;
    background: rgba(255,255,255,.05);
    padding: 12px;
    border-radius: 10px
}

    .module h3 {
        margin: 0 0 6px
    }

    .module p {
        margin: 0;
        color: #a0aec0;
        font-size: 14px
    }

/* Gallery indicators */
.gallery-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .indicator.active {
        background: #22d3ee;
        transform: scale(1.2);
    }

@media (max-width: 768px) {
    .gallery img {
    	width: 400px;
    	height: 800px;
    	border-radius: 10px;
    	object-fit: cover;
    	flex-shrink: 0;
	}

    .arrow {
        padding: 8px;
        font-size: 18px;
        width: 40px;
        height: 40px;
    }
}
.logo {
    width: 80px;
    height: 80px;
}