* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2e4969;
}

header {
    background: linear-gradient(135deg, #2e4969 0%, #2e4969 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: center;
    }
}

.banner {
    margin-top: 2.3%;
    background-color: #1ce0dc;
    color: rgb(104, 48, 48);
    padding: 0.5%;
    text-align: center;
    width: 100%;
}

.banner a {
    color: #2e4969;
    text-decoration: none;
    font-size: 20px;
    font-weight: bolder;
}

.banner a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .banner {
        margin-top: 14%;
        padding: 0.5%;
    }
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logoimg {
    height: 50px;
    width: auto;
    margin: 0;
}

.logo {
    font-size: 180%;
    font-weight: normal;
    font-family: "Oxanium", sans-serif;
    color: #1ce0dc;
}

@media (max-width: 768px) {
    .logo {
        font-size: 100%;
        font-weight: normal;
        font-family: "Oxanium", sans-serif;
        color: #1ce0dc;
    }
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

nav a:hover {
    color: #00d4ff;
}

.hero {
    position: relative;
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    opacity: 0.5;
    color: white;
    padding: 150px 2rem 100px;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/pexels-brett-sayles-2881229.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    /* Adjust opacity (0.0 to 1.0) */
    z-index: -1;
    /* Puts it behind the text */
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1ce0dc;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1ce0dc;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: #1ce0dc;
    color: #1a1a2e;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

.report {
    background: white;
    text-align: left;
    padding: 80px 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.report h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.report h3 {
    text-align: left;
    font-size: 1.2rem;
}

.report img {
    max-width: 80%;
    height: auto;
    margin: auto;
    display: block;
    border-radius: 3%;
}

.services {
    background: white;
    text-align: center;
    padding: 80px 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-card h3 {
    color: #2e4969;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.different {
    background: white;
    text-align: center;
    padding: 80px 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.different h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

.different-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.different-card {
    background: #2e4969;
    color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.different-card h3 {
    color: #1ce0dc;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about {
    background: #f4f4f4;
    padding: 80px 2rem;
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about h2 {
    font-size: 250%;
    text-align: center;
    margin-bottom: 2rem;
    color: #1a1a2e;
}

.contact {
    padding: 80px 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact input,
.contact textarea {
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.contact input:focus,
.contact textarea:focus {
    outline: none;
    border-color: #00d4ff;
}

footer {
    background: #1a1a2e;
    color: white;
    text-align: center;
    padding: 2rem;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    nav ul {
        gap: 1rem;
    }
}