
/* Base Styles */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --text: #f8fafc;
    --text-light: #94a3b8;
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --bg-light: #1e293b;
    --white: #ffffff;
    --radius: 8px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.25), 0 2px 4px -1px rgba(0, 0, 0, 0.15);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    min-height: 100vh;
    scroll-behavior: smooth;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        #020617 0%,
        #1e1b4b 15%,
        #312e81 30%,
        #0f172a 45%,
        #1e293b 60%,
        #4338ca 75%,
        #4f46e5 85%,
        #6366f1 100%
    );
    background-size: 400% 400%;
    animation: gradientMove 20s ease infinite;
z-index: -1;
}
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 50% 25%;
    }
    50% {
        background-position: 100% 50%;
        background-size: 500% 500%;
    }
    75% {
        background-position: 50% 75%;
    }
    100% {
        background-position: 0% 50%;
        background-size: 400% 400%;
    }
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.125rem;
}
section {
    padding: 5rem 0;
    margin-bottom: 2rem;
}
.bg-light {
    background-color: var(--bg-light);
}

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}
.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-outline {
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
background-color: var(--primary-dark);
    transform: translateY(-2px);
}
/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 100;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background-color 0.3s ease;
}

.header.scrolled {
    background-color: rgba(15, 23, 42, 0.9);
}
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: rotate(15deg);
}
.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}
.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-button span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text);
    margin: 5px 0;
    transition: all 0.3s ease;
}
/* Hero */
.hero {
    padding: 15rem 0 8rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    z-index: -1;
}
.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero .subhead {
    max-width: 700px;
    margin: 0 auto 1.5rem;
    font-size: 1.25rem;
    color: var(--white);
}
.hero-cta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 0.175rem;
}
.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-top: 5rem;
}

.stat {
    text-align: center;
}

.stat span {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    background: var(--bg-darker);
}
.service-card h3 {
    color: var(--white);
}

.services-grid h2 {
    color: var(--white);
}
.service-card p {
    color: var(--text-light);
}
/* About */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.about-text-white {
    color: var(--white);
    line-height: 1.6;
}
.about-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
}

.about-stats .stat {
    text-align: center;
}

.about-stats .stat span {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.about-stats .stat p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin: 3rem auto;
    padding: 1rem 0;
}
.team-member {
    text-align: center;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    background: var(--bg-darker);
}
.profile-image-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
}
.team-member img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #2563EB;
    margin: 0 auto 1rem;
    display: block;
}
.upload-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(37, 99, 235, 0.8);
    color: white;
    padding: 0.25rem;
    text-align: center;
    border-radius: 0 0 60px 60px;
    cursor: pointer;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    transition: all 0.2s ease;
}
.upload-btn:hover {
    background: var(--primary);
}

.upload-btn .material-symbols-outlined {
    font-size: 1rem;
}
.team-member h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.team-member .role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}
.team-member .bio {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
}
/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background-color: var(--white);
    color: #000;
    padding: 3rem 0;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}
.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #000;
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-links a:hover {
    color: var(--primary);
}
.footer-copyright {
    color: var(--bg-dark);
}
/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .hero {
        padding: 8rem 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    section {
        padding: 3rem 0;
    }
}