:root {
    --accent: #62d5ff;
    --light: #3d445f;
    --primary: #1d232e;
    --secondary: #0c0d12;
    --text-primary: #fff;
    --text-secondary: #a0a3b1;
    --cursorr: #c6c6c6;
    --gap: 2em;
    --gap-skew: 4em;
}

::-webkit-scrollbar {
    display: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

html {
    scroll-behavior: smooth;
    caret-color: transparent;
    -webkit-font-smoothing: antialiased;
}

body {
    width: 100%;
    padding: 3% 3% 0 3%;
    background-color: var(--secondary);
    overflow-x: hidden;
}

.body-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 98%;
    background: linear-gradient(135deg, var(--secondary) 20%, var(--light) 80%);
    clip-path: polygon(0 0, 100% 0, 100% 75%, 70% 100%, 0 100%);
    z-index: -1;
    opacity: 0.9;
}

.accent-shape-1 {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 250px;
    height: 300px;
    background: linear-gradient(145deg, var(--light), transparent);
    clip-path: ellipse(50% 40%);
    opacity: 0.6;
}

.accent-shape-2 {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 250px;
    height: 300px;
    background: linear-gradient(145deg, var(--light), transparent);
    clip-path: ellipse(50% 40%);
    opacity: 0.8;
}

.accent-shape-3 {
    position: absolute;
    bottom: 1%;
    right: 10%;
    width: 250px;
    height: 300px;
    background: linear-gradient(145deg, var(--light), transparent);
    clip-path: ellipse(50% 40%);
    opacity: 0.9;
}

.cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid var(--cursorr);
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: .1s;
}

.cursor2 {
    position: fixed;
    width: 8px;
    height: 8px;
    background-color: var(--cursorr);
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: .15s;
}

n {
    position: absolute;
    background: white;
    pointer-events: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    animation: animate211 2s ease-out forwards;
}

@keyframes animate211 {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }

    100% {
        opacity: 0;
        transform: translate(var(--randomX), var(--randomY));
    }
}

.header {
    background-image: url('Assets/faq-page.webp');
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5% 3%;
    border-radius: 30px;
    max-height: 380px;
    color: var(--secondary);
}

.header-title {
    font-size: 48px;
    letter-spacing: 1.5;
}

.header-desc {
    font-size: 14px;
    letter-spacing: 1;
    text-align: center;
}

.search {
    width: 60%;
    height: 50px;
    background-color: var(--text-secondary);
    margin-top: 25px;
    margin-bottom: -50px;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    padding: 5px 6px;
}

.search input {
    width: 80%;
    height: 100%;
    padding: 1% 3%;
    background: transparent;
    border: none;
}

.search button {
    width: 20%;
    min-width: 100px;
    height: 100%;
    background-color: var(--light);
    color: var(--text-primary);
    border: none;
    border-radius: 30px;
    cursor: pointer;
}

.search button:hover {
    background-color: var(--text-secondary);
    color: var(--light);
    border: 1px solid var(--light);
    ;
}

.faq {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 3%;
}

.faq-name {
    flex: .5;
    padding: 2% 2% 0 0;
}

.faq-header {
    padding: 2% 0 0 0;
    font-size: 40px;
    letter-spacing: 2;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.faq-img {
    width: 100%;
    max-width: 400px;
}

.faq-box {
    flex: 1;
    min-width: 320px;
    padding: 2% 0 4% 4%;
    border-left: 2px solid var(--accent);
}

.faq-wrapper {
    width: 100%;
    padding: 1.5rem;
    border-bottom: 1px solid var(--accent);
}

.faq-title {
    display: block;
    position: relative;
    width: 100%;
    letter-spacing: 1.2;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-title::after {
    content: '';
    width: 10px;
    height: 10px;
    float: right;
    border-style: solid;
    border-width: 2px 2px 0 0;
    transform: rotate(135deg);
    transition: .4s ease-in-out;
}

.faq-detail {
    line-height: 1.5;
    letter-spacing: 1;
    max-height: 0;
    overflow: hidden;
    transition: .3s ease-in-out;
    font-size: 14px;
    transition: .5s ease-in-out;
}

.faq-detail p {
    padding-top: 4px;
    color: var(--text-primary);
}

.faq-trigger {
    display: none;
}

.faq-trigger:checked+.faq-title+.faq-detail {
    max-height: 300px;
}

.faq-trigger:checked+.faq-title::after {
    transform: rotate(-45deg);
    transition: .4s ease-in-out;
}

.go-to-contact {
    position: fixed;
    padding-bottom: 3px;
    bottom: 10px;
    right: 15px;
    border-radius: 50%;
    cursor: pointer;
    height: 40px;
    width: 40px;
    color: var(--accent);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    rotate: 270deg;
    animation: rot1 1s linear infinite alternate-reverse;
    transition: 0.4s ease-in-out;
}

.go-to-contact:hover {
    background: var(--secondary);
    border: 3px solid var(--text-primary);
    box-shadow: 0 0 2px var(--accent), 0 0 5px var(--accent);
    animation-play-state: paused;
    border-radius: 0%;
}

.go-to-contact:hover i {
    transform: rotate(360deg);
    transition: transform 0.5s ease-in-out;
}

.content401 {
    z-index: 10;
    text-align: center;
}

.transition1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    z-index: 20;
    opacity: 0;
    transform: scale(0) rotate(90deg);
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1), opacity 1.2s ease-in-out;
}

.page-transition-enter1 {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1), opacity 1s ease-in-out;
}

@media (max-width: 1050px) {
    .accent-shape-1 {
        display: none;
    }
}

@media (max-width: 680px) {
    .search {
        width: 100%;
    }

    .faq-title {
        font-size: 20px;
    }

    .faq-header {
        padding-top: 80px;
    }

    .accent-shape-2 {
        display: none;
    }

    .accent-shape-3 {
        opacity: 0.2;
    }
}