@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,700;1,100&display=swap');
:root {
    --griKenarlik: #c4c4c4;
    /*--mavi: #6f42c1;*/
    --primary-100: #f5f0ff;
    --primary-200: #e6d8ff;
    --primary-300: #d6c0ff;
    --primary-400: #c7a8ff;
    --primary-500: #6f42c1;
    --primary-500-transparent: rgba(111, 66, 193, .95);
    --primary-600: #5a3aa5;
    --primary-700: #4e2f86;
    --primary-800: #3e246c;
    --primary-900: #2e1a53;
    --turuncu: #ec6446;
    --kirmizi: #ff0000;
    --body-font-size: .875rem;
    --body-font-color: rgb(87, 87, 87);
    --background-color: #fefefe;
    --font-family: 'Poppins', sans-serif;
}

body.theme-dark {
    --primary-100: #e0e3f0;
    --primary-200: #c1c6e1;
    --primary-300: #a2a8d3;
    --primary-400: #6471af;
    --primary-500: #293278;
    --primary-500-transparent: rgba(41, 50, 120, .95);
    --primary-600: #222a66;
    --primary-700: #1c2354;
    --primary-800: #151b42;
    --primary-900: #0f1430;
}

* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
    font-size: 100%;
}

body {
    background-color: var(--background-color);
    line-height: 24px;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 400;
    font-size: var(--body-font-size);
    color: var(--body-font-color) !important;
}

main {
    min-height: 400px !important;
    padding: 0px !important;
}

.content-wrapper {
    padding: 100px 20px;
}

[role="main"] {
    padding-top: 160px;
}


/* img {
    width: 100%;
    height: auto;
} */

a {
    font-size: var(--body-font-size);
    color: #3d3d3d;
    text-decoration: none;
}

a.maviLink {
    font-size: var(--body-font-size);
    color: var(--primary-500) !important;
    text-decoration: none;
}

a:hover {
    color: #6e6e6e;
    font-size: var(--body-font-size);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    --tw-text-opacity: 1;
    color: rgb(22 28 45 / var(--tw-text-opacity));
    font-weight: normal;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.70rem;
}

h3 {
    font-size: 1.40rem;
}

h4 {
    font-size: 1.20rem;
}

h5 {
    font-size: 1rem;
}

h6 {
    font-size: .70rem;
}


/**** Navbar ****/

.navbar {
    border-bottom: 1px solid var(--primary-400) !important;
}

.navbar-bg {
    position: absolute;
    top: 0;
    width: 100%;
    background: transparent;
}

.navbar-brand {
    height: 100%;
}

.navbar-nav .nav-link {
    font-size: .9375rem;
    color: #fff !important;
}

.navbar-nav .nav-link:hover {
    font-size: .9375rem;
    color: #d1dce8 !important;
}

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

.navbar-brand img {
    transition: ease-in 5ms;
    -webkit-transition: ease-in 5ms;
    -moz-transition: ease-in 5ms;
    -ms-transition: ease-in 5ms;
    -o-transition: ease-in 5ms;
}


/**** Main-Header ****/

.header {
    height: 65vh;
    background: linear-gradient(var(--primary-500-transparent), var(--primary-500-transparent)), url("../../assets/images/header_bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 175px;
}

.header-content h1 {
    color: #fff;
    letter-spacing: 2px;
    line-height: 60px;
    font-size: 3.5rem !important;
    font-weight: 400;
}

.header-content h2 {
    color: #fff;
    font-size: 1.3rem !important;
    font-weight: 400;
    line-height: 1.4em;
    margin-bottom: 20px;
}

.header-content p {
    color: #fff;
    margin: 20px 0px;
    font-size: 1.1rem !important;
    font-weight: 450;
}

.header-content {
    margin: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.header-content .i {
    width: 100px !important;
    height: 100px !important;
    border: 1px solid #fff;
    border-radius: 100%;
}

.header i {
    color: #fff;
    font-size: 2.5rem;
    border-radius: 100%;
}

.header .header-content a {
    color: #fff !important;
    border: 1px solid #fff !important;
    padding: 15px 30px;
    border-radius: 2rem;
    background-color: transparent;
    width: 200px;
}

.header .header-content a:hover {
    background-color: rgba(255, 255, 255, .6);
}

.header-img {
    display: flex;
    justify-content: flex-end;
}

.alert-display {
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 0px;
    width: 100%;
    max-width: 600px;
    border-radius: .6rem;
    box-shadow: 0.5rem 0.5rem 0.5rem rgb(20 40 60 / 6%);
    z-index: 9999999;
}

.alert-success a {
    color: inherit;
    text-decoration: underline;
    font-weight: 400;
    font-size: 1.3rem !important;
}

.alert-danger a {
    color: inherit;
    text-decoration: underline;
    font-weight: 400;
}

.alert-danger ul>li,
.alert-success ul>li {
    list-style: none;
}

.text-mavi {
    color: var(--primary-500);
}

.btn-nav {
    position: relative;
    text-align: center;
    white-space: nowrap;
    color: #ffffff;
    background-color: #1967D2;
    font-size: 15px;
    line-height: 20px;
    border-radius: 8px;
    font-weight: 400;
    padding: 18px 35px 15px 35px;
    margin: 0px 5px;
    transition: ease 5ms;
}

.btn-nav:hover {
    color: #ffffff;
    background-color: #1650a1;
}


/*** Search Box ****/

.search-section {
    padding: 0px !important;
    display: flex;
    justify-content: center;
}

.search-box {
    margin: 50px 0px;
    padding: 2px;
    width: auto;
    background: #fff;
    border-radius: .6rem;
    box-shadow: 0 0.5rem 1rem rgb(20 40 60 / 3%);
    border: 1px solid #e4e4e4;
}

.search-box h2 {
    color: #000;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}

.search-box input {
    position: relative;
    display: inline-block;
    font-size: var(--body-font-size);
    box-sizing: border-box;
}

.search-box input[type="text"] {
    background: #fff;
    width: 300px;
    height: 50px;
    border: none;
    outline: none;
    padding: 0 25px;
    border-bottom-left-radius: 1rem !important;
    border-top-left-radius: 1rem !important;
}

.search-box select {
    position: relative;
    left: -3px;
    top: -2px;
    height: 50px;
    border: none;
    outline: none;
    background: #fff;
    font-size: var(--body-font-size);
    padding: 11px 16px 12px;
    margin: 0px -2px;
    border-right: 15px solid #fff;
}

.search-box button {
    position: relative;
    width: 80px;
    height: 42px;
    border: none;
    outline: none;
    cursor: pointer;
    background: #1a0346;
    color: #fff;
    left: -3px;
    top: -1px;
    border-radius: .6rem;
}

.search-box button:hover {
    background: #3d05a3;
}

.title-box {
    height: 150px;
    width: 200px;
    border-radius: 8%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 20px;
    padding: 10px;
    text-align: center;
    float: left;
    font-size: 3rem;
    font-weight: 400;
    /*color: #fff;*/
    /* box-shadow: 0 0.5rem 1rem rgb(20 40 60 / 4%); */
    border: 1px solid #e4e4e4;
}

.title-box:hover {
    border: 0px;
    transition: transform 125ms;
    transform: translateY(-10px);
    /* box-shadow: 0 7px 16px 0 rgb(41 53 108 / 15%); */
    border: 1px solid #e4e4e4;
}

.btn-outline-secondary {
    color: #6c757d;
    border-color: #eeeeee;
    box-shadow: 0 0.5rem 1rem rgb(20 40 60 / 3%);
    margin: 2px 0px;
    ,
    padding: 4px 0px !important;
}

.page-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 1.2rem;
    padding: 30px 10px;
    /* color: #10549b; */
    transition: 0.3s ease-in-out;
    font-weight: 500;
}

.page-item span {
    padding: 20px;
    font-size: 1.2rem;
}

.page-item:hover {
    color: rgb(0, 0, 0, .5);
}

.page-item i {
    font-size: 4rem;
    margin-bottom: 20px;
}


/*** Page Title ***/

.page-title {
    background-image: linear-gradient(var(--primary-500-transparent), var(--primary-500-transparent)), url("../../assets/images/title_bg.jpg");
    background-size: cover;
    background-position: center center;
    padding: 140px 0px 40px 0px;
    color: #1967d2;
    ;
}

.page-title .container {
    color: #fff;
}

.page-title .container h2 {
    color: #fff;
    font-weight: bold;
}

.page-title a {
    color: #fff !important;
    position: relative;
    width: 0%;
    height: 2px;
    font-size: .8rem !important;
}

.page-title .container a:hover {
    color: rgba(255, 255, 255, 0.5) !important;
}

.page-title .container i {
    color: #fff !important;
    font-size: 2rem;
}


/**** Member Page ***/

.member-page {
    height: 100%;
    padding: 150px 0px;
    background-image: linear-gradient(330deg, rgba(18, 37, 111, .6), rgba(24, 98, 202, .4)), url("../../assets/images/uye_ol.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.member-page i {
    font-size: 5rem;
    color: #fff;
}

.member-page h3 {
    color: #fff;
    padding-bottom: 10px;
}

.member-page a {
    color: #fff !important;
    padding: 10px;
    width: 200px;
}

.member-page a:hover {
    color: #6994f4 !important;
}

.member-page .circle {
    height: 300px;
    width: 300px;
    border: 0px;
}


/**** Form ***/

form input[type="text"],
input[type="email"],
input[type="password"],
select,
textarea {
    border-radius: 0px !important;
}

form label {
    font-weight: 450;
    padding-bottom: 10px;
    color: rgba(0, 0, 0, .4);
}

.form-control {
    font-size: .9rem !important;
}

::placeholder {
    /* Firefox */
    color: rgb(209, 207, 207) !important;
    font-weight: normal !important;
    font-size: .9rem !important;
    opacity: 1;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: rgb(196, 196, 196) !important;
    font-weight: normal !important;
    font-size: .9rem !important;
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: rgb(196, 196, 196) !important;
    font-weight: normal !important;
    font-size: .9rem !important;
}


/**** Toogle Password ***/

.toggle-div {
    position: relative;
}

.toggle-password {
    position: absolute;
    top: 42px;
    right: 10px;
    font-size: 1.1rem;
    z-index: 9999;
    cursor: pointer;
}


/****Arana Kutusu Css ***/


/**** Kayıt Listesi ***/


/**** Pöpüler Sektörler ***/

section {
    padding: 80px 0px;
}

section:nth-child(2n) {
    background-color: rgba(0, 0, 0, .02);
}

section h2 {
    color: var(--primary-700);
    font-weight: 650;
    font-size: 2rem !important;
    position: relative;
}

.istatistik-section {
    background: #207dff;
    background: -moz-linear-gradient(left, #207dff 0%, #a16ae8 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, #207dff), color-stop(100%, #a16ae8));
    background: -webkit-linear-gradient(left, #207dff 0%, #a16ae8 100%);
    background: -o-linear-gradient(left, #207dff 0%, #a16ae8 100%);
    background: -ms-linear-gradient(left, #207dff 0%, #a16ae8 100%);
    background: -webkit-gradient(linear, left top, right top, from(#207dff), to(#a16ae8));
    background: linear-gradient(to right, #207dff 0%, #a16ae8 100%);
    filter: ;
    progid: DXImageTransform.Microsoft.gradient(startColorstr='#207dff', endColorstr='#a16ae8', GradientType=1);
    -webkit-filter: ;
}

.istatistik-section span {
    color: #fff;
    font-size: 50px;
}


/****  Buttonlar ***/

.btn-primary {
    background: var(--primary-500);
    border: 1px solid var(--primary-500);
}

.btn-primary:hover {
    background: var(--primary-500);
    border: 1px solid var(--primary-500);
}

.btn,
a.btn {
    font-size: var(--body-font-size) !important;
    margin-bottom: 5px;
    border-radius: .6rem;
    padding: 6px 15px;
    /* box-shadow: 0 0.5rem 1rem rgb(20 40 60 / 6%); */
}


/**** Iconlar ****/

.error-icon {
    display: block;
    font-size: 5rem;
    font-weight: bold;
    color: red;
}

.success-icon {
    display: block;
    font-size: 5rem;
    font-weight: bold;
    color: green;
}

.icon-blue {
    position: relative;
    display: block;
    height: 50px;
    width: 50px;
    line-height: 50px;
    font-size: 24px;
    color: #1967d2;
    text-align: center;
    background-color: rgba(25, 103, 210, 0.1);
    border-radius: 8px;
}

.icon-red {
    position: relative;
    display: block;
    height: 50px;
    width: 50px;
    line-height: 50px;
    font-size: 24px;
    color: #d93025;
    text-align: center;
    background-color: rgba(217, 48, 37, 0.1);
    border-radius: 8px;
}

.icon-yellow {
    position: relative;
    display: block;
    height: 50px;
    width: 50px;
    line-height: 50px;
    font-size: 24px;
    color: #f9ab00;
    text-align: center;
    background-color: rgba(249, 171, 0, 0.1);
    border-radius: 8px;
}

.icon-green {
    position: relative;
    display: block;
    height: 50px;
    width: 50px;
    line-height: 50px;
    font-size: 24px;
    color: #34a853;
    text-align: center;
    background-color: rgba(52, 168, 83, 0.1);
    border-radius: 8px;
}

.icon-svg {
    color: var(--primary-600);
}


/**** İş İlanları ****/

.job-post-card {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: left;
    padding: 0px .3rem;
    border-radius: .8rem;
}

.job-post-card p {
    font-size: .9rem;
    color: #afafaf;
    padding: 0px;
    margin: 0px;
}

.job-post-card h3 {
    line-height: 1em;
    text-align: left;
    padding-bottom: .1rem;
}

.job-post-card h4 {
    color: rgb(0, 0, 0, .5);
    padding-bottom: .9rem !important;
    text-align: left;
}

.job-post-card ul {
    list-style: none;
    text-align: left;
    padding: 0px 0px;
}

.job-post-card ul>li {
    display: inline;
    padding: 0px .3rem;
    text-align: left;
    color: rgb(0, 0, 0, .5) !important;
}

.job-post-card a {
    font-size: 1.2rem !important;
    padding-bottom: 5px;
}

.job-post-card a:hover {
    color: rgb(0, 0, 0, .8);
}


/**** Model *****/

.confirm-model {
    color: #636363;
    width: 100%;
    max-width: 500px;
}

.confirm-modal .modal-content {
    border-radius: 5px;
    border: none;
    text-align: center;
    font-size: 14px;
}

.confirm-modal .modal-header {
    border-bottom: none;
    position: relative;
}

.confirm-modal .modal-body {
    color: #999 !important;
    padding: 0px !important;
}

.confirm-modal .modal-body p {
    padding: 20px;
}

.confirm-modal .modal-footer {
    border: none;
    text-align: center;
    border-radius: 5px;
    font-size: 13px;
    padding: 10px 15px 25px;
}

.confirm-modal .alert-box {
    color: #f15e5e;
    font-size: 6rem;
    display: inline-block;
}

.model-body>h4 {
    color: rgb(0, 0, 0, .5);
}

.modal-body i.bi-info-circle {
    font-size: 5rem;
    color: var(--primary-500);
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 0px solid rgba(0, 0, 0, .2);
    border-radius: 1rem;
    outline: 0;
    padding: .5rem;
    box-shadow: 0 0.5rem 1rem rgb(20 40 60 / 6%);
}


/**** Mesaj Kutuları ***/

.sari-kutu {
    border-radius: 0.25rem;
    font-size: .875em;
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
    padding: 0.2rem 0.4rem;
    text-align: center;
    float: left;
    margin: 0 .25rem;
}

.mavi-kutu {
    border-radius: 0.25rem;
    font-size: .875em;
    color: #1967d2;
    background-color: rgba(25, 103, 210, 0.1);
    border-color: #ffeeba;
    padding: 0.2rem 0.4rem;
    text-align: center;
    float: left;
    margin: 0 .25rem;
}

.yesil-kutu {
    border-radius: 0.25rem;
    font-size: .875em;
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
    padding: 0.2rem 0.4rem;
    text-align: center;
    float: left;
    margin: 0 .25rem;
}

.kirmizi-kutu {
    border-radius: 0.25rem;
    font-size: .875em;
    color: #b40214;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    padding: 0.2rem 0.4rem;
    text-align: center;
    float: left;
    margin: 0 .25rem;
}


/**** Filtre Menu ***/

.filter-menu {
    display: flex;
    position: relative;
    float: right;
    /*position: absolute;*/
    flex-direction: row;
    /*background-color: var(--color-bg-secondary);
         border-radius: 10px;
        box-shadow: 0 10px 20px rgba(64, 64, 64, 0.15);
        top: 10;
        left: 10;
        width: 500px;*/
}

.filter-menu .menu-list {
    display: flex;
    margin: 0;
    width: 100%;
    padding: 8px;
    float: right;
    max-width: 250px;
    min-width: 160px;
}

.filter-menu .menu-list,
ul {
    list-style-type: none;
}

.filter-menu .menu-list+.menu-list {
    border-top: 1px solid #ddd;
}

.filter-menu .menu-item {
    position: relative;
    margin: 0 5px;
    padding-right: 5px;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 1rem;
    /*background-color: #f7f4f4;*/
}

.filter-menu .menu-sub-list {
    display: none;
    padding: 8px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(64, 64, 64, 0.15);
    position: absolute;
    left: -120px;
    right: 0;
    z-index: 100;
    top: 37px;
    width: 250px;
    flex-direction: column;
    background-color: #fff;
}

.filter-menu .menu-sub-list:hover {
    display: flex;
}

.filter-menu .menu-sub-item {
    display: flex;
    align-items: center;
    padding: 8px 8px;
}

.filter-menu a,
.filter-menu .menu-sub-item a {
    color: #000;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.filter-menu a:hover,
.filter-menu .menu-sub-item a:hover {
    color: #0c6ddb;
}

.filter-menu .menu-button {
    font: inherit;
    color: inherit;
    outline: none;
    border: 0;
    padding: 8px 15px;
    width: 100%;
    border-radius: 8px;
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--color-bg-secondary);
}

.filter-menu .menu-button:hover {
    background-color: var(--color-bg-primary-offset);
}

.filter-menu .menu-button:hover+.menu-sub-list {
    display: flex;
}

.filter-menu .menu-button svg,
.filter-menu .menu-sub-item svg {
    width: 24px !important;
    height: 24px !important;
    margin: 0 5px;
    stroke: #e4e4e4;
}

.filter-menu .menu-button svg:nth-of-type(2) {
    margin-right: 0;
    position: absolute;
    right: 8px;
}

.filter-menu .menu-button span:nth-of-type(2) {
    margin-right: 0;
    position: absolute;
    right: 8px;
    font-size: x-small;
}

.filter-menu .break {
    border-top: 1px solid #ddd;
}


/**** preLoader ***/

.preLoader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.preLoader-hide {
    animation: preLoaderfadeOut 1s forwards;
}

@keyframes preLoaderfadeOut {
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

.location i {
    font-size: 18px;
    color: #fff;
}

.copyright p {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.circle-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
}

@media (max-width: 575.98px) {
    .header {
        padding-top: 100px !important;
    }
    .header-content h1 {
        font-size: 2.5rem !important;
        line-height: 1.2;
    }
    .header-content h2 {
        letter-spacing: 2px;
        line-height: 30px;
        font-size: 1.5rem !important;
        font-weight: 450;
        display: none;
    }
    .header-content p {
        font-size: .9375rem !important;
        font-weight: 450;
    }
    .search-section {
        padding: 5px 10px !important;
        display: block;
    }
    .search-box {
        margin-top: 10px;
        padding: 0px;
        width: auto;
        background: transparent;
        border-radius: 25px;
        display: flex;
        flex-direction: column;
        border: 0px;
    }
    .search-box input[type="text"] {
        background: #fff;
        height: 50px;
        border: none;
        outline: none;
        width: 100%;
        border-radius: 1rem !important;
        margin-bottom: 10px;
    }
    .search-box button {
        width: 100%;
        border-radius: 1rem !important;
    }
    .navbar-brand img {
        width: 250px;
        height: auto;
    }
    .mavi-btn,
    .mavi-btn-outline {
        width: 100%;
        margin: 10px 0px;
    }
}

@media (max-width: 767.98px) {
    .header {
        height: unset;
    }
    .header-content h2 {
        letter-spacing: 2px;
        line-height: 30px;
        font-size: 1.5rem !important;
        font-weight: 450;
        display: none;
    }
    .search-box {
        margin-top: 10px;
        padding: 0px;
        width: auto;
        background: transparent;
        border-radius: 25px;
    }
}

@media (max-width: 991.98px) {
    /* .navbar-bg {
        background : rgba(255, 255, 255);
        z-index: 991;
    } */
    .navbar-bg .navbar-brand img {
        width: 150px;
        height: auto;
    }
    .navbar-nav .nav-link {
        font-size: .9375rem;
        color: #8a949f;
        !important;
    }
    .navbar-nav .nav-link:hover {
        font-size: .9375rem;
        color: rgba(241, 117, 119);
    }
    .circle-wrap {
        display: flex;
        flex-direction: column;
    }
    .circle-wrap .circle {
        width: 250px;
        height: 250px;
    }
    .header-img {
        display: none;
    }
    .search-box select {
        display: none;
    }
    .search-section .container {
        width: auto !important;
    }
}

@media (max-width: 1199.98px) {}

@media (max-width: 1399.98px) {}

.select2-container {
    display: block !important;
    width: 100% !important;
}

.select2-container--default .select2-selection--single {
    border: unset;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
    outline: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    display: block;
    width: 100%;
    padding-left: 8px;
    padding-right: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.select2-container--default .select2-selection--multiple {
    background-color: white;
    border: 1px solid #ced4da !important;
    border-radius: 0px;
    cursor: text;
    padding-bottom: 5px;
    padding-right: 5px;
    position: relative;
    padding: .375rem .75rem;
    line-height: 1.5;
}


/************************
CSS
************************/

.rounded-pill {
    font-weight: lighter;
}

.shadow-box {
    box-shadow: 0 0.5rem 1rem rgb(20 40 60 / 6%);
    border-radius: 0.6rem;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: unset;
    padding: 25px 20px;
}

.btn-sm {
    padding: 0rem 0rem;
    font-size: .975rem !important;
    line-height: 1 !important;
    border-radius: 0.2rem;
}


/************************
DataTables CSS
************************/

.buttons-excel {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    background-color: #ffc107;
    border-color: #ffc107;
    margin-bottom: 5px;
    border-radius: 0.6rem;
    padding: 6px 15px;
    /* box-shadow: 0 0.5rem 1rem rgba(106, 107, 20, 0.06);*/
}

.buttons-excel:hover {
    background-color: #f0b506;
    border-color: #f0b506;
}

.buttons-excel span {
    color: #fff !important;
}

.buttons-excel span::after {
    content: ' İndir';
    color: #fff !important;
}

thead tr th {
    font-weight: 450 !important;
    color: rgba(0, 0, 0, .5);
    text-align: center;
}


/************************
Menu Tab Liste CSS
************************/

ul.tab-liste {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
    float: left;
    display: flex;
}

ul.tab-liste li a {
    font-size: 16px !important;
    color: unset;
}

ul.tab-liste li {
    padding: 5px 25px;
    margin: 10px;
    border-bottom: 2px solid #E6EAEC;
}

ul.tab-liste li:hover {
    border-bottom: 3px solid #0a53be;
}

ul.tab-liste li.active {
    border-bottom: 3px solid #0a53be;
}


/************************
Sıkça Sorulan Sorular CSS
************************/

.faq-section {
    padding: 2rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.faq-search {
    margin-bottom: 2rem;
    position: relative;
}

.faq-search input,
.faq-search select {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px !important;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.faq-search input:focus,
.faq-search select:focus {
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px rgba(111, 66, 193, 0.1);
}

.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-header:hover {
    background-color: #f8fafc;
}

.faq-header h3 {
    margin: 0;
    font-size: 1.1rem !important;
    color: #1a202c;
    font-weight: 500;
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.faq-icon i {
    color: var(--primary-500);
    font-size: 1.5rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-content {
    padding: 0 1.5rem 1.5rem;
    max-height: 1000px;
}

.faq-content p {
    margin: 0;
    color: #4a5568;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 1rem;
    }
    .faq-header h3 {
        font-size: 1rem;
    }
}


/* Modern İş İlanları Stili */

.jobs-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
}


/* Filtreleme Sidebar */

.jobs-sidebar {
    position: sticky;
    top: 20px;
}


/* .filter-box {
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 12px;
}

.filter-header {
    padding: 1.5rem;
    border-bottom: 1px solid #edf2f7;
}

.filter-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.filter-title i {
    color: var(--mavi);
    font-size: 1.2rem;
}

.filter-title h3 {
    margin: 0;
    font-size: 1.1rem !important;
    font-weight: 500;
}

.filter-group {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #edf2f7;
}

.filter-group:last-child {
    border-bottom: none;
}

.filter-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: #4a5568;
    font-size: 0.9rem;
    font-weight: 500;
} */

.input-wrapper input,
.select-wrapper select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    background-color: #f8fafc;
}

.input-wrapper input:focus,
.select-wrapper select:focus {
    border-color: var(--mavi);
    background-color: #fff;
    outline: none;
}

.select-wrapper {
    position: relative;
}


/*
.select-wrapper::after {
    content: '\F282';
    font-family: 'Bootstrap Icons';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #a0aec0;
    pointer-events: none;
}*/

.search-button {
    width: calc(100% - 3rem);
    margin: 1.5rem;
    padding: 0.75rem;
    background: var(--primary-500);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.search-button:hover {
    opacity: 0.9;
}


/* İlanlar Listesi */

.listing-header {
    margin-bottom: 1.5rem;
}

.listing-header h3 {
    font-weight: 500;
    color: #2d3748;
}


/* .job-cards {
    display: grid;
    gap: 1rem;
}

.job-card {
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 0.6rem;
    margin-bottom: 1rem;
    transition: all 0.2s ease;
}

.job-card:hover {
    border-color: var(--mavi);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.job-card-content {
    padding: 1.25rem;
}

.job-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    position: relative;
    width: 100%;
} */


/* .company-logo {
    width: 70px;
    height: 70px;
    border-radius: 0.6rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border: 1px solid #edf2f7;
    flex-shrink: 0;
}

.company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.5rem;
}

.company-logo .no-logo {
    width: 100%;
    height: 100%;
    background: #f8fafc;
} */


/* .job-title-section {
    flex: 1;
    margin-right: 200px;
}

.job-title-section h4 {
    margin: 0 0 0.5rem 0;
}

.job-title-section h4 a {
    color: #2d3748;
    font-size: 1.15rem !important;
    font-weight: 450 !important;
    text-decoration: none;
    line-height: 1.4;
}

.job-title-section h4 a:hover {
    color: var(--mavi);
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.job-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.75rem;
    background-color: #f7fafc;
    border-radius: 0.6rem;
    font-size: 0.85rem;
    color: #4a5568;
    transition: all 0.2s ease;
}

.job-meta span i {
    color: var(--mavi);
    font-size: 0.9rem;
}

.job-meta span:hover {
    background-color: #edf2f7;
}

.job-actions {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
} */

.view-btn {
    padding: 0.6rem 1.25rem;
    background: var(--primary-500);
    color: white !important;
    border-radius: 0.6rem;
    font-size: 0.9rem !important;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.view-btn:hover {
    opacity: 0.9;
}

.deadline {
    color: #718096;
    font-size: 0.85rem;
    text-align: right;
    margin-top: 0.5rem;
}

@media (max-width: 992px) {
    .job-title-section {
        margin-right: 0;
    }
    .job-header {
        flex-wrap: wrap;
        gap: 1rem;
    }
    .job-actions {
        position: static;
        transform: none;
        margin-left: auto;
        margin-top: 1rem;
    }
    .deadline {
        width: 100%;
        text-align: right;
        margin-top: 0.5rem;
    }
}

@media (max-width: 768px) {
    .job-title-section h4 a {
        font-size: 1.1rem;
    }
    .job-meta {
        gap: 0.5rem;
    }
    .job-meta span {
        padding: 0.35rem 0.6rem;
        font-size: 0.8rem;
    }
    .job-actions {
        width: 100%;
        justify-content: flex-end;
    }
    .company-logo {
        width: 60px;
        height: 60px;
    }
}


/* İş İlanları için özel stiller */

.jobs-listing .job-card {
    background: #fff;
    border-radius: 12px;
    /* box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05); */
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    border: 1px solid #edf2f7;
}

.jobs-listing .job-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: #e9ecef;
    transition: background-color 0.3s ease;
}

.jobs-listing .job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.jobs-listing .job-card:hover::before {
    background-color: var(--primary-500);
}

.jobs-listing .job-card-content {
    padding: 1.5rem;
}

.jobs-listing .job-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.jobs-listing .company-logo {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #edf2f7;
}

.jobs-listing .company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1px;
}

.jobs-listing .no-logo {
    width: 100%;
    height: 100%;
    background: var(--primary-400) url("/assets/icons/work.svg") no-repeat center center;
    background-size: 65%;
    /* %50 boyutta göster */
}

.jobs-listing .job-title-section {
    flex: 1;
    min-width: 0;
    /* Taşmaları önlemek için */
}

.jobs-listing .job-title-section h4 {
    margin: 0 0 0.75rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
}

.jobs-listing .job-title-section h4 a {
    color: #2d3748;
    text-decoration: none;
    transition: color 0.3s ease;
}

.jobs-listing .job-title-section h4 a:hover {
    color: var(--mavi);
}

.jobs-listing .job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: #718096;
    font-size: 0.9rem;
}

.jobs-listing .job-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #f7fafc;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.jobs-listing .job-meta span:hover {
    background-color: #edf2f7;
}

.jobs-listing .job-meta i {
    color: var(--mavi);
    font-size: 1rem;
}

.jobs-listing .job-actions {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.jobs-listing .view-btn {
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    background: var(--primary-500);
    color: #fff !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
    border: 2px solid var(--primary-500);
}

.jobs-listing .view-btn:hover {
    background: transparent;
    color: var(--primary-500) !important;
}


/* Responsive Tasarım */

@media (max-width: 992px) {
    .jobs-listing .job-header {
        flex-wrap: wrap;
    }
    .jobs-listing .job-actions {
        width: 100%;
        margin-top: 1rem;
    }
    .jobs-listing .view-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .jobs-listing .job-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    .jobs-listing .job-meta span {
        width: 100%;
    }
}


/* İş İlanı Filtreleme Stilleri */

.filter-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #edf2f7;
    overflow: hidden;
}

.filter-header {
    padding: 1.25rem;
    border-bottom: 1px solid #edf2f7;
}

.filter-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.filter-title i {
    color: var(--primary-500);
    font-size: 1.2rem;
}

.filter-title h3 {
    margin: 0;
    font-size: 1.2rem !important;
    font-weight: 600;
    color: #2d3748;
}

.filter-group {
    padding: 1.25rem;
    border-bottom: 1px solid #edf2f7;
}

.filter-group:last-child {
    border-bottom: none;
}

.filter-group label {
    display: block;
    /* margin-bottom: 0.75rem; */
    color: #4a5568;
    font-size: 0.9rem;
    font-weight: 500;
}


/*
.input-wrapper input,
.select-wrapper select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #4a5568;
    transition: all 0.3s ease;
    background-color: #f8fafc;
}

.input-wrapper input:focus,
.select-wrapper select:focus {
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
    outline: none;
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '\F282';
    font-family: 'bootstrap-icons';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #a0aec0;
    pointer-events: none;
}*/

.search-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: calc(100% - 2.5rem);
    margin: 1.25rem;
    padding: 0.75rem;
    background: var(--primary-500);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.search-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.search-button i {
    font-size: 1.1rem;
}


/* Modern Arama Bölümü Stilleri */

.search-wrapper {
    padding: 50px 0;
    background: linear-gradient(180deg, rgba(111, 66, 193, 0.05) 0%, rgba(111, 66, 193, 0) 100%);
}

.modern-search-section {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(111, 66, 193, 0.1);
    position: relative;
}

.search-form {
    width: 100%;
}

.search-group {
    display: grid;
    grid-template-columns: 1.5fr 1fr auto;
    gap: 20px;
    align-items: center;
}

.search-field {
    position: relative;
    background: #f8f9fa;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.search-field:hover,
.search-field:focus-within {
    background: #fff;
    box-shadow: 0 0 0 2px var(--primary-500);
}

.icon-wrapper {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-500);
    font-size: 1.2rem;
}

.search-field input,
.search-field select {
    width: 100%;
    height: 64px;
    padding: 0 20px 0 55px;
    border: none;
    background: transparent;
    color: #495057;
    font-size: 1rem;
    border-radius: 16px;
}

.search-field input:focus,
.search-field select:focus {
    outline: none;
}

.search-field input::placeholder {
    color: #adb5bd;
}

.btn-search {
    height: 64px;
    padding: 0 40px;
    background: var(--primary-500);
    color: #fff;
    border: none;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(111, 66, 193, 0.3);
}

.btn-search i {
    transition: transform 0.3s ease;
}

.btn-search:hover i {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .search-group {
        grid-template-columns: 1fr;
    }
    .modern-search-section {
        padding: 25px;
    }
    .btn-search {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .search-wrapper {
        padding: 30px 15px;
    }
}


/* Header Slider Styles */

.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 80px 0;
}


/* Slider Items */

.slider-item {
    position: relative;
    width: 100%;
    opacity: 0;
    display: none;
    transition: opacity 0.5s ease;
}

.slider-item.active {
    opacity: 1;
    display: block;
}


/* Slider Content */

.slider-content {
    text-align: center;
    color: #fff;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.slide-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease 0.2s forwards;
    color: rgba(255, 255, 255, 0.9);
}


/* Feature Items */

.slide-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease 0.4s forwards;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.feature-item i {
    color: var(--primary-500);
    font-size: 1.3rem;
}


/* Action Button */

.slide-action {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease 0.4s forwards;
    margin-top: 2rem;
}

.btn-register {
    display: inline-block;
    padding: 1rem 2.5rem;
    /*background: var(--primary-500);*/
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #fff;
}

.btn-register:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(111, 66, 193, 0.3);
    color: #fff;
}


/* Slider Controls */

.slider-controls {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
    padding-bottom: 20px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    width: 24px;
    background: #fff;
}


/* Job Detail Detail Styles */

.job-detail-detail .details {
    overflow: hidden;
}

.job-detail-detail .text {
    /* font-size: 16px;
    font-weight: 450; */
    color: #202124;
}

.job-detail-detail .icon {
    color: var(--superio-theme-color);
    font-size: 22px;
    float: left;
}

.job-detail-detail .list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-detail-detail .list li {
    overflow: hidden;
    margin-bottom: 15px;
}


/* Animations */

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Responsive Styles */

@media (max-width: 768px) {
    .slide-title {
        font-size: 2.5rem;
    }
    .slide-subtitle {
        font-size: 1rem;
    }
}



/* Modern Features Section Styles */

.features-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.section-header .highlight {
    color: var(--primary-400);
}

.section-header .section-subtitle {
    font-size: 1.1rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

.feature-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); */
    /* border: 1px solid rgba(0, 0, 0, 0.05); */
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-100);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.feature-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.feature-content p {
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .features-section {
        padding: 60px 0;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .feature-card {
        padding: 30px 20px;
    }
    .feature-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    .feature-icon img {
        width: 40px;
        height: 40px;
    }
    .feature-content h3 {
        font-size: 1.25rem;
    }
}


/* Modern Footer Styles */

.modern-footer {
    background: var(--primary-500);
    color: #fff;
    position: relative;
}

.footer-top {
    padding: 80px 0 50px;
    background: linear-gradient(180deg, var(--primary-500) 0%, var(--primary-600) 100%);
}


/* Footer Widget Styles */

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo {
    margin-bottom: 25px;
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    display: inline-block;
}

.footer-logo img {
    max-height: 200px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    line-height: 1.6;
}

.footer-widget h4 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}


/* Social Links */

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

.social-link {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #fff;
    color: var(--primary-500);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}


/* Footer Links */

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}


/* Contact Info */

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-item i {
    color: #fff;
    font-size: 1.2rem;
}


/* Footer Bottom */

.footer-bottom {
    padding: 20px 0;
    background: var(--primary-600);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}


/* Responsive Styles */

@media (max-width: 992px) {
    .footer-top {
        padding: 60px 0 30px;
    }
}

@media (max-width: 768px) {
    .footer-widget {
        text-align: center;
    }
    .footer-widget h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .social-links {
        justify-content: center;
    }
    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
    .copyright {
        text-align: center;
    }
    .contact-info {
        align-items: center;
    }
}

@media (max-width: 576px) {
    .footer-bottom-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}


/* Modern Button Styles */

.btn-custom {
    padding: 0.625rem 1.25rem;
    font-size: 1rem !important;
    font-weight: 500;
    border-radius: 50px !important;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-custom i {
    transition: transform 0.3s ease;
}

.btn-custom:hover i {
    transform: translateX(5px);
}


/* Button Styles */

.btn-custom-primary {
    background: var(--primary-600);
    color: #fff;
    border-radius: 8px;
    padding: 0.625rem 1.25rem;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-custom-primary:hover {
    background: var(--primary-700);
    border-color: var(--primary-700);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(111, 66, 193, 0.2);
}


/*
.btn-custom-primary:hover {
    background: #6d28d9;
    color: #fff;
    transform: translateY(-1px);
}*/

.btn-secondary {
    background: #e2e8f0;
    color: #475569;
    border: none;
    border-radius: 8px;
    padding: 0.625rem 1.25rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #cbd5e1;
    color: #1e293b;
}


/*
.btn-custom-primary {
    background: var(--mavi);
    color: #fff;
    border: 2px solid var(--mavi);
}*/


/* Outline Button */

.btn-custom-outline {
    background: transparent;
    color: var(--primary-500);
    border: 2px solid var(--primary-500);
}

.btn-custom-outline:hover {
    background: var(--primary-500);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(111, 66, 193, 0.2);
}


/* Primary Secondary Button */

.btn-custom-secondary {
    background: #6c757d;
    color: #fff;
    border: 2px solid #6c757d;
}

.btn-custom-secondary:hover {
    background: #5c636a;
    border-color: #5c636a;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(108, 117, 125, 0.2);
}


/* Outline Secondary Button */

.btn-custom-outline-secondary {
    background: transparent;
    color: #6c757d;
    border: 2px solid #6c757d;
}

.btn-custom-outline-secondary:hover {
    background: #6c757d;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(108, 117, 125, 0.2);
}


/* Read More Link Style */

.read-more {
    color: var(--primary-500) !important;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding-top: 10px;
}

.read-more i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--primary-600) !important;
    /* Ana rengin koyu tonu */
}

.read-more:hover i {
    transform: translateX(5px);
}


/* Primary Danger Button */

.btn-custom-danger {
    background: #dc3545;
    color: #fff;
    border: 2px solid #dc3545;
}

.btn-custom-danger:hover {
    background: #bb2d3b;
    border-color: #bb2d3b;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(220, 53, 69, 0.2);
}


/* Outline Danger Button */

.btn-custom-outline-danger {
    background: transparent;
    color: #dc3545;
    border: 2px solid #dc3545;
}

.btn-custom-outline-danger:hover {
    background: #dc3545;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(220, 53, 69, 0.2);
}