:root {
    --primary-color: #4361ee;
    --secondary-color: #3f37c9;
    --accent-color: #4cc9f0;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --success-color: #4bb543;
    --warning-color: #f0ad4e;
    --danger-color: #d9534f;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #ffffff;
    overflow-x: hidden;
}
a {
    text-decoration: none;
    color: inherit;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: relative;
}
.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    z-index: 1001;
}
.logo span {
    color: var(--accent-color);
}
.logo-image {
    height: 40px; /* Adjust as needed */
    width: auto;
}
.nav-links {
    display: flex;
    list-style: none;
    transition: all 0.3s ease;
}
.nav-links li {
    margin-left: 30px;
}
.nav-links a {
    font-weight: 500;
    transition: color 0.3s;
}
.nav-links a:hover {
    color: var(--primary-color);
}
.language-switcher {
    margin-left: 30px;
    position: relative;
}
.language-switcher select {
    padding: 5px 10px;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    background-color: white;
    font-family: inherit;
    cursor: pointer;
}
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--dark-color);
    z-index: 1001;
}
/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    text-align: center;
}
.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-color);
}
.hero p {
    font-size: 20px;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto 40px;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s;
}
.btn-primary {
    background-color: var(--primary-color);
    color: white;
}
.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.2);
}
.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}
.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.2);
}
.hero-slider {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    height: 450px;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}
.slide.active {
    opacity: 1;
}
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}
.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}
.slider-dot.active {
    background-color: white;
}
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
    z-index: 10;
}
.slider-nav:hover {
    background-color: rgba(0, 0, 0, 0.6);
}
.slider-nav.prev {
    left: 15px;
}
.slider-nav.next {
    right: 15px;
}
/* About Section */
.about {
    padding: 100px 0;
    background-color: white;
}
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-color);
}
.about-content p {
    font-size: 18px;
    color: var(--gray-color);
    line-height: 1.8;
}
/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--light-color);
}
.section-title {
    text-align: center;
    margin-bottom: 60px;
}
.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}
.section-title p {
    font-size: 18px;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.feature-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.feature-icon {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}
.feature-card p {
    color: var(--gray-color);
}
/* Video Demo Section */
.video-demo {
    padding: 100px 0;
    background-color: white;
}
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    margin: 0 auto;
    max-width: 100%; /* Changed from 800px to 100% */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
/* Pricing Section */
.pricing {
    padding: 100px 0;
    background-color: var(--light-color);
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.pricing-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.pricing-card.popular {
    border: 2px solid var(--primary-color);
    position: relative;
}
.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
}
.pricing-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}
.price {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--gray-color);
}
.pricing-features {
    list-style: none;
    margin: 30px 0;
}
.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
}
.pricing-features li:last-child {
    border-bottom: none;
}
.pricing-btn {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    font-weight: 500;
}
/* Clients Section */
.clients {
    padding: 80px 0;
    background-color: white;
}
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    align-items: center;
    margin-top: 50px;
}
.client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}
.client-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}
.client-logo img {
    max-width: 100%;
    max-height: 120px;
    height: auto;
}
/* Testimonials */
.testimonials {
    padding: 100px 0;
    background-color: var(--light-color);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.testimonial-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--dark-color);
}
.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}
/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: white;
}
.contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: var(--dark-color);
}
.contact-item i {
    font-size: 24px;
    color: var(--primary-color);
}
/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 30px 0;
    text-align: center;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.social-links {
    display: flex;
    list-style: none;
}
.social-links li {
    margin-left: 15px;
}
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s;
}
.social-links a:hover {
    background-color: var(--primary-color);
}
/* Responsive */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    .nav-links.active {
        left: 0;
    }
    .nav-links li {
        margin: 15px 0;
    }
    .language-switcher {
        margin: 15px 0;
    }
    .menu-toggle {
        display: block;
    }
    .hero h1 {
        font-size: 36px;
    }
    .hero p {
        font-size: 18px;
    }
    .hero-slider {
        height: 350px;
    }
    .client-logo img {
        max-height: 40px;
    }
}
@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn {
        width: 100%;
        max-width: 250px;
        margin-bottom: 15px;
    }
    .footer-content {
        flex-direction: column;
    }
    .social-links {
        margin-top: 20px;
    }
    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 30px;
    }
    .hero-slider {
        height: 300px;
    }
    .about-content h2 {
        font-size: 28px;
    }
    .about-content p {
        font-size: 16px;
    }
}
@media (max-width: 576px) {
    .hero {
        padding: 120px 0 60px;
    }
    .section-title h2 {
        font-size: 28px;
    }
    .price {
        font-size: 36px;
    }
    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 20px;
    }
    .hero-slider {
        height: 250px;
    }
    .slider-nav {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    .contact-info {
        flex-direction: column;
        gap: 15px;
    }
}