/* styles.css */
@font-face {
    font-family: jetbrain-regular;
    src: url("/assets/fonts/JetBrainsMono-Regular.woff2");
    font-display: fallback;
}

@font-face {
    font-family: jetbrain-bold;
    src: url("/assets/fonts/JetBrainsMono-Bold.woff2");
    font-display: fallback;
}

@font-face {
    font-family: kalam;
    src: url("/assets/fonts/Kalam-Regular.ttf");
    font-display: fallback;
}

:root {
    --primary-color: #318ce7;
    --secondary-color: #000;
    --white-color: #fff;
    --font-regular: jetbrain-regular, sans-serif;
    --font-bold: jetbrain-bold, sans-serif;
    --shadow-color: #dddddd;
}

body {
    position: relative;
    cursor: url("/assets/cursor/stick.cur"), auto;
    font-family: var(--font-regular);
    font-size: 16px;
    height: 100%;
    z-index: 1;
    /* background: linear-gradient(to bottom, #f0f4ff, #ffffff);
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    margin: 0; */
}

hr {
    border-color: #dddddd;
}

/* --------------- */
/* FONT */
/* --------------- */
h1 {
    position: relative;
    font-size: 80px;
    letter-spacing: 10px;
    font-family: var(--font-bold);
    z-index: 1;
}

h2 {
    position: relative;
    font-size: 40px;
    font-family: var(--font-bold);
    z-index: 1;
}

h3 {
    position: relative;
    font-size: 20px;
    z-index: 1;
}

p {
    position: relative;
    line-height: 30px;
    z-index: 1;
}

ul {
    position: relative;
    z-index: 1;
}

.bold {
    font-family: var(--font-bold);
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-light {
    color: var(--white-color) !important;
}

.cursive {
    font-family: Kalam, sans-serif;
    font-size: 1.5rem;
}

label {
    font-size: 14px;
}

@media (max-width: 768px) {
    h2 {
        font-size: 40px;
    }
    h3 {
        font-size: 20px;
    }
    h4 {
        font-size: 16px;
    }
}

/* ------------- */
/* BUTTON */
/* ------------- */
.btn,
button {
    position: relative;
    border: none;
    padding: 10px 15px;
    border-radius: 10px;
    font-family: jetbrain-regular, sans-serif;
    z-index: 1 !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);

    &:hover {
        background-color: var(--secondary-color);
    }
}

/* ----------------*/
/* HEADER SECTION */
/* --------------- */
header {
    height: 80px;
    background-color: var(--white-color);
    border-bottom: 1px dotted var(--shadow-color);

    .logo {
        display: inline-block;
        width: 50px;
        height: 50px;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }

    a {
        color: var(--secondary-color);
    }

    .nav-link {
        margin: 0 10px;
        color: var(--secondary-color);

        &:hover {
            color: var(--primary-color) !important;
        }
    }

    .navbar-toggler {
        border-color: 1px solid var(--secondary-color);

        &:focus {
            box-shadow: unset;
        }
    }

    @media (max-width: 992px) {
        .navbar-collapse {
            padding: 10px;
            border: 1px dotted var(--secondary-color);
            border-radius: 5px;
            background-color: var(--white-color);
        }
    }
}

main {
    padding-top: 100px;
}

/* --------------- */
/* BANNER SECTION */
/* --------------- */
.banner_section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    text-align: center;
    margin: auto;
    overflow: hidden;

    #banner_logo {
        z-index: 1;

        img {
            z-index: 1;
            transition: opacity 0.5s;
        }

        .disintegrate {
            animation: disintegrate 1s forwards;
        }
        .fade-in {
            animation: fadeIn 1s ease-out forwards;
        }

        @keyframes disintegrate {
            0% {
                opacity: 1;
                filter: blur(0px);
                transform: translateX(0) rotate(0deg);
            }
            100% {
                opacity: 0;
                filter: blur(5px);
                transform: translateX(100px) rotate(720deg);
            }
        }

        /* Fade-in effect for new image */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
    }

    .title {
        text-align: center;
    }

    .description {
        color: var(--primary-color);
    }

    .review {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    @media screen and (max-width: 468px) {
        .review {
            flex-direction: column;
        }
        .title {
            text-align: center;
            font-size: 40px;
        }
    }
}

/* --------------- */
/* CLIENT SECTION */
/* --------------- */
#client_section {
    padding: 10px 0px;

    .logo {
        width: 100%;
        height: 200px;
        padding: 40px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        justify-content: center;
        align-items: center;

        img {
            height: 100%;
            width: 100%;
            object-fit: contain;
        }
    }

    @media screen and (max-width: 468px) {
        padding: 10px 15px;
        margin-bottom: 20px;
    }
}

/* --------------- */
/* VIDEO SECTION */
/* --------------- */
#video_section {
    position: relative;
    text-align: center;
    padding: 60px 60px;
    background: #333;
    border-radius: 10px;
    margin-bottom: 60px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4), 0 8px 16px rgba(0, 0, 0, 0.3);
    z-index: 1;

    #intro_video {
        height: 600px;
        width: 100%;
    }

    @media screen and (max-width: 1024px) {
        #intro_video {
            height: 400px;
        }
    }

    @media screen and (max-width: 991px) {
        #intro_video {
            height: 300px;
        }
    }

    @media screen and (max-width: 768px) {
        #intro_video {
            height: 300px;
        }
    }

    @media screen and (max-width: 468px) {
        padding: 50px 20px;
        margin-bottom: 60px;
        border-radius: 0px;
        #intro_video {
            height: 200px;
        }
    }
}

/* --------------- */
/* SERVICE SECTION */
/* --------------- */
#service_section {
    text-align: center;
    padding: 60px 0px;

    #service {
        display: flex;
        justify-content: space-around;
        align-items: stretch;
        flex-wrap: wrap;

        .item {
            display: flex;

            .card {
                width: 100%;
                text-align: left !important;

                .logo {
                    display: inline-block;
                    width: 100%;
                    height: 200px;

                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: contain;
                    }
                }

                .card-title {
                    font-family: var(--font-bold);
                }
            }
        }
    }

    @media screen and (max-width: 968px) {
        #service {
            .item {
                .card {
                    .card-title {
                        text-align: center;
                    }
                    button {
                        display: block;
                        margin: 0 auto;
                        width: fit-content;
                    }
                }
            }
        }
    }

    @media screen and (max-width: 468px) {
        padding: 20px 15px;
    }
}

/* --------------- */
/* TESTIMONIAL SECTION */
/* --------------- */
#testimonial_section {
    padding: 60px 0px;

    #testimonial {
        display: flex;
        justify-content: space-around;
        align-items: stretch;
        flex-wrap: wrap;

        .item {
            display: flex;

            .card {
                width: 100%;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: flex-start;
                gap: 5px;
                padding: 15px;

                .logo {
                    width: 80px;
                    height: 80px;
                    padding: 2px;
                    margin-top: 20px;
                    border: 2px solid var(--primary-color);
                    border-radius: 50%;

                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        border-radius: 50%;
                    }
                }

                a {
                    position: relative;
                    z-index: 1;
                    text-decoration: none;
                }

                .card-title {
                    font-family: var(--font-bold);
                }

                .card-body {
                    width: calc(100% - 120px);
                }
            }
        }
    }

    @media screen and (max-width: 468px) {
        padding: 20px 15px;
        text-align: center;
        #testimonial {
            .item {
                .card {
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;

                    .card-body {
                        width: 100%;
                    }
                }
            }
        }
    }
}

/* --------------- */
/* Meeting SECTION */
/* --------------- */
#meeting_section {
    position: relative;
    text-align: center;
    padding: 60px 60px;
    background: #333;
    border-radius: 10px;
    margin-bottom: 60px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4), 0 8px 16px rgba(0, 0, 0, 0.3);
    z-index: 1;

    #meeting_link {
        height: 800px;
        width: 100%;
    }

    @media screen and (max-width: 1024px) {
        #meeting_link {
            height: 1350px;
        }
    }

    @media screen and (max-width: 468px) {
        padding: 50px 20px;
        margin-bottom: 60px;
        border-radius: 0px;
    }
}

/* --------------- */
/* CONTACT SECTION */
/* --------------- */
#contact_section {
    padding: 60px 0px;

    #contact_form {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .item {
        position: relative;
    }

    .logo {
        width: 100%;
        height: 455px;

        img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
    }

    @media screen and (max-width: 468px) {
        padding: 20px 15px;

        .logo {
            width: 100%;
            height: 300px;
        }
    }
}

/* --------------- */
/* ABOUT US PAGE */
/* --------------- */
#about_us {
    padding: 60px 0px;

    #team {
        display: flex;
        justify-content: center;
        align-items: center;

        .card {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px 20px 0px 20px;

            .logo {
                width: 200px;
                height: 200px;
                padding: 3px;
                border: 2px solid var(--primary-color);
                border-radius: 50%;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    border-radius: 50%;
                }
            }
        }
    }

    @media screen and (max-width: 1024px) {
        padding: 0px 15px;
    }
}

/* --------------- */
/* GENERAL PAGE */
/* --------------- */
#general {
    padding: 60px 0px;

    @media screen and (max-width: 1024px) {
        padding: 0px 15px;
    }
}

/* --------------- */
/* FOOTER SECTION */
/* --------------- */
#footer_section {
    padding: 20px 80px;

    #footer {
        padding: 45px 45px 20px 45px;
        color: var(--white-color);
        background: #333;
        border-radius: 10px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4), 0 8px 16px rgba(0, 0, 0, 0.3);

        #footer_about {
            padding-right: 80px;
        }
        #footer_copyright {
            padding-top: 15px;
            border-top: 1px dotted var(--white-color);
            text-align: center;
        }
        .menu {
            list-style: none;
            padding-left: 0px;

            li {
                margin-bottom: 10px;

                a {
                    position: relative;
                    color: var(--white-color);
                    text-decoration: none;
                    z-index: 1;
                }
            }
        }
        .whatsapp {
            background-color: transparent;
            position: fixed;
            right: 30px;
            bottom: 50px;
            height: 60px;
            width: 60px;
            overflow: hidden;
            background: #59d92b;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            z-index: 1;
            text-decoration: none;
            cursor: pointer;

            i {
                height: 100%;
                width: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
                transition: transform 0.6s ease;
                color: #fff;
                font-size: 35px;

                &:hover {
                    transform: rotate(360deg);
                }
            }
        }
    }

    @media screen and (max-width: 1024px) {
        padding: 0px 15px;
        text-align: center;
        #footer {
            border-radius: 0px;
            #footer_about {
                padding-right: 0px;
            }
            .whatsapp {
                position: fixed;
                right: 15px;
                bottom: 50px;
            }
        }
    }
}

/* --------------- */
/* OWL CAROUSEL */
/* --------------- */
.owl-carousel img {
    width: 100%;
    height: auto;
    display: block;
}

/* --------------- */
/* GENERAL */
/* --------------- */
input,
select,
textarea {
    position: relative;
    z-index: 1 !important;
}

#mouse {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
}

.gold {
    color: #ff9900;
}

.mute {
    color: #cccccc;
}

.error {
    position: absolute;
    color: red;
    font-size: 12px;
    font-weight: bold;
    bottom: -3px;
}
