﻿*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: 'Poppins', sans-serif;
}

body {
    position: relative;
    overflow: hidden;
    background: #e9eff8;
}

img.bg1 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    min-height: 100%;
    max-width: 100%;
    width:100%;
}

img.bg2 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 99;
    min-height: 100%;
    max-width: 70%;
}

header {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 999;
    padding: 30px 60px 10px;
}

.logoBox {
    display: flex;
    align-items: center;
    gap: 50px;
}

    .logoBox .logo1 {
        width: 110px;
        height: auto;
    }

    .logoBox .logo2 {
        width: 190px;
        height: auto;
    }

.helpBtn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px 10px 15px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.25s ease;
}

    .helpBtn::before {
        content: '?';
        display: flex;
        align-items: center;
        justify-content: center;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        border: 1.8px solid #3a3a3a;
        font-size: 15px;
        font-weight: 600;
        flex-shrink: 0;
    }

    .helpBtn:hover {
        background: rgba(255,255,255,0.95);
        box-shadow: 0 4px 18px rgba(0,0,0,0.14);
    }

.content {
    position: relative;
    z-index: 999;
    padding: 40px 60px 60px;
    max-width: 60%;
}

    .content h1 {
        font-size: 124px;
        font-weight: 600;
        background: linear-gradient(180deg, #074fbd 0%, #001f71 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1;
        letter-spacing: -2px;
    }

    .content h2 {
        font-size: 66px;
        font-weight: 700;
        color: #000;
        padding-bottom: 14px;
        margin-bottom: 24px;
        display: inline-block;
        position: relative;
    }

        .content h2::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 17%;
            height: 10px;
            background-color: #0540a5;
            border-radius: 30px;
        }

    .content p {
        font-size: 18px;
        font-weight: 400;
        color: #3a3a3a;
        line-height: 1.7;
        margin-bottom: 36px;
    }

        .content p .highlight-green {
            color: #1a9a5c;
            font-weight: 600;
        }

        .content p .highlight-blue {
            color: #1a7ab5;
            font-weight: 600;
        }

.BtnBox {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 380px;
}

.btnPrimary,
.btnSecondary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 28px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
    width: 100%;
}

.btn-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.btnPrimary:hover {
    opacity: 0.85;
}

.btnSecondary:hover {
    background-color: #f0f5ff;
    color: #0d2b6e;
    box-shadow: 0 4px 20px rgba(13,43,110,0.18);
    border: 1.5px solid #1a56db;
}

.btnPrimary {
    background: linear-gradient(180deg, #074fbd 0%, #001f71 100%);
    color: #ffffff;
}

.btnSecondary {
    background-color: #ffffff;
    color: #1a1a1a;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    border: 1.5px solid transparent;
}

/* ===== FOOTER / FEATURE BOX ===== */
footer {
    position: absolute;
    padding-top: 20px;
    left: 0;
    width: 100%;
    padding: 0 60px;
    z-index: 999;
    bottom: 50px;
}

.FeactureBox {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    display: flex;
    align-items: center;
    padding: 30px 15px;
    width: 75%;
    justify-content: center;
    margin: auto;
    box-shadow: 0px 0px 25px #0000000a;
}

img.logoBig {
    position: absolute;
    z-index: 99;
    width: 28vw;
    height: auto;
    top: 10%;
    right: 10%;
}

.iconBox {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding: 0 10px;
    border-right: 1.5px solid #d0d8e8;
}

    .iconBox:last-child {
        border-right: none;
    }

    .iconBox svg {
        flex-shrink: 0;
    }

    .iconBox .icon-text {
        display: flex;
        flex-direction: column;
    }

    .iconBox h5 {
        font-size: 18px;
        font-weight: 600;
        color: #01267c;
        line-height: 1.2;
    }

    .iconBox p {
        font-size: 18px;
        font-weight: 400;
        color: #3a3a3a;
        line-height: 1.4;
    }

/* ===== RESPONSIVE ===== */

@media (max-width: 1600px) and (min-width: 1440px) {
    .content {
        zoom: .85;
    }
}

@media (max-width: 1400px) and (min-width: 1300px) {
    .content {
        zoom: .75;
    }

    img.logoBig {
        width: 35vw;
    }
}

/* Tablet - 1024px */
@media (max-width: 1024px) {
    header {
        padding: 20px 30px 10px;
    }

    .logoBox {
        gap: 30px;
    }

        .logoBox .logo1 {
            width: 90px;
        }

        .logoBox .logo2 {
            width: 160px;
        }

    .content {
        padding: 30px 30px 40px;
        max-width: 70%;
    }

        .content h1 {
            font-size: 90px;
        }

        .content h2 {
            font-size: 48px;
        }

        .content p {
            font-size: 16px;
        }

    img.logoBig {
        width: 35vw;
        right: 2%;
    }

    .FeactureBox {
        width: 90%;
        padding: 22px 10px;
    }

    .iconBox {
        padding: 0 16px;
        gap: 10px;
    }

        .iconBox h5 {
            font-size: 15px;
        }

        .iconBox p {
            font-size: 14px;
        }
}

/* Mobile landscape / small tablet - 768px */
@media (max-width: 768px) {
    body {
        overflow-y: auto;
    }

    header {
        padding: 16px 20px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .logoBox {
        gap: 16px;
    }

        .logoBox .logo1 {
            width: 70px;
        }

        .logoBox .logo2 {
            width: 130px;
        }

    img.logoBig {
        display: none;
    }

    img.bg1 {
        width: 100%;
        min-height: unset;
        height: 100%;
        object-fit: cover;
    }

    .content {
        padding: 24px 20px 30px;
        max-width: 50%;
    }

        .content h1 {
            font-size: 72px;
            letter-spacing: -1px;
        }

        .content h2 {
            font-size: 36px;
        }

        .content p {
            font-size: 15px;
            margin-bottom: 24px;
        }

    .BtnBox {
        max-width: 100%;
    }

    footer {
        padding: 0 20px 20px;
    }

    .FeactureBox {
        width: 100%;
        flex-wrap: wrap;
        gap: 0;
        padding: 16px 10px;
    }

    .iconBox {
        flex: 1 1 45%;
        border-right: none;
        border-bottom: 1.5px solid #d0d8e8;
        padding: 14px 16px;
    }

        .iconBox:nth-child(odd) {
            border-right: 1.5px solid #d0d8e8;
        }

        .iconBox:last-child,
        .iconBox:nth-last-child(2):nth-child(odd) {
            border-bottom: none;
        }
}

/* Mobile portrait - 480px */
@media (max-width: 480px) {
    .content h1 {
        font-size: 56px;
    }

    .content h2 {
        font-size: 28px;
    }

    .content p {
        font-size: 14px;
    }

    .btnPrimary,
    .btnSecondary {
        font-size: 15px;
        padding: 14px 18px;
    }

    .iconBox {
        flex: 1 1 100%;
        border-right: none;
    }

        .iconBox:nth-child(odd) {
            border-right: none;
        }

        .iconBox:last-child {
            border-bottom: none;
        }

    .logoBox .logo1 {
        width: 60px;
    }

    .logoBox .logo2 {
        width: 110px;
    }

    img.bg1 {
        display: none;
    }

    .content {
        padding: 24px 20px 30px;
        max-width: 100%;
    }
}

@media(min-width: 1300px)and (max-width:1400px)and (-webkit-device-pixel-ratio:1) {
    body {
        zoom: .8
    }
}

@media screen and (-webkit-min-device-pixel-ratio: 1.1)and (-webkit-max-device-pixel-ratio:1.15),screen and (min-resolution:1.1dppx)and (max-resolution:1.15dppx) {
    body {
        zoom: .91
    }

    img.logoBig {
        width: 31vw;
    }
}

@media screen and (-webkit-min-device-pixel-ratio: 1.2)and (-webkit-max-device-pixel-ratio:1.3),screen and (min-resolution:1.2dppx)and (max-resolution:1.3dppx) {
    body {
        zoom: .8
    }

    .content {
        zoom: .85;
    }

    img.logoBig {
        width: 35vw;
    }
}

@media screen and (-webkit-min-device-pixel-ratio: 1.4)and (-webkit-max-device-pixel-ratio:1.6),screen and (min-resolution:1.4dppx)and (max-resolution:1.6dppx) {
    body {
        zoom: .67
    }

    .content {
        zoom: .8;
    }

    img.logoBig {
        width: 35vw;
    }
}

@media screen and (-webkit-min-device-pixel-ratio: .85)and (-webkit-max-device-pixel-ratio:.95),screen and (min-resolution:.85dppx)and (max-resolution:.95dppx) {
    body {
        zoom: 1.12
    }

    img.logoBig {
        width: 25vw;
    }
}

@media screen and (-webkit-min-device-pixel-ratio: .74)and (-webkit-max-device-pixel-ratio:.76),screen and (min-resolution:.74dppx)and (max-resolution:.76dppx) {
    body {
        zoom: 1.34
    }

    img.logoBig {
        width: 22vw;
    }
}

@media screen and (-webkit-min-device-pixel-ratio: .77)and (-webkit-max-device-pixel-ratio:.84),screen and (min-resolution:.77dppx)and (max-resolution:.84dppx) {
    body {
        zoom: 1.25
    }

    img.logoBig {
        width: 22vw;
    }
}

@media screen and (min-width: 1200px)and (max-width:1400px)and (-webkit-min-device-pixel-ratio:1.1)and (-webkit-max-device-pixel-ratio:1.15),screen and (min-width:1200px)and (max-width:1400px)and (min-resolution:1.1dppx)and (max-resolution:1.15dppx) {
    body {
        zoom: .726
    }
}

@media screen and (min-width: 1000px)and (max-width:1199px)and (-webkit-min-device-pixel-ratio:1.2)and (-webkit-max-device-pixel-ratio:1.3),screen and (min-width:1000px)and (max-width:1199px)and (min-resolution:1.2dppx)and (max-resolution:1.3dppx) {
    body {
        zoom: .64
    }
}

@media screen and (min-width: 900px)and (max-width:1198px)and (-webkit-min-device-pixel-ratio:1.4)and (-webkit-max-device-pixel-ratio:1.6),screen and (min-width:900px)and (max-width:1198px)and (min-resolution:1.4dppx)and (max-resolution:1.6dppx) {
    body {
        zoom: .533
    }
}

@media screen and (min-width: 1500px)and (max-width:1550px)and (-webkit-min-device-pixel-ratio:.85)and (-webkit-max-device-pixel-ratio:.95),screen and (min-width:1500px)and (max-width:1550px)and (min-resolution:.85dppx)and (max-resolution:.95dppx) {
    body {
        zoom: .89
    }
}

@media screen and (min-width: 1700px)and (max-width:1750px)and (-webkit-min-device-pixel-ratio:.77)and (-webkit-max-device-pixel-ratio:.84),screen and (min-width:1700px)and (max-width:1750px)and (min-resolution:.77dppx)and (max-resolution:.84dppx) {
    body {
        zoom: 1
    }
}

@media screen and (min-width: 1800px)and (max-width:1850px)and (-webkit-min-device-pixel-ratio:.74)and (-webkit-max-device-pixel-ratio:.76),screen and (min-width:1800px)and (max-width:1850px)and (min-resolution:.74dppx)and (max-resolution:.76dppx) {
    body {
        zoom: 1.065
    }
}
