/* ==================================================
   GLOBAL
================================================== */

* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;

    font-family: "Inter", Arial, Helvetica, sans-serif;

    color: #1d2a33;

    background-color: #ffffff;

    -webkit-font-smoothing: antialiased;
}


img {
    display: block;

    max-width: 100%;
}



/* ==================================================
   HEADER
================================================== */

.header {
    height: 76px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 7%;

    background-color: rgba(255, 255, 255, 0.98);

    border-bottom: 1px solid #e6ecef;

    position: sticky;

    top: 0;

    z-index: 1000;
}


.logo {
    display: flex;
    align-items: center;

    text-decoration: none;
}

.logo img {
    width: 210px;
    height: auto;
    display: block;
}



/* Navigation */

nav {
    display: flex;

    align-items: center;
}


nav a {
    position: relative;

    margin-left: 32px;

    padding: 28px 0;

    color: #283943;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    transition: color 0.25s ease;
}


nav a:hover {
    color: #007db8;
}


nav a::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: 18px;

    width: 0;

    height: 2px;

    background-color: #007db8;

    transition: width 0.25s ease;
}


nav a:hover::after {
    width: 100%;
}



/* Mobile menu button */

.menu-button {
    display: none;

    padding: 5px;

    border: none;

    background: transparent;

    color: #17242d;

    font-size: 29px;

    cursor: pointer;
}



/* ==================================================
   HERO SLIDER
================================================== */

.slider {
    position: relative;

    width: 100%;

    height: 600px;

    overflow: hidden;

    background-color: #101820;
}


.slide {
    display: none;

    position: relative;

    width: 100%;

    height: 100%;
}


.slide.active {
    display: block;

    animation: fadeSlide 0.8s ease;
}


@keyframes fadeSlide {

    from {
        opacity: 0.35;
    }

    to {
        opacity: 1;
    }

}


.slide img {
    width: 100%;

    height: 100%;

    object-fit: cover;
}



/* Dark overlay */

.slide-overlay {
    position: absolute;

    inset: 0;

    background: linear-gradient(
            90deg,
            rgba(5, 18, 27, 0.82) 0%,
            rgba(5, 18, 27, 0.65) 35%,
            rgba(5, 18, 27, 0.12) 75%
    );
}



/* Caption */

.slide-caption {
    position: absolute;

    z-index: 5;

    left: 8%;

    top: 50%;

    transform: translateY(-50%);

    max-width: 680px;

    color: white;
}


.banner-small-title {
    margin: 0 0 16px 0;

    color: #74d0f4;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 3px;
}


.slide-caption h1 {
    margin: 0 0 22px 0;

    max-width: 650px;

    font-size: 56px;

    font-weight: 700;

    line-height: 1.08;

    letter-spacing: -1px;
}


.slide-caption > p:not(.banner-small-title) {
    max-width: 580px;

    margin: 0 0 32px 0;

    color: rgba(255, 255, 255, 0.92);

    font-size: 19px;

    line-height: 1.65;
}



/* Hero buttons */

.banner-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 14px;
}


.primary-button,
.secondary-button {
    display: inline-block;

    padding: 14px 25px;

    border-radius: 6px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    transition: all 0.25s ease;
}


.primary-button {
    border: 2px solid #007db8;

    background-color: #007db8;

    color: white;
}


.primary-button:hover {
    border-color: #006494;

    background-color: #006494;
}


.secondary-button {
    border: 2px solid #007db8;

    color: #007db8;
}


.light-button {
    border-color: rgba(255, 255, 255, 0.85);

    color: white;
}


.light-button:hover {
    background-color: white;

    color: #17242d;
}



/* ==================================================
   SLIDER ARROWS
================================================== */

.slider-button {
    position: absolute;

    z-index: 10;

    top: 50%;

    transform: translateY(-50%);

    width: 46px;

    height: 46px;

    border: none;

    border-radius: 50%;

    background-color: rgba(255, 255, 255, 0.85);

    color: #17242d;

    font-size: 29px;

    cursor: pointer;

    transition: background-color 0.2s ease;
}


.slider-button:hover {
    background-color: white;
}


.previous {
    left: 25px;
}


.next {
    right: 25px;
}



/* Slider dots */

.slider-dots {
    position: absolute;

    z-index: 10;

    bottom: 24px;

    left: 0;

    width: 100%;

    display: flex;

    justify-content: center;

    gap: 10px;
}


.dot {
    width: 9px;

    height: 9px;

    border-radius: 50%;

    background-color: rgba(255, 255, 255, 0.45);

    cursor: pointer;
}


.active-dot {
    background-color: white;
}



/* ==================================================
   SHARED HEADINGS
================================================== */

.small-heading {
    margin: 0 0 14px 0;

    color: #007db8;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2.2px;
}


.section-title {
    max-width: 780px;

    margin: 0 auto 55px auto;

    text-align: center;
}


.section-title h2 {
    margin: 0 0 18px 0;

    color: #17242d;

    font-size: 38px;

    font-weight: 700;

    line-height: 1.2;

    letter-spacing: -0.5px;
}


.section-title > p:not(.small-heading) {
    margin: 0 auto;

    color: #62717a;

    font-size: 17px;

    line-height: 1.75;
}



/* ==================================================
   INTRO
================================================== */

.intro {
    max-width: 940px;

    margin: auto;

    padding: 90px 30px;

    text-align: center;
}


.intro h2 {
    margin: 0 0 24px 0;

    color: #17242d;

    font-size: 40px;

    font-weight: 700;

    line-height: 1.2;

    letter-spacing: -0.5px;
}


.intro-text {
    max-width: 800px;

    margin: auto;

    color: #5e6c75;

    font-size: 18px;

    line-height: 1.8;
}



/* ==================================================
   TECHNOLOGY
================================================== */

.technology {
    padding: 90px 7%;

    background-color: #f4f8fa;
}


.technology-cards {
    display: flex;

    gap: 28px;

    max-width: 1220px;

    margin: auto;
}


.technology-card {
    flex: 1;

    overflow: hidden;

    background-color: white;

    border: 1px solid #e5eaed;

    border-radius: 14px;

    box-shadow: 0 8px 30px rgba(25, 45, 60, 0.07);

    transition:
            transform 0.3s ease,
            box-shadow 0.3s ease;
}


.technology-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 15px 35px rgba(25, 45, 60, 0.12);
}


.technology-card img {
    width: 100%;

    height: 250px;

    object-fit: cover;
}


.card-content {
    padding: 30px;
}


.number {
    color: #007db8;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;
}


.card-content h3 {
    margin: 10px 0 14px 0;

    color: #17242d;

    font-size: 23px;
}


.card-content p {
    margin: 0;

    color: #5e6d76;

    font-size: 15px;

    line-height: 1.75;
}



/* ==================================================
   BENEFITS
================================================== */

.benefits {
    padding: 90px 7%;

    background-color: white;
}


.benefit-container {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 22px;

    max-width: 1220px;

    margin: auto;
}


.benefit {
    padding: 32px;

    border: 1px solid #e3e9ec;

    border-radius: 12px;

    background-color: white;

    transition:
            transform 0.3s ease,
            box-shadow 0.3s ease;
}


.benefit:hover {
    transform: translateY(-5px);

    box-shadow: 0 12px 28px rgba(25, 45, 60, 0.08);
}


.benefit-number {
    display: block;

    margin-bottom: 25px;

    color: #007db8;

    font-size: 13px;

    font-weight: 700;
}


.benefit h3 {
    margin: 0 0 13px 0;

    color: #17242d;

    font-size: 20px;
}


.benefit p {
    margin: 0;

    color: #5e6d76;

    font-size: 15px;

    line-height: 1.7;
}



/* ==================================================
   SOLUTIONS
================================================== */

.solutions {
    padding: 90px 7%;

    background-color: #f4f8fa;
}


.solution-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 24px;

    max-width: 1040px;

    margin: auto;
}


.solution-box {
    padding: 38px;

    border: 1px solid #e4e9ec;

    border-radius: 12px;

    background-color: white;

    transition:
            transform 0.3s ease,
            box-shadow 0.3s ease;
}


.solution-box:hover {
    transform: translateY(-4px);

    box-shadow: 0 12px 28px rgba(25, 45, 60, 0.07);
}


.solution-number {
    display: block;

    margin-bottom: 22px;

    color: #007db8;

    font-size: 13px;

    font-weight: 700;
}


.solution-box h3 {
    margin: 0 0 14px 0;

    color: #17242d;

    font-size: 23px;
}


.solution-box p {
    margin: 0;

    color: #5e6d76;

    font-size: 15px;

    line-height: 1.75;
}



/* ==================================================
   EXAFORE PARTNER SECTION
================================================== */

.partner-section {
    padding: 100px 7%;

    background-color: #16303d;

    color: white;
}


.partner-text {
    max-width: 820px;

    margin: auto;

    text-align: center;
}


.partner-section .small-heading {
    color: #69c7ee;
}


.partner-section h2 {
    margin: 0 0 26px 0;

    color: white;

    font-size: 40px;

    line-height: 1.2;
}


.partner-section p {
    margin: 0 auto 18px auto;

    color: #d4dfe4;

    font-size: 17px;

    line-height: 1.8;
}


.partner-button {
    display: inline-block;

    margin-top: 18px;

    padding: 14px 26px;

    border: 1px solid rgba(255, 255, 255, 0.65);

    border-radius: 6px;

    color: white;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    transition: all 0.25s ease;
}


.partner-button:hover {
    background-color: white;

    color: #17313e;
}



/* ==================================================
   CONTACT
================================================== */

.contact-section {
    padding: 90px 7%;

    background-color: #f5f8fa;
}


.contact-heading {
    max-width: 760px;

    margin: 0 auto 50px auto;

    text-align: center;
}


.contact-heading h2 {
    margin: 0 0 18px 0;

    color: #17242d;

    font-size: 40px;

    line-height: 1.2;
}


.contact-heading > p:not(.small-heading) {
    margin: 0;

    color: #5d6b74;

    font-size: 17px;

    line-height: 1.75;
}



/* Offices */

.office-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 26px;

    max-width: 900px;

    margin: 0 auto 28px auto;
}


.office-card {
    padding: 36px 30px;

    border: 1px solid #e2e8eb;

    border-radius: 13px;

    background-color: white;

    text-align: center;

    box-shadow: 0 6px 20px rgba(25, 45, 60, 0.05);
}


.office-label {
    display: inline-block;

    margin-bottom: 20px;

    padding: 7px 13px;

    border-radius: 20px;

    background-color: #e7f4fa;

    color: #007db8;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


.office-card h3 {
    margin: 0 0 17px 0;

    color: #17242d;

    font-size: 23px;
}


.office-card p {
    margin: 0;

    color: #596872;

    font-size: 16px;

    line-height: 1.75;
}



/* Contact bar */

.contact-bar {
    display: flex;

    align-items: center;

    justify-content: center;

    max-width: 900px;

    margin: auto;

    padding: 27px 35px;

    border-radius: 13px;

    background-color: #17313e;
}


.contact-item {
    flex: 1;

    text-align: center;
}


.contact-label {
    display: block;

    margin-bottom: 9px;

    color: #6bc8ec;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;
}


.contact-item a {
    color: white;

    text-decoration: none;

    font-size: 17px;

    font-weight: 600;
}


.contact-item a:hover {
    text-decoration: underline;
}


.contact-divider {
    width: 1px;

    height: 45px;

    background-color: rgba(255, 255, 255, 0.18);
}



/* ==================================================
   FOOTER
================================================== */

footer {
    padding: 50px 20px;

    background-color: #0d1b22;

    color: #9dabb2;

    text-align: center;
}


.footer-logo {
    margin-bottom: 12px;

    color: white;

    font-size: 23px;

    font-weight: 700;

    letter-spacing: 2px;
}


.footer-powered {
    margin: 0 0 10px 0;

    color: white;

    font-size: 14px;

    font-weight: 600;
}


.footer-description {
    margin: 0;

    font-size: 14px;
}


.copyright {
    margin: 24px 0 0 0;

    color: #78878e;

    font-size: 12px;
}



/* ==================================================
   MOBILE / TABLET
================================================== */

@media (max-width: 900px) {

    .benefit-container {
        grid-template-columns: repeat(2, 1fr);
    }

}



/* ==================================================
   MOBILE
================================================== */

@media (max-width: 768px) {


    /* Header */

    .header {
        height: 70px;

        padding: 0 20px;
    }


    .logo {
        font-size: 21px;
    }


    .menu-button {
        display: block;
    }


    nav {
        display: none;

        position: absolute;

        top: 70px;

        left: 0;

        width: 100%;

        background-color: white;

        border-bottom: 1px solid #e2e8eb;

        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
    }


    nav.active {
        display: block;
    }


    nav a {
        display: block;

        margin: 0;

        padding: 16px 22px;

        border-top: 1px solid #edf0f2;

        font-size: 15px;
    }


    nav a::after {
        display: none;
    }



    /* Banner */

    .slider {
        height: 520px;
    }


    .slide-overlay {
        background: rgba(5, 18, 27, 0.62);
    }


    .slide-caption {
        left: 25px;

        right: 25px;

        max-width: none;
    }


    .slide-caption h1 {
        font-size: 39px;

        letter-spacing: -0.5px;
    }


    .slide-caption > p:not(.banner-small-title) {
        font-size: 16px;
    }


    .banner-actions {
        flex-direction: column;

        align-items: flex-start;
    }


    .slider-button {
        width: 38px;

        height: 38px;

        font-size: 24px;
    }


    .previous {
        left: 8px;
    }


    .next {
        right: 8px;
    }



    /* Intro */

    .intro {
        padding: 65px 20px;
    }


    .intro h2 {
        font-size: 31px;
    }


    .intro-text {
        font-size: 16px;
    }



    /* Shared headings */

    .section-title {
        margin-bottom: 40px;
    }


    .section-title h2 {
        font-size: 31px;
    }


    .section-title > p:not(.small-heading) {
        font-size: 16px;
    }



    /* Technology */

    .technology {
        padding: 65px 20px;
    }


    .technology-cards {
        flex-direction: column;
    }


    .technology-card img {
        height: 230px;
    }



    /* Benefits */

    .benefits {
        padding: 65px 20px;
    }


    .benefit-container {
        grid-template-columns: 1fr;
    }



    /* Solutions */

    .solutions {
        padding: 65px 20px;
    }


    .solution-grid {
        grid-template-columns: 1fr;
    }



    /* Partner */

    .partner-section {
        padding: 75px 20px;
    }


    .partner-section h2 {
        font-size: 31px;
    }


    .partner-section p {
        font-size: 16px;
    }



    /* Contact */

    .contact-section {
        padding: 65px 20px;
    }


    .contact-heading {
        margin-bottom: 38px;
    }


    .contact-heading h2 {
        font-size: 31px;
    }


    .office-grid {
        grid-template-columns: 1fr;
    }


    .office-card {
        padding: 30px 25px;
    }


    .contact-bar {
        flex-direction: column;

        gap: 23px;

        padding: 28px 20px;
    }


    .contact-divider {
        width: 100%;

        height: 1px;
    }


    .contact-item a {
        font-size: 16px;
    }

}
/* ==================================================
   DATASHEETS PAGE
================================================== */

.datasheet-hero {
    padding: 95px 30px 80px 30px;

    background: linear-gradient(
            135deg,
            #eef6fa,
            #f8fbfc
    );

    text-align: center;

    border-bottom: 1px solid #e5ecef;
}


.datasheet-hero-content {
    max-width: 800px;

    margin: auto;
}


.datasheet-hero h1 {
    margin: 0 0 20px 0;

    color: #17242d;

    font-size: 48px;

    font-weight: 700;

    line-height: 1.15;

    letter-spacing: -0.8px;
}


.datasheet-hero-content > p:not(.small-heading) {
    max-width: 700px;

    margin: auto;

    color: #5e6d76;

    font-size: 18px;

    line-height: 1.75;
}



/* ==================================================
   DATASHEET LIST
================================================== */

.datasheet-section {
    padding: 85px 7%;

    background-color: #ffffff;
}


.datasheet-container {
    max-width: 1050px;

    margin: auto;

    display: flex;

    flex-direction: column;

    gap: 22px;
}



/* Each datasheet */

.datasheet-card {
    display: grid;

    grid-template-columns: 90px 1fr auto;

    align-items: center;

    gap: 30px;

    padding: 32px;

    background-color: #ffffff;

    border: 1px solid #e2e8eb;

    border-radius: 14px;

    box-shadow: 0 5px 20px rgba(25, 45, 60, 0.05);

    transition:
            transform 0.25s ease,
            box-shadow 0.25s ease;
}


.datasheet-card:hover {
    transform: translateY(-3px);

    box-shadow: 0 10px 28px rgba(25, 45, 60, 0.09);
}



/* PDF icon */

.pdf-box {
    width: 80px;

    height: 90px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background-color: #e7f4fa;

    border: 1px solid #cfe8f3;
}


.pdf-text {
    color: #007db8;

    font-size: 17px;

    font-weight: 700;

    letter-spacing: 1px;
}



/* Datasheet text */

.datasheet-category {
    margin: 0 0 8px 0;

    color: #007db8;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.6px;
}


.datasheet-content h2 {
    margin: 0 0 10px 0;

    color: #17242d;

    font-size: 24px;

    font-weight: 700;
}


.datasheet-description {
    max-width: 560px;

    margin: 0;

    color: #5e6d76;

    font-size: 15px;

    line-height: 1.7;
}



/* ==================================================
   DATASHEET BUTTONS
================================================== */

.datasheet-actions {
    min-width: 170px;

    display: flex;

    flex-direction: column;

    gap: 10px;
}


.pdf-primary,
.pdf-secondary {
    display: block;

    padding: 11px 18px;

    border-radius: 6px;

    text-align: center;

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

    transition: all 0.25s ease;
}


.pdf-primary {
    background-color: #007db8;

    border: 1px solid #007db8;

    color: white;
}


.pdf-primary:hover {
    background-color: #006494;

    border-color: #006494;
}


.pdf-secondary {
    background-color: white;

    border: 1px solid #c9d5db;

    color: #263943;
}


.pdf-secondary:hover {
    border-color: #007db8;

    color: #007db8;
}



/* ==================================================
   DATASHEET SUPPORT
================================================== */

.datasheet-support {
    padding: 90px 30px;

    background-color: #17313e;

    color: white;

    text-align: center;
}


.datasheet-support-content {
    max-width: 750px;

    margin: auto;
}


.support-small {
    margin: 0 0 14px 0;

    color: #69c7ee;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;
}


.datasheet-support h2 {
    margin: 0 0 20px 0;

    font-size: 36px;

    line-height: 1.2;
}


.datasheet-support-content > p:not(.support-small) {
    margin: 0 auto 30px auto;

    color: #d4dfe4;

    font-size: 17px;

    line-height: 1.75;
}


.support-button {
    display: inline-block;

    padding: 14px 25px;

    border: 1px solid rgba(255, 255, 255, 0.7);

    border-radius: 6px;

    color: white;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    transition: all 0.25s ease;
}


.support-button:hover {
    background-color: white;

    color: #17313e;
}



/* ==================================================
   DATASHEET MOBILE
================================================== */

@media (max-width: 768px) {

    .datasheet-hero {
        padding: 65px 20px 55px 20px;
    }


    .datasheet-hero h1 {
        font-size: 35px;
    }


    .datasheet-hero-content > p:not(.small-heading) {
        font-size: 16px;
    }


    .datasheet-section {
        padding: 55px 20px;
    }


    .datasheet-card {
        grid-template-columns: 1fr;

        gap: 20px;

        padding: 27px;
    }


    .pdf-box {
        width: 65px;

        height: 72px;
    }


    .datasheet-actions {
        width: 100%;

        min-width: 0;
    }


    .pdf-primary,
    .pdf-secondary {
        width: 100%;
    }


    .datasheet-support {
        padding: 70px 20px;
    }


    .datasheet-support h2 {
        font-size: 30px;
    }

}