:root {
    --main-bg: rgba(40, 40, 40, 0.69);

    --dark-color: rgb(4, 28, 50);

    --color-white: #fff;
    /* --color-yellow: #dcbe88; */
    --color-yellow: #e8aa42;
    --color-blue: #3265f9;
    --color-darke-blue: #3969fa;
    --color-light-gray: #d1d1d1;
    --color-black: #000;
    --color-arrow-border: #b2b2b2;
    --color-card-bg: #f4f6f7;
    --color-card-bg-hovered: #1d3441;

    /* gradient */
    --color-gradient-header: #213e41;
    --color-gradient-body: #18273f;
    --color-gradient-footer: #101010;

    /* question card */
    --card-bg: #f8f6f6;
    --card-title-color: #686767;
    --card-active-bg-header: #213d41;
    --card-active-bg-body: #19283f;
    --card-active-bg-footer: #111;
    --card-inner-line-color: #595959;

    /* footer */
    --footer-border: #0e1115;
    --form-input-text: #b3b3b3;

    /* virtual assistance */
    --chatbot-bg: #1d1d21;
    --chatbot-header: #2b2b30;
    --chatbot-online-bg: #11d800;

    /* contact page */
    --color-light-gray: #f4f5f6;
    --color-very-light-gray: #bbb;
    --color-cintact-input-bg: #d9d9d9;
    --color-dark-gray: #7a7a7a;
    --color-contact-label-text: #b2acac;

    /* abunelik page */
    --color-purple: #4f46b8;
    --color-very-dark-gray: #ececec;
    --color-very-light-blue: #f1f5fb;

    /* tests page */
    --paragraph-dark-gray-color: #878686;

    --entry-level-title-bg: #03b9b1;
    --mid-level-title-bg: #ef6992;
    --hard-level-title-bg: #f4d42a;

    --entry-level-test-bg: #e8f8f6;
    --mid-level-test-bg: #fff0f6;
    --hard-level-test-bg: #fff7db;

    --test-slider-pagination-bg: #edf3fe;
    --test-slider-pagination-hover-bg: #1e1e1e;

    --test-instructions-bg: #edf4fe;
    --test-instructions-text-color: #dbe9fd;

    /* exam page */
    --exam-nav-active-bg: #e3f5ff;
    --exam-page-active-item: #2cabf4;
    --exam-page-bg: #f6f6f6;
    --exam-page-question-count-color: #c9c9c9;
    --exam-page-time-bg: #ffdfde;
    --exam-page-time-text-color: #d64a4a;
    --exam-page-question-text-color: #3a3939;

    --login-page-border: #bcb7b7;
    --login-page-input-border: #e8e8e8;
    --login-extra-img-bg: #f6f6f6;
    --selection-test-color: #a1a1a1;

    /* personal cabinet */
    --aside-list-item-hover: #52b6fd;
}


@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter-Regular.ttf");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", serif;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    padding: 0;
    color: var(--dark-color);
}

a:hover {
    color: var(--color-yellow);
}

input,
button,
textarea {
    border: none;
    outline: none;
}

textarea {
    resize: none;
}



.header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background-color: rgb(4 28 50);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.hero-section {
    position: relative;
    margin-top: -130px;
    overflow: hidden;
    min-height: 800px;
}

.hero-section img {
    display: block;
    width: 100%;
    height: 100vh;
    min-height: 800px;
    object-fit: cover;
    object-position: left;
}

.hero-section .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}


@media (min-width: 992px) {
    .hero-buttons {
        flex-direction: row;
    }
}


@media (max-width: 991px) {
    .hero-buttons {
        flex-direction: column;
    }
}

.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--main-bg);
    pointer-events: none;
    z-index: 1;
}


.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: left;
    width: 100%;
    padding: 0 50px;
    z-index: 2;
}



.hero-content h1 {
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    font-size: 4.0625rem;
    font-weight: bolder;
    color: var(--color-white);
    margin-bottom: 1.62rem;
    line-height: 6rem;
}

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
        line-height: 4rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        margin-top: 60px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
        line-height: 2.5rem;
    }
}




.hero-content h1 span {
    color: var(--color-yellow);
}


.hero-content p {
    font-size: 1.1875rem;
    font-weight: 500;
    color: var(--color-light-gray);
    line-height: 2.4rem;
    margin-bottom: 3rem;
}

.header-home {
    background: transparent;
}

.header-scrolled {
    background-color: rgb(4 28 50);
}

.navbar-dark .navbar-nav .nav-link {
    font-weight: 700;
    color: var(--color-white);
    font-size: 1rem;
}

.header ul {
    display: flex;
    gap: 2rem;
}

.header ul li {
    position: relative;
}

.header ul li::after {
    content: " ";
    display: block;
    width: 0;
    height: 0.25rem;
    background-color: var(--color-yellow);
    border-radius: 1.25rem;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
    transition: 0.4s;
}

.header ul li.active::after,
.header ul li:not(.active):hover::after {
    width: 100%;
}




.mobil-ac-btn {
    color: var(--color-yellow);
    border-color: var(--color-yellow);
}


.mobil-ac-btn:hover {
    color: #fff;
    background-color: var(--color-yellow);
    border-color: var(--color-yellow);
}


.bold {
    font-weight: bold;
}

.btn-outline-sari {
    color: var(--color-yellow);
    border-color: var(--color-yellow);
}


.btn-outline-sari:hover {
    color: var(--dark-color);
    background-color: var(--color-yellow);
    border-color: var(--color-yellow);
}



.btn-sari {
    color: var(--dark-color);
    background-color: var(--color-yellow);
    border: 1px solid var(--dark-color);
    font-size: 1rem;
    padding: 0.5rem 1rem;
    text-transform: uppercase;
}

.btn-sari:hover {
    color: var(--color-yellow);
    background-color: var(--dark-color);
    border: 1px solid var(--color-yellow);
}


/*Canvas*/

.mobile-menu-canvas {
    background-color: var(--dark-color);
    color: var(--color-yellow);
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}


.mobile-menu-canvas .offcanvas-header {
    background-color: var(--dark-color);
    color: var(--color-yellow);
}

.mobile-menu-canvas .offcanvas-body {
    flex: 1;
    overflow-y: auto;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background-color: var(--dark-color);
    color: var(--color-yellow);
}

.mobile-menu-canvas .offcanvas-footer {
    border-top: 1px solid var(--color-yellow);
    padding: 1rem;
    background-color: var(--dark-color);
    color: var(--color-yellow);
    font-size: 1.1rem;
    text-align: center;
}

.mobile-menu-canvas .nav-link {
    font-weight: 700;
    color: var(--color-yellow);
    font-size: 1.2rem;
    position: relative;
}

.mobile-menu-canvas .nav-item.active .nav-link,
.mobile-menu-canvas .nav-item:hover .nav-link {
    color: #fff;
}


.mobile-menu-canvas .btn-close {
    filter: invert(1) brightness(2);
}




.mobile-menu-canvas .navbar-nav .nav-item {
    position: relative;
}

.mobile-menu-canvas .navbar-nav .nav-link::after {
    content: " ";
    display: block;
    width: 0;
    height: 0.25rem;
    background-color: #fff;
    border-radius: 1.25rem;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
    transition: width 0.4s;
}

.mobile-menu-canvas .navbar-nav .nav-item.active .nav-link::after,
.mobile-menu-canvas .navbar-nav .nav-item:not(.active):hover .nav-link::after {
    width: 100%;
}

/*Canvas*/

.site-dark-btn {
    color: var(--color-yellow);
    background-color: var(--dark-color);
    border: 2px solid var(--color-yellow);
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.site-dark-btn:hover {
    color: var(--dark-color);
    background-color: var(--color-yellow);
    border-color: var(--color-yellow);
}

.site-light-btn {
    color: var(--dark-color);
    background-color: var(--color-yellow);
    border: 2px solid var(--dark-color);
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.site-light-btn:hover {
    color: var(--color-yellow);
    background-color: var(--dark-color);
    border-color: var(--dark-color);
}


section h2 {
    font-size: 1.9rem;
    color: var(--color-black);
    font-weight: 700;
}

/* Section partners Slider */
.partners__section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: space-between;
}

.partners__section h2 {
    margin: 3rem 0 1rem;
}

.partners__slider__container {
    width: 100%;
}

.partners__slider__container img {
    width: 12rem;
}




/* About section */

.about-section h2 {
    position: relative;
    display: flex;
    align-self: flex-start;
}

.about-section h2::before {
    content: " ";
    display: block;
    width: 70%;
    height: 0.25rem;
    background-color: var(--color-blue);
    border-radius: 1.25rem;
    position: absolute;
    top: -40%;
    left: 0;
    z-index: 10;
}

.about-section p {
    font-size: 1.2rem;
    width: 90%;
    line-height: 2.3rem;
}

.about-section a.btn {
    padding: 8px 32px;
    background-color: var(--color-black);
    color: var(--color-white);
    border-radius: 0.5625rem;
    font-size: 1.2rem;
    cursor: pointer;
    border: none;
}



@media (max-width: 768px) {

    .about-icon-img {
        display: none;
    }
}

.about-images {
    display: flex;
    gap: 16px;
}



.about-images img {
    height: 400px;
    width: 100%;
    object-fit: cover;
}







/* Services Section */


.service__card {
    border-radius: 1.25rem;
    background: var(--color-card-bg);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    font-weight: 900;
    padding: 1.5rem;

    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: start;
    color: var(--color-black);
}

.service__card p,
.service__card div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service__card span {
    font-size: 1.9rem;
}

.service__card p {
    font-size: 1.2rem;
    margin-top: 1rem;
}

.service__card:hover span {
    transition: all 0.3s ease-in-out;
}

.service__card:hover {
    background-color: var(--color-card-bg-hovered);
}

.service__card:hover span {
    color: var(--color-yellow);
}

.service__card:hover p {
    color: var(--color-white);
}





/* Virtual Asistent Section */
.va__section {
    background: linear-gradient(170deg,
            var(--color-gradient-header) 3.66%,
            var(--color-gradient-body) 30.89%,
            var(--color-gradient-footer) 90.8%);

}


.va__section h2 {
    font-size: 2.5rem;
    color: var(--color-white);
}

.va__section p {
    color: var(--color-white);
    font-size: 1.1rem;
}



.va-section-sol {
    text-align: right;
}


@media (max-width: 768px) {


    .va-section-sol {
        text-align: center;
    }


    .va-oklari {
        transform: rotate(90deg);
        height: 44px;
        margin-top: 25px;
        margin-bottom: 25px;
    }

}




/* Tests section */

.test__section__content {

    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-evenly;
    position: relative;
    gap: 16px;
}

.test__section__content::before {
    content: " ";
    display: block;
    width: 24%;
    height: 0.25rem;
    background-color: var(--color-blue);
    position: absolute;
    border-radius: 1.25rem;
    top: -20px;
    left: 0;
}

.test__section__content h2 {
    position: relative;
    display: flex;
    align-self: flex-start;
    font-size: 2.5rem;
}

.test__section__content p {
    font-size: 1.1875rem;
    line-height: 2.3rem;
}

.test__section__content a.btn {
    background-color: var(--color-blue);
    color: var(--color-white);
    border-radius: 0.5625rem;
    font-size: 1.2rem;
    cursor: pointer;
}





/* Yorumlar */


.ust-img-yazili {
    position: relative;
}

.ust-img-yazili img {
    width: 100%;
    height: auto;
}

.ust-img-yazili h2,
.ust-img-yazili p {
    position: absolute;
    z-index: 1;
    color: white;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}


.ust-img-yazili h2::after {
    content: " ";
    display: block;
    width: 52%;
    height: 0.6rem;
    background-color: var(--color-yellow);
    position: absolute;
    bottom: -15%;
    left: 0;
}

.ust-img-yazili h2 {
    top: 20%;
    font-size: 2rem;
    color: var(--color-white);
    font-size: 2.5rem;
    width: fit-content;
    text-transform: uppercase;
}

.ust-img-yazili p {
    top: 35%;
    font-size: 1.25rem;
    margin: 0;
}

@media (max-width: 768px) {
    .ust-img-yazili h2::after {
        content: " ";
        display: block;
        width: 52%;
        height: 0.3rem;
        position: absolute;
        bottom: -8%;
        left: 0;
    }

    .ust-img-yazili h2 {
        font-size: 1.8rem;
        top: 10%;
        width: 90%;
    }

    .ust-img-yazili p {
        font-size: .7rem;
        top: 45%;
    }
}




.users__section {
    background: url("../images/users__bg.svg");
    height: 50rem;
    background-repeat: no-repeat;
    background-size: 100%;
    padding: 5rem 0;
}



.users__section__title__container h2 {
    color: var(--color-white);
    font-size: 2.5rem;
    position: relative;
    width: fit-content;
}

.users__section__title__container h2::after {
    content: " ";
    display: block;
    width: 52%;
    height: 0.6rem;
    background-color: var(--color-yellow);
    position: absolute;
    bottom: -15%;
    left: 0;
}

.users__section__title__container p {
    margin-top: 1.7rem;
    font-size: 1.25rem;
}

.users__section__comments__container {
    height: 30rem;
    border-radius: 1.625rem;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.07);
    background-color: var(--color-white);
    margin-top: -14rem;
    z-index: 3;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    padding: 3rem 4.7rem;

}


.users__section__comments__container .quotes {
    height: 100px;
}

@media (max-width: 768px) {



    .users__section__comments__container .quotes {
        height: 50px;
    }

    .users__section__comments__container {
        padding: 1rem 1rem;
        margin-top: -2rem;
    }
}


.users__section__user__comment {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.users__section__user__comment p {
    text-align: justify;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 2rem;
    width: 100%;
    overflow: hidden;
}

.users__section__user__comment span {
    font-size: 1.3rem;
    font-weight: 700;
}




/* Accordion Section */

.questions__section {
    margin-top: 80px;
}

.questions__section .baslik {
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
}

.accordion-item {
    border: none;
    border-radius: 1.5rem !important;
    background: var(--card-bg);
    box-shadow: 0px 4px 15px 0px rgba(61, 61, 61, 0.08);
    margin-bottom: 3.5rem;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
}



.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.4rem;
    color: var(--card-title-color);
    cursor: pointer;
}

.accordion-button {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.4rem;
    text-align: left;
    padding: 1.5rem;
    color: var(--card-title-color);
}

.accordion-button:focus {
    box-shadow: none;
}




.accordion-button:not(.collapsed),
.accordion-body {
    color: var(--color-white);
    background: linear-gradient(101deg,
            var(--card-active-bg-header) 16.45%,
            var(--card-active-bg-body) 42.79%,
            var(--card-active-bg-footer) 100%);
}


.accordion-button img {
    transition: all 0.4s ease-in-out;
}


.accordion-button:not(.collapsed)::after {
    content: '';
    background-image: url('../icons/arrow_down_filled.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 1.5rem;
    height: 1.5rem;
    transition: transform 0.4s ease-in-out;
    transform: rotate(0deg);
    margin-left: auto;
}


.accordion-button::after {
    content: '';
    background-image: url('../icons/arrow_down_filled.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 1.5rem;
    height: 1.5rem;
    transition: transform 0.4s ease-in-out;
    transform: rotate(0deg);
    margin-left: auto;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}




.accordion-collapse {
    transition: height 0.5s ease-in-out;
}

.accordion-body {
    opacity: 0;
    height: 0;
    padding: 0 3.3rem;
    transition: all 0.2s ease-in-out;
    color: var(--color-white);
    border-top: 1px solid #bfb9b9;
}

.accordion-collapse.show .accordion-body {
    opacity: 1;
    height: auto;
    padding: 1.5rem 3.3rem;
}



/*Footer*/

:root {
    --social-icon-bg: rgba(0, 0, 0, 0.5);
    --social-icon-hover-bg: var(--color-yellow);
}

.footer {
    background-color: var(--dark-color);
    color: var(--color-white);
}

.footer .logo img {
    max-width: 200px;
}

.footer .logo-description {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer .social-icons {
    display: flex;
    gap: 10px;
}

.footer .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--social-icon-bg);
    border-radius: 8px;
    color: var(--color-white);
    font-size: 1.5rem;
    transition: background-color 0.3s, transform 0.3s;
}

.footer .social-icon:hover {
    background-color: var(--social-icon-hover-bg);
    transform: scale(1.1);
}

.footer .menu-section h5 {
    color: var(--color-yellow);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}



.footer form .form-control {
    background-color: var(--main-bg);
    color: var(--color-white);
    border: 1px solid var(--color-yellow);
    font-size: 1rem;
}

.footer form .btn {
    background-color: var(--color-yellow);
    border: none;
    color: var(--dark-color);
    font-size: 1rem;
}

.footer form .btn:hover {
    background-color: #d9a832;
}

.footer .copyright {
    border-top: 1px solid var(--color-white);
    font-size: 1rem;
}


.footer .menu-section ul {
    padding-left: 0;
    list-style: none;
}

.footer .menu-section ul li {
    margin-bottom: 1rem;
}

.footer .menu-section ul li a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 1rem;
    padding: 0;
    border-radius: 8px;
    display: inline-block;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
    position: relative;
}

.footer .menu-section ul li a:hover {
    color: var(--dark-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.footer .menu-section ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-yellow);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.footer .menu-section ul li a:hover::after {
    transform: scaleX(1);
}

.footer .orta-kisim {
    display: flex;
    justify-content: space-between;
}


.yorum-img {
    width: 3rem !important;
    height: 3rem;
    text-align: center;
    border-radius: 50%;
    transition: all 0.2s ease-in-out;
}



@media (max-width: 768px) {


    .footer .orta-kisim {
        flex-direction: column;
        text-align: center;
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid var(--color-white);
    }



    .footer .orta-kisim .menu-section {
        flex-direction: column;
        text-align: center;
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid var(--color-white);
    }




    .footer .orta-kisim ul li {
        text-align: center;
    }

    .footer .sol-kisim {
        text-align: center;
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid var(--color-white);
    }

    .footer .social-icons {
        justify-content: center;
    }

}




/* Contact page */


.contact__section__form__container input,
.contact__section__form__container textarea {
    background-color: var(--color-light-gray);
    display: block;
    width: 100%;
    color: var(--color-dark-gray);
    font-size: 1rem;
    font-weight: 700;
    margin-top: 0;
    padding: 0.6rem 0.8rem;
    border-radius: 0.5625rem;
}



.contact__section__form__container label {
    color: #212529;
    font-weight: 700;
    display: block;
    margin-bottom: 0;
}


.contact__section__form__container button.btn {
    width: 100%;
    font-weight: 600;
}



.contact-card {
    background-color: var(--dark-color);
    border: 1px solid var(--color-yellow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    border-color: var(--color-yellow);
}


.contact-card i {
    color: var(--color-yellow);
    transition: color 0.3s ease;
}

.contact-card:hover i {
    color: white;
}

.contact-card p {
    color: var(--color-yellow);
}

.contact-card span,
.contact-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--color-yellow);
}

.contact-img {
    max-height: 100%;
    object-fit: cover;
    width: 100%;
}

.contact__section__form__container {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .contact__section__form__container {
        padding: 15px;
    }
}



.breadcrumb {
    background-color: var(--dark-color);
    padding: 1rem;
    margin: 2.5rem 0;
}

.breadcrumb h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--color-yellow);
    text-transform: capitalize;
}

.breadcrumb p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    color: var(--color-yellow);
    opacity: .8;
}

.googleMaps iframe {
    width: 100%;
    height: 400px;
}

@media (max-width: 768px) {

    .breadcrumb {
        background-color: var(--dark-color);
        padding: 1rem;
        margin: 1.5rem 0;
    }


    .breadcrumb h2 {
        font-size: 1.5rem;
    }

    .breadcrumb p {
        font-size: 0.9rem;
    }
}
















.user-actions-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 35px;
}

.user-actions-card {
    background-color: #f5f5f5;
    display: flex;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.form-section {
    padding: 40px;
    width: 600px;
}

.image-section {
    background-image: url('../images/user-actions_bg_img.webp');
    background-size: cover;
    background-position: center;
    position: relative;
    width: 300px;
    padding: 25px;
}

.image-section:after {
    content: '';
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.user-actions-form h2 {
    margin-bottom: 30px;
}

.user-actions-container .btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.btn-social {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem;
    border: 1px solid #bcb7b7;
    border-radius: 1.56rem;
    font-weight: 600;
    color: var(--color-black);
    background-color: #fff;
    width: 100%;
}

.user-actions-container .icon {
    margin-right: 8px;
}

.image-section-inner {
    border-radius: 3.06rem;
    backdrop-filter: blur(0.4rem);
    background: rgba(53, 53, 53, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.image-section-inner-left-icon {
    left: 0;
    top: 15%;
}

.image-section-inner-right-icon {
    right: 0;
    bottom: 15%;
}

.user-actions-left-img-icons {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #f6f6f6;
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    padding: 8px
}

.user-actions-left-img-icons img {
    width: 100%;
    height: 100%;
}

.user-actions-container input,
.user-actions-container textarea {
    background-color: #fff;
    display: block;
    width: 100%;
    color: var(--color-dark-gray);
    font-size: 1rem;
    font-weight: 700;
    margin-top: 0;
    padding: 0.6rem 0.8rem;
    border-radius: 0.5625rem;
}

.user-actions-container label {
    color: #212529;
    font-weight: 700;
    display: block;
    margin-bottom: 0;
}

.user-actions-container button.btn {
    width: 100%;
    font-weight: 600;
}

@media (max-width: 768px) {
    .user-actions-card {
        width: 100%;
    }

    .user-actions-card .image-section {
        display: none;
    }

    .user-actions-container {
        padding: 15px;
    }

    .user-actions-card .btn-container {
        flex-direction: column;
        padding: 15px 0;
    }


    .user-actions-card .btn-social {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .form-section {
        padding: 10px;
        width: 100%;
    }

}



/*Profil*/
.profile_section .nav-pills .nav-link {
    background-color: var(--dark-color);
    color: #ffffff;
    margin-bottom: 10px;
    padding: 10px 15px;
    border-radius: 5px;
}

.profile_section .nav-pills .nav-link.active {
    background-color: var(--color-yellow);
    color: var(--dark-color);
    font-weight: bold;
}



.profile_section input,
.profile_section textarea {
    background-color: var(--color-light-gray);
    display: block;
    width: 100%;
    color: var(--color-dark-gray);
    font-size: 1rem;
    font-weight: 700;
    margin-top: 0;
    padding: 0.6rem 0.8rem;
    border-radius: 0.5625rem;
}

.profile_section label {
    color: #212529;
    font-weight: 700;
    display: block;
    margin-bottom: 0;
}

.profile_section button.btn {
    width: 100%;
    font-weight: 600;
}



.profile_section .card {
    border: 1px solid var(--dark-color);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.profile_section .card-header {
    background-color: var(--dark-color);
    color: white;
    padding: 15px;
    text-align: center;
    border-bottom: 2px solid var(--color-yellow);
    border-radius: 10px 10px 0 0;
}

.profile_section .odeme-card h3 {
    margin: 0;
    font-size: 1.5rem;
}

.profile_section .odeme-card .card-body {
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 10px;

}



.profile_section .odeme-card .table thead {
    background-color: var(--color-yellow);
    color: var(--dark-color);
    text-align: center;
}

.profile_section .odeme-card .table-hover tbody tr:hover {
    background-color: rgba(232, 170, 66, 0.2);
}

.profile_section .odeme-card .table tbody td {
    vertical-align: middle;
    text-align: center;
    color: var(--dark-color);
}

.profile_section .odeme-card .text-muted {
    text-align: center;
    color: var(--dark-color);
}

.profile_section .odeme-card .table td {
    padding: 8px;
    border-color: var(--dark-color);
}

.profile_section .odeme-card .table th {
    font-weight: 600;
    padding: 10px;
    border-color: var(--dark-color);
}


@media (max-width: 768px) {
    .odeme-card .table {

        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .odeme-card .table thead {
        display: none;
    }


    .odeme-card .table tbody {
        width: 100%;
    }

    .odeme-card .table tbody tr {
        display: flex;
        flex-direction: column;
        border: 1px solid var(--dark-color);
        margin-bottom: 10px;
        border-radius: 10px;
        background-color: #fff;
        width: 100%;
        overflow: hidden;
        background-color: #041c320f;
    }

    .odeme-card .table tbody td {
        text-align: left;
        padding: 10px;
        position: relative;
        border-bottom: 1px solid var(--dark-color);
        font-weight: bold;

    }


    .odeme-card .table tbody td:last-child {
        border-bottom: none;
    }


    .odeme-card .table tbody td::before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        top: 10px;
        font-weight: bold;
        color: var(--dark-color);
    }
}


/*Quiz*/

.quiz-card {
    border-radius: 1.3rem;
    overflow: hidden;
    position: relative;
    border: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.quiz-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.quiz-card .seviye-badge {
    width: auto;
    border-top-right-radius: 1.3rem;
    border-bottom-left-radius: 1.3rem;
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
    align-self: end;
    color: var(--color-white);
    font-weight: 700;
}

.quiz-card img {
    border-radius: 0;
    height: 250px;
    object-fit: cover;
    padding: 0 1.5rem;
}

.quiz-card .card-body {
    padding: 1.5rem;
}

.quiz-card .card-title {
    font-size: 1.2rem;
    font-weight: bolder;
    color: #000;
}

.quiz-card .card-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #000;
}

.quiz-card .btn {
    font-size: 0.9rem;
    padding: 0.7rem 1.2rem;
    border-radius: 20px;
}


.entry-level-card {
    background-color: #e8f8f6;
}

.entry-level-card .seviye-badge {
    background-color: #03b9b1;
}


.mid-level-card {
    background-color: #fff0f6;
}

.mid-level-card .seviye-badge {
    background-color: #ef6992;
}

.hard-level-card {
    background-color: #fff7db;
}

.hard-level-card .seviye-badge {
    background-color: #f4d42a;
}


.quiz-detay-card {
    border-radius: 10px;
    background-color: #f8f9fa;
}

.quiz-detay-card .card-title {
    font-weight: bold;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.quiz-detay-card .badge {
    font-size: 0.9rem;
}




/*Dersler*/

.ders-card {
    border-radius: 1.3rem;
    overflow: hidden;
    position: relative;
    border: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.ders-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.ders-card .seviye-badge {
    width: auto;
    border-top-right-radius: 1.3rem;
    border-bottom-left-radius: 1.3rem;
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
    align-self: end;
    color: var(--color-white);
    font-weight: 700;
}

.ders-card img {
    border-radius: 0;
    height: 250px;
    object-fit: cover;
    padding: 0 1.5rem;
}

.ders-card .card-body {
    padding: 1.5rem;
}

.ders-card .card-title {
    font-size: 1.2rem;
    font-weight: bolder;
    color: #000;
}

.ders-card .card-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #000;
}

.ders-card .btn {
    font-size: 0.9rem;
    padding: 0.7rem 1.2rem;
    border-radius: 20px;
}


.ders-detay-card {
    border-radius: 10px;
    background-color: #f8f9fa;
}

.ders-detay-card .card-title {
    font-weight: bold;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.ders-detay-card .badge {
    font-size: 0.9rem;
}






/* Virtual assistance page */

[data-page="va_page"] {
    background: linear-gradient(176deg,
            var(--card-active-bg-header) 0%,
            var(--card-active-bg-body) 36.29%,
            var(--card-active-bg-footer) 96.55%);
    background-repeat: no-repeat;
    /* height: 100vh; */
}

.chatbot__section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
}

.chatbot__container {
    width: 100%;
    height: calc(100vh - 10.375rem);
    border-radius: 1.3125rem;
    background: var(--chatbot-bg);

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.chatbot__header {
    background-color: var(--chatbot-header);

    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    color: var(--color-white);

    border-top-right-radius: 1.3125rem;
    border-top-left-radius: 1.3125rem;
}

.chatbot__header p:first-child {
    font-size: 1.4rem;
    font-weight: 700;
}

.chatbot__header p:last-child {
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 0.3rem;

    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.chatbot__header p .is__online {
    display: inline-block;
    width: 0.6rem;
    height: 0.6rem;
    background-color: var(--chatbot-online-bg);
    border-radius: 50%;
}

.chatbot__header .chatbot__reload {
    width: 2rem;
    transition: all 0.4s ease-in;
    cursor: pointer;
}


.chatbot__header .chatbot__reload img {
    max-width: 100%;
}

.chatbot__body {
    flex-grow: 1;
    color: var(--color-white);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    scroll-behavior: smooth;
    overflow-y: auto;
    transition: all 0.4s ease-in;
}


.chatbot__body {
    scrollbar-width: thin;
    scrollbar-color: #2b2b30 #1d1d21;
}

.chatbot__body::-webkit-scrollbar {
    width: 12px;
}

.chatbot__body::-webkit-scrollbar-track {
    background: #1d1d21;
}

.chatbot__body::-webkit-scrollbar-thumb {
    background-color: #2b2b30;
    border-radius: 10px;
    border: 2px solid #1d1d21;
}



.chatbot__body p {
    max-width: 50%;
    font-size: 1.1rem;
    border-radius: 1.125rem;
    padding: 1rem;
    /* white-space: pre-wrap; */
}

.chatbot__body p.chatbot__message {
    align-self: flex-start;
    background-color: var(--chatbot-header);
}

.chatbot__body p.user__message {
    align-self: flex-end;
    background-color: var(--color-blue);
}

.chatbot__message__side {
    padding: 1rem 1.5rem;
}

.chatbot__message__side form {
    height: 3.25rem;
    width: 100%;
    background-color: var(--chatbot-header);
    border-radius: 0.75rem;
    /* position: relative; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;

    gap: 1rem;
    padding: 2rem 1rem;
}

.chatbot__message__side form input {
    background-color: transparent;
    font-weight: 500;
    color: var(--color-white);
    width: 90%;
    font-size: 1.1rem;
}

.chatbot__message__side form input::placeholder {
    font-weight: 500;
    color: var(--color-white);
}

.chatbot__message__side form button.btn {
    color: var(--color-white);
    font-weight: 600;
    border-radius: 1rem;
    cursor: pointer;
    padding: 0.8rem 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.chatbot__message__side form button.btn img {
    width: 0.9rem;
    height: 0.9rem;
}



.quiz-title {
    background-color: var(--color-white);
    border-radius: 0.81rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.quiz-title h1 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #000;
}


.quiz-page {
    padding-top: 25px;
    background-color: #f6f6f6;
}



.quiz-header .quiz-soru-nav {
    flex-grow: 1;
    background-color: var(--color-white);
    border-radius: 0.81rem;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 2.5rem;
    padding: 0 2rem;
    font-size: 1.25rem;
    font-weight: 700;
    overflow-y: hidden;
    overflow-x: auto;
    color: var(--exam-page-question-count-color);
}

.quiz-header .quiz-timer {
    border-radius: 0.88rem;
    background-color: var(--exam-page-time-bg);
    color: var(--exam-page-time-text-color);
    font-size: 1rem;
    font-weight: bolder;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    padding: 8px;
}

.quiz-header .quiz-timer p {
    margin: 0;
    padding: 0;
}

.quiz-header .quiz-timer #time {
    font-weight: bold;
}

.quiz-header .quiz-soru-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.quiz-header .quiz-soru-nav-item {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #2cabf4;
    font-weight: bold;
    font-size: 18px;
    border: 1px solid #e3f2fd;
    cursor: pointer;
}


.quiz-header .quiz-soru-nav-item:hover {
    background-color: #e3f5ff;
}

.quiz-header .quiz-soru-nav-item.active {
    background-color: #3265f9;
    color: #fff;
}


.quiz-footer {
    display: flex;
    gap: 8px;
}

.quiz-footer .btn {
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 8px;
    width: 100%;
}

.quiz-footer #prev-btn {
    background-color: #e3f5ff;
    color: #2cabf4;
}

.quiz-footer #next-btn {
    background-color: #2cabf4;
    color: #fff;
}

.soru-container {
    background-color: var(--color-white);
    border-radius: 1.81rem;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 2.81rem;
    padding: 2rem;
    overflow-y: auto;
    user-select: none;
    cursor: not-allowed;
    height: 100%;
}


.soru-item {
    display: none;
}

.option {
    display: flex;
    align-items: center;
    background-color: white;
    border: 1px solid #f1f1f1;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.option:hover {
    background-color: #e6f3ff;
}

.option.active {
    background-color: #00aaff;
    color: white;
}

.option-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #e3f2fd;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #007bff;
    font-weight: bold;
    margin-right: 10px;
}

.option.active .option-circle {
    background-color: white;
    color: #00aaff;
}



.result-quiz-card {
    border-radius: 10px;
    border: none;
    background-color: #f8f9fa;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.result-quiz-card .card-header {
    background-color: var(--dark-color);
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.result-quiz-card .list-group-item {
    font-size: 1.2rem;
    border: none;
}

.result-quiz-card .badge-success {
    background-color: #28a745;
}

.result-quiz-card .badge-danger {
    background-color: #dc3545;
}

.result-quiz-card .badge-warning {
    background-color: #ffc107;
    color: #212529;
}

.result-quiz-card .badge-info {
    background-color: #17a2b8;
}

.result-quiz-card .card-footer {
    background-color: #f8f9fa;
}