.menu-logo-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    background: linear-gradient(90deg, #00bcd4, #2196f3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
}

#copyright {
    margin: 2px;
    color: #ccc;
}

.logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.logo-text {
    display: inline-block;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.menu-toggle span {
    width: 28px;
    height: 4px;
    background: #00bcd4;
    margin: 4px 0;
    border-radius: 2px;
    display: block;
    transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 600px) {
    .menu-logo-wrap {
        width: 100%;
        justify-content: flex-start;
    }

    .logo-text {
        font-size: 2rem;
    }

    .logo-img {
        width: 28px;
        height: 28px;
    }
}

.fullscreen-hero {
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    min-width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(120deg, #00bcd4 0%, #2196f3 100%);
    color: #fff;
    position: relative;
    border-radius: 0;
    margin: 0;
    box-shadow: none;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    z-index: 2;
}

.fullscreen-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
    border-radius: 0;
}

.fullscreen-hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.fullscreen-hero p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.fullscreen-hero .cta-btn {
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    border-radius: 2.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #222;
}

header {
    background: #222;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1rem;
}


.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links li a:hover {
    color: #00bcd4;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 4px 0;
    border-radius: 2px;
}

main {
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero {
    text-align: center;
    padding: 4rem 1rem 2rem 1rem;
    background: linear-gradient(90deg, #00bcd4 0%, #2196f3 100%);
    color: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.cta-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: #fff;
    color: #2196f3;
    font-weight: bold;
    border-radius: 2rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: background 0.2s, color 0.2s;
}

.cta-btn:hover {
    background: #2196f3;
    color: #fff;
}

.features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.feature {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    flex: 1;
    text-align: center;
}

.feature h2 {
    color: #00bcd4;
    margin-bottom: 1rem;
}

.about,
.services,
.contact {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    margin-bottom: 2rem;
}

.about-details ul {
    padding-left: 1.2rem;
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.service {
    flex: 1 1 220px;
    background: #f5f7fa;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    margin-bottom: 1rem;
}

.service h2 {
    color: #2196f3;
    margin-bottom: 0.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 2rem auto 0 auto;
}

.contact-form input,
.contact-form textarea {
    padding: 0.8rem;
    border: 1px solid #c3cfe2;
    border-radius: 0.5rem;
    font-size: 1rem;
    resize: none;
}

.contact-form button {
    padding: 0.8rem;
    background: #00bcd4;
    color: #fff;
    border: none;
    border-radius: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

.contact-form button:hover {
    background: #2196f3;
}

footer {
    text-align: center;
    padding: 1rem 1rem 1rem 1rem;
    background: #222;
    color: #fff;

    margin-top: 2rem;
}

@media (max-width: 900px) {
    .features {
        flex-direction: column;
    }

    .service-list {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }
}