* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

.header {
    width: 100%;
    height: 60px;
    background: #12122d;
}

.header_container {
    width: 100%;
    max-width: 1200px;
    /* optional: control content width */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding: 0 50px; */
}

.header_left {
    display: flex;
    align-items: center;
}

.logo a {
    text-decoration: none;
}

.infland_logo {
    display: block;
    max-width: 160px;
    margin: 0 auto;

}

.logo {
    text-align: left !important;
}

.logo .bold {
    font-size: 26px;
    font-weight: 1200;
    line-height: 1;
    color: white;
}

.logo .thin {
    font-size: 20px;
    font-weight: 100;
    opacity: 0.7;
    /* font-family: 'Poppins', sans-serif; */
    color: white;
}

.logo img {
    /* max-height: 500px; */
    /* border: 1px solid white; */
    cursor: pointer;

}

.header_right {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 25px;
}

.nav {
    display: flex;
    align-items: center;

    gap: 47px
        /* margin-right: 10%; */
}

.primary-btn {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    padding: 8px 16px;
    background: #979cf8;
    border-radius: 5px;
    transition: 0.3s;
}

.primary-btn:hover {
    background: #9370db;
}

.nav-link {
    color: rgb(255, 255, 255);
    /* font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; */
    text-decoration: none;
    font-size: 1em;
    /* padding: 8px 16px; */
    /* padding-left: 20%; */
    transition: 0.1s ease-in-out;
    transform: scale(1);
    white-space: nowrap;
}

.nav-link:hover {
    color: #62e7ff;
}

.profile {

    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    /* margin-top: 3px; */
    /* margin-left: auto; */
}

.profile img {

    width: 2.6em;
    height: 2.6em;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.145);
    cursor: pointer;
}

.profile-wrapper {
    max-width: 800px;
    /* or whatever width looks good */
    margin: 0 auto;
    /* centers it horizontally */
    padding: 20px;
    /* optional: adds some space around */
}

.dropdown {
    display: none;
    position: absolute;
    top: 161px;
    /* adjust according to header height */
    /* right: 10px; */
    background-color: #222;
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    flex-direction: column;
    gap: 10px;
    z-index: 999;
    min-width: 200px;
}

.dropdown a {
    color: white;
    /* font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; */
    text-decoration: none;
    font-size: 1em;
    padding: 8px 0;
    transition: color 0.2s;
}

.dropdown a:hover {
    color: #d2d2d2;
}

.dropdown.active {
    display: flex;
    position: absolute;
    top: 60px;
    /* adjust according to header height */
    /* right: 10px; */
    background-color: #222;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    flex-direction: column;
    margin-right: 2%;
    margin-top: 2px;
    align-items: center;
    gap: 10px;
    z-index: 999;
    min-width: 200px;

}

@media (max-width: 1300px) {
    .header {
        padding: 0 30px;
    }

    .logo {
        margin-left: 0%;
    }

    .nav {
        /* margin-right: 5%; */
        gap: 35px;
    }

    .primary-btn {
        font-size: 13px;
        padding: 6px 12px;
    }

    .logo .bold {
        font-size: 22px;
    }

    .logo .thin {
        font-size: 16px;
    }

    .profile img {
        width: 2.7em;
        height: 2.7em;
    }

    .dropdown.active {
        margin-right: 10%;

    }

    .profile {
        /* margin-top: 2px; */
    }
}

@media (max-width: 1024px) {
    .header {
        flex-direction: column;
        height: auto;
    }

    .logo {
        margin-left: 0;
        justify-content: center;
    }

    .nav {
        flex-direction: row;
        justify-content: center;
        margin-top: 10px;
    }

    .profile {
        margin-top: 5px;
    }

    .profile img {
        width: 2.6em;
        height: 2.6em;
    }
}

.hamburger {
    display: none;
    font-size: 3.5rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    margin-bottom: 5px;
}


@media (max-width: 768px) {

    .hamburger {
        display: block;
    }

    .nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 10px;
        background-color: #1a1a1a;
        padding: 1rem;
        border-radius: 8px;
        z-index: 1000;
    }

    .nav.active {
        display: flex;
        position: absolute;
        top: 60px;
        /* adjust according to header height */
        /* right: 10px; */
        background-color: #222;
        padding: 15px 15px;
        margin-top: 1px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        flex-direction: column;
        gap: 10px;
        z-index: 999;
        min-width: 200px;
    }

    .nav a {
        padding: 0.5rem 0;
        color: white;
    }

    .primary-btn {
        font-size: 19px;
        /* padding: 5px 10px; */
        background: none;

    }

    .header_right {
        justify-content: end;
        width: 100%;
        gap: 10px;
    }

    .header {
        padding: 0px 5px;
    }

    .profile {
        margin-top: 6px;
        margin-right: 15px;

    }

    .profile img {
        width: 2.7em;
        height: 2.7em;
    }
}

.clickable-influencer {
    cursor: pointer;
    transition: box-shadow 0.01s ease;
}

.clickable-influencer:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    scale: 1.0001;
}

.hero {
    width: 100%;
    text-align: center;
    padding: 40px 0;
    background: white;
}

.hero h1 {
    font-size: 40px;
    font-weight: 1000;
    text-transform: uppercase;
    background: linear-gradient(to bottom, #12122d, #007FFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.clickable-card {
    cursor: pointer;
    transition: box-shadow 0.01s ease;
}


.clickable-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    scale: 1.0001;
}

.hero h2 {
    font-size: 50px;
    font-weight: 1200;
    text-transform: uppercase;
    background: linear-gradient(to bottom, #12122d, #007FFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    margin-top: 5px;
}

@media (max-width: 768px) {
    .hero {
        padding: 20px 0;
    }

    .hero h1 {
        font-size: 30px;
        padding-left: 30px;
        padding-right: 30px;


    }

    .hero h2 {
        font-size: 40px;
        padding-left: 30px;
        padding-right: 30px;

    }
}



.main-content {
    width: 95%;
    max-width: 1200px;
    margin: 50px auto;
    text-align: center;
}

.main-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.hashtag {
    font-weight: bold;
}

.italic-bold {
    font-style: italic;
    text-decoration: underline;
}

.normal {
    font-weight: normal;
}

.search-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 20px;
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-input {
    width: 100%;
    padding: 12px 15px;
    padding-right: 40px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
}

.search-icon {
    position: absolute;
    right: 15px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: filter 0.3s ease;
}

.search-icon:hover {
    filter: brightness(0) saturate(100%) invert(31%) sepia(98%) saturate(1099%) hue-rotate(186deg) brightness(90%) contrast(100%);
}

.filter-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.filter {
    height: 36px;
    width: 180px;
    padding: 5px 10px;
    font-size: 16px;
    border: 1.5px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    outline: none;
    background-color: white;
    color: #555;
    text-align: start;
    margin: 5px;
}


.filter:hover {
    border-color: #888;
}


@media (max-width: 768px) {
    .main-content {
        width: 90%;
    }

    .search-input {
        font-size: 14px;
        padding: 10px;
    }

    .filter-container {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .filter {
        width: 90%;
        max-width: 300px;
    }
}



.cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 50px auto;
    max-width: 1200px;
    padding-bottom: 50px;
}

.card {
    width: 100%;
    border: 1.5px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
    height: 500px;
}

.card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
}

.heart-icon {
    width: 22px;
    cursor: pointer;
    margin-left: 5px;
    transition: transform 0.3s ease-out, opacity 0.3s ease-in-out;

}

.fade-out {
    transform: translateY(-10px);
    opacity: 0;
}

.fade-in {
    transform: translateY(0);
    /* Aşağıdan yukarı çık */
    opacity: 1;
    /* Görünür yap */
}

.card-image {
    position: relative;
    width: 100%;

}

.card-image img {
    position: relative;
    width: 100%;
    height: 300px;

}

.card-image img {
    width: 100%;
    display: block;
}

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 5px;
    color: white;
    font-weight: bold;
}

.bonus {
    background: #ffaf00;
}

.örnek {
    background: #ff5a5f;
}

.card-body {
    padding: 20px;
    font-size: 14px;
}

.card-body p {
    margin: 5px 0;
}
.card-body a {
    /* margin: 5px 0; */
}

.platform-icon {
    width: 18px;
    margin-left: 5px;
    align-items: end;
}

.apply-btn {
    width: 100%;
    background: #979cf8;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 35px;
    text-decoration: none;
}

.apply-btn:hover {
    background: #9370db;
}

.edit-btn {
    width: 100%;
    background: #979cf8;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
}

.edit-btn:hover {
    background: #9370db;
}

.more-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.more-btn {
    background: #979cf8;
    color: white;
    font-size: 16px;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    width: 30%;
    margin-top: -50px;
}

.more-btn:hover {
    background: #9370db;

}

.s-a {
    width: 40%;
    background: #979cf8;
    color: white;
    border: none;
    padding: 10px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 70px;
    text-decoration: none;
}

.s-a:hover {
    background: #9370db;

}

.card-body {
    height: 150px;
}


@media (max-width: 1024px) {
    .cards-container {
        justify-content: space-around;
        grid-template-columns: repeat(2, 1fr);
        
    }

}

@media (max-width: 768px) {
    .cards-container {
        flex-direction: column;
        align-items: center;
        grid-template-columns: repeat(1, 1fr);

    }

    .card {
        width: 90%;
        max-width: 300px;
        margin: auto;
    }

    .more-btn {
        width: 90%;
        max-width: 300px;
    }
}

.card-text {

    text-align: start;
}

.card-secondary-text {
    text-align: end;
    margin-top: -22px !important;
}


.footer {
    background: #12122d;
    color: white;
    padding: 40px 20px;
    /* text-align: center; */
    justify-content: center;
    margin-top: 250px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
    /* padding: 2em 5%; */
    width: 70%;
    gap: 2em;
    margin: 0 auto;

}

.footer-right {
    justify-content: center;
}

.footer-column {
    min-width: 120px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    text-decoration: none;
    color: white;
    font-size: 14px;
    transition: 0.3s;
}

.footer-column ul li a:hover {
    color: #b19cd9;
}

.footer-divider {
    width: 1px;
    height: 100px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 20px;
}

.social-media {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 40px;
    /* margin-bottom: -20px; */
    /* padding-left: 20px; */
    /* margin-left: -430px; */
    /* width: 20%; */
}

.social-text {
    font-size: 14px;
    margin: 15px auto;
    color: white;
    text-align: center;
    width: 100%;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 0 auto;
}

.social-icons img {
    width: 22px;
    height: 22px;
    filter: invert(1);
    cursor: pointer;
    transition: 0.3s;
    justify-content: center;

}

/* Hover Efekti */
.social-icons img:hover {
    transform: scale(1.1);
    filter: invert(0.8);
}



.email img {
    width: 22px;
    height: 22px;
    filter: invert(1);
    cursor: pointer;
    transition: 0.3s;
}

.email img:hover {
    transform: scale(1.1);
    filter: invert(0.8);
}



.footer-bottom {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    margin-top: 20px;
}

.email {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    /* margin-right: -700px; */
    /* margin-bottom: -10px; */
}



.copyright {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 10px;
}

@media (max-width: 1024px) {
    .footer-container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        margin: 0 auto;
        padding-bottom: 20px;
        margin: 0 auto;
        justify-content: center;

    }

    .footer-column {
        width: 100%;
        text-align: center;
    }

    .social-media {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        /* margin-top: 40px; */
        /* padding-left: 20px; */
        /* margin-left: -390px; */
        /* width: 20%; */
    }

    .footer-logo {
        display: block;
        margin: auto;
        width: 100%;
    }

    .footer-bottom {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .footer-left {
        gap: 0em;
        margin: 0 0;
    }

    .footer-right {
        float: none;
        display: flex;
        justify-content: center;
        width: 100%;
        text-align: center;
    }

    .email {
        width: 100%;
        text-align: center;
        justify-content: center;
        margin-right: 0;
        margin-top: 50px;

    }

    .footer-divider {
        background-color: transparent;
        height: 0;
    }
}



@media (max-width: 768px) {
    .footer-container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        margin: 0 auto;
        padding-bottom: 20px;
        margin: 0 auto;
        justify-content: center;

    }

    .footer-column {
        width: 100%;
        text-align: center;
    }

    .footer-column ul {
        padding: 0;
    }

    .footer-column ul li {
        font-size: 12px;
        margin-bottom: 5px;
    }

    .footer-column ul li a {
        font-size: 12px;
    }


    .footer-logo {
        display: block;
        margin: auto;
        width: 100%;
    }

    .social-text {
        font-size: 14px;
        margin: 5px auto;
        color: white;
        text-align: center;

        width: 100px;

    }

    .footer-divider {
        background-color: transparent;
        height: 0;
    }

    .social-media {
        width: 100%;
        text-align: center;
        margin-top: 10px;
        align-items: center;
        padding-left: 0;
        margin-left: 0px;

    }

    .social-icons {
        justify-content: center;
        gap: 10px;
    }

    .social-icons img {
        width: 18px;
        height: 18px;
    }

    .email {
        width: 100%;
        font-size: 12px;
        text-align: center;
        justify-content: center;
    }

    .email img {
        width: 18px;
        height: 18px;
    }

    .footer-bottom {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .footer-left {
        gap: 0em;
        margin: 0 0;
    }

    .footer-right {
        float: none;
        display: flex;
        justify-content: center;
        width: 100%;
        text-align: center;
    }

    .copyright {
        font-size: 10px;
    }

    .footer-divider {
        display: none;
    }
}



.footer-logo {
    margin-left: auto;
    /* max-width: 300px; */
}

.footer-logo a {
    text-decoration: none;
    color: white;

}

.footer-logo .bold {
    font-size: 42px;
    font-weight: 1200;
    line-height: 1;
    color: white;
}

.footer-logo .thin {
    font-size: 32px;
    font-weight: 100;
    opacity: 0.7;
    /* font-family: 'Poppins', sans-serif; */
    color: white;
}

.footer-logo img {
    max-width: 160px;
}

.footer-left {
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
    max-width: 75%;
}




/* Üst Başlık Alanı */
.faq-header {
    width: 100%;
    padding: 50px;
    text-align: center;
    background: #12122d;
    color: white;
    height: 200px;
}

.faq-header__title {
    font-size: 32px;
    font-weight: bold;
}

.faq-header__desc {
    font-size: 16px;
    margin-top: 10px;
    color: #d1d1d1;
}

.faq-search__input {
    width: 300px;
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
}

.faq-search__btn {
    padding: 10px 15px;
    border: none;
    background: #2C3E50;
    color: white;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

/* SSS Alanı */
.faq-container {
    background: white;
    padding: 30px;
    margin: auto;
    /* margin-top: -40px; */
    width: 90%;
    border-radius: 8px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.faq-container__title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* SSS Liste */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Soru */
.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 15px;
    background: #fff;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.faq-item:hover {
    background: #f8f8f8;
}

/* Açılır/Kapanır Animasyon */
.faq-item__question {
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    text-align: left;
}

.faq-item__answer {
    display: none;
    padding: 10px;
    font-size: 16px;
    background: #f9f9f9;
    border-radius: 5px;
    margin-top: 5px;
    opacity: 0;
    transform: scaleY(0);
    transition: all 0.3s ease-in-out;
    text-align: left;

}

.faq-item__toggle {
    font-size: 20px;
    font-weight: bold;
    transition: transform 0.3s ease-in-out;
}

/* Açık Durum */
.faq-item.open .faq-item__answer {
    display: block;
    opacity: 1;
    transform: scaleY(1);
}

.faq-item.open .faq-item__toggle {
    transform: rotate(45deg);
}



.above-chat-container {
    display: flex;
    width: 85%;
    margin-left: 7.5%;
    margin-top: 50px;
    overflow: hidden;
}

.chat-container {
    display: flex;
    width: 85%;
    height: 80vh;
    background: white;
    margin-left: 7.5%;
    margin-top: 50px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.sidebar {
    width: 30%;
    background: whitesmoke;
    border-right: 1px solid #ddd;
    overflow-y: auto;
    color: #12122d;
    transition: transform 0.3s ease-in-out;
}

.sidebar-header {
    padding: 15px;
    background: #12122d;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-button {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: white;
    display: none;
}

.chat-list {
    padding: 10px;
}

.chat-item {
    display: flex;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid rgb(229, 229, 229);
    cursor: pointer;
    transition: background 0.3s;
}

.chat-item:hover {
    background: #f5f5f5;
}

.chat-item.active {
    background: #dac9fa;
    color: black;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: #979cf8;
    color: black;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
}

.chat-item.active .chat-avatar {
    background: plum;
    color: white;
    font-weight: bold;
}

.chat-info p {
    font-size: 14px;
    color: gray;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

.chat-window {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: white;
}

.chat-header {
    background: #12122ded;
    padding: 15px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-button {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: white;
    display: none;
}

.chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: whitesmoke;
}

.message {
    max-width: 60%;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    font-size: 14px;
}

.message.received {
    background: #ffffff;
    align-self: flex-start;
}

.message.sent {
    background: rgb(217, 253, 211);
    color: black;
    align-self: flex-end;
}

.time {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
    align-self: flex-end;
    margin-top: 5px;
}

.chat-input {
    display: flex;
    padding: 10px;
    border-top: 1px solid #ddd;
    background: whitesmoke;
}

.chat-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
    background-color: whitesmoke;
}

.chat-input button {
    width: 50px;
    height: 50px;
    background: #979cf8;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    margin-left: 10px;
}

.chat-input button::before {
    content: "";
    width: 24px;
    height: 24px;
    background: url('../images/send-fill.svg') no-repeat center;
    background-size: contain;
    filter: invert(1);
    position: absolute;
    transform: rotate(45deg);
    z-index: 2;
    margin-left: -5px;
}

.chat-input button::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #12122d;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.chat-input button:hover::after {
    height: 0%;
}

.chat-input button:hover {
    transform: scale(1.1);
}


/*========================== Responsive Massage Kısım ==========================*/

@media (max-width: 1045px) {
    .chat-container {
        width: 100%;
        height: 70vh;
        margin-top: 0px;
        border-radius: 0;
        margin-left: 0;
    }

    .sidebar {
        position: absolute;
        left: -100%;
        width: 65%;
        height: 100%;
        background: white;
        border-right: 1px solid #ddd;
        transition: 0.3s ease-in-out;
        z-index: 10;
    }

    .sidebar.show {
        left: 0;
    }

    .chat-window {
        width: 100%;
    }

    .chat-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
    }

    .menu-button {
        display: block;
    }

    .close-button {
        display: block;
    }

    .chat-input input {
        padding: 6px;
    }

    .chat-input button {
        padding: 6px 10px;
    }
}




.job-form {
    background: transparent;
    padding: 30px;
    width: 60%;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #12122d;
    animation: fadeIn 0.5s ease-in-out;
    margin: auto;
    margin-top: 50px;

}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.job-form__title {
    font-size: 24px;
    font-weight: bold;
}

.job-form__desc {
    font-size: 14px;
    margin-bottom: 20px;
    color: #555;
    margin-top: 8px;
}

.job-form__group {
    margin-bottom: 15px;
    text-align: left;
}

.job-form__label {
    font-weight: bold;
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 5px;
    display: flex;
}

.job-form__input,
.job-form__textarea,
.job-form__select {
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 2px solid #979cf8;
    border-radius: 5px;
    font-size: 14px;
    background: #f8f8ff;
    color: #12122d;
    transition: all 0.3s ease-in-out;
}

.job-form__input:focus,
.job-form__textarea:focus,
.job-form__select:focus {
    outline: none;
    border-color: plum;
    box-shadow: 0 0 8px plum;
}

.job-form__textarea {
    height: 80px;
    resize: none;
}

.job-form__button {
    background: #979cf8;
    color: white;
    padding: 12px;
    /* width: 70%; */
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.job-form__button:hover {
    background: #9370db;
}

@media (max-width: 768px) {
    .job-form {
        width: 90%;
        padding: 20px;
    }

    .job-form__title {
        font-size: 22px;
    }

    .job-form__desc {
        font-size: 13px;
    }

    .job-form__input,
    .job-form__textarea,
    .job-form__select {
        font-size: 13px;
        padding: 8px;
    }

    .job-form__button {
        padding: 10px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .job-form {
        width: 95%;
        padding: 15px;
    }

    .job-form__title {
        font-size: 20px;
    }

    .job-form__desc {
        font-size: 12px;
    }

    .job-form__input,
    .job-form__textarea,
    .job-form__select {
        font-size: 12px;
        padding: 6px;
    }

    .job-form__button {
        padding: 8px;
        font-size: 13px;
    }
}


.auth-container {
    display: flex;
    height: 50em;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Sol Görsel Alanı */
.auth-image {
    flex: 1;
    /* background: url('../images/Signin.webp') no-repeat center center/cover; */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Sol Görsel Alanı */
.auth-image_login {
    flex: 1;
    background: url('../images/Login.webp') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.auth-image__overlay {
    color: white;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background-color: #ffffff;
}

/* Sağ Form Alanı */
.auth-form {
    /* flex: 1; */
    background: #ffffff;
    /* display: flex; */
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    align-items: center;
    width: 50%;
    /* padding: 10px; */

}

.auth-form-signup {
    flex: 1;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.auth-form__title {
    font-size: 28px;
    color: rgb(53, 53, 53);
    margin-bottom: 10px;
    text-align: center;
}

.auth-form__text {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 20px;
}

.auth-form__link {
    color: #979cf8;
    text-decoration: none;
    font-weight: bold;
}

.auth-form__link:hover {
    text-decoration: underline;
}

#cookie-banner {
  position: fixed;
  bottom: -200px;
  left: 0;
  width: 100%;
  background-color: #979cf8e4;
  color: #ffffff;
  padding: 20px;
  text-align: center;
  z-index: 9999;
  transition: bottom 0.6s ease-in-out;
  /* font-family: sans-serif; */
}

#cookie-banner.show {
  bottom: 0;
}

.cookie-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-content p {
  margin: 0;
  font-size: 14px;
}

.cookie-content a {
  color: #ffffff;
  font-weight: 800;
  text-decoration: underline;
}

#cookie-accept {
  background-color: #2a2a2acb;
  border: none;
  padding: 10px 10px;
  font-size: 14px;
  color: #ffffff;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

#cookie-accept:hover {
  background-color: #38a4d2;
}


/* Input Grupları */
.auth-form__group {
    display: flex;
    flex-direction: column; /* stack children vertically */
    gap: 10px;
    margin: 0 auto 15px;
    width: 100%;
    max-width: 600px;
    padding: 12px;
    font-size: 14px;
    background: #ffffff;
    color: rgb(0, 0, 0);
    transition: 0.3s;
}


.auth-signup-form__group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    /* width: 20em; */
}

.auth-form__input {
    /* flex: 1; */
    width: 100%;
    padding: 12px;
    border: 2px solid #979cf8;
    border-radius: 5px;
    font-size: 14px;
    background: #ffffff;
    color: rgb(0, 0, 0);
    transition: 0.3s;
    margin-bottom: 10px;
    resize: none;

}

.auth-form__label {
    /* flex: 1; */
    width: 100%;
    padding: 12px;
    /* border: 2px solid #979cf8;
    border-radius: 5px; */
    font-size: 14px;
    background: #ffffff;
    color: rgb(0, 0, 0);
    transition: 0.3s;
}

.auth-form__input:focus {
    border-color: plum;
    box-shadow: 0 0 8px plum;
    outline: none;
}

/* Checkbox */
.auth-form__checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Buton */
.auth-form__button {
    background: #979cf8;
    color: white;
    padding: 12px;
    /* width: 70%; */
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    text-align: center
}

.auth-form__button:hover {
    background: #9370db;
    /* box-shadow: 0px 4px 10px rgba(255, 182, 193, 0.5); */
}

/* RESPONSIVE TASARIM */

/* Tablet için */
@media (max-width: 768px) {
    .auth-container {
        flex-direction: column;
    }

    .auth-image {
        display: none;
    }

    .auth-form {
        width: 100%;
        padding: 30px;
    }

    .auth-form-signup {
        width: 100%;
        padding: 30px;
    }
}

/* Mobil için */
@media (max-width: 480px) {
    .auth-form {
        padding: 20px;
    }

    .auth-form-signup {
        padding: 20px;
    }

    .auth-form__title {
        font-size: 24px;
    }

    .auth-form__input {
        padding: 10px;
        font-size: 14px;
    }

    .auth-form__button {
        padding: 10px;
        font-size: 14px;
    }
}


.contract-section__text a {
    color: #b19cd9;
}

.contract-section__text a:hover {
    color: plum;
}

.contract-category__list li.active {
    color: white;
    font-weight: bold;
    border-left: 4px solid plum;
    padding-left: 10px;
}

.contract-container {
    display: flex;
    width: 100%;
    /* background: #1a1a40; */
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    min-height: 60vh;
}

.contract-sidebar {
    width: 30%;
    background: #222244;
    padding: 20px;
    border-right: 2px solid #979cf8;
}

.contract-category {
    margin-bottom: 20px;
}

.contract-category__title {
    font-size: 16px;
    font-weight: bold;
    color: plum;
    margin-bottom: 8px;
}

.contract-category__list {
    list-style: none;
    padding-left: 10px;
}

.contract-category__list li {
    font-size: 14px;
    color: #bbb;
    padding: 5px 0;
    cursor: pointer;
    transition: 0.3s;
}

.contract-category__list li:hover {
    color: white;
    transform: translateX(5px);
}

.contract-content {
    width: 70%;
    padding: 30px;
}

.contract-section {
    margin-bottom: 20px;
}

.contract-section__title {
    font-size: 20px;
    font-weight: bold;
    color: #979cf8;
    margin-bottom: 10px;
}

.contract-section__text {
    font-size: 14px;
    color: #383737;
    line-height: 1.6;
}

.contract-section__subtitle {
    font-size: 16px;
    color: plum;
    margin-top: 10px;
}

.contract-section__list {
    list-style: disc;
    padding-left: 20px;
    color: #bbb;
}

@media (max-width: 768px) {
    .contract-container {
        flex-direction: column;
    }

    .contract-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 2px solid #979cf8;
        padding: 15px;
    }

    .contract-content {
        width: 100%;
        padding: 20px;
    }


}

@media (max-width: 480px) {
    .contract-section__title {
        font-size: 18px;
    }

    .contract-category__title {
        font-size: 15px;
    }

    .contract-category__list li {
        font-size: 13px;
    }
}


.job-form__file-input {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border-bottom: 2px solid #979cf8;
    background: #f8f8ff;
    color: #12122d;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.job-form__file-input:hover {
    border-color: plum;
    background: #f3f3ff;
}

.job-form__image-preview {
    margin-top: 10px;
    text-align: center;
    max-width: 10px;

}

.job-form__image-preview img {
    max-width: 10%;
    max-height: 10%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0px 4px 10px rgba(255, 182, 193, 0.5);
}


@media (max-width: 1000px) {
    .job-form__image-preview img {
        max-width: 20%;
    }
}

@media (max-width: 800px) {
    .job-form__image-preview img {
        max-width: 30%;
    }
}

@media (max-width: 480px) {
    .job-form__image-preview img {
        max-width: 40%;
    }
}

.ilan-container {
    width: 80%;
    max-width: 1000px;
    margin: auto;
    margin-top: 40px;
    margin-bottom: 40px;
}

/* Slider Kartı */
.ilan-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.ilan-slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.ilan-card {
    background: white;
    color: white;
    border-radius: 10px;
    flex: 1;
    height: 60px;
    margin: 0 5px;
    box-shadow: 0px 4px 15px rgba(255, 255, 255, 0.1);
    text-align: center;
}

.ilan-slider-btn {
    z-index: 10;
    background-color: transparent;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 1.5rem;
    margin-top: 40px;
}

/* Alttaki Accept / Reject Kartları */
.ilan-decisions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0 auto;
    width: 90%;
}



.ilan-accept-card {
    background: #5fa777;
}

.ilan-reject-card {
    background: #ff6963;
}

.ilan-decision-icon {
    width: 50px;
    margin-bottom: 10px;
}


.ilan-accept-btn {
    background: none;
    color: black;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin: 0 auto;

}

.ilan-reject-btn {
    background: none;
    color: black;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .ilan-decisions {
        flex-direction: column;
        align-items: center;
    }
}



.app-status {
    display: inline-block;
    padding: 5px 12px;
    font-weight: 600;
    margin: 10px 0;
    font-size: 14px;
    border-radius: 0 5px 5px 0;
}

.app-status.accepted {
    background-color: #28a745;
    color: white;
}

.app-status.rejected {
    background-color: #dc3545;
    color: white;
}

.app-status.pending {
    background-color: #ffc107;
    color: white;
}



.card.fade-out-up {
    animation: fadeUp 0.6s forwards;
}

@keyframes fadeUp {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }

    100% {
        opacity: 0;
        transform: translateY(-60px);
    }
}

.fpf_btn_div {
    gap: 20px;
    display: inline-flex;
}

.fpf_btn {
    display: inline-flex;
    width: 150px;
    height: 60px;
    background-color: #979cf8;
    border-radius: 8px;
    color: white;
    padding: 10px;
    text-decoration: none;
    transition: ease 0.3s;
}

.fpf_btn:hover {
    border: 2px solid #979cf8;
    background-color: white;
    color: #979cf8;
    transition: ease-out 0.3s;
}

.email-verification-banner {
    background-color: #5aa7f937;
    color: #232323;
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
    border-bottom: 1px solid #ffeeba;
}

.email-verification-banner a {
    font-weight: bold;
    color: #ff0000;
    text-decoration: underline;
}

.session-alert {
    background-color: #5aa7f937;
    color: #232323;
    text-align: center;
    padding: 10px;
    font-size: 0.95rem;
}