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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f4f4f4;
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
    background-color: #fff;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    color: #000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Left and Right Sections */
.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* Logo Styling */
.logo-svg {
    height: 60px;
    width: auto;
    fill: #000;
    display: block;
}

/* Link Styling */
.nav-link {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.nav-link:hover {
    opacity: 0.8;
}

/* Contact Button Styling */
.contact-btn {
    background-color: #019100;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s ease, transform 0.1s ease;
}

.contact-btn:hover {
    background-color: #474a48;
    color: #a1c6ea;
}

.contact-btn:active {
    transform: scale(0.98);
}

/* Carousel Styles */
.carousel {
    position: relative;
    width: 100vw;
    height: auto;
    aspect-ratio: 15 / 5;
    overflow: hidden;
    background-color: #000;
}

.carousel-inner {
    width: 100%;
    height: 100%;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.carousel-item.active {
    opacity: 1;
    z-index: 2;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.carousel-control:hover {
    background: rgba(255, 255, 255, 0.4);
}

.carousel-control svg {
    width: 30px;
    height: 30px;
}

.prev { left: 20px; }
.next { right: 20px; }

/* Info Sections Styles */
.info-section {
    display: flex;
    align-items: center;
    padding: 40px;
    gap: 40px;
}

.info-section.section-dark {
    background-color: #474a48;
    color: #fff;
}

.info-section.section-green {
    background-color: #019100;
    color: #ffffff;
    flex-direction: row-reverse;
}

.text-content {
    flex: 6;
}

.text-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.image-content {
    flex: 4;
}

.image-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Footer Styles */
.footer {
    background-color: #019100;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    color: #fff;
}

/* Sitemap Styles */
.sitemap {
    background-color: #2c302e;
    padding: 30px 40px;
    border-top: 1px solid rgba(161, 198, 234, 0.1);
}

.sitemap-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.sitemap-social {
    display: flex;
    gap: 24px;
}

.sitemap-social a {
    color: #fff;
    transition: color 0.2s ease;
}

.sitemap-social a:hover {
    color: #019100;
}

.sitemap-social i {
    font-size: 24px;
}

.sitemap-apps {
    display: flex;
    gap: 16px;
}

.store-btn {
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    border: 1px solid #474a48;
    min-width: 160px;
    transition: background-color 0.2s ease;
}

.store-btn:hover { background-color: #1a1a1a; }

.store-icon {
    font-size: 24px;
    color: #fff;
}

.btn-content {
    display: flex;
    flex-direction: column;
}

.store-btn .btn-text { font-size: 10px; text-transform: uppercase; color: #a1c6ea; }
.store-btn .btn-title { font-size: 16px; font-weight: 600; margin-top: 2px; }


/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .navbar,
    .footer {
        padding: 0 15px;
    }
    .nav-link {
        font-size: 14px;
    }
    .nav-left, .nav-right {
        gap: 15px;
    }

    .info-section, 
    .info-section.section-green {
        flex-direction: column;
        padding: 40px 20px;
    }

    .text-content, .image-content {
        flex: 0 0 100%;
    }

    .sitemap-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .sitemap-apps {
        flex-direction: column;
        width: 100%;
    }

    .store-btn {
        align-items: center;
    }
}