@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
    --thm-font: "Inter", sans-serif;
    --thm-font-2: "reeyregular";
    --thm-base: #ff7a00;
    --thm-base-rgb: 255, 122, 0;
    --thm-primary: #182978;
    --thm-primary-rgb: 24, 41, 120;
    --thm-gray: #515151;
    --thm-gray-rgb: 81, 81, 81;
    --thm-white: #ffffff;
    --thm-white-rgb: 255, 255, 255;
    --thm-black: #202020;
    --thm-black-rgb: 32, 32, 32;
    --thm-gray-bg: #f5f5f5;
    --thm-main-bg: #202020;
}

:root {
    --swiper-theme-color: #007aff;
}

:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
        "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(180deg,
            rgba(255, 255, 255, 0.15),
            rgba(255, 255, 255, 0));
}

* {
    box-sizing: border-box;
}

* {
    margin: 0;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    font-family: var(--thm-font);
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

#root,
#__next {
    isolation: isolate;
}


.page-name {
    width: 100%;
    height: 350px;
    background: url(../images/IMG_8529.jpg);
    background-size: cover;

    .cover {
        width: 100%;
        height: 100%;
        display: flex;
        font-size: 35px;
        color: var(--thm-white);
        font-weight: 800;
        align-items: center;
        padding-left: 70px;
        background-color: rgba(0, 0, 0, 0.7);
    }
}


.secure {
    width: 100%;
    height: fit-content;
    padding-top: 20px;
    padding-bottom: 120px;
    padding-left: 80px;
    padding-right: 80px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.9);


    .secure-head {
        width: 100%;
        height: 300px;
        padding-top: 100px;


        .detail1 {
            width: 100%;
            height: 50px;
            display: flex;
            justify-content: center;
            align-items: center;

            p {
                color: var(--swiper-theme-color);
                font-weight: 600;

                i {
                    color: var(--thm-base);
                }
            }
        }

        .detail2 {
            width: 100%;
            height: 60px;
            display: flex;
            justify-content: center;
            align-items: center;

            h2 {
                font-weight: 800;
                color: var(--thm-black);
                font-size: 50px;
            }
        }

        .detail3 {
            width: 100%;
            height: 70px;
            display: flex;
            justify-content: center;
            align-items: center;

            p {
                color: var(--thm-black);
                font-weight: 600;
                font-size: 18px;
            }
        }
    }

    .secure-body {
        width: 100%;
        height: fit-content;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;


        .currency {
            height: 600px;
            background-color: var(--thm-primary);
            box-shadow:
                0px -5px 10px rgba(0, 0, 0, 0.1),
                /* Top */
                5px 0px 10px rgba(0, 0, 0, 0.1),
                /* Right */
                0px 5px 10px rgba(0, 0, 0, 0.1),
                /* Bottom */
                -5px 0px 10px rgba(0, 0, 0, 0.1);
            /* Left */

            /* This styling is for the middle container that have different currency color */

            &:nth-child(2) {
                .top {
                    width: 100%;
                    height: 50%;
                    background-color: var(--thm-gray-bg);
                    padding: 35px;

                    .second-currency {
                        width: fit-content;
                        height: fit-content;
                        display: flex;


                        p {
                            font-size: 16px;
                            color: var(--thm-white);
                            background-color: var(--thm-base);
                            font-weight: 600;
                            padding: 5px 20px;
                        }
                    }

                }
            }

            .top {
                width: 100%;
                height: 50%;
                background-color: var(--thm-gray-bg);
                padding: 35px;

                .second-currency {
                    width: fit-content;
                    height: fit-content;
                    display: flex;


                    p {
                        font-size: 16px;
                        color: var(--thm-white);
                        background-color: var(--thm-primary);
                        font-weight: 600;
                        padding: 5px 20px;
                    }
                }

                h2 {
                    margin-top: 30px;
                    color: var(--bs-gray-dark);
                }

                p {
                    margin-top: 15px;
                    color: var(--bs-gray)
                }
            }

            .down {
                width: 100%;
                height: 50%;

                img {
                    width: 100%;
                    height: 100%;
                }
            }
        }
    }
}

/* DREAMS CONTAINER STARTS HERE */

.dreams {
    width: 100%;
    height: fit-content;
    padding-top: 20px;
    padding-bottom: 120px;
    padding-left: 80px;
    padding-right: 80px;
    background-color: var(--thm-gray-bg);

    .dreams-head {
        width: 100%;
        height: 300px;
        padding-top: 100px;


        .detail1 {
            width: 100%;
            height: 50px;
            display: flex;
            justify-content: center;
            align-items: center;

            p {
                color: var(--swiper-theme-color);
                font-weight: 600;

                i {
                    color: var(--thm-base);
                }
            }
        }

        .detail2 {
            width: 100%;
            height: 60px;
            display: flex;
            justify-content: center;
            align-items: center;

            h2 {
                font-weight: 800;
                color: var(--thm-black);
                font-size: 50px;
            }
        }

        .detail3 {
            width: 100%;
            height: 70px;
            display: flex;
            justify-content: center;
            align-items: center;

            p {
                color: var(--thm-black);
                font-weight: 600;
                font-size: 18px;
            }
        }
    }

    .dreams-body {
        width: 100%;
        height: fit-content;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        padding-top: 40px;
    }

    .tax,
    .business {
        height: 180px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--thm-base);
        border-bottom: 5px solid var(--thm-primary);
        padding: 20px 30px;
        color: var(--thm-white);
        font-weight: 600;
        font-size: 18px;
    }

    .trading,
    .gold {
        height: 180px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--thm-primary);
        border-bottom: 5px solid var(--thm-base);
        padding: 20px 30px;
        color: var(--thm-white);
        font-weight: 600;
        font-size: 18px;
    }
}


/* DOWNLOADS STARTS HERE */

.download {
    width: 100%;
    height: fit-content;
    background-color: var(--thm-gray-bg);
    background: url(../images/easy.JPG);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    


    .download-head {
        width: 100%;
        height: fit-content;
        padding-top: 100px;
        padding-bottom: 80px;
        background-color: #182a78ce;


        .detail1 {
            width: 100%;
            height: 40px;
            display: flex;
            justify-content: center;
            align-items: center;

            p {
                color: var(--swiper-theme-color);
                font-weight: 600;

                i {
                    color: var(--thm-base);
                }
            }
        }

        .detail2 {
            width: 100%;
            height: 60px;
            display: flex;
            justify-content: center;
            align-items: center;

            h2 {
                font-weight: 800;
                color: var(--thm-white);
                font-size: 50px;
            }
        }

        .detail3 {
            width: 70%;
            height: 100px;
            margin: auto;

            p {
                color: var(--thm-white);
                font-weight: 600;
                font-size: 18px;
                text-align: center;
                margin-top: 15px;
            }
        }

        .down {
            width: 100%;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;


            a {
                text-decoration: none;
                color: var(--thm-white);
            }

            p {
                position: relative;
                background-color: var(--thm-white);
                padding: 25px 45px;
                font-weight: 700;
                color: var(--thm-black);
                overflow: hidden;
                transition: background-color 0.3s ease, color 0.3s ease;
                z-index: 1;

                i {
                    margin-right: 5px;
                    font-size: 20px;
                }
            }

            p::after {
                content: "";
                position: absolute;
                top: 0;
                right: -100%;
                width: 100%;
                height: 100%;
                background-color: var(--thm-black);
                transition: right 0.7s ease;
                z-index: -1;
            }

            p:hover::after {
                right: 0;
                /* Slide the background in */
            }

            p:hover {
                background-color: #6c757d;
                /* Change background on hover */
                color: var(--thm-white);
                /* Change text color on hover */
            }

            p:hover i {
                /* Change background color of the icon */
                color: var(--thm-white);
                /* Change icon color */
            }

            i {
                /* Initial background color for the icon */
                transition: background-color 0.3s ease, color 0.3s ease;
            }
        }
    }
}

/* EASY STEPS */

.easy-steps {
    width: 100%;
    height: fit-content;
    padding-top: 20px;
    padding-bottom: 100px;
    padding-left: 80px;
    padding-right: 80px;


    .easy-head {
        width: 100%;
        height: 300px;
        padding-top: 100px;


        .detail1 {
            width: 100%;
            height: 50px;
            display: flex;
            justify-content: center;
            align-items: center;

            p {
                color: var(--swiper-theme-color);
                font-weight: 600;

                i {
                    color: var(--thm-base);
                }
            }
        }

        .detail2 {
            width: 100%;
            height: 60px;
            display: flex;
            justify-content: center;
            align-items: center;

            h2 {
                font-weight: 800;
                color: var(--thm-black);
                font-size: 50px;
            }
        }

        .detail3 {
            width: 100%;
            height: 70px;
            display: flex;
            justify-content: center;
            align-items: center;

            p {
                color: var(--thm-black);
                font-weight: 600;
                font-size: 18px;
            }
        }
    }

    .easy-body {
        width: 100%;
        height: fit-content;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 20px;
        padding-top: 20px;

        .consult,
        .dept,
        .start {
            height: 200px;
            background-color: var(--thm-white);
            display: flex;
            align-items: center;

            .left {
                width: 20%;
                height: 40%;
                display: flex;
                justify-content: center;
                align-items: center;
                background-color: var(--thm-white);
                transition: background-color 0.7s ease;
                box-shadow: -5px -5px 10px rgba(0, 0, 0, 0.1),
                    5px 5px 10px rgba(0, 0, 0, 0.1);


                    p{
                        font-size: 40px;
                        font-weight: 800;
                        color: var(--thm-primary);
                    }

            }

            .right {
                width: 80%;
                height: 100%;
                display: block;
                justify-content: center;
                align-items: center;
                background-color: var(--thm-gray-bg);
                padding: 25px 35px;


                h2{
                    color: var(--thm-black);
                }

                p{
                    margin-top: 20px;
                    color: var(--bs-gray);
                    font-weight: 500;
                }
            }
        }

        .consult:hover .left, .dept:hover .left, .start:hover .left{
            background-color: var(--thm-base);

            p{
                color: var(--thm-white);
            }
        }
    }
}
