@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root {
    --primary: #8c52ff;
    --dark: #1d1d1b;
    --white: #ffffff;
    --gray: #6b7280;
    --transition: 0.3s ease;
    --container: 1450px;
}

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

body {
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-size: 14px;
    background-color: #f5f5f5;
    color: #1d1d1b;
}

a {
    font-size: 14px;
    -webkit-tap-highlight-color: transparent!important;
}

p {
    margin-bottom: 15px;
    line-height: 1.5;
}

img{
    -webkit-tap-highlight-color: transparent!important;
}

h1, .h1 {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 15px;
}

h2, .h2 {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 15px;
}

h3, .h3 {
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 15px;
}

h4, .h4 {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 15px;
}

h5, .h5 {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 15px;
}

h6, .h6 {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 15px;
}

ol{
    margin-bottom: 15px;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: auto;
    padding: 0 5%;
}

.btn-primary {
    background-color: #8c52ff;
    border: 1px solid #8c52ff;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    background-color: #7a3ce6;
    border-color: #7a3ce6;
    box-shadow: 0 4px 12px rgba(140, 82, 255, 0.3);
}

.btn-primary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(140, 82, 255, 0.4);
}

.btn-outline-primary {
    background-color: transparent;
    border: 1px solid #8c52ff;
    color: #8c52ff;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-outline-primary:hover {
    background-color: #8c52ff;
    color: white;
    box-shadow: 0 4px 12px rgba(140, 82, 255, 0.2);
}

.btn-outline-primary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(140, 82, 255, 0.4);
}

.mb-0{
    margin-bottom: 0;
}


/*
** Header
*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: var(--transition);
    padding: 10px 0;
    background: transparent;
}

.header.scrolled {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 48px;
}

.logo {
    display: flex;
    align-items: center;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a {
    position: relative;
    text-decoration: none;
    color: #1d1d1b;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav a:hover {
    color: var(--primary);
}

.nav a:hover::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 22px;
}

.header-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
}

.header-link:hover {
    color: var(--primary);
}

.btn-signin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 35px;
    border-radius: 999px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-signin:hover {
    background: #7338f5;
    box-shadow: 0 10px 25px rgba(140, 82, 255, 0.25);
}
.header-button {
    display: none;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent!important;
}

.header-button img{
    height: 40px;
}

#mobile-nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 0.7);
    display: flex;
    justify-content: end;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease, visibility .3s ease;
}

#mobile-nav.active{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mn-container{
    position: relative;
    width: 75%;
    height: 100vh;
    background-color: #fff;
    transform: translateY(-40px);
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
}

#mobile-nav.active .mn-container{
    transform: translateY(0);
    opacity: 1;
}

.mn-close{
    position: absolute;
    z-index: 999999;
    top: 25px;
    left: -39px;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent!important;
}


.mn-close img{
    width: 14px;
    -webkit-tap-highlight-color: transparent!important;
}

.mn-logo{
    text-align: center;
    padding: 15px 0;
}

.mn-logo a{
    -webkit-tap-highlight-color: transparent;
}

.mn-logo img{
    max-width: 100%;
    max-height: 50px;
}

.mn-links{
    display: flex;
    flex-direction: column;
    padding: 0 15px;
}

.mn-links a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    font-size: 16px;
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid #ebebeb;
    transition: 0.3s;
    color: #1d1d1b;
    -webkit-tap-highlight-color: transparent;
}

.mn-links a img{
    height: 12px;
}

.mn-auth{
    position: absolute;
    bottom: 30px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.mn-auth a{
    padding: 0;
    width: 100px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/*
** Hero
*/
.hero {
    width: 100%;
    background-image: url("/assets/images/hero.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 150px;
    padding-bottom: 150px;
}

.hero-headline {
    font-size: 60px;
    font-weight: 700;
    font-family: "Bricolage Grotesque", sans-serif;
    text-align: center;
    margin-bottom: 10px;
}

.hero-subheadline {
    font-size: 18px;
    font-weight: 400;
    max-width: 50%;
    text-align: center;
    color: #555;
}

.hero-actions {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-chat {
    width: 50%;
    margin-top: 50px;
    position: relative;
}

.hero-chat textarea {
    background-color: #fff;
    width: 100% !important;
    height: 150px;
    max-height: 300px;
    border: 1px solid #ccc;
    border-radius: 15px;
    padding: 10px 55px 10px 10px;
    font-size: 13px;
    outline: none;
    transition: 0.3s;
    overflow: hidden !important;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.hero-chat textarea::placeholder {
    color: #9d97a5;
    font-style: italic;
}

.hero-chat textarea:active {
    border: 1px solid #878787;
}

.hero-chat textarea:focus {
    border: 1px solid #878787;
}

.hero-chat-btn {
    width: 40px;
    height: 40px;
    background-color: #8c52ff;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    cursor: pointer;
}

.hero-chat-btn img {
    width: 20px;
    margin-right: -1px;
}

/*
** Home Services
*/
.home-services {
    margin-top: -90px;
}

.home-services .container {
    display: flex;
    justify-content: space-between;

}

.hs-card {
    width: 18%;
    height: 200px;
    background-color: #fff;
    border-radius: 15px;
    padding: 15px;
    color: #1d1d1b;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: 0.3s;

}

.hs-card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    color: #8c52ff;

}

.hs-card h3 {
    width: 100%;
    font-weight: 500;
    font-size: 17px;
}

.hs-card-image {
    width: 100%;
    height: 130px;
    background-color: #ece3ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hs-card-image img {
    max-width: 75%;
    max-height: 110px;
}


/*
** Profile
*/
.profile {
    margin-top: 120px;
}

.profile .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.profile-person {
    width: 21%;
    flex: 0 0 21%;
    min-height: 200px;
    background-color: #fff;
    box-shadow: 0px 2px 92px 0px rgba(0, 0, 0, 0.07);
    border-radius: 15px;
    padding: 10px 0 25px 0;
}

.profile-text {
    padding: 15px;
}

.profile-person h3 {
    font-size: 18px;
    font-weight: 500;
}

.profile-person h6 {
    font-size: 14px;
    font-weight: 300;
    color: #555;
}

.profile-img {
    clip-path: polygon(0 9%, 100% 0, 100% 94%, 0% 100%);
    margin-top: -15px;
    position: relative;
    z-index: 3;
}

.profile-img img {
    width: 100%;
}

.profile-icon {
    position: relative;
    z-index: 3;
}

.profile-icon-circle {
    position: absolute;
    bottom: -15px;
    left: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #8c52ff;
    box-shadow: 0px 2px 32px 0px rgba(4, 123, 248, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-icon img {
    width: 23px;
    height: 22px;
}

.profile-info-list {
    margin-top: 5px;
    padding: 15px;
}

.profile-info-list ul {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
}

.profile-info-list ul li {
    list-style-type: none;
    padding-top: 15px;
    position: relative;
}

.profile-info-list ul li span {
    color: #555;
}

.profile-info-list ul li b {
    font-weight: 500;
    color: #1d1d1b;
}

.profile-info-list ul li:before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #8c52ff;
    background-color: #fff;
    position: absolute;
    left: -20px;
    top: 17px;
    z-index: 1;
}

.profile-info-list ul li:last-of-type::after {
    content: '';
    width: 1px;
    height: 173px;
    background-color: #ebebeb;
    position: absolute;
    top: -148px;
    left: -15px;
    z-index: 0;
}

.profile-actions {
    display: flex;
    justify-content: center;
}

.profile-actions .btn-primary {
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.profile-actions .btn-primary svg {
    fill: white;
}

.profile-data {
    width: 77%;
    flex: 0 0 77%;
    min-height: 200px;
    background-color: #fff;
    box-shadow: 0 2px 92px 0 rgba(0, 0, 0, 0.07);
    border-radius: 15px;
    padding: 30px;
}

.title-lined {
    font-size: 21px;
    font-weight: 500;
    margin-bottom: 15px;
}

.title-lined span {
    position: relative;
    display: inline-block;
    z-index: 2;
}

.title-lined span:after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #d4bfff;
    z-index: -1;
}
.profile-portfolio{
    margin-top: 50px;
}
.profile-about p{

    margin: 0;
    line-height: 1.7;
    font-size: 15px;
}
.pp-items{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 25px;
}
.pp-item{
    width: 31%;
    position: relative;
}
.pp-item-description{
    position: absolute;
    border-radius: 10px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, black);
    color: #fff;
    display: flex;
    align-items: end;
    justify-content: start;
    padding: 15px;
    font-weight: 700;
}
.pp-item img{
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 5px;
}
.profile-reviews{
    margin-top: 50px;
}
.pp-reviews {
    margin: 0 auto;
}

.pp-review {
    padding: 30px 0;
    border-bottom: 1px solid #e5e7eb;
}
.pp-review:first-of-type {
    padding-top: 0;
}
.pp-review:last-of-type {
    border-bottom: 1px solid transparent;
}

.pp-review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.pp-review-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.pp-review-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}

.pp-review-header span {
    color: #6b7280;
    font-size: 14px;
}

.pp-review-stars {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.pp-review p {
    margin: 0;
    line-height: 1.8;
    font-size: 15px;
}



/*
** Offer
*/
.mfreelance-proposal {
    background-color: #fff;
    border-radius: 15px;
    padding: 40px;
    max-width: 800px;
    margin: 120px auto 0 auto;
    color: #1d1d1b!important;
}
.mfreelance-proposal p{
    color: inherit;
    line-height: 1.4;
}

.mfreelance-proposal .proposal-title{
    text-align: center;
    margin-bottom: 0;
}
.underline{
    text-decoration: underline;
}
.mfreelance-proposal .proposal-divider {
    border: 0;
    border-top: 1px solid #e3e3e3;
    margin: 30px 0;
}

.mfreelance-proposal .info-row {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
}

.mfreelance-proposal .info-image {
    width: 150px;
    height: auto;
    border-radius: 4px;
}

.mfreelance-proposal .info-content p {
    margin: 0;
    line-height: 1.5;
}

.mfreelance-proposal .proposal-author {
    width: 100%;
    padding: 0 0 50px 0;
    color: #1d1d1b;
}

.mfreelance-proposal .proposal-author a{
    text-decoration: none;
    color: #1d1d1b;
    transition: 0.3s;
}

.mfreelance-proposal .proposal-author a:hover{
    color: #8c52ff;
}

.mfreelance-proposal .proposal-author__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.mfreelance-proposal .proposal-author__content {
    width: 100%;
}

.mfreelance-proposal .proposal-author {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.mfreelance-proposal .proposal-author__avatar img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
}

.mfreelance-proposal .proposal-author__name {
    margin: 0;
    font-size: 16px;
    line-height: 1.1;
    font-weight: 700;
}

.mfreelance-proposal .proposal-author__meta {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
}

.mfreelance-proposal .proposal-author__dot {
    font-size: 14px;
}

.mfreelance-proposal .proposal-author__button {
    padding: 10px 24px;
    border: 1px solid #8c52ff;
    border-radius: 999px;
    background: transparent;
    color: #8c52ff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mfreelance-proposal .proposal-author__button:hover {
    background: #8c52ff;
    color: #ffffff;
}

.mfreelance-proposal .proposal-author__description {
    margin: 18px 0 0;
    line-height: 1.6;
    color: #1d1d1b;
}
.proposal-price{
    margin-top: 30px;
    font-size: 21px;
    text-align: center;
}



/*
** Footer
*/
.site-footer {
    margin-top: 100px;
    background: #fff;
    padding: 40px 0 35px 0;
    position: relative;
}

.site-footer a {
    color: #454545;
    text-decoration: none;
}

.site-footer a:hover {
    color: #8c52ff;
}

.footer-links {
    display: flex;
    justify-content: space-between;
}

.footer-column h3 {
    color: #1d1d1b;
    font-size: 16px;
    margin-bottom: 18px;
    font-weight: 500;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: #f5f5f5;
    margin: 30px 0 35px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright{
    margin-bottom: 0;
}

.copyright a {
    font-weight: 600;
    color: #1d1d1b;
}

.social-links {
    display: flex;
    gap: 14px;
}


/*
** Public chat
*/
.public-chat {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: #202123;
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 150px;
}

.public-chat .pc-message-area {
    flex: 1;
    overflow-y: auto;
    padding: 40px 0;
}

.public-chat .pc-message {
    width: 100%;
    max-width: 860px;
    margin: 0 auto 32px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 0 24px;
    box-sizing: border-box;
}

.public-chat .pc-avatar {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    flex-shrink: 0;
}

.public-chat .pc-bubble {
    font-size: 15px;
    line-height: 1.75;
    word-break: break-word;
}

.pc-bubble ol{
    padding-left: 38px;
}

.pc-bubble ul{
    padding-left: 38px;
}

.pc-bubble h4{
    margin-bottom: 25px;
}
.pc-bubble h6{
    margin-top: 25px;
    margin-bottom: 0;
}

.pc-bubble h6:first-of-type{
    margin-top: 0;
}

.pc-bubble-images{
    margin-top: 10px;
    margin-bottom: 15px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pc-bubble-images img{
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
}

.public-chat .pc-system-message {
    justify-content: flex-start;
}

.public-chat .pc-system-message .pc-bubble {
    color: #202123;
}

.public-chat .pc-client-message {
    justify-content: flex-end;
}

.public-chat .pc-client-message .pc-bubble {
    background: #fff;
    padding: 14px 18px;
    border-radius: 20px;
    max-width: 75%;
}

.public-chat .pc-input-area {
    max-width: 860px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 24px 32px;
    box-sizing: border-box;
}

.public-chat .pc-input-area {
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.public-chat .pc-input {
    flex: 1;
    resize: none;
    border: 1px solid #d9d9e3;
    border-radius: 24px;
    padding: 15px 20px;
    min-height: 56px;
    max-height: 180px;
    outline: none;
    font: inherit;
    background: #fff;
    color: #202123;
    transition: border-color .2s, box-shadow .2s;
}

.public-chat .pc-input:focus {
    border-color: #10a37f;
    box-shadow: 0 0 0 3px rgba(16,163,127,.12);
}

.public-chat .pc-input::placeholder {
    color: #8e8ea0;
}

.public-chat .pc-send-btn {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #202123;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .2s;
    flex-shrink: 0;
}

.public-chat .pc-send-btn:hover {
    background: #000;
}

.public-chat .pc-send-btn svg {
    width: 18px;
    height: 18px;
}

.public-chat .pc-message-area::-webkit-scrollbar {
    width: 8px;
}

.public-chat .pc-message-area::-webkit-scrollbar-thumb {
    background: #d5d5d5;
    border-radius: 10px;
}

.public-chat .pc-message-area::-webkit-scrollbar-track {
    background: transparent;
}
.pc-textarea{
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0 15px 0;
}
.pc-textarea-input{
    position: relative;
    width: 100%;
    height: 85px;
    max-width: 860px;
}
.pc-textarea textarea{
    width: 100%;
    height: 85px;
    max-width: 860px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    background-color: #fff;
    outline: none;
    padding-left: 10px;
    padding-top: 10px;
    border: 1px solid #a4a4a4;
}

.pc-textarea textarea::-webkit-scrollbar {
    width: 0;
}

.pc-textarea textarea::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 0;
}
.pc-textarea textarea::-webkit-scrollbar-track {
    background: transparent;
}
.pc-textarea-send{
    position: absolute;
    top: 8px;
    right: 8px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #8c52ff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
}
.pc-textarea-send img{
    width: 18px;
    margin-right: -2px;
}

/*
** Popup Split
*/
#popup-split{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgb(0 0 0 / 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
#popup-split .ps-content{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    flex: 0 0 80%;
    position: relative;
}
#popup-split .ps-close{
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #1d1d1b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
}
#popup-split .ps-close svg{
    width: 18px;
    height: 18px;
}
#popup-split .ps-close svg path{
    fill: white;
}
#popup-split .ps-images{
    position: relative;
}
#popup-split .ps-images img{
    display: none;
    width: 100%;
    height: 80vh;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
#popup-split .ps-images img:first-of-type{
    display: block;
}
#popup-split .ps-details{
    width: 70%;
    height: 80vh;
    background-color: #fff;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 30px;
    overflow-y: scroll;
}
#popup-split .ps-details::-webkit-scrollbar {
    width: 0;
    height: 0;
}
#popup-split .ps-details::-webkit-scrollbar-thumb {
    background: transparent;
}
#popup-split .ps-details::-webkit-scrollbar-track {
    background: transparent;
}
#popup-split .ps-details h6{
    margin-bottom: 10px;
    margin-top: 20px;
}
#popup-split .ps-details ul{
    padding-left: 37px;
}
#popup-split .ps-details ol{
    padding-left: 37px;
}

/*
** Auth page
*/
.auth-section {
    padding-top: 100px;
    width: 100%;
}
.auth-section .login-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}
.auth-section .login-container {
    max-width: 28rem;
    width: 100%;
}
.auth-section .login-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    padding: 2rem;
    margin-bottom: 2rem;
}
.auth-section .login-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.auth-section .login-description {
    margin-bottom: 1.5rem;
    color: #6b7280;
}
.auth-section .login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.auth-section .form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #0f172a;
    margin-bottom: 0.25rem;
}
.auth-section .form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 0.5rem;
    font-size: 1rem;
    outline: none;
    transition: all 0.2s ease;
}
.auth-section .form-input:focus {
    border-color: #8c52ff;
    box-shadow: 0 0 0 3px #c7d2fe;
}
.auth-section .form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.auth-section .remember-me {
    display: flex;
    align-items: center;
}
.auth-section .remember-me input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 0.25rem;
    margin-right: 0.5rem;
    accent-color: #8c52ff;
}
.auth-section .remember-me label {
    font-size: 0.875rem;
    color: #475569;
}
.auth-section .forgot-password {
    font-size: 0.875rem;
    font-weight: 500;
    color: #8c52ff;
    text-decoration: none;
    transition: color 0.2s ease;
}
.auth-section .forgot-password:hover {
    color: #8c52ff;
}
.auth-section .submit-button {
    width: 100%;
    background-color: #8c52ff;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.auth-section .submit-button:hover {
    background-color: #8c52ff;
}
.auth-section .submit-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px #dbc7fe, 0 0 0 4px #ffffff;
}
.auth-section .social-login {
    margin-top: 2rem;
    text-align: center;
}
.auth-section .social-login-text {
    color: #979797;
    font-size: 0.875rem;
}
.auth-section .social-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
}
.auth-section .social-button {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 0.75rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.auth-section .social-button:hover {
    background-color: #f1f5f9;
}
.auth-section .social-button img {
    width: 1.25rem;
    height: 1.25rem;
}
.auth-section .signup-text {
    margin-top: 2rem;
    margin-bottom: 0;
    text-align: center;
    font-size: 0.875rem;
    color: #475569;
}
.auth-section .signup-link {
    color: #8c52ff;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}
.auth-section .signup-link:hover {
    color: #8c52ff;
}
.auth-error {
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 15px;
    border-left: 5px solid #dc3545;
    background-color: #fff5f5;
    color: #842029;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
}

.auth-error::before {
    content: "⚠ ";
    font-weight: bold;
}
@media (min-width: 640px) {
    .auth-section .login-section {
        padding: 2rem 1.5rem;
    }
}
@media (min-width: 1024px) {
    .auth-section .login-section {
        padding: 2rem;
    }
}

.pc-typing {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 12px 16px;
}

.pc-typing span {
    width: 7px;
    height: 7px;
    background: #999;
    border-radius: 50%;
    display: block;
    animation: typingAnimation 1.4s infinite ease-in-out;
}

.pc-typing span:nth-child(1) {
    animation-delay: 0s;
}

.pc-typing span:nth-child(2) {
    animation-delay: 0.2s;
}

.pc-typing span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingAnimation {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.4;
    }

    30% {
        transform: translateY(-6px);
        opacity: 1;
    }
}