@font-face {
    font-family: 'Geo';
    src: url('./font/Dachi-the-Lynx.ttf') format('truetype'),
        url('./font/Dachi-the-Lynx.woff') format('woff'),
        url('./font/Dachi-the-Lynx.woff2') format('woff2'),
        url('./font/Dachi-the-Lynx.otf') format('opentype');
}


* {
    margin: 0;
    box-sizing: border-box;
    font-family: 'Geo';
    scroll-behavior: smooth;
}


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

/* Main Page */


@keyframes slideRight {
    0% {
        background-position: 0% 0;
    }
    100% {
        background-position: 200% 0;
    }
}


/* width */
::-webkit-scrollbar {
    background: transparent;
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #004b9b;
    border-radius: 25px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #50a5ff;
}


:root {
    --for-header: 16vh;
    --for-header-responsive: 12vh;
}

a {
    text-decoration: none;
    color: #f7f7f7;
}

header {
    display: flex;
    position: fixed;
    flex-wrap: wrap;
    top: 0;
    justify-content: space-around;
    align-items: center;
    background-color: transparent;
    width: 100%;
    height: var(--for-header);
    transition: all 0.5s ease;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 10;
}


header.scrolled {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.5s ease;
    box-shadow: 0 12px 20px 0 rgba(0, 0, 0, 0.7);
}


.return-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 25;
    width: 60px;
}

.return-to-top button {
    display: none;
    align-items: center;
    justify-content: center;
    background-color: #004d9f;
    border-radius: 8px;
    padding: 8px;
    border: none;
    cursor: pointer;
}

.return-to-top .arrow-up {
    width: 40px;
}


.lang-toggle {
    border-radius: 15px;
    transition: all 0.5s ease;
    border: 2px solid #0099ff;
    padding: 6px 18px;
    cursor: pointer;
}


.lang-toggle:hover {
    scale: 1.1;
    transition: all 0.5s ease;
    border-radius: 10px;
    background-color: #004a9a;
}


.lang-toggle .user-lang {
    background: transparent;
    border-radius: inherit;
    border: none;
    color: #f7f7f7;
}


.lang-toggle-responsive {
    display: none;
}


header .text {
    line-height: 1.5;
    color: #f7f7f7;
}

.responsive-header .text {
    display: none;
}


.header-menu {
    justify-content: space-around;
}


.responsive-header {
    display: none;
}

.sidebar {
    display: none;
}

.sidebar-menu-btn {
    display: none;
}

.sidebar-close-btn {
    display: none;
}

.link {
    padding: 0 25px;
    transition: all 0.25s ease;
}

.link:hover {
    transition: all 0.25s ease;
    color: #0099ff;
}


body {
    display: flex;
    flex-direction: column;
    color: #f7f7f7;
    min-height: 100vh;
    background-color: #001329;
}


.introduction-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    height: auto;
    width: auto;
}


.introduction-banner .text {
    display: block;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    position: relative;
    overflow: hidden;
}


.introduction-banner .title,
.introduction-banner .subtitle {
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: linear-gradient(
        to right,
        #9B6DFF,
        #9B6DFF 25%,
        #FFFFFF 35%,
        #64E3FF 45%,
        #64E3FF 55%,
        #FFFFFF 65%,
        #9B6DFF 75%,
        #9B6DFF 100%
    );
    background-size: 200% 100%;
    background-repeat: repeat;
    animation: slideRight 3s linear reverse infinite;
}


.about-me {
    width: 100%;
    height: 100vh;
}


.about-me .container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    height: inherit;
}

.about-me .text {
    width: auto;
    text-align: center;
    font-size: 20px;
    background-color: #004084;
    height: auto;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 15px 10px 0 rgba(0, 0, 0, 0.8);
    max-width: 85vh;
    width: 100%;
}


.about-me .main-pic {
    width: 42vh;
    border-radius: 50%;
    border: 2px solid #0069d9;
    box-shadow: 0 20px 25px 5px rgba(0, 0, 0, 0.6);
    transition: all 0.5s ease;
}

.about-me .main-pic:hover {
    scale: 1.1;
    transition: all 0.5s ease;
}


.services {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
}


.services .title {
    text-align: center;
    padding: 30px;
}


.services .container {
    display: grid;
    justify-content: center;
    gap: 50px;
    grid-template-columns: auto auto;
    width: 100%;
    padding: 50px;
}


.services .box {
    text-align: center;
    background-color: #002750;
    padding: 20px;
    border-radius: 20px;
    width: 400px;
    padding: 50px;
    box-shadow: 0 10px 10px 0 #000000;
    transition: all 0.5s ease;
}


.services .box-icon {
    width: 200px;
    padding: 20px;
}


.services #box1:hover,
.services #box2:hover,
.services #box3:hover,
.services #box4:hover {
    background-color: #003874;
    scale: 1.05;
}


.portfolio {
    display: flex;
    align-items: center;
    height: 100vh;
}

.portfolio-text {
    color: #54a6ff;
    transition: color 0.3s ease;
}

.portfolio-text:hover {
    color: #aed5ff;
    transition: color 0.3s ease;
}

.swiper-wrapper {
    width: 100%;
}

.swiper {
    width: 100vh;
    height: 75.5vh;
}

.swiper-slide {
    border-radius: 50px;
    border-top: 5px solid #3b3b3b;
    border-bottom: 5px solid #1c1c1c;
    border-left: 5px solid #3b3b3b;
    border-right: 5px solid #1c1c1c;
}


.swiper-slide img {
    border-radius: 50px;
    width: 100%;
}

.swiper-slide .container {
    display: none;
    position: absolute;
    flex-direction: column;
    text-align: center;
    padding: 50px;
    border-radius: 50px;
    justify-content: space-around;
    height: 74vh;
    width: 98vh;
    top: 50%;
    left: 50%;
    z-index: 1000;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: brightness(0.5) blur(4px);
    -webkit-backdrop-filter: brightness(0.5) blur(4px);
}


.swiper-slide .title {
    padding: 20px;
}

.swiper-slide .description a {
    color: #54a6ff;
    transition: all 0.3s ease;
}

.swiper-slide .description a:hover {
    color: #aed5ff;
    transition: all 0.3s ease;
}

.responsive-slide-container {
    display: none;
}


.order-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    text-align: center;
    height: 100vh;
}


.order-form .title {
    padding: 20px;
}


.order-form .form {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #003874;
    padding: 30px;
    border-radius: 25px;
    width: 60vh;
    border: 5px dotted #0069d9;
    box-shadow: 0 12px 25px 0 #000000;
}


.order-form .form input,
.order-form .form select {
    border-radius: 10px;
    color: #f7f7f7;
    background-color: #001328;
    border: none;
    padding: 10px;
    font-family: 'BPG ExtraSquare Mtavruli';
    width: 100%;
}

.order-form .form label {
    padding: 15px 0;
}

.order-form .form .submit-btn {
    width: auto;
    padding: 15px 25px;
    background-color: #2a91ff;
    border: 2px solid #5facff;
    margin-top: 25px;
    transition: all 0.4s ease;
    font-family: 'Geo';
    cursor: pointer;
}

.order-form .form .submit-btn:hover {
    background-color: #0067d6;
    transition: all 0.4s ease;
}

.order-form .form .submit-btn:focus {
    background-color: #004d9f;
}


footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    width: 100%;
    background-color: #003670;
    min-height: 30vh;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0px -10px 50px rgba(0, 0, 0, 0.8);
    z-index: 20;
}


footer .social-media-icons .title {
    padding: 5px;
}


footer .social-media-icons .info {
    padding: 0;
}


footer .contact .title {
    padding: 8px;
}


.icon {
    width: 30px;
}

/* End of Main Page */

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

/* Success and Fail Page */

.success-page, .fail-page {
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* End of Success and Fail Page */


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

/* Mobile Responsive Design */


@media screen and (pointer: coarse), (hover: none), (max-width: 900px) {

    header {
        display: none;
    }

    .responsive-header {
        display: flex;
        position: fixed;
        width: 100%;
        height: var(--for-header-responsive);
        justify-content: center;
        align-items: center;
        background-color: transparent;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        transition: all 0.5s ease;
        z-index: 10;
    }

    .responsive-header.scrolled {
        transition: all 0.5s ease;
        backdrop-filter: blur(9px);
        -webkit-backdrop-filter: blur(9px);
        box-shadow: 0 12px 20px 0 rgba(0, 0, 0, 0.7);
    }

    .responsive-header .text {
        display: block;
    }

    .responsive-sidebar {
        display: flex;
        position: fixed;
        z-index: 999;
        transform: translateX(-100%);
        width: 100%;
        height: 100vh;
        background-color: #00152b;
    }

    .sidebar {
        margin-top: 25px;
        display: flex;
        text-align: center;
        flex-direction: column;
        padding: 50px;
        font-size: 20px;
        width: 100%;
    }

    .lang-toggle {
        display: none;
    }

    .lang-toggle-responsive {
        display: block;
        position: absolute;
        top: 20px;
        left: 20px;
        background: none;
        padding: 6px 18px;
        border: 2px solid #0099ff;
        border-radius: 15px;
        transition: all 0.5s ease;
        cursor: pointer;
    }

    .lang-toggle-responsive:hover {
        scale: 1.1;
        background-color: #004a9a;
        transition: all 0.5s ease;
        border-radius: 10px;
    }

    .sidebar .link {
        padding: 15px 0;
    }

    header .text {
        display: none;
    }

    .about-me {
        width: auto;
    }

    .about-me .container {
        flex-direction: column;
        text-align: center;
        padding: 80px;
    }

    .about-me .text {
        font-size: 18px;
        margin-top: 10vh;
        width: 42vh;
    }

    .about-me img {
        width: 200px;
    }

    .sidebar-menu-btn {
        display: block;
        position: absolute;
        top: 23px;
        right: 20px;
    }

    .sidebar-close-btn {
        display: block;
        position: absolute;
        top: 26px;
        right: 23px;
    }

    .sidebar-menu-btn #btn-img {
        width: 30px;
    }

    .sidebar-close-btn #close-btn-img {
        width: 20px;
    }

    .services {
        height: auto;
    }

    .services .title {
        margin-top: 30vh;
        font-size: 18px;
    }

    .services .container {
        grid-template-columns: auto;
    }

    .services .box {
        width: 300px;
    }

    .swiper {
        height: 65vh;
        width: auto;
    }

    .responsive-slide-container {
        display: flex;
        position: fixed;
        flex-direction: column;
        padding: 25px;
        border-radius: 50px;
        justify-content: space-around;
        height: 60vh;
        width: 100%;
        top: 50%;
        left: 50%;
        z-index: 1000;
        transform: translate(-200%, -50%);
        transition: all 0.5s ease;
        border: 4px solid #0099ff;
        backdrop-filter: brightness(0.6) blur(15px);
        -webkit-backdrop-filter: brightness(0.6) blur(15px);
    }

    .responsive-slide-container .description a {
        color: #54a6ff;
        transition: all 0.3s ease;
    }

    .responsive-slide-container .description a:hover {
        color: #aed5ff;
        transition: all 0.3s ease;
    }

    .container-close-btn {
        display: block;
        position: absolute;
        top: 30px;
        right: 30px;
    }

    .container-close-btn-img {
        width: 25px;
    }

    .portfolio {
        display: flex;
        height: 80vh;
    }

    .swiper-slide img {
        border-radius: 50px;
        width: 100%;
        height: 100%;
    }

    .responsive-slide-container {
        text-align: center;
    }

    .responsive-slide-container .title {
        padding: 20px;
    }

    .responsive-slide-container .description {
        padding: 20px;
    }

    .order-form {
        height: 120vh;
    }

    .order-form .form {
        width: 45vh;
    }


    .order-form .title {
        font-size: 18px;
    }

    footer {
        flex-direction: column;
        min-height: 45vh;
        padding: 10px;
    }

}