/* General Styles */
body {
    margin: 0;
    font-family: 'Comfortaa', sans-serif;
    background-color: #121212;
    color: #ffffff;
}

.container {
    width: 80%;
    margin: auto;
}

/* Header */
header {
    background-color: #1f1f1f;
    padding: 24px 0 16px 0;
    border-bottom: 2px solid #444;
    position: sticky;
    top: 0;
    z-index: 1000; /* Keep the header on top of other content */
}

/* Navigation */
nav {
    position: relative;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-around;
}

nav ul li {
    position: relative;
    padding: 10px 15px;
    cursor: pointer;
}

nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
}

nav ul li a:hover,
nav ul li.active a {
    color: #03a9f4;
}



/* Hero Section */
.hero-section {
    background: linear-gradient(to right, #1e3c72, #2a5298);
    padding: 100px 0;
    text-align: center;
}

.hero-section h2 {
    font-size: 3em;
    margin-bottom: 10px;
}

.hero-section p {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.btn {
    padding: 10px 20px;
    background-color: #03a9f4;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.btn:hover {
    background-color: #0288d1;
}

/* Email Link */
a[href^="mailto:"] {
    color: #00adff; /* Set the email link color */
    text-decoration: none;
}

a[href^="mailto:"]:hover {
    text-decoration: underline;
}

/* Sections */
section {
    padding: 50px 0;
}

section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
}

/* Services */
.service-cards {
    display: flex;
    justify-content: space-between;
}

.card {
    background-color: #1f1f1f;
    padding: 20px;
    border-radius: 10px;
    width: 30%;
    text-align: center;
    transition: transform 0.3s;
}

.card:hover {
    transform: scale(1.05);
}

/* Our Projects Section */
#projects {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 50px 0;
    text-align: center;
}

#projects h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.project-cards {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.project-cards .card {
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    width: 30%;
    text-align: center;
    transition: transform 0.3s, background-color 0.3s;
}

.project-cards .card:hover {
    transform: scale(1.05);
    background-color: #444;
}

.project-cards .card h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.project-cards .card p {
    font-size: 1.2em;
}

/* Footer */
footer {
    background-color: #1f1f1f;
    padding: 20px 0;
    text-align: center;
    border-top: 2px solid #444;
}

footer p {
    margin: 0;
}

/* Logo in Header */
#logo {
    height: 1.2em; /* Scale the logo to match the text size */
    vertical-align: middle; /* Align the logo with the text */
    margin-right: 10px; /* Add some space between the logo and the text */
    position: relative;
    top: -6px; /* Move the logo up slightly more */
}
