/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #212121;
    background-color: #ECEFF1;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Top for Language Toggle */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 3;
    gap: 100px;
}

.lang-toggle {
    background: #FF8A65;
    color: #FFFFFF;
    border: none;
    padding: 10px 14px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.lang-toggle:hover,
.lang-toggle:focus {
    background: #2E7D32;
    transform: scale(1.05);
    outline: none;
}

/* Hero Section */
.hero {
    position: relative;
    color: #FFFFFF;
    text-align: center;
    padding: 0;
    overflow: hidden;
}

.hero-video-overlay {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 42, 68, 0.6);
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 2;
    padding: 20px;
}

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

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #FF8A65;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #2E7D32;
}

/* Section Styles */
.section {
    padding: 60px 20px;
    text-align: center;
    background-color: #ECEFF1;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1A2A44;
}

/* Swiper Carousel */
.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-slide img {
    width: 100%;
	height: 400;
    object-fit: cover;
    display: block;
}

.swiper-pagination {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.7);
    opacity: 1;
    transition: all 0.3s ease;
    border-radius: 50%;
    margin: 0 5px;
}

.swiper-pagination-bullet:hover {
    background-color: #2E7D32;
    transform: scale(1.2);
}

.swiper-pagination-bullet-active {
    background-color: #2E7D32;
    width: 16px;
    height: 16px;
}

/* Product Grid */
.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.product-card {
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 100%;
    max-width: 280px;
    text-align: left;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #2E7D32;
}

.product-card p {
    font-size: 1rem;
    color: #212121;
    margin-bottom: 15px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.product-features li {
    font-size: 0.95rem;
    color: #212121;
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.product-features li::before {
    content: '•';
    color: #2E7D32;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.databrief-link {
    display: inline-block;
    margin-top: 10px;
    color: #FF8A65;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.databrief-link:hover {
    color: #2E7D32;
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #B0BEC5;
    border-radius: 5px;
    font-size: 1rem;
    background-color: #FFFFFF;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    padding: 12px;
    background-color: #1A2A44;
    color: #FFFFFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #FF8A65;
}

.contact-info {
    margin-top: 20px;
    font-size: 1rem;
    color: #212121;
}

.contact-info a {
	color: #006600;
	text-decoration: none;
}

.contact-info a:hover {
	text-decoration: underline;
}

/* Footer */
.footer {
    background-color: #263238;
    color: #FFFFFF;
    padding: 20px;
    text-align: center;
}

.footer-links a {
    color: #FF8A65;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section h2 {
        font-size: 2rem;
    }

    .product-grid {
        flex-direction: column;
        align-items: center;
    }

    .product-card {
        max-width: 100%;
    }

    .hero-video-overlay {
        height: 70vh;
    }

    .header-top {
        flex-direction: column;
        gap: 15px;
    }

    .lang-toggle {
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    .swiper-slide img {
        height: 250px;
    }

    .swiper-pagination {
        bottom: 50px;
    }

    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }

    .swiper-pagination-bullet-active {
        width: 14px;
        height: 14px;
    }

    .product-features li {
        font-size: 0.9rem;
        padding-left: 15px;
    }

    .databrief-link {
        font-size: 0.9rem;
    }
}
