/* Import a clean, modern font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: radial-gradient(circle at 50% 20%, #0a2342 60%, #020810 100%);
    color: #e0f7fa;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 5vw;
    background: rgba(10, 35, 66, 0.95);
    box-shadow: 0 2px 12px #09f3 0.6;
}

.logo-title {
    display: flex;
    align-items: center;
}

.logo {
    height: 60px;
    margin-right: 16px;
    filter: drop-shadow(0 0 16px #11eeddcc);
    background: transparent;
    border-radius: 50%;
}

.site-title {
    font-size: 2.1rem;
    font-weight: bold;
    letter-spacing: 1px;
    color: #38e6ff;
    text-shadow: 0 0 14px #1e88e5bb;
}

nav a {
    color: #6fffe9;
    text-decoration: none;
    margin: 0 16px;
    font-weight: 500;
    transition: color 0.2s;
}
nav a:hover {
    color: #29ffb0;
}

.hero {
    text-align: center;
    padding: 90px 10vw 70px 10vw;
    background: radial-gradient(circle at 50% 20%, #0c3855 0%, #04101b 100%);
    box-shadow: 0 6px 64px #05fff755;
}

.hero h1 {
    font-size: 2.8rem;
    color: #4af5ff;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-shadow: 0 0 18px #25dbf9bb;
}
.hero p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    color: #b2f4fc;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.cta-btn {
    background: linear-gradient(90deg, #29ffb0 20%, #38e6ff 100%);
    color: #07212c;
    font-size: 1.15rem;
    font-weight: bold;
    padding: 14px 36px;
    border: none;
    border-radius: 30px;
    box-shadow: 0 0 24px #21e6bba8;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.cta-btn:hover {
    background: linear-gradient(90deg, #38e6ff 20%, #29ffb0 100%);
    color: #07212c;
}

section {
    padding: 64px 8vw 36px 8vw;
}

h2 {
    font-size: 2.2rem;
    color: #29ffb0;
    text-align: center;
    margin-bottom: 36px;
    text-shadow: 0 0 12px #2be8bdcc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-top: 24px;
}

.service-card {
    background: rgba(16, 40, 70, 0.92);
    border-radius: 16px;
    padding: 30px 20px 24px 20px;
    text-align: center;
    box-shadow: 0 0 24px #0cffe477;
    transition: transform 0.15s;
}
.service-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 4px 48px #00ffd944;
}
.service-card .icon {
    font-size: 2.4rem;
    display: block;
    margin-bottom: 10px;
    color: #38e6ff;
    filter: drop-shadow(0 0 6px #29ffb0cc);
}
.service-card h3 {
    color: #4af5ff;
    margin: 14px 0 8px 0;
    font-size: 1.2rem;
}
.service-card p {
    color: #b0fffa;
    font-size: 1rem;
}

#about {
    background: linear-gradient(135deg, #0a2342 60%, #0e374b 100%);
    border-radius: 16px;
    margin-top: 38px;
    text-align: center;
    box-shadow: 0 0 24px #21e6bba0;
}
#about p {
    color: #e0f7fa;
    font-size: 1.13rem;
    margin-top: 12px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

#contact form {
    display: flex;
    flex-direction: column;
    max-width: 420px;
    margin: 0 auto 20px auto;
    gap: 18px;
    background: rgba(11, 32, 50, 0.89);
    padding: 26px 28px 18px 28px;
    border-radius: 16px;
    box-shadow: 0 0 22px #1ef0bbaa;
}
#contact input, #contact textarea {
    padding: 10px 14px;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    background: #1b4357;
    color: #dafafd;
}
#contact textarea {
    min-height: 80px;
    resize: vertical;
}
#contact button {
    background: linear-gradient(90deg, #38e6ff 30%, #29ffb0 100%);
    color: #043748;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    padding: 12px 0;
    margin-top: 8px;
    cursor: pointer;
    box-shadow: 0 0 8px #38e6ffaa;
    transition: background 0.15s;
}
#contact button:hover {
    background: linear-gradient(90deg, #29ffb0 30%, #38e6ff 100%);
}

.contact-info {
    text-align: center;
    margin-top: 20px;
    color: #9aefff;
    font-size: 1.08rem;
}
.contact-info strong {
    color: #38e6ff;
}

footer {
    text-align: center;
    padding: 26px 0 16px 0;
    background: #021523e8;
    color: #72eaff;
    font-size: 1rem;
    margin-top: 38px;
}

@media (max-width: 800px) {
    header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .hero {
        padding: 60px 4vw 40px 4vw;
    }
    section {
        padding: 44px 4vw 22px 4vw;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .logo {
        height: 48px;
    }
    .site-title {
        font-size: 1.3rem;
    }
}
