body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #000;
    color: #fff;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

header {
    background: #000;
    color: #fff;
    padding: 20px 0;
}

header h1 {
    display: inline-block;
    font-size: 2.5em;
    letter-spacing: 2px;
}

nav ul {
    float: right;
}

nav ul li {
    display: inline;
    list-style: none;
    margin: 0 10px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
}

.hero-section {
    position: relative;
    text-align: center;
    padding: 20px 0;
    color: #fff;
}

.hero-section video {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    display: block;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.overlay-text h2 {
    font-size: 4em;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.8);
    -webkit-text-stroke: 2px #fff;
}

.hero-text {
    font-size: 1.5em;
    margin-top: 10px;
    max-width: 800px;
    margin: auto;
}

.services-section {
    text-align: center;
    padding: 50px 0;
}

.services-section h2 {
    margin-bottom: 20px;
    color: #fff;
    display: inline-block;
    padding: 0 20px;
    border-radius: 5px;
    font-size: 2.5em;
    letter-spacing: 1px;
}

.services-overview {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.service-overview {
    width: 18%;
    margin: 10px;
    padding: 20px;
    background: linear-gradient(to right, #ff9966, #ff5e62);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.service-overview h3 {
    font-size: 1.5em;
}

.service-details {
    margin: 50px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.service-content {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
}

.service-content.right-align video, .service-content.left-align video {
    width: 50%;
    height: auto;
    margin: 0;
    padding: 0;
}

.service-content.left-align .service-text, .service-content.right-align .service-text {
    width: 50%;
    font-size: 1.2em;
    padding: 20px;
    margin: 0;
}

.service-content.right-align video {
    order: 2;
}

.service-text h3 {
    margin-top: 0;
}

.showcase-section {
    text-align: center;
    padding: 50px 0;
}

.showcase-section h2 {
    margin-bottom: 20px;
    color: #fff;
    display: inline-block;
    padding: 0 20px;
    border-radius: 5px;
    font-size: 2.5em;
    letter-spacing: 1px;
}

.showcase-item {
    margin-bottom: 40px;
}

.showcase-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.showcase-img:hover {
    transform: scale(1.05);
}

.showcase-item p {
    color: #fff;
}

.partners-section {
    text-align: center;
}

.partners-section h2 {
    margin-bottom: 20px;
    color: #fff;
    padding: 0 20px;
    border-radius: 5px;
    font-size: 2.5em;
    letter-spacing: 1px;
}

.pricing-section {
    text-align: center;
    padding: 50px 0;
}

.pricing-section h2 {
    margin-bottom: 20px;
    color: #fff;
    display: inline-block;
    padding: 0 20px;
    border-radius: 5px;
    font-size: 2.5em;
    letter-spacing: 1px;
}

.pricing-plans {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.pricing-plan {
    width: 30%;
    margin: 20px;
    padding: 20px;
    background: linear-gradient(to right, #ff9966, #ff5e62);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.pricing-plan h3 {
    font-size: 2em;
    margin-bottom: 10px;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.pricing-toggle .switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.pricing-toggle .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pricing-toggle .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.pricing-toggle .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.pricing-toggle input:checked + .slider {
    background-color: #2196F3;
}

.pricing-toggle input:checked + .slider:before {
    transform: translateX(26px);
}

.pricing-toggle .toggle-label {
    margin: 0 10px;
    font-size: 1.2em;
}

.pricing-plan p.price {
    font-size: 1.5em;
    margin: 10px 0;
}

.pricing-plan ul {
    list-style: none;
    padding: 0;
}

.pricing-plan ul li {
    margin: 10px 0;
}

.contact-section {
    text-align: center;
    padding: 50px 0;
}

.contact-section h2 {
    margin-bottom: 20px;
    color: #fff;
    display: inline-block;
    padding: 0 20px;
    border-radius: 5px;
    font-size: 2.5em;
    letter-spacing: 1px;
}

.contact-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 60%;
    margin: auto;
    text-align: left;
}

form label {
    display: block;
    margin: 10px 0 5px;
    color: #fff;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

form button {
    padding: 10px 20px;
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 8px;
}

.cta-button {
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

.contact-sticky {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.social-sticky {
    position: fixed;
    left: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.social-sticky a {
    height: min-content;
    width: min-content;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    .pricing-plan {
        width: 100%;
        margin-bottom: 20px;
    }

    nav ul {
        text-align: center;
        float: none;
    }

    header h1 {
        font-size: 2em;
    }

    .hero-section h2 {
        font-size: 2.5em;
    }

    .partners-section img{
        height: 200px;
    }

    .services-section h2, .showcase-section h2, .pricing-section h2, .contact-section h2, .partners-section h2 {
        font-size: 2em;
    }

    .service-content {
        flex-direction: column;
    }

    .service-content.service-content.left-align video, .service-content.service-content.left-align .service-text {
        width: 100%;
    }
    .service-content.service-content.right-align video, .service-content.service-content.right-align .service-text {
        width: 100%;
    }

    .service-content.right-align video {
        order: 0;
    }

    .contact-container {
        width: 90%;
    }

    .pricing-toggle .toggle-label {
        margin: 0 5px;
    }
}
