body {
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
    padding-top: 100px;
}

#slogan {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 18px;
    line-height: 1em;
    letter-spacing: -2%;
    color: #061A4D;
    margin-bottom: 2.5em;
}

#expertise {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.2em;
    letter-spacing: -0.06em;
}

#counton {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4em;
    color: #0A63FF;
    margin-bottom: 3.6em;
}

.feature-item-left {
    display: flex;
    gap: 0.5em;
    align-items: center;
    background-color: white;
    border-radius: 10px;
    padding: 0.6em;
    margin-bottom: 0.5em;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08)
}

.feature-item-left .feature-item-content {
    border-left: 1px solid #0A63FF;
    padding-left: 1em;
}

.feature-item-left .feature-item-img {
    padding-right: 0.5em;
}

.feature-item-left .feature-item-img img {
    width: 40px;
}

.feature-item-left .feature-item-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
}

.feature-item-left .feature-item-description {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #2A3553;
}


#features_right {
    background-color: #031b3e;
    margin-top: 1em;
    border-radius: 10px;
    padding: 0.5em;
    margin-bottom: 0.5em;
}

.feature-item-right {
    display: flex;
    gap: 1em;
    align-items: center;
    background-color: transparent;
    border: none;
    color: white;
    border-top: 1px solid grey;
    border-radius: 0;
    padding: 0.5em;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;

}

.feature-item-right:first-child {
    border: none !important;
}

#features_right .feature-item-img img {
    width: 2em;
}

#call_contact {
    display: block;
    text-align: center;
    background-color: #00102a;
    border-radius: 15px;
    padding: 1em;
}

#call_contact_divider {
    display: none;
}

.call-text-mobile {
    display: block;
}

.call-text-mobile .call-text-1 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: white;
}

.call-text-mobile .call-text-2 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    /* ExtraBold */
    font-size: 24px;
    color: #037def;

}

.call-text-3 {
    margin-bottom: 1em;
}

.call-text-3 a {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    /* ExtraBold */
    font-size: 40px;
    color: white;
    text-decoration: none;
}


.non-mobile {
    display: none;
}

#call {
    display: block;
    color: black;
}

.call-img img {
    width: 60px;
    padding: 1em;
}

.image-button {
    display: inline-flex;
    /* Aligns children (img & span) in a row */
    align-items: center;
    /* Centers image and text vertically */
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    gap: 10px;
    /* Adds space between the image and text */
    transition: background 0.3s;
    font-family: "Montserrat";
}

.image-button:hover {
    background-color: #0056b3;
}

.btn-icon {
    width: 20px;
    /* Adjust based on your image size */
    height: 20px;
}

.image-button .btn-text a {
    color: white;
    text-decoration: none;
}


#footer_info {
    margin: 0.5em 0;
    padding: 0.5em;
    color: #111a37;
}

.info-item {
    display: flex;
    gap: 1em;
    align-items: center;
    padding: 0.5em;
    border-left: none;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
}

.info-item-img img {
    width: 2em;
}





/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    body {
        will-change: background-image;
        background-image: url(/assets/images/background_mobile_sd.webp);
    }

    #call_contact_divider {
        display: none;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    body {
        will-change: background-image;
        background-image: url(/assets/images/background_mobile_sd.webp);
    }

    #call_contact_divider {
        display: none;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    body {
        will-change: background-image;
        background-image: url(/assets/images/background_tablet.webp);
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    body {
        will-change: background-image;
        background-image: url(/assets/images/background.webp);
        background-size: 992px auto;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    body {
        will-change: background-image;
        background-size: 1024px auto;
        padding-top: 250px;
    }

    #main {
        width: 1024px;
        margin: auto;
    }

    #slogan {
        font-family: 'Montserrat', sans-serif;
        font-weight: 800;
        font-size: 58px;
        line-height: 1em;
        letter-spacing: -2%;
        color: #061A4D;
        margin-bottom: 0.5em;
    }

    #expertise {
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        font-size: 26px;
        line-height: 1.4em;
        letter-spacing:normal;
    }

    #counton {
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        /* This specifies Semi-Bold */
        font-size: 26px;
        line-height: 1.4em;
        color: #0A63FF;
        margin-bottom: 0.5em;
    }

    #wrapper {
        margin: 10px;
    }

    #features {
        display: grid;
        grid-template-columns: 42% 56%;
        gap: 2%;
        margin-top: 1em;
    }

    .feature-item-left {
        display: flex;
        background-color: white;
        border-radius: 20px;
        max-width: 400px;
        margin: 1em 1em 1em 0;
        padding: 1em;
        gap: 0.5em;
        box-shadow: 0 8px 24px rgba(0, 0, 0, .08)
    }

    .feature-item-left .feature-item-content {
        border-left: 3px solid #0A63FF;
        padding-left: 1em;
    }

    .feature-item-left .feature-item-img {
        padding-right: 0.5em;
    }

    .feature-item-left .feature-item-img img {
        width: 70px;
    }

    .feature-item-left .feature-item-heading {
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        /* 700 is the numerical value for Bold */
        /* font-size: 24px; */
        font-size: 20px;
    }

    .feature-item-left .feature-item-description {
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 18px;
        color: #2A3553;
    }


    #features_right {
        background-color: #031b3e;
        margin-top: 390px;
        border-radius: 10px;
        padding: 1em;
        box-shadow: 0 0 30px rgba(0, 87, 255, .25);
        margin-bottom: 0;
    }

    .feature-item-right {
        display: flex;
        gap: 1em;
        align-items: center;
        background-color: transparent;
        border: none;
        color: white;
        border-top: 1px solid grey;
        border-radius: 0;
        padding: 0.5em;
        font-family: 'Montserrat', sans-serif;
        font-size: 20px;

    }

    .feature-item-right:first-child {
        border: none !important;
    }

    #features_right .feature-item-img img {
        width: 40px;
    }

    #call_contact {
        display: flex;
        align-items: center;
        background-color: #00102a;
        padding: 1em;
        gap: 1em;
        border: 1px solid grey;
        border-radius: 15px;
        font-family: 'Montserrat', sans-serif;
        margin-top: 1em;
        justify-content: space-around;
        text-align: left;
    }

    .call-text-mobile {
        display: none;
    }

    .non-mobile {
        display: block;
    }

    #call {
        display: flex;
        align-items: center;
        gap: 1em;
        color: white;
        gap: 1em;
    }

    .call-img img {
        width: 110px;
        padding: 0;
    }

    .call-text-1 {
        font-family: 'Inter', sans-serif;
        font-size: 24px;
        color: white;
    }

    .call-text-2 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 800;
        font-size: 32px;
        color: #037def;
    }

    .call-text-3 {
        margin-bottom: 0;
    }

    .call-text-3 a {
        font-family: 'Inter', sans-serif;
        font-weight: 800;
        /* ExtraBold */
        font-size: 60px;
        color: white;
        text-decoration: none;
    }

    #call_contact_divider {
        display: block;
        border-left: 1px solid #00ecf4;
        height: 140px;
    }

    #contact .image-button {
        border-radius: 20px;
        padding: 1em 3em;
    }

    #contact .btn-text a {
        font-family: 'Inter', sans-serif;
        font-weight: 700;
        /* 700 is the numerical value for Bold */
        font-size: 24px;
        color: white;
        text-decoration: none;
    }

    .image-button {
        display: inline-flex;
        /* Aligns children (img & span) in a row */
        align-items: center;
        /* Centers image and text vertically */
        padding: 20px 40px;
        background-color: #007bff;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
        gap: 10px;
        /* Adds space between the image and text */
        transition: background 0.3s;
        font-family: "Montserrat";
    }

    .image-button:hover {
        background-color: #0056b3;
    }

    .btn-icon {
        width: 20px;
        /* Adjust based on your image size */
        height: 20px;
    }



    #footer_info {
        display: flex;
        gap: 0.5em;
        align-content: center;
        justify-content: space-around;
        margin: 1em 0;
        padding: 0.5em;

        background: rgba(255, 255, 255, .94);
        box-shadow: 0 9px 18px rgba(0, 0, 0, .12);
        color: #111a37;
        border-radius: 15px;
    }

    .info-item {
        display: flex;
        gap: 1em;
        align-content: center;
        padding: 1em 1em 1em 2em;

        /* border-left: 1px solid #2d3a5b; */

        border-left: 1px solid #D8DFEA;
        font-family: 'Inter', sans-serif;
        font-size: 16px;
        font-weight: 500;
    }

    .info-item:first-child {
        border-left: none;
        padding: 1em;
    }

    .info-item-img img {
        width: 32px;
    }
}