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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1a3a 100%);
    color: #e0e0e0;
    line-height: 1.6;
}

/* Header & Navigation */
header {
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff, #7b2cbf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

nav a:hover {
    color: #00d4ff;
}

nav a.active {
    color: #00d4ff;
    border-bottom: 2px solid #00d4ff;
    padding-bottom: 5px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #00d4ff;
    margin: 5px 0;
    transition: 0.3s;
}

/* Footer */
footer {
    background: rgba(10, 14, 39, 0.95);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    padding: 40px;
    text-align: center;
    color: #888;
    margin-top: 60px;
}

footer a {
    color: #00d4ff;
    text-decoration: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

/* Headings */
h1 {
    font-size: 3rem;
    background: linear-gradient(135deg, #00d4ff, #7b2cbf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
}

h2 {
    color: #00d4ff;
    margin-top: 50px;
    margin-bottom: 20px;
    font-size: 2rem;
}

h3 {
    color: #00d4ff;
}

p {
    color: #b0b0b0;
    margin-bottom: 15px;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(123, 44, 191, 0.05));
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease-out;
}

.hero-content p {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 30px;
    max-width: 700px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, #00d4ff, #7b2cbf);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    font-size: 1rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

/* Feature Cards */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-card h3 {
    margin-bottom: 10px;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.project-card:hover {
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.project-preview {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(123, 44, 191, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.project-info p {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.project-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #00d4ff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.team-member {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    text-align: center;
}

.team-member .avatar {
    font-size: 3rem;
    margin-bottom: 15px;
}

.team-member h3 {
    margin-bottom: 5px;
}

.team-member p {
    font-size: 0.9rem;
    color: #888;
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 50px 0;
}

.stat {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
}

.stat .number {
    font-size: 2.5rem;
    color: #00d4ff;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Blog Posts */
.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blog-post {
    border-left: 3px solid #00d4ff;
    padding-left: 25px;
    transition: all 0.3s ease;
}

.blog-post:hover {
    border-left-color: #7b2cbf;
    transform: translateX(10px);
}

.post-date {
    color: #00d4ff;
    font-size: 0.9rem;
    font-weight: 600;
}

.blog-post h3 {
    font-size: 1.8rem;
    color: #e0e0e0;
    margin: 10px 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-post:hover h3 {
    color: #00d4ff;
}

.post-excerpt {
    color: #b0b0b0;
    margin: 15px 0;
    line-height: 1.7;
}

.read-more {
    display: inline-block;
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more:hover {
    transform: translateX(5px);
}

.post-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: #888;
    margin-top: 15px;
}

/* Intro Text */
.intro {
    color: #b0b0b0;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 700px;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-info {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    text-align: center;
}

.contact-info .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-info h3 {
    margin-bottom: 10px;
}

.contact-info p {
    color: #b0b0b0;
}

.contact-info a {
    color: #00d4ff;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Form */
.form-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    padding: 40px;
}

.form-container h2 {
    color: #00d4ff;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 25px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #e0e0e0;
    font-weight: 500;
}

input,
textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 5px;
    color: #e0e0e0;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: rgba(0, 212, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    background: linear-gradient(135deg, #00d4ff, #7b2cbf);
    color: white;
    padding: 14px 40px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    nav {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(10, 14, 39, 0.98);
        padding: 20px;
        gap: 15px;
        border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    }

    nav.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .container {
        padding: 40px 20px;
    }

    .hero {
        padding: 20px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .features {
        padding: 40px 20px;
        gap: 20px;
    }

    .feature-card {
        padding: 25px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-preview {
        height: 150px;
    }

    .blog-post h3 {
        font-size: 1.4rem;
    }

    .form-container {
        padding: 25px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}