/* =====================================================
   BASIC RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #0b1b3a;
}


/* =====================================================
   HEADER
===================================================== */

.header {
    width: 100%;
    height: 130px;

    background: #ffffff;

    border-bottom: 1px solid #edf1f7;

    display: flex;
    align-items: center;

    position: sticky;
    top: 0;
    z-index: 1000;
}


/* =====================================================
   NAVBAR
===================================================== */

.navbar {
    width: 100%;
    max-width: 1400px;

    margin: 0 auto;

    padding: 0 50px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =====================================================
   LOGO
===================================================== */

.logo {
    display: flex;
    align-items: center;

    text-decoration: none;
}

.logo img {
    height: 130px;
    width: auto;

    display: block;
}


/* =====================================================
   NAVIGATION
===================================================== */

.nav-menu {
    display: flex;
    align-items: center;

    gap: 38px;
}

.nav-menu a {
    position: relative;

    text-decoration: none;

    color: #10213f;

    font-size: 15px;
    font-weight: 500;

    padding: 31px 0;

    transition: color 0.3s ease;
}


/* Hover */

.nav-menu a:hover {
    color: #0866d5;
}


/* Active page */

.nav-menu a.active {
    color: #0866d5;
}


/* Active underline */

.nav-menu a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 20px;

    height: 2px;

    background: #0866d5;

    border-radius: 5px;
}


/* =====================================================
   HERO
===================================================== */

.hero {
    min-height: calc(100vh - 168px);

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 50px 30px;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f5f9ff 100%
        );
}


.hero-content {
    max-width: 850px;
}


/* Small heading */

.hero-label {
    color: #0866d5;

    font-size: 23px;

    letter-spacing: 5px;

    font-weight: 600;

    margin-bottom: 25px;
}


/* Main heading */

.hero h1 {
    font-size: clamp(60px, 8vw, 60px);

    line-height: 0.95;

    font-weight: 800;

    letter-spacing: -2px;

    color: #071a3a;

    margin-bottom: 20px;

}


/* Tagline */

.hero h2 {
    font-size: 25px;

    font-weight: 400;

    letter-spacing: 3px;

    color: #263a5c;

    margin-bottom: 28px;
}

.hero h2 span {
    color: #f1268b;

    padding: 0 8px;
}


/* Description */

.hero-description {
    max-width: 850px;

    margin: 0 auto 35px;

    color: #5b6982;

    font-size: 17px;

    line-height: 1.7;
}


/* =====================================================
   HERO BUTTON
===================================================== */

.hero-button {
    display: inline-block;

    padding: 15px 28px;

    background: #0866d5;

    color: #ffffff;

    text-decoration: none;

    border-radius: 8px;

    font-size: 15px;

    font-weight: 600;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


.hero-button:hover {
    background: #0758b8;

    transform: translateY(-2px);

    box-shadow: 0 10px 25px rgba(8, 102, 213, 0.20);
}


/* =====================================================
   FOOTER
===================================================== */
/* =====================================================
   FOOTER
===================================================== */

.footer {
    width: 100%;

    background: #0b1b32;

    border-top: 1px solid rgba(255, 255, 255, 0.06);

    color: #ffffff;
}


.footer-container {
    max-width: 1400px;

    min-height: 82px;

    margin: 0 auto;

    padding: 0 50px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* =====================================================
   FOOTER LOGO
===================================================== */

.footer-logo {
    display: flex;

    align-items: center;

    text-decoration: none;
}


.footer-logo img {
    height: 100px;

    width: auto;

    display: block;
}


/* =====================================================
   FOOTER NAVIGATION
===================================================== */

.footer-nav {
    display: flex;

    align-items: center;

    gap: 20px;
}


.footer-nav a {
    color: #ffffff;

    text-decoration: none;

    font-size: 14px;

    font-weight: 400;

    transition: color 0.3s ease;
}


.footer-nav a:hover {
    color: #4d9cff;
}


.footer-nav span {
    color: #77859a;

    font-size: 14px;
}


/* =====================================================
   COPYRIGHT
===================================================== */

.footer-copyright {
    color: #d7deea;

    font-size: 13px;

    white-space: nowrap;
}


/* =====================================================
   MOBILE FOOTER
===================================================== */

@media (max-width: 900px) {

    .footer-container {
        padding: 25px 30px;

        flex-direction: column;

        gap: 20px;

        text-align: center;
    }

    .footer-nav {
        flex-wrap: wrap;

        justify-content: center;

        gap: 12px;
    }

    .footer-copyright {
        white-space: normal;
    }

}
/* =====================================================
   RESPONSIVE DESIGN
===================================================== */

@media (max-width: 900px) {

    .navbar {
        padding: 0 25px;
    }

    .nav-menu {
        gap: 20px;
    }

    .nav-menu a {
        font-size: 14px;
    }

    .hero h1 {
        font-size: 75px;
    }

}


@media (max-width: 700px) {

    .header {
        height: 72px;
    }

    .navbar {
        padding: 0 20px;
    }

    .logo img {
        height: 52px;
    }

    .nav-menu {
        display: none;
    }

    .hero {
        min-height: calc(100vh - 72px);

        padding: 50px 20px;
    }

    .hero-label {
        font-size: 11px;

        letter-spacing: 3px;
    }

    .hero h1 {
        font-size: 58px;

        letter-spacing: -2px;
    }

    .hero h2 {
        font-size: 18px;

        letter-spacing: 1px;
    }

    .hero-description {
        font-size: 15px;
    }

}
/* =====================================================
   HOME FEATURE CARDS
===================================================== */

.home-cards {
    display: flex;

    justify-content: center;

    gap: 20px;

    margin-top: 40px;

    width: 100%;
}


.home-card {
    width: 340px;

    min-height: 125px;

    display: flex;

    align-items: center;

    text-align: left;

    padding: 22px 20px;

    background: #ffffff;

    border: 1px solid #e5edf8;

    border-radius: 16px;

    text-decoration: none;

    box-shadow: 0 8px 25px rgba(7, 26, 58, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* Card Hover */

.home-card:hover {
    transform: translateY(-5px);

    border-color: #b9d5f8;

    box-shadow: 0 15px 35px rgba(7, 26, 58, 0.10);
}


/* =====================================================
   CARD ICON
===================================================== */

.home-card-icon {
    width: 60px;

    height: 60px;

    min-width: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 15px;

    background: #eaf3ff;

    font-size: 45px;

    margin-right: 16px;
}



/* =====================================================
   CARD CONTENT
===================================================== */

.home-card-content {
    flex: 1;
}


.home-card-content h3 {
    margin: 0 0 7px;

    color: #071a3a;

    font-size: 18px;

    font-weight: 700;
}


.home-card-content p {
    margin: 0;

    color: #65738b;

    font-size: 13px;

    line-height: 1.5;
}


/* =====================================================
   CARD ARROW
===================================================== */

.home-card-arrow {
    width: 38px;

    height: 38px;

    min-width: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #f3f8ff;

    color: #0866d5;

    font-size: 20px;

    margin-left: 12px;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.home-card:hover .home-card-arrow {
    background: #0866d5;

    color: #ffffff;

    transform: translateX(3px);
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

    .home-cards {
        flex-direction: column;

        align-items: center;

        gap: 15px;

        margin-top: 30px;
    }

    .home-card {
        width: 100%;

        max-width: 400px;
    }

}