﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Helvetica, sans-serif;
    color: #111;
    background-color: #fff;
    overflow-x: hidden;
}
p {
    line-height: 1.4;
}

/* NAVBAR */
.navbar {
    background: #fff;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 100;
}
.container.nav-content img {
    max-width: 150px;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.nav-links ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    color: #000;
    font-weight: 600;
    transition: color 0.3s;
}

    .nav-links a:hover {
        color: #4f4f89;
    }

.hamburger {
    display: none;
    background: none;
    border: none;
}
button#hamburger img {
    width: 20px;
}

/* HERO */
.hero {
    color: #fff;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    background-image: url('img/bg-hero.png');
}
.hero-text p {
    font-family: Helvetica, sans-serif;
    color: #D9D9D9;
    font-weight: bold;
    padding-bottom: 5px;
}
.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.hero-text {
    flex: 1;
    min-width: 280px;
}

    .hero-text h1 {
        font-family: "Helvetica", "Arial", sans-serif;
        font-size: 2rem;
        margin-bottom: 20px;
        line-height: 1.3;
        width: 500px;
    }

.features {
    list-style: none;
    margin-bottom: 30px;
}
ul.features img {
    width: 30px;
}

    .features li {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 8px;
    }

.buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 35px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

    .btn.primary {
        background: #C9EEFF;
        color: #000000;
        font-size: 14px;
        text-align: center;
    }

        .btn.primary:hover {
            background: #b1d3e2;
        }

    .btn.secondary {
        background: #272525;
        color: #fff;
        font-size: 14px;
        border: 1px solid #C0C0C0;
        text-align: center;
    }

        .btn.secondary:hover {
            background: #222;
        }

.hero-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
}

/* DISCOVERIES */
.discoveries {
    text-align: center;
    padding: 30px 0;
}
section.discoveries h2 {
    padding-top: 5%;
}
    .discoveries h2 {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
.discoveries-text p {
    padding-top: 10px;
}
.discoveries-content {
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    padding: 40px 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}

.discoveries-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    gap: 0;
}
.discoveries-img {
    flex: 1;
    display: flex;
    justify-content: center;
}
.discoveries-img img {
    border-radius: 10px;
    width: 100%;
    max-width: 200px;
}

.discoveries-text {
    color: #fff;
    max-width: 500px;
    text-align: left;
}


/* TESTIMONIALS */
.testimonials {
    text-align: center;
    padding: 80px 0;
    background-color: #fff;
    position: relative;
}

    .testimonials h2 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .testimonials .subtitle {
        color: #555;
        margin-bottom: 40px;
    }

.carousel {
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    gap: 20px;
}

.testimonial-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 30px 20px;
    flex: 0 0 calc(33.333% - 20px);
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

    .testimonial-card p {
        font-style: italic;
        margin-bottom: 20px;
    }

    .testimonial-card img {
        border-radius: 50%;
        margin-bottom: 10px;
        width:60px;
    }

    .testimonial-card h4 {
        margin-bottom: 5px;
        font-weight: 600;
    }

.arrow {
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    transition: opacity 0.3s;
}

    .arrow img {
        width: 40px;
        height: 40px;
        opacity: 0.7;
        transition: opacity 0.2s;
    }

    .arrow:hover img {
        opacity: 1;
    }

    .arrow.left {
        left: -10px;
    }

    .arrow.right {
        right: -10px;
    }

section.features-details {
    text-align: center;
    padding: 80px 0;
}

    section.features-details img {
        width: 100%;
        max-width: 1200px;
        border-radius: 12px;
        display: block;
        margin: 0 auto;
        height: auto;
    }
    section.features-details h2 {
        font-size: 2rem;
        margin-bottom: 0px;
    }

section.discoveries.history {
    background-image: url(img/earth.png);
    background-size: cover;
}
    section.discoveries.history h2 {
        color: #fff;
        font-size: 38px;
        padding-top: 10%;
    }


/* Latest News */
.latest-news {
    padding: 80px 0;
    background: #fff;
}

    .latest-news h2 {
        text-align: center;
        margin-bottom: 50px;
        font-size: 2rem;
    }

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.news-card {
    background: #000;
    color: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

    .news-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

.news-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-category {
    background: #fff;
    color: #000;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 10px;
    width: 65px;
}

.news-date {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.news-content p {
    flex: 1;
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.read-more {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}
section.support-faq-section h2 {
    margin-top: 0px;
}
a.link-txt {
    color: #fff;
}

/* Newsletter Section */
.newsletter-section {
    background: url('img/nsl.png') no-repeat center center/cover;
    position: relative;
    padding: 100px 0;
}

.newsletter-overlay {
    padding: 60px 20px;
    border-radius: 12px;
    text-align: left;
}

.newsletter-section h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 20px;
}

.newsletter-section p {
    color: #ddd;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: left;
}

    .newsletter-form input[type="email"] {
        padding: 12px 15px;
        border-radius: 6px;
        border: none;
        min-width: 250px;
    }

    .newsletter-form button {
        padding: 12px 20px;
        border-radius: 6px;
        border: none;
        cursor: pointer;
    }
.container.newsletter-content p {
    width: 60%;
}
p.smaller {
    font-size: 12px;
    padding-top: 10px;
}
    p.smaller a {
        color: #fff;
    }


/* Two-column info section */
.info-section {
    background: url('img/earth.png') no-repeat center center/cover;
    padding: 100px 0;
    color: #fff;
}

.info-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.info-text {
    flex: 1;
    min-width: 300px;
}

    .info-text h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .info-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 20px;
        color: #e0e0e0;
    }

    .info-text .btn {
        display: inline-block;
        padding: 12px 24px;
        border-radius: 6px;
        background-color: #fff;
        color: #000;
        font-weight: 600;
        text-decoration: none;
        transition: background 0.3s;
    }



.info-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

    .info-image img {
        max-width: 100%;
        border-radius: 12px;
    }


a.btn.primary {
    background: #c9eeff;
    color: #000;
    font-size: 14px;
    text-align: center;
}
a.btn.secondary {
    background: #272525;
    color: #fff;
    font-size: 14px;
    border: 1px solid #C0C0C0;
    text-align: center;
}

/* Footer styles */
.site-footer {
    background: #fff;
    padding: 60px 20px 20px;
    color: #000;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid #000;
}
section.discoveries h2 {
    padding-bottom: 20px;
}
/* Set column widths manually */
.footer-content {
    display: grid;
    grid-template-columns: 45% 25% 25%;
    gap: 40px;
    margin-bottom: 40px;
    align-items: flex-start;
}

/* Column 1 (logo + newsletter) */
.footer-col.footer-newsletter {
    max-width: 1000px;
}

.footer-logo {
    width: 140px;
    margin-bottom: 15px;
}

.footer-newsletter p {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

    .footer-form input[type="email"] {
        flex: 1;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

    .footer-form button {
        background-color: #bce3ff;
        border: none;
        padding: 10px 20px;
        font-weight: 600;
        cursor: pointer;
        border-radius: 4px;
        transition: background 0.3s;
    }

        .footer-form button:hover {
            background-color: #a7d6f7;
        }

.footer-privacy {
    font-size: 0.75rem;
    color: #555;
}

    .footer-privacy a {
        color: #000;
        text-decoration: underline;
    }

.footer-links h4 {
    margin-bottom: 15px;
    font-size: 1rem;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #000;
    text-decoration: none;
    font-size: 0.95rem;
}

    .footer-links a:hover {
        text-decoration: underline;
    }


.footer-socials h4 {
    margin-bottom: 15px;
    font-size: 1rem;
    font-weight: 600;
}

.footer-socials ul {
    list-style: none;
    padding: 0;
}

.footer-socials li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.footer-socials img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.footer-socials a {
    color: #000;
    text-decoration: none;
}

    .footer-socials a:hover {
        text-decoration: underline;
    }


.footer-line {
    border: none;
    border-top: 1px solid #ccc;
    margin-bottom: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 15px;
}

    .footer-bottom-links a {
        color: #000;
        text-decoration: none;
    }

        .footer-bottom-links a:hover {
            text-decoration: underline;
        }

p.footer-privacy {
    font-size: 12px;
    line-height: 1.7;
}

section {
    padding: 60px 20px;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.hero-gallery {
    background: url('img/earth.png') center/cover no-repeat;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 60vh;
}

    .hero-gallery h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .hero-gallery p {
        font-size: 1.2rem;
        max-width: 600px;
    }

.gallery-section h2 {
    width: 100%;
    font-size: 2rem;
    margin-bottom: 1em;
}

.gallery-two-column {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.gallery-col {
    flex: 1 1 500px;
}

.gallery-bg-section {
    background: url('img/2.png') center/cover no-repeat;
    color: white;
}

    .gallery-bg-section .gallery-container {
        background-color: rgba(0, 0, 0, 0.6);
        border-radius: 16px;
        padding: 40px;
    }
.gallery-col h3 {
    font-size: 26px;
    padding-bottom: 10px;
}




section {
    padding: 60px 20px;
}

.support-container {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-support {
    background: url(img/earth.png) center / cover no-repeat;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 60vh;
}

    .hero-support h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .hero-support p {
        font-size: 1.2rem;
        max-width: 600px;
    }

.support-section h2 {
    font-size: 2rem;
    margin-top: 1.5em;
    padding-bottom:5px;
}


.support-section h3 {
    margin-top: 1.5em;
    margin-bottom: 0.8em;
}

.support-table-wrapper {
    overflow-x: auto;
    margin-top: 1em;
}

.support-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

    .support-table th,
    .support-table td {
        border: 1px solid #ccc;
        padding: 12px 16px;
        text-align: left;
    }

    .support-table th {
        background-color: #f5f5f5;
        font-weight: bold;
    }

    .support-table tr:nth-child(even) {
        background-color: #fafafa;
    }

.support-faq-section {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-color: #000;
    color: #fff;
    padding: 80px 0;
    margin-top:50px;
}
    .support-faq-section .support-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

.support-faq {
    margin-top: 2em;
}

.support-faq-item {
    background-color: #333;
    border-radius: 8px;
    margin-bottom: 1em;
    overflow: hidden;
}

.support-faq-question {
    background: none;
    color: #fff;
    width: 100%;
    text-align: left;
    padding: 16px 20px;
    font-size: 1.1rem;
    border: none;
    outline: none;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease;
}

    .support-faq-question::after {
        content: '+';
        position: absolute;
        right: 20px;
        font-size: 1.5rem;
        transition: transform 0.3s;
    }

    .support-faq-question.active::after {
        transform: rotate(45deg);
    }

    .support-faq-question:hover {
        background-color: #444;
    }

.support-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background-color: #222;
    padding: 0 20px;
}

    .support-faq-answer p {
        padding: 15px 0;
        margin: 0;
        color: #ddd;
    }



.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-about {
    background: url('img/earth.png') center/cover no-repeat;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 60vh;
}

    .hero-about h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .hero-about p {
        font-size: 1.2rem;
        max-width: 600px;
    }

.about-two-column {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.about-col {
    flex: 1 1 400px;
    text-align: center;
}

    .about-col img {
        width: 100%;
        max-width: 400px;
        height: auto;
        border-radius: 12px;
        margin-bottom: 15px;
    }

.about-history h2 {
    text-align: center;
    margin-bottom: 1em;
    font-size: 26px;
}

.about-history p {
    max-width: 90%;
    margin: 0 auto 2em auto;
    text-align: center;
}

.about-history-image {
    text-align: center;
    padding-bottom: 30px;
    padding-top: 10px;
}

    .about-history-image img {
        width: 100%;
        max-width: 800px;
        height: auto;
        border-radius: 12px;
    }
a.download {
    background: #000000;
    padding: 15px 20px 15px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
}


.news-section {
    background-color: #f5f5f5;
    padding: 60px 20px;
}

.news-container {
    max-width: 900px;
    margin: 0 auto;
}

.news-section h2 {
    text-align: center;
    margin-bottom: 2em;
    font-size: 2rem;
}

.news-item {
    margin-bottom: 2em;
    padding: 20px;
    background-color: #fff;
    border-left: 4px solid #000000;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.news-date {
    font-weight: bold;
    margin-bottom: 10px;
    color: #000000;
}

.news-text p {
    margin-bottom: 0.5em;
    line-height: 1.5;
}
.support-container h3 {
    padding-top: 30px;
}


section.about h2 {
    padding-bottom: 15px;
}
section.about p {
    line-height: 1.6;
    padding-bottom: 15px;
}
section.about {
    padding-bottom: 0px;
    width: 90%;
    max-width: 1200px;
    padding-left: 0px;
    margin: 0 auto;
}
section.support-section {
    padding-top: 0px;
}

section.more-info {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
    padding-left: 0px;
}
    section.more-info h2 {
        padding-bottom: 20px;
    }
    section.more-info li {
        padding-bottom: 10px;
    }
.support-container {
    padding-top: 50px;
}



.container-product {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    padding-top: 40px;
}

.header-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: -50px;
}

.product-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 20px;
    align-items: start;
}

.feature {
    display: contents;
    border-bottom: 1px solid var(--line);
}

.label-with-desc {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .label-with-desc .label {
        font-weight: 700;
    }

    .label-with-desc .desc {
        font-size: 0.85rem;
        color: var(--muted);
        line-height: 1.4;
    }

.product-top {
    text-align: center;
}

    .product-top img {
        width: 100%;
        max-width: 200px;
        border-radius: 8px;
        margin-bottom: 10px;
    }

.product-name {
    font-weight: 700;
    font-size: 1rem;
    margin: 5px 0;
}

.product-sub {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 10px;
}

.product-sensor {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.3;
}


.check-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
}

.span-2 {
    text-align: center;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

.feature:not(:last-child) > * {
    border-bottom: 1px solid var(--line);
    padding-bottom: 12px;
}




/* RESPONSIVE */
@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

        .product-grid > * {
            border-bottom: none;
            padding: 10px 0;
        }

    .product-top {
        margin-bottom: 20px;
    }

    .feature {
        display: block;
        border-top: 1px solid var(--line);
        padding-top: 12px;
        margin-top: 12px;
    }

    .label-with-desc {
        margin-bottom: 8px;
    }

    .check-wrap {
        justify-content: flex-start;
        font-size: 1rem;
    }
}


@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        background: #fff;
        width: 200px;
        display: none;
        flex-direction: column;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

        .nav-links.active {
            display: flex;
        }

        .nav-links ul {
            flex-direction: column;
            padding: 20px;
            gap: 15px;
        }

    .hamburger {
        display: block;
    }

    .hero-content {
        flex-direction: column;
        text-align: left;
    }
    section.hero h1 {
        max-width: 300px;
    }
    .hero-image img {
        margin: 0 auto;
        width:250px;
    }

    .discoveries-inner {
        flex-direction: column;
        text-align: center;
    }

    .discoveries-text {
        text-align: center;
        padding-top: 20px;
    }
    .discoveries-content {
        padding: 40px 20px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-content {
        text-align: center;
    }

    .footer-socials li {
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-socials li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .hero-gallery h1 {
        font-size: 2.2rem;
    }

    .gallery-two-column {
        flex-direction: column;
    }

    section {
        padding: 40px 15px;
    }
    .gallery-col {
        flex: 1 1 200px;
    }


    .hero-support h1 {
        font-size: 2.2rem;
    }

    section {
        padding: 40px 15px;
    }

    .support-table {
        font-size: 0.9rem;
    }
    .hero-about h1 {
        font-size: 2.2rem;
    }

    .about-two-column {
        flex-direction: column;
        gap: 30px;
    }

    .news-item {
        padding: 15px;
    }

    .news-section {
        padding: 40px 15px;
    }
    .gallery-container.mob {
        display: flex;
        flex-direction: column-reverse;
    }
    .gallery-container.gallery-two-column.mob {
        padding-bottom: 40px;
    }
}







@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    .testimonial-card {
        flex: 0 0 calc(50% - 20px);
    }

    .features-inner {
        grid-template-columns: 1fr;
    }

    .feature-side {
        align-items: center;
    }

    .arrow-img {
        display: none;
    }

    .feature-image img {
        max-width: 300px;
    }
    .info-content {
        flex-direction: column;
        text-align: center;
    }

    .info-image {
        margin-top: 30px;
    }
}

@media (max-width: 600px) {
    .testimonial-card {
        flex: 0 0 100%;
    }

    .container.newsletter-content p {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}
.footer-bottom-links a {
    line-height: 1.4;
}
.discoveries h2 {
    margin-bottom: 0px;
}
}

