/* ================ GOOGLE FONTS ============== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

@import url('https://cdn-uicons.flaticon.com/3.0.0/uicons-solid-rounded/css/uicons-solid-rounded.css');

/* ================ VARIABLES CSS ============= */
:root {
    --header-height: 4rem;

    /* ========= COLORS ======= */
    --body-color: #fff;
    --black-color: #000;
    --container-color: #EBEBEB;
    --text-color: #606060;
    --title-color: #111827;
    --footer-color: #212227;
    --button-color: #2563eb;
    --dark-bg-text-color: #e5e7eb;
    --bg-active-color: #e5f1ffeb;
    --bg-gray: #f9fafb;

    /* ========== FONT AND TYPOGRAPHY =========*/
    --body-font: "Outfit", sans-serif;
    --biggest-font-size: 2.5rem;
    --bigger-font-size: 2rem;
    --big-font-size: 1.75rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;

    /* ========== FONT WEIGHT =========*/
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;

    /* ========== Z INDEX =========*/
    --z-tooltip: 10;
    --z-fixed: 100;
}

/* ================ RESPONSIVER TYPOGRAPHY ================ */
@media screen and (min-width: 1150px) {
    :root {
        --biggest-font-size: 3.5rem;
        --bigger-font-size: 2.25rem;
        --big-font-size: 2rem;
        --h1-font-size: 1.75rem;
        --h2-font-size: 1.5rem;
        --h3-font-size: 1.25rem;
        --normal-font-size: 1rem;
        --small-font-size: .875rem;
        --smaller-font-size: .813rem;

        --header-height: 5.5rem
    }
}


/* ========== BASE ========= */
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body,
button,
input {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    color: var(--text-color);
}

body {
    background-color: var(--body-color);
}

button,
input {
    outline: none;
    border: none;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}

/* ========== REUSABLE CSS ========= */
.main {
    overflow: hidden;
}

.section {
    padding-block: 3rem 1rem;
}

.container {
    max-width: 1120px;
    margin-inline: 1.5rem;
}

.flex {
    display: flex;
    flex-direction: column;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

/* ============== HEADER ============ */

.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--z-fixed);
    background-color: var(--body-color);
    border-bottom: 1px solid var(--dark-bg-text-color);
}

.nav_btn {
    display: none;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.nav_logo {
    display: flex;
    align-items: center;
    column-gap: .5rem;
    font-size: var(--h2-font-size);
}

.nav_logo i {
    color: var(--button-color);
    font-size: var(--h1-font-size);
}

.nav_logo p {
    color: var(--title-color);
    font-weight: var(--font-semi-bold);
}

.nav_toggle,
.nav_close {
    color: var(--title-color);
    font-size: var(--h1-font-size);
    cursor: pointer;
}

@media screen and (max-width: 1150px) {
    .nav_menu {
        position: fixed;
        top: -100%;
        left: 0;
        background-color: var(--body-color);
        backdrop-filter: blur(32px);
        width: 100%;
        padding: 2rem 4rem;
        border-bottom: 1px solid var(--dark-bg-text-color);
        transition: .5s;
    }
}

.show_menu {
    top: 0;
}

.nav_close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.nav_list {
    row-gap: .5rem;
}

.nav_link {
    font-size: var(--h3-font-size);
    color: var(--text-color);
    font-weight: var(--font-medium);
    transition: .5s;
}

.nav_link:hover {
    color: var(--button-color);
}

/* ========= HOME ========== */
.home {
    padding-top: 6rem;
    padding-bottom: 4rem;
    background: #e0e4ff;
    background: linear-gradient(148deg, rgba(224, 228, 255, 0.5) 0%, rgba(255, 255, 255, 1) 100%, rgba(255, 255, 255, 1) 100%, rgba(255, 255, 255, 1) 100%);
}

.home_span {
    width: max-content;
    padding: 0.5rem;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    column-gap: .5rem;
    color: var(--button-color);
    background-color: var(--bg-active-color);
}

.home_title {
    margin-block: 1rem;
    line-height: 2.5rem;
    color: var(--title-color);
    font-size: var(--biggest-font-size);
}

.home_title span {
    color: var(--button-color);
}

.home_text {
    font-size: var(--h2-font-size);
    font-weight: var(--font-light);
    margin-bottom: 1rem;
}

.home_btns {
    row-gap: 1rem;
    margin-bottom: 2rem;
}

.home_btn1 {
    width: 100%;
    background-color: var(--button-color);
    padding: .5rem 1rem;
    color: var(--body-color);
    display: flex;
    align-items: center;
    column-gap: .5rem;
    font-size: var(--h3-font-size);
    transition: .5s;
}

.home_btn2 {
    width: 100%;
    padding: .5rem 1rem;
    font-size: var(--h3-font-size);
    border: 2px solid var(--button-color);
    color: var(--button-color);
    font-weight: var(--font-medium);
    transition: .5s;
}

.home_btn2:hover {
    background-color: var(--bg-active-color);
}

.home_btn1 i {
    transition: .5s;
}

.home_btn1:hover i {
    transform: translateX(.25rem);
}

.home_btn1:hover {
    background-color: #1b58da;
}

.home_ex {
    border-top: 1px solid var(--dark-bg-text-color);
    padding-block: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    column-gap: 1rem;
}

.home_box {
    align-items: center;
    justify-content: center;
}

.home_box i {
    font-size: var(--h1-font-size);
    color: var(--button-color);
}

.home_box h4 {
    color: var(--title-color);
    font-size: var(--big-font-size);
}

.home_box p {
    font-weight: var(--font-light);
}

.home_img_div {
    margin-top: 2rem;
    width: 100%;
    height: 375px;
    border-radius: 1.5rem;
    background-color: #00000023;
    position: relative;
}

.home_img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 300px;
    border-radius: 1.5rem;
}

.home_img img {
    object-position: top;
    border-radius: 1.5rem;
}

.circle1 {
    width: 100px;
    height: 100px;
    background-color: #60606075;
    border-radius: 1.5rem;
    position: absolute;
    top: -1rem;
    left: -1rem;
    z-index: var(--z-tooltip);
}

.circle2 {
    width: 150px;
    height: 150px;
    background-color: #cfc8c875;
    border-radius: 50%;
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    z-index: var(--z-tooltip);
}

/* ========= ABOUT ========= */
.about_img_div {
    margin-block: 1rem;
    height: 300px;
    width: 100%;
    position: relative;
}

.about_img img {
    border-radius: 1.5rem;
}

.about_img {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 1.5rem;
    width: 350px;
    height: 250px;
    position: relative;
}

.about_img::after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    right: -5rem;
    border-radius: 1.5rem;
    background: #60606075;
    background: linear-gradient(141deg, rgba(96, 96, 96, 0.5) 0%, rgba(255, 255, 255, 1) 100%, rgba(255, 255, 255, 1) 100%, rgba(255, 255, 255, 1) 100%);
}

.about_img_box {
    align-items: center;
    padding: 1rem;
    background-color: var(--body-color);
    border-radius: 1.5rem;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    width: max-content;
    position: absolute;
    bottom: 0;
    right: 1rem;
}

.about_img_box h4 {
    color: var(--button-color);
    font-size: var(--h1-font-size);
}

.about_span {
    padding-inline: 1rem;
    font-weight: var(--font-regular);
}

.about_ex {
    grid-template-columns: repeat(2, 1fr);
    margin-block: 2rem;
}

.about_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: var(--bg-active-color);
    padding: 1rem;
    border-radius: 1.5rem;
    transition: .5s;
}

.about_card:hover {
    background-color: #ced4ff;
}

.about_card h4 {
    color: var(--title-color);
    font-size: var(--h3-font-size);
    font-weight: var(--font-medium);
}

.about_card i {
    font-size: var(--h1-font-size);
    color: var(--button-color);
}

/* ========= SERVICES ======= */

.services {
    padding-block: 3rem;
    background-color: rgba(245, 245, 245, 0.4);
}

.services_title {
    align-items: center;
    text-align: center;
}

.services_grid {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 2rem;
}

.services_data {
    background-color: var(--body-color);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    row-gap: .5rem;
}

.services_data i {
    background-color: var(--bg-active-color);
    width: max-content;
    font-size: var(--biggest-font-size);
    padding: .5rem 1rem;
    border-radius: 1.5rem;
    color: var(--button-color);
    transition: .5s;
}

.services_data:hover i {
    background-color: var(--button-color);
    color: var(--body-color);
}

.services_data h3 {
    color: var(--title-color);
    font-size: var(--h2-font-size);
}

.services_data p {
    font-size: var(--h3-font-size);
    font-weight: var(--font-light);
}

.services_data_list {
    list-style: disc;
}

.services_data_list li::marker {
    color: var(--button-color);
    font-size: var(--h2-font-size);
}

.services_data_list li {
    color: var(--text-color);
}

.services_banner {
    margin-top: 2rem;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background-color: var(--button-color);
    width: 100%;
    row-gap: .5rem;
    border-radius: 1.5rem;
}

.services_banner h2 {
    font-size: var(--h1-font-size);
    font-weight: var(--font-semi-bold);
    color: var(--body-color);
}

.services_banner p {
    color: whitesmoke;
    font-weight: var(--font-light);
}

.banner_btn {
    background-color: var(--body-color);
    padding: 1rem 2rem;
    margin-top: 1rem;
    font-weight: var(--font-medium);
    color: var(--button-color);
    font-size: var(--h3-font-size);
    transition: .5s;
}

.banner_btn:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

/* ========= CUSTOMERS ========= */
.cust {
    padding-block: 4rem;
}

.cust_grid {
    margin-top: 2rem;
    grid-template-columns: repeat(1, 1fr);
}

.cust_data {
    padding: 1rem;
    background-color: rgba(245, 245, 245, 0.6);
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    row-gap: .5rem;
    transition: .5s;
}

.cust_data:hover {
    background-color: var(--bg-active-color);
}

.cust_i_1 {
    font-size: var(--bigger-font-size);
    color: var(--button-color);
}

.stars_i {
    color: orange;
    font-size: var(--h3-font-size);
}

.cust_test {
    font-size: var(--h2-font-size);
    font-weight: var(--font-light);
    margin-bottom: 1rem;
}

.cust_profile {
    display: flex;
    align-items: center;
    column-gap: .5rem;
}

.cust_names h4 {
    color: var(--title-color);
    font-size: var(--normal-font-size);
}

.cust_names p {
    font-weight: var(--font-light);
    font-size: var(--small-font-size);
}

.prof_img {
    width: 60px;
    height: 60px;
    border-radius: 1.5rem;
}

.prof_img img {
    object-position: top;
    border-radius: 1.5rem;
}

.cust_banner {
    margin-top: 2rem;
    background-color: var(--button-color);
    padding: 1.5rem;
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 1rem;
}

.cust_banner_data {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cust_banner_data h2 {
    color: var(--body-color);
    font-size: var(--bigger-font-size);
}

.cust_banner_data p {
    color: whitesmoke;
    font-weight: var(--font-light);
    font-size: var(--small-font-size);
}

/* ========== FOOTER ======== */

.footer {
    padding-block: 3rem;
    background-color: var(--footer-color);
}

.footer_grid {
    grid-template-columns: repeat(1, 1fr);
}

.footer_data {
    row-gap: .5rem;
}

.footer_logo {
    display: flex;
    align-items: center;
    column-gap: .5rem;
}

.footer_logo i {
    color: var(--button-color);
    font-size: var(--h1-font-size);
}

.footer_logo p {
    font-size: var(--h2-font-size);
    color: var(--body-color);
    font-weight: var(--font-medium);
}

.footer_text {
    color: var(--dark-bg-text-color);
    font-weight: var(--font-light);
    font-size: var(--normal-font-size);
}

.footer_social {
    display: flex;
    align-items: center;
    column-gap: 1.5rem;
    font-size: var(--h2-font-size);
    color: var(--dark-bg-text-color);
}

.footer_social i {
    transition: .5s;
    cursor: pointer;
}

.footer_social i:hover {
    color: var(--body-color);
}

.footer_data h4 {
    color: var(--body-color);
    font-size: var(--h2-font-size);
}

.footer_list li {
    display: flex;
    align-items: center;
    column-gap: .5rem;
    color: var(--dark-bg-text-color);
    font-weight: var(--font-regular);
    transition: .5s;
    cursor: pointer;
}

.footer_list li:hover {
    color: var(--body-color);
}

.footer_list li i {
    color: var(--button-color);
    font-size: var(--h3-font-size);
}

.footer_copy {
    margin-top: 1rem;
    padding-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--small-font-size);
    border-top: 1px solid var(--text-color);
}

@media screen and (min-width: 1150px) {

    .container {
        max-width: 1720px;
        margin-inline: 3rem;
    }

    .nav_close,
    .nav_toggle {
        display: none;
    }

    .nav_btn {
        display: block;
        padding: .5rem 1rem;
        background-color: var(--button-color);
        color: var(--body-color);
        font-size: var(--h3-font-size);
        transition: .5s;
    }

    .nav_list {
        flex-direction: row;
        column-gap: 1.5rem;
    }

    .nav_link {
        font-size: var(--normal-font-size);
    }

    .home {
        padding-top: 7rem;
    }

    .home_container {
        display: flex;
        align-items: center;
        justify-content: center;
        column-gap: 4rem;
    }

    .home_desc {
        width: 600px;
    }

    .home_title {
        line-height: 3.5rem;
    }

    .home_btns {
        flex-direction: row;
        column-gap: 2rem;
    }

    .home_img_div {
        width: 450px;
    }

    .about_container {
        display: flex;
        align-items: center;
        column-gap: 3rem;
        padding-top: 3rem;
    }

    .about_img_div {
        width: 500px;
    }

    .about_desc {
        width: 800px;
    }

    .services_grid {
        grid-template-columns: repeat(3, 400px);
        align-items: center;
        justify-content: center;
    }

    .services_data i {
        font-size: var(--bigger-font-size);
    }

    .services_banner {
        max-width: 1000px;
        margin-inline: auto;
    }

    .cust_grid {
        grid-template-columns: repeat(3, 400px);
        align-items: center;
        justify-content: center;
    }

    .cust_test {
        font-size: var(--h3-font-size);
    }

    .cust_banner {
        flex-direction: row;
        column-gap: 2.5rem;
        max-width: 800px;
        margin-inline: auto;
        justify-content: space-evenly;
    }

    .footer_grid {
        grid-template-columns: repeat(3, 1fr);
    }
}