:root {
    --primary: #00ffcc; /* Cyber Green */
    --bg-dark: #0a0b10;
    --card-bg: #161b22;
    --text: #e6edf3;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text);
    scroll-behavior: smooth;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 20px 10%;
    background: rgba(10, 11, 16, 0.95);
    position: fixed;
    width: 80%;
    z-index: 1000;
}

.logo { font-weight: bold; font-size: 1.5rem; letter-spacing: 2px; }
.logo span { color: var(--primary); }
.nav-links { list-style: none; display: flex; gap: 20px; }
.nav-links a { text-decoration: none; color: white; transition: 0.3s; }
.nav-links a:hover { color: var(--primary); }

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
}

.hero h1 { font-size: 3.5rem; margin-bottom: 10px; }

/* Cards */
.services { padding: 100px 10%; text-align: center; }
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    border-bottom: 3px solid transparent;
    transition: 0.3s;
}

.card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
}

/* Form */
/*.contact { padding: 100px 10%; background: #0d1117; text-align: center; }
form { max-width: 500px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
input, textarea {
    padding: 15px;
    background: #21262d;
    border: 1px solid #30363d;
    color: white;
    border-radius: 5px;
}*/

.btn {
    padding: 15px 30px;
    background: var(--primary);
    color: black;
    border: none;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
}

/* Contact Details Styling */
.contact { 
    padding: 100px 10%; 
    background: #0d1117; 
    text-align: center; 
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #30363d;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.contact-card h3 {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 1.4rem;
}

.contact-item {
    margin: 15px 0;
    font-size: 1.1rem;
    color: #c9d1d9;
}

.contact-item strong {
    color: var(--text);
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-item a {
    color: var(--primary);
    text-decoration: none;
    transition: 0.3s;
}

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

.secure-badge {
    margin-top: 30px;
    display: inline-block;
    padding: 8px 20px;
    border: 1px dashed var(--primary);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--primary);
    text-transform: uppercase;
}

/* Container to hold Text + Logo */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px; /* Space between text and logo */
}

.logo { 
    font-weight: bold; 
    font-size: 1.5rem; 
    letter-spacing: 2px; 
    white-space: nowrap;
}

/* Logo Image Styling */
.nav-logo {
    height: 35px; /* Adjust height to match your text size */
    width: auto;
    filter: drop-shadow(0 0 5px white); /* Gives the logo a slight cyber-glow */
}

/* Ensure the Navbar handles the new width */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Vertical centering */
    padding: 20px 10%;
    background: rgba(10, 11, 16, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    /* Stack the Navbar items vertically */
    .navbar {
        flex-direction: column;
        padding: 15px;
        width: 100%;
        left: 0;
    }

    .nav-links {
        margin-top: 15px;
        gap: 15px;
        font-size: 0.9rem;
    }

    /* Shrink the Hero text so it doesn't overflow */
    .hero h1 {
        font-size: 2.2rem;
        padding: 0 20px;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 20px;
    }

    /* Make the Service cards stack one on top of another */
    .service-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }

    /* Adjust the Contact card for small screens */
    .contact-card {
        padding: 20px;
        margin: 0 10px;
    }

    .logo {
        font-size: 1.2rem;
    }
}