:root {
    --primary-color: #d700fa;
    --secondary-color: #010035;
    --border: #e9edf6;
    --bg-color: #f1f4fC;
    --success: #1e8e21;
    --danger: #f50809;
    --gradient: linear-gradient(315deg, #d842f0, #7f36f8);
}

/* ? ScrollBar */

::-webkit-scrollbar {
    width: 0.625rem;

}

::-webkit-scrollbar-track {
    background: #fff;

}

::-webkit-scrollbar-thumb {
    background: #D700FA;
    border-radius: 1.25rem;
}

::-webkit-scrollbar-thumb:hover {
    background: #010035;
}


/* ? Fonts */

@font-face {
    font-family: Bogle, sans-serif;
    src: url(../fonts/BogleRegular.OTF);
}

@font-face {
    font-family: HolidayFree, sans-serif;
    src: url(../fonts/HolidayFree.ttf);
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Bogle, sans-serif;
}

a {
    text-decoration: none;
    color: #fff;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

p {
    line-height: 1.625rem;
}

section {
    overflow: hidden;
}

/* ? Header */

header {
    padding: 1.5rem 0;
    transition: all .5s;
    -webkit-transition: all .5s;
}

.logo {
    font-family: HolidayFree, sans-serif;
    font-size: 2.17rem;
    line-height: 4.125rem;
    user-select: none;
    background: linear-gradient(#B8FBFF, #A1D2FF, #4A9DFF);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav {
    transition: all .5s;
    -webkit-transition: all .5s;

    ul {
        gap: 1.5rem;

        a {
            font-size: 1.125rem;
            font-weight: 600;
            transition: all .5s;
            -webkit-transition: all .5s;

            &:hover {
                color: var(--primary-color);
            }
        }
    }
}

.hamburger {
    display: none;

    a {
        font-size: 1.25rem;

        &:hover {
            color: var(--primary-color);
        }
    }
}

.active {
    background-color: #fff;
    padding: 0.5rem 0;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);

    .logo {
        background: var(--gradient);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    nav a,
    .hamburger a {
        color: #000;

        &:hover {
            color: var(--primary-color);
        }
    }
}

.active-link {
    color: var(--primary-color) !important;
}

.expand {
    height: 17.525rem;

    +div a {
        font-size: 1.45rem;
    }
}

/* ? Banner */

.banner {
    background: url(../img/Dating.webp) center/cover no-repeat fixed;
    height: 43.75rem;

    &::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background-color: rgba(1, 0, 53, 0.4);
        z-index: -1;
    }

    .wrapper {
        height: inherit;

        >span {
            color: var(--primary-color);
            font-size: 1.25rem;
            font-weight: 600;
            letter-spacing: 4px;
        }

        p {
            max-width: 41.563rem;
            margin-bottom: 0;
        }
    }
}

.wrapper {
    max-width: 78rem;
    margin: auto;
    padding: 0 1.5rem;
}

h1 {
    font-weight: 600;
    font-size: 3.75rem;
    margin: 1.25rem 0 0.35rem;

    span {
        color: var(--primary-color);
    }
}

/* ? About Us */

.section {
    padding: 6.25rem 1.5rem;
    text-align: center;
}

.about-us {
    background-color: var(--bg-color);

    .section {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
        gap: 1.875rem
    }
}

.about span {
    color: var(--primary-color);
    letter-spacing: 2px;
    font-size: 0.875rem;
    font-weight: 600;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    margin: 0.6rem 0 1.25rem;
}

/* ? Services */

.heading {
    margin-bottom: 3.75rem;
}

h3,
h4 {
    font-size: 2.5rem;
    font-weight: 600;

    span {
        color: var(--primary-color);
    }

    +p {
        margin-bottom: 1rem;
    }
}

.design {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.line,
.box {
    display: inline-block;
    width: 60px;
    height: 3px;
    transform: skew(-25deg);
    -webkit-transform: skew(-25deg);
    background-color: var(--primary-color);
}

.box {
    height: 8px;
    width: 18px;
    background-color: #000;
}

.services-outer {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(17.5rem, 1fr));
    gap: 1.875rem;
}

.services {
    background-color: var(--bg-color);
    padding: 1.5rem;
    border-radius: 0.375rem;

    p {
        font-size: 1.25rem;
        font-weight: 600;
        margin: 1.25rem 0 0.5rem;
    }
}

.icon {
    width: 60px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 60px;
    margin: auto;
    transition: all .8s;
    -webkit-transition: all .8s;

    svg,
    svg path {
        transition: all .8s;
        -webkit-transition: all .8s;
    }
}

.services:hover {
    .icon {
        background: var(--gradient);

        svg {
            transform: rotateY(180deg);
            -webkit-transform: rotateY(180deg);

            path {
                fill: #fff;
            }
        }
    }
}

/* ? Pricing */

.pricing {
    background-color: var(--bg-color);
}

.price-outer,
.team-member {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.875rem;
}

.price {
    background-color: #fff;
    border-radius: 0.25rem;
    position: relative;

    >span {
        display: block;
        font-size: 1.125rem;
        font-weight: 600;
        padding: 0.5rem 0 0.125rem;
        background-color: #26C0B3;
        color: #fff;
    }
}

.price-bg {
    background-color: #55DDD2;

    .circle {
        width: 6.25rem;
        aspect-ratio: 1;
        font-size: 1.75rem;
        line-height: 1.125rem;
        font-weight: 600;
        color: #fff;
        background-color: #26C0B3;
        border: 4px solid #fff;
        border-radius: 6.25rem;
        margin: auto;
        transform: translateY(1.35rem);
        -webkit-transform: translateY(1.35rem);

        span {
            position: relative;
            display: inline-block;
            top: 50%;
            transform: translateY(-50%);
            -webkit-transform: translateY(-50%);
        }
    }
}

.price-list {
    margin: 2rem 0 4.563rem;

    li {
        display: flex;
        padding: 0.625rem 0.625rem 0.25rem;
        gap: 0.25rem;
        justify-content: center;
        border-bottom: 1px solid var(--border);

        &:last-child {
            border-bottom: 0;
        }

        .material-symbols-outlined {
            transform: scale(0.92) translateY(-2px);
            -webkit-transform: scale(0.92) translateY(-2px);
        }
    }
}

.check {
    color: var(--success);
}

.close {
    color: var(--danger);
}

.price-btn {
    display: inline-block;
    background: linear-gradient(#55DDD2, #26C0B3);
    padding: 0.375rem 0 0.125rem;
    width: 7.75rem;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.25rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    bottom: 1.5rem;
}

.price2>span {
    background-color: #A02CED;
}

.price2-bg {
    background-color: #B55BF1;

    .circle {
        background-color: #A02CED;
    }
}

.price2-btn {
    background: linear-gradient(#B55BF1, #A02CED);
}

.price3>span {
    background-color: #1D6BFC;
}

.price3-bg {
    background-color: #4F8CFC;

    .circle {
        background-color: #1D6BFC;
    }
}

.price3-btn {
    background: linear-gradient(#4F8CFC, #1D6BFC);
}

.price4>span {
    background-color: #FF1A44;
}

.price4-bg {
    background-color: #FF4D6D;

    .circle {
        background-color: #FF1A44;
    }
}

.price4-btn {
    background: linear-gradient(#FF4D6D, #FF1A44);
}

.small-text {
    font-size: 0.75rem;
    font-weight: normal;
}

.price2-bg,
.price3-bg,
.price4-bg {
    .circle {
        span {
            top: 45%;
        }
    }
}

/* ? Users Count */

.users-count,
.testimonials {
    background: url(../img/Dating_Background.webp) center/cover no-repeat fixed;
    position: relative;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 600;
    z-index: 0;
    transition: all .7s linear;
    -webkit-transition: all .7s linear;

    &::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background-color: rgba(1, 0, 53, 0.7);
        z-index: -1;
    }

    .section {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        padding: 5rem 1.5rem;
        gap: 1.875rem;
    }
}

.numbers {
    font-size: 1.875rem;
    color: var(--primary-color);
}

/* ? Team Members */

.single-member {
    position: relative;
    overflow: hidden;

    &:hover {
        .description {
            height: 100%;

            div {
                top: 50%;
            }

            .social-icons {
                opacity: 1;
            }
        }
    }
}

.description {
    position: absolute;
    height: 6.25rem;
    width: 100%;
    left: 0;
    bottom: 0;
    background-color: rgba(1, 0, 53, 0.5);
    color: #fff;
    transition: all .8s;
    -webkit-transition: all .8s;

    div {
        position: relative;
        top: 55%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        transition: all .8s;
        -webkit-transition: all .8s;
    }

    p {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 0.375rem;
    }
}

.social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.375rem;
    opacity: 0;
    transition: all .8s;
    -webkit-transition: all .8s;

    a {
        display: inline-block;
        width: 1.875rem;
        aspect-ratio: 1;
        border: 1px solid #fff;
        border-radius: 1.875rem;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all .5s;
        -webkit-transition: all .5s;

        &:hover {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
    }
}

/* ? Testimonials */

.testimonials {
    background: url(../img/Testimonial.webp) center/cover no-repeat fixed;

    .section {
        display: block;
        padding: 0 1.5rem;
    }

    &::before {
        background-color: rgba(1, 0, 53, 0.55);
    }
}

.swiper {
    padding: 5rem 0;
    max-width: 85%;
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.875rem;

    p {
        font-size: 1rem;
        font-weight: normal;
        margin-bottom: 0.625rem;
    }
}

.swiper-horizontal>.swiper-pagination-bullets {
    bottom: 12px;

    .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        margin: 0 6px;
        background-color: #fff;

        &.swiper-pagination-bullet-active {
            background-color: var(--primary-color);
        }
    }
}



/* ? Contact Us */

.contact-us {
    background-color: var(--bg-color);

    .contact {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
        gap: 1.875rem
    }

    .form-control:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 .25rem rgba(215, 0, 250, .1);
    }
}

.send-btn {
    outline: none;
    background: var(--gradient);
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.25rem;
    padding: 0.5rem 0 0.25rem;
}

.illustration-links img {
    margin-bottom: 2.5rem;
}

.contact-links-outer {
    width: fit-content;
    margin: auto;
}

.contact-links {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 1rem;
    font-size: 0.875rem;
    margin-bottom: 1rem;

    .contact-icons {
        width: 2.188rem;
        aspect-ratio: 1;
        background-color: var(--primary-color);
        border-radius: 2.188rem;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;

        .material-symbols-outlined {
            font-size: 1.25rem;
        }
    }

    p {
        margin-bottom: 0;
        font-size: 1rem;
        font-weight: 600;
    }
}

/* ? Footer */

footer {
    background-color: var(--secondary-color);
    color: #fff;

    .section {
        padding: 1rem 1.5rem 0.625rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

}

.rights span {
    color: var(--primary-color);
}

.social-links {
    gap: 0.75rem;

    div {
        gap: 0.375rem;
    }

    a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 1.25rem;
        height: 1.25rem;
        background-color: #fff;
        color: #000;
        border-radius: 0.125rem;
        transition: all .5s;
        -webkit-transition: all .5s;

        &:hover {
            background-color: var(--primary-color);
            color: #fff;
        }
    }
}

/* ? Go to Top */

.go-to-top {
    width: 2.5rem;
    aspect-ratio: 1;
    background: var(--gradient);
    position: fixed;
    bottom: 3rem;
    right: 2.5rem;
    visibility: hidden;
    opacity: 0;
    transition: all .5s;
    -webkit-transition: all .5s;

    .material-symbols-outlined {
        font-size: 1.75rem;
    }
}

.visible {
    visibility: visible;
    opacity: 1;
}