/* styles.css */
:root {
    --primary: #0a192f; /* Deep Navy */
    --secondary: #64ffda; /* Electric Teal */
    --text-light: #ccd6f6;
    --text-dim: #8892b0;
    --white: #ffffff;
    --bg-light: #f4f7f6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-light);
    color: #333;
    line-height: 1.6;
}

/* Navigation */
header {
    background-color: var(--primary);
    padding: 1rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    color: var(--secondary);
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--secondary);
}

/* Hero Section */
.hero {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 6rem 5%;
    text-align: center;
    background-image: linear-gradient(rgba(10, 25, 47, 0.9), rgba(10, 25, 47, 0.9)); 
    /* You can add a background url here later */
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-dim);
    max-width: 700px;
    margin: 0 auto 2rem auto;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

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

/* Sections */
.section {
    padding: 4rem 5%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 3rem;
}

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border-top: 4px solid var(--secondary);
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

/* Footer */
footer {
    background-color: var(--primary);
    color: var(--text-dim);
    text-align: center;
    padding: 2rem;
    margin-top: auto;
}

/* Forms */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.btn-submit {
    background-color: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    width: 100%;
}

.btn-submit:hover {
    background-color: #172a45;
}

/* Update this section in styles.css */

.logo {
    display: flex;         /* Aligns image and text side-by-side */
    align-items: center;   /* Vertically centers them */
    gap: 12px;             /* Adds space between the icon and text */
    text-decoration: none;
}

/* This controls the logo image size */
.logo img {
    height: 40px;          /* Sets a fixed height so it fits in the header */
    width: auto;           /* Keeps the logo shape/aspect ratio correct */
}

/* This styles the text next to the logo */
.logo span {
    color: var(--secondary);
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
}