:root {
    --navy: #0a192f;
    --light-navy: #112240;
    --lightest-navy: #233554;
    --slate: #8892b0;
    --light-slate: #a8b2d1;
    --white: #e6f1ff;
    --green: #64ffda; /* The "Makai" Pop Color */
    --font-main: 'Inter', sans-serif;
}

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

body {
    background-color: var(--navy);
    color: var(--slate);
    font-family: var(--font-main);
    line-height: 1.6;
}

h1, h2, h3, h4 { color: var(--white); font-weight: 700; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }

/* Navbar */
.navbar {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
}
.logo { font-size: 1.5rem; font-weight: 700; color: var(--green); }
.dot { color: var(--white); }
.nav-links { list-style: none; display: flex; gap: 30px; }
.nav-links a:hover { color: var(--green); }
.btn-nav { border: 1px solid var(--green); padding: 8px 16px; border-radius: 4px; color: var(--green); }
.btn-nav:hover { background: rgba(100, 255, 218, 0.1); }

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
}
.intro-text { color: var(--green); font-weight: 400; margin-bottom: 20px; }
.hero h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 20px; }
.hero-sub { max-width: 500px; margin-bottom: 40px; font-size: 1.1rem; }
.btn-primary {
    background: transparent;
    border: 2px solid var(--green);
    color: var(--green);
    padding: 15px 30px;
    font-size: 1rem;
    border-radius: 4px;
    margin-right: 15px;
}
.btn-primary:hover { background: rgba(100, 255, 218, 0.1); }
.btn-secondary { color: var(--light-slate); border-bottom: 1px solid transparent; }
.btn-secondary:hover { color: var(--green); border-bottom: 1px solid var(--green); }

/* Sections */
.section { padding: 100px 0; }
.section-title { font-size: 2rem; margin-bottom: 40px; display: flex; align-items: center; }
.section-title::after {
    content: "";
    display: block;
    width: 200px;
    height: 1px;
    background: var(--lightest-navy);
    margin-left: 20px;
}

/* About Grid */
.tech-stack { margin-top: 20px; display: flex; gap: 20px; font-family: monospace; color: var(--green); }

/* Services Cards */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.card {
    background: var(--light-navy);
    padding: 30px;
    border-radius: 4px;
    transition: transform 0.3s ease;
}
.card:hover { transform: translateY(-5px); }
.card h3 { margin: 15px 0; }
.icon { font-size: 2rem; color: var(--green); }

/* Contact */
.center-text { text-align: center; }
.contact-section .section-title { justify-content: center; }
.contact-section .section-title::after { display: none; }
.social-links { margin-top: 30px; font-size: 1.5rem; display: flex; justify-content: center; gap: 20px; }
.social-links a:hover { color: var(--green); }

/* Footer */
footer { padding: 20px 0; text-align: center; font-size: 0.8rem; }

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .nav-links { display: none; } /* Simplified for mobile */
}

/* Logo Image Styling */
.nav-logo {
    height: 50px; /* Adjusts height to fit navbar */
    width: auto;  /* Keeps the aspect ratio perfect */
    display: block;
}

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

/* Update Navbar to handle the image better */
.navbar {
    height: 80px; /* Enforce a fixed height */
}