/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    line-height: 1.6;
    color: #fff;
    background-color: #121212;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #121212;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 50px;
    filter: invert(1);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    position: relative;
    transition: all 0.3s;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #00ffcc;
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Hero */
.hero {
    background-color: #121212;
    color: #fff;
    text-align: center;
    padding: 200px 0 100px;
    background: linear-gradient(135deg, #121212 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00ffcc, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeIn 1.5s;
}

.hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    color: #ccc;
    animation: fadeIn 2s;
}

/* About */
.about {
    padding: 100px 0;
    text-align: center;
    background-color: #1a1a2e;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #00ffcc;
}

.about p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 20px;
    color: #ccc;
}

/* Team */
.team {
    padding: 100px 0;
    text-align: center;
    background-color: #121212;
}

.team h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #9c27b0;
}

.team p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #ccc;
}

.team-members {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.member {
    background-color: #1a1a2e;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 300px;
    transition: all 0.4s;
    border: 2px solid #333;
    position: relative;
}

.member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(156, 39, 176, 0.3);
    border-color: #9c27b0;
}

.member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.4s;
}

.member:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.member h3 {
    margin: 20px 0 10px;
    font-size: 1.5rem;
    color: #00ffcc;
}

.member p {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #9c27b0;
}

/* Services */
.services {
    padding: 100px 0;
    text-align: center;
    background-color: #1a1a2e;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #00ffcc, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #ccc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service {
    background-color: #222;
    border-radius: 15px;
    padding: 40px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s;
    border: 2px solid #333;
    position: relative;
    overflow: hidden;
}

.service:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(156, 39, 176, 0.3);
    border-color: #00ffcc;
}

.service i {
    font-size: 3rem;
    color: #00ffcc;
    margin-bottom: 20px;
    transition: all 0.4s;
}

.service:hover i {
    color: #9c27b0;
    transform: scale(1.2);
}

.service h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.service p {
    font-size: 1rem;
    margin: 0;
    color: #ccc;
}

/* Contact */
.contact {
    padding: 100px 0;
    text-align: center;
    background-color: #121212;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #00ffcc, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact input,
.contact textarea {
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    background-color: #222;
    color: #fff;
    border: 2px solid #333;
    transition: all 0.3s;
}

.contact input:focus,
.contact textarea:focus {
    outline: none;
    border-color: #00ffcc;
    background-color: #1a1a2e;
}

.contact textarea {
    height: 150px;
    resize: vertical;
}

.contact button {
    background: linear-gradient(135deg, #00ffcc, #9c27b0);
    color: #121212;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact button:hover {
    background: linear-gradient(135deg, #9c27b0, #00ffcc);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.4);
}

/* Footer */
footer {
    background-color: #121212;
    color: #ccc;
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid #333;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social a {
    color: #ccc;
    margin-left: 15px;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.social a:hover {
    color: #00ffcc;
    transform: translateY(-5px);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        margin-top: 20px;
    }

    nav ul li {
        margin: 0 10px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .team-members {
        flex-direction: column;
        align-items: center;
    }

    .member {
        width: 100%;
        max-width: 300px;
    }
}