:root {
    --bg-color: #05050A;
    --text-main: #F0F4F8;
    --text-muted: #8B95A5;
    --primary-accent: #00E5FF;
    --primary-accent-glow: rgba(0, 229, 255, 0.4);
    --secondary-accent: #B200FF;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Mesh Gradient */
.bg-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: 
        radial-gradient(circle at 15% 50%, rgba(0, 229, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(178, 0, 255, 0.08) 0%, transparent 50%);
    filter: blur(60px);
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 5%;
}

.glass-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 1rem 2rem;
    border-radius: 50px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px; /* Adjust this value if you want the logo larger/smaller */
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

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

.btn-sm {
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.btn-sm:hover {
    background: var(--primary-accent);
    color: #000 !important;
    box-shadow: 0 0 15px var(--primary-accent-glow);
}

/* Main Layout */
main {
    padding: 0 5%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 100px;
}

h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.text-glow {
    background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(0, 229, 255, 0.2);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--text-main);
    color: var(--bg-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-accent);
    box-shadow: 0 0 20px var(--primary-accent-glow);
    transform: translateY(-2px);
}

/* Glass Cards reused */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.15);
}

/* About Section */
.about {
    padding: 5rem 0;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-accent);
}

.about p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* Services */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 5rem 0 10rem 0;
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
}

/* Footer */
footer {
    text-align: center;
    padding: 4rem 5%;
    border-top: 1px solid var(--glass-border);
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.email-link {
    font-size: 1.5rem;
    color: var(--primary-accent);
    text-decoration: none;
    position: relative;
}

.email-link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-accent);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.email-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.copyright {
    margin-top: 4rem;
    color: rgba(255,255,255,0.3);
    font-size: 0.9rem;
}

/* Interactivity Classes (Intersection Observer) */
.hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .glass-nav {
        justify-content: center;
    }
    .glass-card {
        padding: 2rem;
    }
}
