
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 1px solid #ddd;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: inherit;
}

.cta-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-buttons .get-started {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
}

.hero {
    text-align: center;
    padding: 60px 20px;
}

.hero h1 {
    font-size: 36px;
    margin: 0;
}

.hero p {
    margin: 20px 0;
}

.hero .buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero .buttons a {
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
}

.hero .buttons .demo {
    background-color: #007bff;
    color: white;
}

.hero .buttons .video {
    border: 1px solid #007bff;
    color: #007bff;
}

/* Language Switcher Styles */
.language-switcher {
    position: fixed;
    bottom: 20px;
    right: 20px; /* Moved to the right */
}

.language-switcher button {
    background: #f1f1f1;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
}

.language-switcher button:hover {
    background: #e7f0ff;
}

.Service-Description {
    flex: 1; /* Allow equal spacing for each div */
    text-align: center; /* Center-align content inside each div */
}

.Service-Container {
    display: flex; /* Use flexbox to align items in a row */
    gap: 20px; /* Add spacing between the divs */
    justify-content: center; /* Center the divs horizontally */
    padding: 20px; /* Add padding around the container */
}


.hero-section {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 2rem;
    background: linear-gradient(to right, #f8fdfc, #e7f5ff, #e9f0ff);
    border-radius: 12px;
}

.hero-content {
    max-width: 500px;
    margin-left: 5%;
}

.features {
    color: #4b5563;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.headline {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.subheadline {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.highlight {
    color: #38bdf8;
    font-weight: 600;
}

.note {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.btn-primary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #007bff;
    color: #fff;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
}

.btn-primary:hover {
    background: #0056b3;
}

.hero-video {
    position: absolute;
    right: 15%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-video h2 {
    font-size: 2rem;
    font-weight: 500;
    color: #111827;
}

.hero-video .highlight {
    color: #34d399;
}

.hero-video video {
    border-radius: 20px;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.06),
        0 12px 24px rgba(0, 0, 0, 0.04),
        0 6px 12px rgba(0, 0, 0, 0.03),
        0 2px 4px rgba(0, 0, 0, 0.02);
    border: none;
    background: #000;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Header responsive */
    header {
        flex-direction: column;
        padding: 1rem;
        text-align: center;
    }

    header img {
        margin-bottom: 1rem;
        margin-right: 0;
    }

    .cta-buttons {
        width: 100%;
        justify-content: center;
    }

    .get-started {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Hero section responsive */
    .hero-section {
        flex-direction: column;
        padding: 2rem 1rem;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        margin-left: 0;
        margin-bottom: 2rem;
    }

    .headline {
        font-size: 2rem;
        line-height: 1.2;
    }

    .subheadline {
        font-size: 1rem;
        line-height: 1.4;
    }

    .features {
        font-size: 0.8rem;
    }

    .btn-primary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        display: inline-block;
        width: auto;
    }

    /* Video section responsive */
    .hero-video {
        position: static;
        transform: none;
        right: auto;
        top: auto;
        width: 100%;
        max-width: 100%;
    }

    .hero-video video {
        width: 100%;
        max-width: 100%;
        height: auto;
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .hero-section {
        padding: 1.5rem 0.75rem;
    }

    .headline {
        font-size: 1.75rem;
    }

    .subheadline {
        font-size: 0.95rem;
    }

    .features {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .btn-primary {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .hero-video video {
        border-radius: 12px;
    }
}
