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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(180deg, #1a1a1a 0%, #010101 100%);
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(135, 206, 235, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(135, 206, 235, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
    opacity: 0.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(45deg, #87CEEB, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #87CEEB;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #87CEEB, #ffffff);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, #87CEEB, #87CEEB);
    color: #010101;
    box-shadow: 0 4px 15px rgba(0, 127, 255);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 127, 255);
}

.btn-secondary {
    background: transparent;
    color: #87CEEB;
    border: 2px solid #87CEEB;
}

.btn-secondary:hover {
    background: #87CEEB;
    color: #010101;
    transform: translateY(-2px);
}

.btn-service {
    background: linear-gradient(45deg, #87CEEB, #87CEEB);
    color: #010101;
    width: 100%;
    margin-top: 20px;
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 127, 255);
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1a1a1a 0%, #010101 100%);
    z-index: -2;
}


.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #cccccc;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid #87CEEB;
    border-bottom: 2px solid #87CEEB;
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.team {
    padding: 100px 0;
    position: relative;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
.btn-primary {
    background: linear-gradient(45deg, #87CEEB, #54A0D6);
    color: #010101;
    box-shadow: 0 4px 15px rgba(135, 206, 235, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(135, 206, 235, 0.5);
}
    margin-top: 50px;
}

.team-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 127, 255);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
.btn-secondary {
    background: transparent;
    color: #87CEEB;
    border: 2px solid #87CEEB;
}
.btn-secondary:hover {
    background: #87CEEB;
    color: #010101;
    transform: translateY(-2px);
}
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
.btn-service {
    background: linear-gradient(45deg, #87CEEB, #54A0D6);
    color: #010101;
    width: 100%;
    margin-top: 20px;
}
.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(135, 206, 235, 0.4);
}
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 127, 255), transparent);
    transition: left 0.5s ease;
}

.team-card:hover::before {
    left: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: #87CEEB;
    box-shadow: 0 20px 40px rgba(0, 127, 255);
}

.team-avatar {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
}

.team-avatar .avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #87CEEB;
    transition: all 0.3s ease;
}

.team-avatar .avatar-img:hover {
    transform: scale(1.05);
    border-color: #ffffff;
}


.avatar-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #87CEEB, #87CEEB);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #010101;
    margin: 0 auto;
    position: relative;
    transition: all 0.3s ease;
}

.team-card:hover .avatar-placeholder {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 127, 255);
}

.online-status {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    background: #00ff00;
    border: 3px solid #010101;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.online-status.offline {
    background: #ff4444;
    animation: none;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.team-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #87CEEB;
    font-family: 'Orbitron', monospace;
}

.team-role {
    color: #cccccc;
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.team-description {
    color: #aaaaaa;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    min-height: 60px;
}

.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

.skill-tag {
    background: rgba(0, 127, 255);
    color: #87CEEB;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 127, 255);
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: rgba(0, 127, 255);
    transform: translateY(-2px);
}

.team-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.team-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(0, 127, 255);
    border: 1px solid rgba(0, 127, 255);
    border-radius: 50%;
    color: #87CEEB;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: #87CEEB;
    color: #010101;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 127, 255);
}

.about {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.3);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #cccccc;
}

.stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #87CEEB;
    margin-bottom: 10px;
}

.stat-item p {
    color: #cccccc;
    font-size: 1rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #87CEEB, #87CEEB);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #010101;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}


.footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 50px 0 20px;
    border-top: 1px solid rgba(0, 127, 255);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo h3 {
    color: #87CEEB;
    margin-bottom: 10px;
}

.footer-logo p {
    color: #cccccc;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #87CEEB;
}

.footer-social {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 127, 255);
    border: 1px solid rgba(0, 127, 255);
    border-radius: 50%;
    color: #87CEEB;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #87CEEB;
    color: #010101;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888888;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .stats {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .team-card {
        padding: 25px 20px;
    }
    
}
