@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary: #F8D104;
    --secondary: #04ACC4;
    --ternary: #EE220C;
    --accent: #9575CD;
}

@font-face {
    font-family: 'rische';
    src: url('/assets/font/rische.otf');
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4 {
    font-family: 'rische';
    color: var(--secondary);
    text-align: center;
}

a,
a:hover {
    text-decoration: none;
    color: unset;
}

.sections {
    padding: 40px 0;
}

.custom-box {
    position: relative;
    padding: 50px;
    border: 1px solid #242424;
    border-radius: 15px;
}

    .custom-box::before {
        content: '';
        position: absolute;
        background: url(/assets/images/icon.png);
        background-repeat: no-repeat;
        background-size: cover;
        width: 125px;
        height: 125px;
        left: -80px;
        bottom: 0;
    }

    .custom-box::after {
        content: '';
        position: absolute;
        background: url(/assets/images/icon.png);
        background-repeat: no-repeat;
        background-size: cover;
        width: 125px;
        height: 125px;
        right: -40px;
        top: -50px;
    }

.primary-btn {
    background: var(--ternary) !important;
    color: white;
    padding: 5px;
    border-radius: 5px;
}

.primary-btn:hover {
    color: white;
}

.custom-text {
    color: #dbc7fff5;
}


.top-nav {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 25px 0px;
    background: #00ACC1A8;
}

.logo {
    max-width: 15%;
}



.sec-1 {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.bg {
    position: absolute;
    min-height: 100%;
    min-width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.logo-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}



.sec-1-logo {
    width: 100%;
    height: auto;
}


.sec-2 {
    padding: 50px 0;
}

    .sec-2 img {
        max-width: 25%;
    }

/* Section 4 */

.browseBtn {
    background: #04ACC4;
    color: white;
    width: 100%;
}

.browseFile {
    content: "Browse";
    background: #04ACC4;
    color: white;
    width: 100%;
}

.img {
    color: white !important;
    text-align: center !important;
}

.card {
    height: 390px;
}

.card-img-top {
    height: 220px !important;
    width: 100%;
    object-fit: cover;
}

.card-title {
    font-size: 14px;
    color: var(--secondary);
}

.card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

/* Section 5 */

.sec-5-box {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(/assets/images/16.\ Spirit\ Session.jpeg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 15px;
    padding: 50px;
}

.sec-5 h2
 {
    font-size: 58px;
    font-weight: 900;
}

.footer:has(.row) {
    padding: 70px 0;
}

.footer h2 {
    font-size: 68px;
}

.footer-logo {
    max-width: 25%;
}

.footer p {
    font-size: 26px;
    font-family: 'rische';
}

.login-box {
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 20px 20px 40px -6px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4.5px);
    -webkit-backdrop-filter: blur(8.5px);
    border-radius: 10px;
    padding: 40px;
}

    .login-box h2 {
        color: #000;
        margin-bottom: 40px;
    }

    .login-box form {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 40px;
    }

        .login-box form input {
            width: 100%;
            background: unset;
            border: unset;
            border-bottom: 2px solid #04ACC4;
            outline: unset;
        }

            .login-box form input::placeholder {
                color: #000;
            }

        .login-box form button {
            outline: unset;
            border: unset;
            padding: 10px 40px;
        }

textarea {
    width: 100%;
}

.uniqueBtn {
    width: 100%;
    padding: 20px 30px;
    font-size: 34px;
    text-align: center;
    background: #04ACC4;
    box-shadow: 5px 5px 0px #000;
    color: white;
    cursor: pointer;
    border: unset;
    outline: unset;
}

.saveBtn {
    width: 38%;
    padding: 20px 10px 30px 10px;
    font-size: 34px;
    text-align: center;
    background: #04ACC4;
    box-shadow: 5px 5px 0px #000;
    color: white;
    cursor: pointer;
    border: unset;
    outline: unset;
}

.revertBtn {
    width: 40%;
    padding: 20px 10px 30px 10px;
    font-size: 34px;
    text-align: center;
    background: #EE220C;
    box-shadow: 5px 5px 0px #000;
    color: white;
    cursor: pointer;
    border: unset;
    outline: unset;
}

.uniqueBtn:hover {
    box-shadow: 2px 2px 0px #000;
}


.callnowbtn {
    background: var(--primary);
    position: fixed;
    padding: 20px;
    top: 30%;
    right: -50px;
    transform: rotate(90deg);
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    font-weight: 700;
    cursor: pointer;
}


@media screen and (max-width: 991px) {

    .custom-box::before {
        display: none;
    }

    .custom-box::after {
        right: -25px;
        top: -65px;
    }

    .logo {
        max-width: 35%;
    }

    .logo-box img {
        width: 350px !important;
    }

    .sec-2 img {
        max-width: 85%;
    }

    .sec-5 h2 {
        font-size: 32px;
    }

    .footer p {
        font-size: 16px;
    }

    .footer-logo {
        max-width: 50%;
    }
}

.ajaxmodal {
    background-color: Black;
    height: 100%;
    left: 0;
    opacity: 0.6;
    padding-top: 25%;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 999;
}

.ajaxcenter {
    background-color: black;
    border-radius: 10px;
    margin: 0 auto;
    opacity: 1;
    padding: 10px;
    text-align: center;
    width: 80px;
    z-index: 1000;
}

    .ajaxcenter img {
        margin: 0 auto;
    }
