/* Reset and Basic Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #0a192f; /* Dark Blue */
    color: #e0e0e0; /* Light Gray */
    line-height: 1.6;
}

a {
    color: #64ffda; /* Cyan - Accent Color */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffffff; /* White on hover */
}

.button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #64ffda; /* Cyan */
    color: #0a192f; /* Dark Blue */
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none; /* Remove default button border */
    cursor: pointer; /* Show pointer cursor on hover */
}

.button:hover {
    background-color: #49c6b7; /* Slightly darker cyan */
    transform: translateY(-3px); /* Subtle lift effect */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Add a shadow on hover */
}


/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: rgba(10, 25, 47, 0.8); /* Slightly translucent */
    backdrop-filter: blur(10px); /* Blur effect (works in modern browsers) */
    position: sticky;
    top: 0;
    z-index: 100; /* Ensure header stays on top */
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

nav ul li a:hover {
    background-color: #64ffda;
    color: #0a192f;
}


/* Hero Section */
#hero {
    background-image: linear-gradient(rgba(10, 25, 47, 0.8), rgba(10, 25, 47, 0.9)), url('path/to/your/hero-image.jpg'); /* Add a background image if desired */
    background-size: cover;
    background-position: center;
    height: 80vh; /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 40px;

}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #e0e0e0;
}

/* About Section */
#about {
    padding: 80px 40px;
    text-align: center;
}

#about h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #fff;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Services Section */
#services {
    padding: 80px 40px;
    background-color: #112240; /* Slightly darker shade */
    text-align: center;
}

#services h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service {
    background-color: rgba(255, 255, 255, 0.1); /* Translucent card */
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left; /* Align text to the left within the service card */

}

.service:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #64ffda;
}

.service h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

/* Contact Section */
#contact {
    padding: 80px 40px;
    text-align: center;
}

#contact h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #fff;
}

#contact p {
  margin-bottom: 15px;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 40px;
    background-color: #07101f; /* Even darker for footer */
    color: #bbb; /* Lighter gray for footer text */
    font-size: 0.9rem;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 20px;
    }

    nav ul {
        margin-top: 20px;
        justify-content: center; /* Center the navigation links */
    }
    nav ul li {
        margin-left: 15px; /* Reduce margin on smaller screens */
        margin-right: 15px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr; /* Stack services on smaller screens */
    }
}