* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

@font-face {
    font-family: 'Hilden';
    font-style: normal;
    font-weight: normal;
    src: local('Hilden'), url('../font/Hilden/Hilden/Hilden.woff2') format('woff2');
}

@font-face {
    font-family: 'Impact';
    font-style: normal;
    font-weight: normal;
    src: local('Impact'), url('../font/impact/Impacted.woff') format('woff');
}

:root {
    --blue: #0798AD;
    --white: #fff;
    --black: #000;
    --light-blue: #bad7e1;
    --gradient: linear-gradient(135deg, #009cad 0%, #191933 100%);
}

:root {
    --banner-font: "Sora", sans-serif;
    font-family: var(--banner-font);
    --para-font: "Montserrat", sans-serif;
    font-family: var(--para-font);
}

a:focus {
    outline: thin dotted #333;
    outline: none;
    outline-offset: -2px;
}

a {
    text-decoration: none !important;
}

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: #ffffff;
}

::-webkit-scrollbar-thumb {
    background: var(--blue);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}


/* ============== COMMON =============== */
body {
    overflow-x: hidden;
    margin: 0;
    background-color: var(--light);
    font-family: var(--para-font);
}

.title-style {
    font-family: var(--banner-font);
    font-size: 50px;
    font-weight: 600;
    color: #3cc8d2;
    text-transform: uppercase;
}

.para-style {
    font-family: var(--para-font);
    font-size: 17px;
    line-height: 29px;
    color: #000;
    text-align: justify;
    hyphens: auto;
}

.title-bottom-line {
    width: auto;
    height: 11px;
    margin-bottom: 25px;
    filter: contrast(0.5);
}



.maintenance {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    border: 10px solid #28282800;
    background: #0e0e0ead;
    width: fit-content;
    height: fit-content;
    padding: 50px;
}

.maintenance img {
    height: 250px;
    margin-bottom: 20px;
    box-shadow: rgb(0 0 0 / 0%) 0px 8px 24px;
    border-radius: 50%;
    border: 2px solid #0798ad;
    padding: 2px;
}

.maintenance_contain {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px;
}

.maintenance_contain img {
    width: auto;
    max-width: 100%;
}

.top-title-style {
    font-family: var(--para-font);
    font-size: 30px;
    line-height: 29px;
    color: #fff;
    hyphens: auto;
    font-weight: bold;
    padding-bottom: 20px;
}



.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: #ffffff;
    border: 2px solid rgb(7 152 173 / 43%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0798ad;
    font-size: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--blue);
    border-color: var(--blue);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(97, 155, 182, 0.4);
    color: #fff;
}

.social-link:hover a {
    color: #fff;
}

a {
    color: #fff;
}


.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.content-overlay {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.4);
}

.social-icons-box {
    position: absolute;
    top: 90%;
}

.contact-box p {
    font-family: var(--para-font);
    font-size: 26px;
    line-height: 29px;
    color: #ffffff;
    hyphens: auto;
    font-weight: 550;
    padding-top: 20px;
}

.contact-box span a {
    color: #3cc8d2;
}

.contact-box span:hover a {
    color: #ffffff;
}

@media(max-width:1200px) {
    .title-style {
        font-size: 43px;
    }

    .top-title-style {
        font-size: 26px;
    }

    .contact-box p {
        font-family: var(--para-font);
        font-size: 20px;
        line-height: 29px;
        color: #ffffff;
        hyphens: auto;
        font-weight: 550;
        padding-top: 14px;
    }
}

@media(max-width:900px) {
    .maintenance {
        padding: 10px;
    }

    .title-style {
        font-size: 38px;
    }

    .top-title-style {
        font-size: 23px;
        padding-bottom: 18px;
    }

    .contact-box p {
        font-family: var(--para-font);
        font-size: 18px;
        line-height: 29px;
        color: #ffffff;
        hyphens: auto;
        font-weight: 550;
        padding-top: 10px;
    }

    .maintenance img {
        height: 200px;
    }
}

@media(max-width:767px) {
    .title-style {
        font-size: 16px;
    }

    .maintenance {
        padding: 10px 0px;
    }

    .top-title-style {
        font-size: 17px;
        padding-bottom: 12px;
    }

    .maintenance_contain {
        padding: 5px;
    }

    .title-style {
        font-size: 20px;
    }

    .contact-box p {
        font-family: var(--para-font);
        font-size: 12px;
        line-height: 29px;
        color: #ffffff;
        hyphens: auto;
        font-weight: 550;
        padding-top: 0px;
    }

    .social-icons {
        display: flex;
        gap: 15px;
        margin-top: 0px;
    }

    .maintenance img {
        height: 200px;
    }

    .social-link {
        width: 35px;
        height: 35px;
    }

    .maintenance {
        border: 0px solid #28282800;
    }

    .maintenance {
        padding: 10px 5px;
    }

    .maintenance img {
        height: 150px;
    }
}

@media(max-width:400px){
        .title-style {
        font-size: 17px;
    }
        .contact-box p {
        font-size: 10px;
        }
}