/* General Styles */
@import url('https://fonts.googleapis.com/css2?family=Playwrite+IT+Moderna:wght@100..400&display=swap');

*{
        font-family:  "Playwrite IT Moderna", serif;
}
body {

    margin: 0;
    padding: 0;
    background-color: black;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: #a4ffeb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #fff;
}

/* Welcome Overlay */
.welcome-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeOut 2s forwards 3s;
}

.welcome-text {
    font-size: 3em;
    color: #a4ffeb;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* Header and Navigation */
header {
    background-color: transparent;
    padding: 20px 0;
    position: relative;
    z-index: 100;
}

nav.neon-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 20px;
}

nav.neon-nav .logo a {
    font-size: 1.5em;
    font-weight: bold;
    color: #a4ffeb;
}

nav.neon-nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
}

nav.neon-nav ul li a {
    color: #a4ffeb;
    text-decoration: none;
    font-size: 1.1em;
    padding: 8px 15px;
    border: 1px solid #a4ffeb;
    border-radius: 5px;
    transition: all 0.3s ease;
}

nav.neon-nav ul li a:hover {
    color: #121212;
    background-color: #a4ffeb;
}

/* Hero Section */
.hero {
    background-color: black;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #a4ffeb;
}

.hero p {
    font-size: 1.2em;
    color: #ddd;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #a4ffeb;
    color: #121212;
    text-decoration: none;
    font-size: 1.1em;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #fff;
    color: #121212;
}

/* Features Section */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 40px 20px;
    gap: 30px;
    background-color: black;
}

.feature-card {
    background-color: #2c2c2c;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    width: 300px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card img {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
    filter: invert(77%) sepia(72%) saturate(334%) hue-rotate(124deg) brightness(103%) contrast(98%);
}

.feature-card h3 {
    color: #a4ffeb;
    margin-bottom: 10px;
}

.feature-card p {
    color: #ddd;
}

/* Footer Styles */
footer.neon-footer {
    background-color: black;
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid #a4ffeb;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-content p {
    color: #a4ffeb;
}

.social-links a {
    display: inline-block;
    margin: 0 10px;
    color: #a4ffeb;
    font-size: 1.2em;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: #fff;
    transform: translateY(-3px);
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    nav.neon-nav {
        flex-direction: column;
        align-items: center;
    }

    nav.neon-nav ul {
        margin-top: 10px;
        flex-direction: column;
        align-items: center;
    }

    nav.neon-nav ul li {
        margin: 5px 0;
    }

    .hero {
        padding: 80px 20px;
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .features {
        padding: 30px 10px;
    }

    .feature-card {
        width: 100%;
        max-width: 400px;
    }

    .footer-content {
        flex-direction: column;
        gap: 15px;
    }
}
/* General Styles (Keep these from the previous example) */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: black;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: #a4ffeb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #fff;
}

/* Header and Navigation (Keep these from the previous example) */
header {
    background-color: transparent;
    padding: 20px 0;
    position: relative;
    z-index: 100;
}

nav.neon-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 20px;
}

nav.neon-nav .logo a {
    font-size: 1.5em;
    font-weight: bold;
    color: #a4ffeb;
}

nav.neon-nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
}

nav.neon-nav ul li a {
    color: #a4ffeb;
    text-decoration: none;
    font-size: 1.1em;
    padding: 8px 15px;
    border: 1px solid #a4ffeb;
    border-radius: 5px;
    transition: all 0.3s ease;
}

nav.neon-nav ul li a:hover {
    color: #121212;
    background-color: #a4ffeb;
}

/* About Section */
.about {
    padding: 80px 20px;
    background: linear-gradient(to right, #1e1e1e, #121212);
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about h2 {
    font-size: 3em;
    margin-bottom: 30px;
    color: #a4ffeb;
}

.about p {
    font-size: 1.2em;
    color: #ddd;
    margin-bottom: 20px;
}

.team-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.team-list li {
    background-color: #2c2c2c;
    border-radius: 10px;
    padding: 15px 20px;
    text-align: left;
    width: 250px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, 0.3s ease;
}

.team-list li:hover {
    transform: translateY(-5px);
}

.team-list li i {
    color: #a4ffeb;
    font-size: 1.5em;
}

.team-list li span {
    color: #ddd;
    font-size: 1.1em;
}

/* Footer Styles (Keep these from the previous example) */
footer.neon-footer {
    background-color: black;
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid #a4ffeb;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-content p {
    color: #a4ffeb;
}

.social-links a {
    display: inline-block;
    margin: 0 10px;
    color: #a4ffeb;
    font-size: 1.2em;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: #fff;
    transform: translateY(-3px);
}

/* Media Queries for Responsiveness (Keep these from the previous example) */
@media (max-width: 768px) {
    nav.neon-nav {
        flex-direction: column;
        align-items: center;
    }

    nav.neon-nav ul {
        margin-top: 10px;
        flex-direction: column;
        align-items: center;
    }

    nav.neon-nav ul li {
        margin: 5px 0;
    }

    .about {
        padding: 60px 20px;
    }

    .about h2 {
        font-size: 2.5em;
    }

    .team-list {
        flex-direction: column;
        align-items: center;
    }

    .team-list li {
        width: 100%;
        max-width: 400px;
    }

    .footer-content {
        flex-direction: column;
        gap: 15px;
    }
}
/* General Styles (Keep these from the previous examples) */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: black;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: #a4ffeb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #fff;
}

/* Header and Navigation (Keep these from the previous examples) */
header {
    background-color: transparent;
    padding: 20px 0;
    position: relative;
    z-index: 100;
}

nav.neon-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 20px;
}

nav.neon-nav .logo a {
    font-size: 1.5em;
    font-weight: bold;
    color: #a4ffeb;
}

nav.neon-nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
}

nav.neon-nav ul li a {
    color: #a4ffeb;
    text-decoration: none;
    font-size: 1.1em;
    padding: 8px 15px;
    border: 1px solid #a4ffeb;
    border-radius: 5px;
    transition: all 0.3s ease;
}

nav.neon-nav ul li a:hover {
    color: #121212;
    background-color: #a4ffeb;
}

/* Services Section */
.services {
    padding: 80px 20px;
    background: linear-gradient(to right, #1e1e1e, #121212);
    text-align: center;
}

.services-content {
    max-width: 1000px;
    margin: 0 auto;
}

.services h2 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #a4ffeb;
}

.services-description {
    font-size: 1.2em;
    color: #ddd;
    margin-bottom: 40px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
}

.service-box {
    background-color: #2c2c2c;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
    transform: translateY(-5px);
}

.service-box a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #a4ffeb;
    text-decoration: none;
    font-size: 1.3em;
    margin-bottom: 15px;
}

.service-box a:hover {
    color: #fff;
}

.service-box i {
    font-size: 1.5em;
    color: #a4ffeb;
}

.service-box p {
    color: #ddd;
    font-size: 1.1em;
}

/* Footer Styles (Keep these from the previous examples) */
footer.neon-footer {
    background-color: black;
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid #a4ffeb;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-content p {
    color: #a4ffeb;
}

.social-links a {
    display: inline-block;
    margin: 0 10px;
    color: #a4ffeb;
    font-size: 1.2em;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: #fff;
    transform: translateY(-3px);
}

/* Media Queries for Responsiveness (Keep these from the previous examples) */
@media (max-width: 768px) {
    nav.neon-nav {
        flex-direction: column;
        align-items: center;
    }

    nav.neon-nav ul {
        margin-top: 10px;
        flex-direction: column;
        align-items: center;
    }

    nav.neon-nav ul li {
        margin: 5px 0;
    }

    .services {
        padding: 60px 20px;
    }

    .services h2 {
        font-size: 2.5em;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 15px;
    }
}