/* Basic Resets & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #0b1a2e; /* A dark, deep blue color */
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: #fff;
}

h1, h2 {
    font-weight: 700;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #007bff; /* A nice blue for buttons */
    color: #fff;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #0056b3;
}

/* Header & Navigation */
.header {
    background-color: #122c4f;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5em;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.nav a {
    margin-left: 20px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #007bff;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #122c4f, #0b1a2e);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 60px; /* Offset for fixed header */
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.8;
}

/* General Section Styling */
.section {
    padding: 80px 0;
}

.section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
}

/* Services Section */
.services-section {
    background-color: #0b1a2e;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.service-item {
    background-color: #122c4f;
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-item h3 {
    margin-bottom: 10px;
}

/* About Section */
.about-section {
    height: 100vh;
    background: linear-gradient(135deg, #122c4f, #0b1a2e);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 60px; /* Offset for fixed header */
}

/* Contact Section */
.contact-section {
    background-color: #0b1a2e;
    text-align: center;
}
.contact-section h2 {
    margin-bottom: 0px;
}

.contact-section p {
    margin-bottom: 30px;
    opacity: 0.8;
}

.contact-section form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-section input,
.contact-section textarea {
    padding: 15px;
    border: none;
    border-radius: 5px;
    background-color: #122c4f;
    color: #fff;
    font-family: inherit;
}

.contact-section input::placeholder,
.contact-section textarea::placeholder {
    color: #aaa;
}

/* Footer */
.footer {
    background-color: #122c4f;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #1a3a63;
}

.footer p {


    font-size: 0.9em;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
    }
    .nav {
        margin-top: 15px;
    }
    .nav a {
        margin: 0 10px;
    }
    .hero h1 {
        font-size: 2em;
    }
    .section {
        padding: 50px 0;
    }
}