/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #0a0b10;
    scroll-behavior: smooth;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 2rem;
}

/* Navigation */
nav {
    background: rgba(10, 11, 16, 0.95);
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #1f2235;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo span {
    color: #00d4ff;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.9rem;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #00d4ff;
}

.btn-nav {
    background: #00d4ff;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    color: #0a0b10 !important;
    font-weight: 600;
}

/* Hero Section */
.hero {
    height: 100vh;
    /* This line links to your new image */
    background: url('images/homepage.jpg') no-repeat center center/cover; 
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* This adds a dark tint so your white text is easy to read over the image */
    background: rgba(10, 11, 16, 0.6); 
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2rem;
    color: #b0b3c1;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: #00d4ff;
    color: #0a0b10;
    padding: 0.8rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    margin-right: 1rem;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn-secondary {
    display: inline-block;
    border: 1px solid #00d4ff;
    color: #00d4ff;
    padding: 0.8rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-primary:hover { background: #0099cc; }
.btn-secondary:hover { background: #00d4ff; color: #0a0b10; }

/* Services */
.services {
    padding: 100px 0;
    background: #0f111a;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #161a27;
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #1f2235;
    transition: 0.3s;
}

.service-card:hover {
    border-color: #00d4ff;
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* About */
.about {
    padding: 100px 0;
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: auto;
}

.about h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }

/* Contact */
.contact {
    padding: 100px 0;
    background: #0f111a;
}

.contact-box {
    max-width: 600px;
    margin: auto;
    text-align: center;
}

.contact form {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
}

.contact input, .contact select, .contact textarea {
    padding: 1rem;
    margin-bottom: 1rem;
    background: #161a27;
    border: 1px solid #1f2235;
    color: #fff;
    border-radius: 4px;
}

.contact textarea { height: 150px; }

/* Footer */
footer {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid #1f2235;
    font-size: 0.8rem;
    color: #666;
}

/* Responsive */
@media(max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    nav ul { display: none; }
}
/* Logo Styling */
.logo-container {
    display: flex;
    align-items: center; /* Vertically centers logo with text */
    gap: 15px; /* Space between image and text */
}

.site-logo {
    height: 50px; /* Adjust this height to fit your nav bar */
    width: auto;
    display: block;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
}

.logo-text span {
    color: #00d4ff;
}

