/* @import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Archivo+Narrow:ital,wght@0,400..700;1,400..700&family=Audiowide&family=Black+Ops+One&family=Cairo:wght@200..1000&family=Geologica:wght@100..900&family=Mukta:wght@200;300;400;500;600;700;800&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Orbitron:wght@400..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Saira:ital,wght@0,100..900;1,100..900&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
    --theme-color: #354F52;
    --white-color: #ffffff;
    --black-color: #021629;
    --dark-gray: #5C5C5C;
    --light-gray: #d8d6d6;

    /*========== Font and typography ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    --big-font-size: 3.2rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.813rem;
    --tiny-font-size: 0.625rem;

    /*========== Margenes Bottom ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    --mb-0-25: 0.25rem;
    --mb-0-5: 0.5rem;
    --mb-0-75: 0.75rem;
    --mb-1: 1rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;
    --mb-3: 3rem;

    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
    --z-modal: 1000;

    /* ========== Header height ========== */
    --header-height: 4.5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    background-color: var(--white-color);
    background-color: #fafafa;
    color: var(--black-color);
    scroll-behavior: smooth;
    font-family: "Open Sans", sans-serif;
    /* font-family: "Roboto", serif; */
    /* font-family: "Cairo", serif; */
}

html {
    scroll-behavior: smooth;
}

a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
}

ul {
    list-style: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.section {
    /* padding: 0; */
    padding: 80px 0 60px 0;
}

.dark_section {
    background-color: var(--theme-color);
    color: var(--white-color);
}

.section__title {
    font-size: var(--h1-font-size);
    color: var(--theme-color);
    position: relative;
}

.dark_section .section__title {
    color: var(--white-color);
}

/* .section__title::after {
    content: '';
    background-color: var(--theme-color);
    display: block;
    width: 80px;
    height: 3px;
    position: absolute;
    bottom: -10px;
    border-radius: 5px;
} */

.section__title,
.section__subtitle {
    text-align: center;
    text-align: left;
}

.section__subtitle {
    display: block;
    margin-bottom: 2.5rem;
    font-size: var(--normal-font-size);
    color: var(--dark-gray);
    font-weight: 500;
    line-height: 1.5;
    margin-top: 10px;
}

.dark_section .section__subtitle {
    color: var(--light-gray);
}

.section_title_container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

/*=============== LAYOUT ===============*/
.container {
    max-width: 968px;
    margin-left: auto;
    margin-right: auto;
    /* border: 1px solid red; */
}

.wide_container {
    /* border: 1px solid red; */
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

/*=============== BREAKPOINTS ===============*/
/* For laptop devices */
@media screen and (max-width: 992px) {
    .container {}

    .section {
        padding: 100px 10px;
        text-align: center;
    }

    .section__title::after {
        height: 0;
    }

    .section__title {
        margin-bottom: 20px;
        font-size: calc(var(--h2-font-size) + 8px);
        text-align: center;
    }

    .section__subtitle {
        margin-bottom: 2.5rem;
        font-size: var(--normal-font-size);
    }
}

/* For medium devices */
@media screen and (max-width: 768px) {
    :root {
        --big-font-size: 2.50rem;
    }

    .section__title {
        /* margin-bottom: 20px; */
        font-size: calc(var(--h2-font-size) + 4px);
        text-align: center;
    }

    .section__subtitle {
        /* margin-bottom: 2.5rem; */
        font-size: var(--h3-font-size);
        text-align: center;
    }
}

/* For small devices */
@media screen and (max-width: 350px) {
    :root {
        --big-font-size: 2.25rem;
    }

    .container {
        margin-left: var(--mb-1);
        margin-right: var(--mb-1);
    }
}

/* =============== HEADER START ===============*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 100;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    background-color: transparent;
    background-color: var(--white-color);
    color: var(--theme-color);
    /* border-top: 4px solid var(--theme-color); */
    z-index: 100000;
}

.header_logo {
    width: 180px;
    height: 45px;
    cursor: pointer;
    margin-right: 15px;
}

.header_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    /* padding: 0 10px; */
}

.header_menu {
    display: flex;
    align-items: center;
    column-gap: 8px;
}

.header_menu_item a {
    font-size: var(--h3-font-size);
    color: var(--dark-gray);
    padding: 10px 10px;
    font-weight: 600;
    transition: transform 0.3s ease, color 0.5s ease, border 0.5s ease;
    border: 3px solid transparent;
}

.header_menu_item a:hover {
    /* color: var(--black-color); */
    border-bottom: 3px solid var(--theme-color);
    transition: 0.5s;
    color: var(--theme-color);
    cursor: pointer;
}

.app_logo {
    height: 40px;
}

.humburger_menu {
    display: none;
    cursor: pointer;
    color: var(--theme-color);
    font-weight: bold;
    z-index: 1000;
    font-size: var(--normal-font-size);
    /* border: 1px solid var(--theme-color); */
}

.humburger_menu_section {
    color: var(--theme-color);
    font-weight: 500;
    background-color: var(--white-color);
    /* border-top: 6px solid var(--theme-color); */
    padding: 20px;
    height: 100%;
    width: 300px;
    position: fixed;
    left: -300px;
    top: 0;
    z-index: 1000;
    transition: 0.5s;
}

.humburger_menu_close {
    position: relative;
}

.hamburger_menu_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0 20px 0;
    /* border-bottom: 1px solid var(--theme-color); */
}

.hamburger_menu_top i {
    font-size: calc(var(--h2-font-size) + 4px);

    /* font-size: var(--h2-font-size); */
    /* margin-right: 20px; */
}

.humburger_menu_list_div {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    height: 100%;
}

.humburger_menu_list {
    height: auto;
    width: 100%;
    margin-left: 0px;
}

.humburger_menu_list_item {
    padding: 10px;
    cursor: pointer;
    font-size: calc(var(--normal-font-size) + 4px);
}

.humburger_menu_list_item a {
    color: var(--theme-color);
    transition: transform 0.3s ease, color 0.3s ease;
}

/*=============== BREAKPOINTS ===============*/
/* For laptop devices */
@media screen and (max-width: 992px) {
    .header_container {
        padding: 0 20px;
        width: 100%;
    }

    .header_logo {
        height: 38px;
    }

    .header_menu {
        display: none
    }

    .humburger_menu {
        display: block;
    }
}

/* For medium devices */
@media screen and (max-width: 768px) {
    .header_container {
        padding: 0 20px;
        width: 100%;
    }
}

/* For small devices */
@media screen and (max-width: 350px) {
    .header_menu {
        display: none
    }

    .humburger_menu {
        display: block;
    }

    .header_container {
        padding: 0 20px;
        width: 100%;
    }
}

/* =============== HEADER END ============== */


/*=============== HERO HOME PAGE START ===============*/

.home_main {
    background: rgba(0, 0, 0, 0.6) url("/asset/hero-section-bg.png");
    background-size: cover;
    background-blend-mode: darken;
    height: 100vh;
    color: var(--white-color);
    padding: 0 1.5rem;
}

.home_main_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.home_head_line {
    font-size: calc(var(--h1-font-size) + 1rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.home_head_sub_line {
    font-size: var(--h3-font-size);
    line-height: 25px;
    margin-bottom: 0.5rem;
}

.home_quick_link {
    display: flex;
    gap: 20px;
}

/* =============================== */

/* .link_button {
    display: inline-block;
    padding: 1rem 1.5rem;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 0.6rem;
    font-size: var(--normal-font-size);
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    z-index: 1;
} */

/* Subtle dark overlay effect */
/* .link_button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease-in-out;
    z-index: -1;
    opacity: 0;
} */

/* Soft glowing hover effect */
/* .link_button:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 1);
    transform: scale(1.05);
}

.link_button:hover::before {
    opacity: 1;
} */

/* Optional: Icon subtle movement */
/* .link_button i {
    transition: transform 0.3s ease-in-out;
}

.link_button:hover i {
    transform: translateX(5px);
} */

/* =============================== */
.link_button {
    display: inline-block;
    font-size: var(--normal-font-size);
    font-weight: 600;
    color: #fff;
    padding: 1rem 1.5rem;
    margin-top: .5rem;
    border: .1rem solid #fff;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 0;
    transition: all 0.3s ease-in-out;
}

.link_button::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    background-color: #fff;
    transition: .4s linear;
    z-index: -1;

}

.link_button:hover:before {
    width: 100%;
    left: 0;
}

.link_button:hover {
    font-weight: 600;
    color: #354F52;
    transform: scale(1.05);
}

/*=============== BREAKPOINTS ===============*/
/* For laptop devices */
@media screen and (max-width: 992px) {
    .home_head_line {
        font-size: var(--h1-font-size);
        text-align: left;
        margin-bottom: 20px;
    }

    .home_quick_link {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

    .home_head_sub_line {
        text-align: left;
        margin-bottom: 30px;
    }
}

/* For medium devices */
@media screen and (max-width: 768px) {}

/* For small devices */
@media screen and (max-width: 350px) {
    .home_head_line {
        font-size: var(--h1-font-size);
        text-align: left;
    }

    .home_quick_link {
        text-align: left;
    }
}

/*=============== HERO HOME PAGE END ===============*/

/*=============== FEATURES START ===============*/
.feature_div {
    /* border: 1px solid var(--theme-color); */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Creates 3 equal columns */
    gap: 20px;
}

.feature {
    /* border: 1px solid var(--theme-color); */
    padding: 30px 12px;
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 30px;
    /* border: 1px solid rgba(0, 0, 0, 0.1); */
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

.feature:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease-in-out;
}

.feature i {
    font-size: 60px;
    margin-bottom: 40px;
    color: var(--theme-color);
}

.feature h3 {
    font-size: 19px;
    margin-bottom: 10px;
    color: var(--theme-color);
}

.feature p {
    font-size: 14px;
    color: var(--dark-gray);
}

/*=============== BREAKPOINTS ===============*/
/* For laptop devices */
@media screen and (max-width: 992px) {
    .feature_div {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }

    .feature {
        box-shadow: none;
        border: 1px solid rgba(0, 0, 0, 0.1);
    }
}

/* For medium devices */
@media screen and (max-width: 768px) {}

/* For small devices */
@media screen and (max-width: 350px) {
    .home_head_line {
        font-size: var(--h1-font-size);
    }
}

/*=============== FEATURES END ===============*/

/*=============== FOOTER START ===============*/
.main_footer_div {
    background-color: var(--white-color);
    color: var(--theme-color);
    padding: 50px 0 20px 0;
    width: 100%;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 0.5px solid var(--light-gray);
}

.colom {
    flex: 1;
    padding: 1.5rem 0.5rem;
    /* border: 1px solid var(--white-color); */
}

.colom p {
    font-weight: 700;
    font-size: 18px;
}

.colom .sub_logo_text {
    font-weight: normal;
    margin-top: 10px;
    font-size: 16px;
}

.footer_logo_container {
    min-width: 400px;
}

.footer_logo {
    font-size: var(--h1-font-size);
    margin-bottom: 4px;
}

.footer_logo img {
    width: 180px;
}

.social_icon {
    color: var(--theme-color);
    padding: 3px;
}

.social_icon:hover {
    cursor: pointer;
    transform: translateY(-5px);
    transition: all 0.3s ease-in-out;
}

.footer_title {
    color: var(--theme-color);
    margin-bottom: var(--mb-1);
    font-size: var(--h3-font-size);
    position: relative;
    font-weight: 500;
}

.footer_title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--white-color);
    margin: 0 auto;
    position: absolute;
    bottom: -12px;
    left: 0;
}

.footer_list {
    color: var(--theme-color);
    margin-bottom: var(--mb-0-5);
    cursor: pointer;
    font-size: var(--small-font-size);
    transition: 0.3s;
}

.footer_list i {
    margin-right: 5px;
    transition: 0.3s;
}

.footer_list:hover {
    transform: translateX(5px);
    font-weight: bold;
}

.footer_list:hover i {
    transform: translateX(-5px);
}


.footer_list_contact {
    /* color: var(--white-color); */
    margin-bottom: var(--mb-0-5);
    cursor: pointer;
    font-size: var(--normal-font-size);
    display: inline-flex;
    align-items: center;
    color: var(--theme-color);
}

.footer_list_contact i {
    margin-right: 15px;
    font-size: var(--h3-font-size);
}

.footer_list a {
    color: var(--theme-color);
    margin-left: 5px;
    font-weight: 600;
}

.padding_left {
    margin-left: 10rem;
}

.copyright {
    color: var(--theme-color);
    text-align: center;
    padding-top: 15px;
    font-size: var(--small-font-size);
    font-weight: 500;
}

/*=============== BREAKPOINTS ===============*/
/* For laptop devices */
@media screen and (max-width: 992px) {
    .row {
        flex-direction: column;
        gap: 20px;
        padding: 0 10px;
    }

    .colom {
        text-align: left;
    }

    .footer_logo_container {
        min-width: 100%;
    }
}

/* For medium devices */
@media screen and (max-width: 768px) {
    .footer_logo_container {
        min-width: 100%;
    }
}

/* For small devices */
@media screen and (max-width: 350px) {
    .row {
        flex-direction: column;
        gap: 30px;
        text-align: left;
    }

    .footer_logo_container {
        min-width: 100%;
    }
}

/*=============== FOOTER END ===============*/

/*=============== BENEFITS START ===============*/

.benifit_div {
    /* border: 1px solid rgba(0, 0, 0, 0.1); */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
}

.benifit {
    /* border: 1px solid rgba(0, 0, 0, 0.1); */
    background-color: #f9f9f9;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    padding: 10px;

}

.benifit_left {
    width: 70px;
    height: 70px;
    /* border: 1px solid rgba(0, 0, 0, 0.1); */
    border-radius: 15px;
    margin-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background-color: rgba(0, 0, 0, 0.1);
}

.benifit_left i {
    font-size: var(--h1-font-size);
    /* color: rgba(0, 0, 0, 0.5); */
    color: var(--theme-color);
}

.benifit:hover i {
    color: var(--theme-color);
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}

.benifit_right {
    flex: 1;
    text-align: left;
}

.benifit_title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--theme-color);
}

.benifit_text {
    font-size: 13px;
    color: var(--dark-gray);
}

/*=============== BREAKPOINTS ===============*/
/* For laptop devices */
@media screen and (max-width: 992px) {
    .benifit_div {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }
}

/* For medium devices */
@media screen and (max-width: 768px) {}

/* For small devices */
@media screen and (max-width: 350px) {
    .row {
        flex-direction: column;
        gap: 30px;
        text-align: left;
    }
}

/*=============== BENEFITS END ===============*/

/*=============== DOWNLOAD START ===============*/
.download_section {
    padding: 120px 0 80px 0;
}

.download_container {
    background-color: #354F52;
    padding: 70px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border-radius: 20px;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: rotate(-1.5deg);
    position: relative;
    overflow: hidden;
}

.download_container_inner {
    transform: rotate(1.5deg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.download_container_inner h2 {
    font-size: 18px;
    color: var(--white-color);
    margin-bottom: 20px;
}

.download_container_inner h1 {
    font-size: 40px;
    color: var(--white-color);
    margin-bottom: 20px;
}

.download_container_inner p {
    font-size: 18px;
    color: var(--light-gray);
}

.download_right {
    display: flex;
    align-items: center;
    gap: 15px;
    /* flex-direction: column; */
}

.download_link:hover {
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}

/*=============== BREAKPOINTS ===============*/
/* For laptop devices */
@media screen and (max-width: 992px) {
    .download_section {
        padding: 120px 0 80px 0;
        margin: 0 10px;
    }

    .download_container {
        padding: 50px 25px;
        transform: rotate(0deg);
    }

    .download_container_inner {
        transform: rotate(0deg);
        flex-direction: column;
        gap: 60px;
    }

    .download_container_inner h1 {
        font-size: 36px;
        color: var(--white-color);
        margin-bottom: 30px;
    }

    .download_container_inner p {
        font-size: 18px;
        color: var(--light-gray);
    }
}

/* For medium devices */
@media screen and (max-width: 768px) {}

/* For small devices */
@media screen and (max-width: 350px) {
    .row {
        flex-direction: column;
        gap: 30px;
        text-align: left;
    }
}

/*=============== DOWNLOAD END ===============*/

/*=============== HOW IT WORKS   START ===============*/
.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}

.illatruation img {
    width: 260px;
    border-radius: 30px;
    border: 3px solid var(--white-color);
    padding: 5px;
}

.steps-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.step {
    display: flex;
    align-items: center;
    background-color: white;
    color: #354F52;
    padding: 20px;
    width: 90%;
    height: 120px;
    /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15); */
    /* box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1); */
    position: relative;
    transition: all 0.3s ease-in-out;
    margin-bottom: 25px;
    border-top-left-radius: 60px;
    border-bottom-left-radius: 60px;
    border-top-right-radius: 60px;
    border-bottom-right-radius: 60px;
}

.step:hover {
    transform: translateY(-5px);
    /* box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.2); */
    transition: all 0.3s ease-in-out;
}

.step-icon {
    font-size: 34px;
    font-weight: bold;
    background: #354F52;
    color: var(--white-color);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content {
    text-align: left;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.step p {
    font-size: 16px;
    color: #555;
}

/*=============== BREAKPOINTS ===============*/
/* For laptop devices */
@media screen and (max-width: 992px) {}

/* For medium devices */
@media (max-width: 768px) {
    .wrapper {
        flex-direction: column;
    }

    .step {
        width: 100%;
        height: 160px;
        border-top-left-radius: 40px;
        border-bottom-left-radius: 40px;
        border-top-right-radius: 40px;
        border-bottom-right-radius: 40px;
    }

    .step h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .step p {
        font-size: 12px;
        color: #555;
    }

    .step-icon {
        font-size: 24px;
        width: 70px;
        height: 70px;
    }

}

/* For small devices */
@media screen and (max-width: 350px) {}

/*=============== HOW IT WORKS END ===============*/

/*=============== FAQs START ===============*/
.faq_div {
    margin: 0 auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
}

.faq_list {
    list-style: none;
    padding: 0;
}

.faq_item {
    margin-bottom: 10px;
    padding: 10px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
}

.faq_question {
    font-size: 18px;
    font-weight: bold;
    color: #006971;
    cursor: pointer;
    margin: 0;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq_arrow {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.faq_answer {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    display: none;
    padding: 10px;
    text-align: left;
}

.faq_answer a {
    color: #006971;
    text-decoration: none;
    font-weight: 600;
}

.faq_answer a:hover {
    text-decoration: underline;
}

.faq_item.active .faq_arrow {
    transform: rotate(180deg);
}

.faq_more {
    margin-top: 24px;
    text-align: center;
}

.faq_button {
    display: inline-block;
    font-size: 16px;
    padding: 0.8rem 1.2rem;
    background: #006971;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    transition: 0.3s ease;
}

.faq_button:hover {
    background: #004d4d;
}

/*=============== FAQs END ===============*/