/* CSS Variables for Theme Colors */
:root {
    --primary-color: #1E3A8A;
    --accent-color: #EA580C;
    --primary-light: #dbeafe;
    --accent-light: #fed7aa;
}

/* Reset ve Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.main-header {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    z-index: 99;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.header-span {
    position: relative;
    display: block;
    width: 100%;
    height: 100px;
    z-index: 1;
}

.main-header.fixed-header {
    position: fixed;
    background: #ffffff;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.main-header.fixed-header .logo {
    padding: 15px 0;
}

.main-header .main-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 60px;
    max-width: 1920px;
    margin: 0 auto;
}

.main-header .nav-outer {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.main-header .logo-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.main-header .logo {
    position: relative;
    z-index: 9;
    padding: 25px 0;
    margin-right: 100px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-header .menu-box {
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.main-menu {
    position: static;
}

.main-menu .navbar-header {
    display: none;
}

.main-menu .navbar-collapse {
    padding: 0px;
}

.main-menu .navigation {
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    list-style: none;
    padding-left: 0;
}

.main-menu .navigation > li {
    position: relative;
    margin-right: 40px;
    padding: 20px 0 0 0;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-menu .navigation > li > a:hover {
    color: #EA580C;
}

.main-menu .navigation > li > span,
.main-menu .navigation > li > a {
    position: relative;
    display: block;
    text-align: center;
    opacity: 1;
    text-decoration: none;
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    color: #202124;
    cursor: pointer;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-menu .navigation > li.dropdown > a:after {
    position: absolute;
    right: -17px;
    top: 50%;
    margin-top: -10px;
    font-family: Font Awesome\ 5 Free;
    content: "";
    display: block;
    line-height: 20px;
    font-size: 14px;
    font-weight: 900;
    z-index: 5;
    color: #202124;
}

.main-menu .navigation > li.current > a,
.main-menu .navigation > li.current > span {
    color: #1E3A8A;
}

.main-menu .navigation > li.dropdown > span {
    padding-right: 18px;
}

.main-menu .navigation > li.dropdown > span:after {
    position: absolute;
    right: 0px;
    top: 50%;
    margin-top: -10px;
    font-family: "Font Awesome 5 Free";
    content: "\f107";
    display: block;
    line-height: 20px;
    font-size: 14px;
    font-weight: 900;
    z-index: 5;
    color: #202124;
}

@media only screen and (min-width: 768px) {

    .main-menu .navigation > li > .mega-menu,
    .main-menu .navigation > li > ul,
    .main-menu .navigation > li > ul > li > ul {
        display: block !important;
        visibility: hidden;
        opacity: 0
    }
}

.main-menu .navigation > li.has-mega-menu {
    position: static
}

.main-menu .navigation > li > .mega-menu .image-box {
    position: absolute;
    right: -230px;
    top: -15px;
    padding: 20px
}

.main-menu .navigation > li > .mega-menu {
    position: absolute;
    left: auto;
    right: auto;
    width: 880px;
    background: #fff;
    padding: 30px;
    min-height: 225px;
    top: 100%;
    z-index: 100;
    opacity: 0;
    outline: none;
    margin: -15px auto auto;
    box-shadow: 0 6px 15px rgba(64, 79, 104, .05);
    border-radius: 0 0 8px 8px;
    border-top: 2px solid #1E3A8A;
    transition: all .3s ease;
    transform: scaleY(0);
    transform-origin: top
}

.main-menu .navigation > li:hover > .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1)
}

.main-menu .navigation > li > .mega-menu:before {
    position: absolute;
    left: 20px;
    top: -7px;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 5px solid #1E3A8A;
    content: ""
}

.main-menu .navigation > li > .mega-menu .mega-menu-bar {
    position: relative;
    padding-top: 40px
}

.main-menu .navigation > li .mega-menu-bar .h3,
.main-menu .navigation > li .mega-menu-bar h3 {
    position: absolute;
    top: -40px;
    left: 15px;
    text-decoration: none;
    outline: none;
    font-size: 16px;
    line-height: 25px;
    color: #202124;
    font-weight: 500;
    margin-bottom: 15px
}

.main-menu .navigation > li .mega-menu-bar > ul {
    position: relative;
    list-style: none;
    padding-left: 0;
}

.main-menu .navigation > li .mega-menu-bar .column > ul > li {
    position: relative;
    width: 100%;
    text-transform: capitalize;
    outline: none;
    list-style: none;
    transition: all .5s ease;
    -moz-transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease
}

.main-menu .navigation > li .mega-menu-bar .column {
    position: relative;
    margin-bottom: 10px
}

.main-menu .navigation > li .mega-menu-bar .column > ul {
    list-style: none;
    padding-left: 0;
}

.main-menu .navigation > li .mega-menu-bar .column > ul > li:last-child {
    margin-bottom: 0
}

.main-menu .navigation > li .mega-menu-bar .column > ul > li > a {
    position: relative;
    display: block;
    text-decoration: none;
    outline: none;
    line-height: 20px;
    font-weight: 400;
    font-size: 15px;
    color: #202124;
    padding: 10px 0;
    text-align: left;
    text-transform: capitalize;
    transition: all .5s ease
}

.main-menu .navigation > li .mega-menu-bar .column > ul > li > a:hover {
    color: #1E3A8A
}


.main-menu .navigation > li > a > span {
    position: relative;
}

.main-menu .navigation > li > ul {
    position: absolute;
    top: 100%;
    left: 0;
    padding: 15px 0;
    opacity: 0;
    z-index: 1;
    min-width: 230px;
    border-top: 2px solid #1E3A8A;
    border-radius: 0px 0px 8px 8px;
    background-color: #fff;
    list-style: none;
    padding-left: 0;
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -ms-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.main-menu .navigation > li > ul:before {
    position: absolute;
    left: 20px;
    top: -7px;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 5px solid #1E3A8A;
    content: "";
}

.main-menu .navigation > li > ul.from-right {
    left: auto;
    right: 0;
}

.main-menu .navigation > li > ul .from-right {
    left: auto;
    right: 100%;
    margin-right: 2px;
}

.main-menu .navigation > li > ul > li {
    position: relative;
    display: block;
    z-index: 1;
}

.main-menu .navigation > li > ul > li:last-child {
    border-bottom: none;
}

.main-menu .navigation > li > ul > li > span,
.main-menu .navigation > li > ul > li > a {
    position: relative;
    display: block;
    padding: 10px 30px;
    text-decoration: none;
    z-index: 1;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: #696969;
    white-space: nowrap;
    text-transform: capitalize;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.main-menu .navigation > li > ul > li > span:hover,
.main-menu .navigation > li > ul > li > a:hover {
    color: #EA580C;
}

.main-menu .navigation > li > ul > li > span.current,
.main-menu .navigation > li.current.dropdown > span:after,
.main-menu .navigation > li > ul > li > ul > li.current > a,
.main-menu .navigation > li > ul > li.current > a {
    color: #1E3A8A !important;
}

.main-menu .navigation > li > ul > li > ul {
    position: absolute;
    top: 100%;
    left: 100%;
    padding: 10px 0;
    min-width: 220px;
    margin-top: -57px;
    opacity: 0;
    z-index: 1;
    border-top: 2px solid #1E3A8A;
    background-color: #fff;
    list-style: none;
    padding-left: 0;
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -ms-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
}

.main-menu .navigation > li > ul > li > ul > li {
    position: relative;
    width: 100%;
}

.main-menu .navigation > li > ul > li > ul > li > a {
    position: relative;
    display: block;
    padding: 10px 30px;
    z-index: 1;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: #363636;
    white-space: nowrap;
    text-transform: capitalize;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.main-menu .navigation > li > ul > li > ul > li > a:hover,
.main-menu .navigation > li > ul > li > ul > li > span:hover {
    color: #1E3A8A;
}

.main-menu .navigation > li > ul > li.dropdown > span:before {
    position: absolute;
    right: 30px;
    top: 50%;
    margin-top: -10px;
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    display: block;
    line-height: 20px;
    font-size: 15px;
    font-weight: 900;
    z-index: 5;
}

.main-menu .navigation > li.dropdown:hover > ul {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
}

.main-menu .navigation li > ul > li.dropdown:hover > ul {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(0px);
    -ms-transform: translate(0px);
    transform: translate(0px);
}

.main-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: 10px;
    top: 8px;
    width: 34px;
    height: 30px;
    border: 1px solid #ffffff;
    text-align: center;
    font-size: 16px;
    line-height: 26px;
    color: #ffffff;
    cursor: pointer;
    z-index: 5;
    display: none;
}

.main-header .outer-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.main-header .upload-cv {
    position: relative;
    font-size: 15px;
    text-decoration: none;
    color: #1E3A8A;
    font-weight: 400;
    transition: all 0.3s;
    white-space: nowrap;
}

.main-header .upload-cv:hover {
    color: #EA580C;
}

.btn-style-seven {
    position: relative;
    text-align: center;
    text-decoration: none;
    border: none;
    transition: all 0.3s;
    white-space: nowrap;
    color: #fff;
    background-color: #1E3A8A;
    line-height: 20px;
    border-radius: 8px;
    font-weight: 400;
    padding: 16px 35px
}

.btn-style-seven:hover {
    color: #1E3A8A;
    background-color: #e2eaf8
}

.btn-style-six {
    position: relative;
    text-align: center;
    text-decoration: none;
    border: none;
    transition: all 0.3s;
    white-space: nowrap;
    color: #1E3A8A;
    border: 1px solid #1E3A8A;
    line-height: 20px;
    border-radius: 8px;
    font-weight: 400;
    padding: 16px 35px
}

.btn-style-six:hover {
    background: #1E3A8A;
    color: #fff;
    border: 1px solid #1E3A8A;
}

.main-header .outer-box .btn-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.main-header .outer-box .btn-box a,
.main-header .outer-box .btn-box2 a {
    margin-left: 20px;
    min-width: 140px;
}

.main-header .menu-btn {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 30px;
}

.main-header .menu-btn .icon {
    font-size: 24px;
    color: #696969;
}

.main-header .menu-btn .count {
    position: absolute;
    right: -8px;
    top: -4px;
    height: 16px;
    width: 16px;
    background: #1E3A8A;
    border-radius: 50%;
    color: #ffffff;
    line-height: 16px;
    font-size: 12px;
}

.main-header.alternate .main-box {
    padding: 0;
}

.main-header.alternate .main-box .logo {
    margin-right: 80px;
}

.main-header.alternate2 .outer-box .btn-box a {
    border-radius: 5px !important;
}

.main-header.header-style-two.alternate .main-box .logo {
    margin-right: 30px;
}

.main-header.header-style-two.fixed-header {
    background-color: #22218c;
}

.main-header.header-shaddow {
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    border-bottom: 1px solid #ecedf2;
}

.main-header.alternate3 {
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    background-color: #ffffff;
}

.header-style-three .main-box {
    padding: 0 45px;
}

.mobile-header {
    position: relative;
    padding: 20px 15px;
    display: none;
    z-index: 99;
    background-color: #ffffff;
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
}

.mobile-header:after {
    display: table;
    clear: both;
    content: "";
}

.mobile-header .logo {
    position: relative;
    float: left;
    margin: 0 !important;
    padding: 0 !important;
    left: 0;
}

.mobile-header .logo img {
    max-height: 50px;
}

.mobile-header .nav-outer {
    position: relative;
    float: right;
}

.mobile-header .outer-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.mobile-header .search-box .search-btn {
    font-size: 20px;
    color: #ffffff;
}

.mobile-header .search-box {
    margin: 0;
}

.mobile-header .cart-btn > a {
    font-size: 20px;
}

.mobile-header .cart-btn > a,
.mobile-header .login-box {
    margin-left: 20px;
}

.nav-outer .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 30px;
    line-height: 30px;
    cursor: pointer;
    margin-left: 20px;
    width: 30px;
    color: #202124;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
    display: none;
}

.mobile-header .login-box .icon-user {
    position: relative;
    height: 18px;
    width: 18px;
    display: block;
    background-image: url(../../images/icons/user.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.mobile-header .login-box a {
    color: #202124;
    font-size: 20px;
}


/* Button Styling */
.btn-outline-primary {
    border-color: #1976d2;
    color: #1976d2;
}

.btn-outline-primary:hover {
    background-color: #1976d2;
    border-color: #1976d2;
}

.btn-light {
    background-color: transparent;
    border-color: transparent;
    color: #555;
}

.btn-light:hover {
    background-color: #f8f9fa;
    color: #1976d2;
}

.btn-primary {
    background-color: #1976d2;
    border-color: #1976d2;
}

.btn-primary:hover {
    background-color: #1565c0;
    border-color: #1565c0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(25, 118, 210, 0.3);
}

/* Hero Section */
.hero {
    background: url('../img/hero-bg.png') no-repeat center center;
    background-size: cover;
    padding-top: 0;
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    color: #2d3748;
    line-height: 1.2;
}

.auto-container {
    max-width: 1310px;
    width: 100%
}

.auto-container,
.small-container {
    position: static;
    padding: 0 15px;
    margin: 0 auto
}

.small-container {
    max-width: 900px
}

.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
    background-color: #fff;
    transition: all .3s ease
}


/* Popular Search Badges */
.popular-searches .badge {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.popular-searches .badge:hover {
    background-color: #1976d2 !important;
    color: white !important;
    transform: translateY(-2px);
}

/* Hero Images */
.hero-images {
    padding-left: 2rem;
}

.hero-images .image-card {
    position: relative;
    overflow: hidden;
}

.hero-images .image-card img {
    transition: transform 0.3s ease;
}

.hero-images .image-card:hover img {
    transform: scale(1.05);
}

/* Hero Section Image Column */
.image-column .image-box {
    position: relative;
}

.image-column .column img {
    width: 100%;
    height: auto;
    max-width: 317px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-column .column img:hover {
    transform: scale(1.05);
}

/* Specific image heights */
.image-column .column:first-child img {
    height: 449px;
    object-fit: cover;
}

.image-column .column:last-child img:first-child {
    height: 302px;
    object-fit: cover;
}

.image-column .column:last-child img:last-child {
    height: 302px;
    object-fit: cover;
}


/* Notifications */
.notification.work-inquiry {
    top: 15px;
    right: -15px;
    background: #fff7ed;
    border-left: 4px solid #fb923c;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: float 3s ease-in-out infinite;
    z-index: 10;
}

.notification-icon {
    width: 40px;
    height: 40px;
    background: #fb923c;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.notification-title {
    font-size: 0.85rem;
    color: #718096;
    font-weight: 500;
}

.notification-name {
    font-size: 1rem;
    color: #2d3748;
    font-weight: 600;
}

/* Candidates Info */
.candidates-info {
    bottom: 15px;
    right: -15px;
    animation: float 3s ease-in-out infinite reverse;
    z-index: 10;
}

.avatar {
    width: 35px;
    height: 35px;
    border: 3px solid white;
    position: relative;
}

.avatar.plus {
    font-size: 0.8rem;
    font-weight: 600;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }

    .hero {
        padding-top: 100px;
    }

    .hero-content h1 {
        font-size: 2.5rem !important;
    }

    .hero-images {
        padding-left: 0;
        margin-top: 3rem;
    }

    .notification.work-inquiry {
        position: static !important;
        margin: 1rem 0;
        transform: none !important;
        animation: none !important;
    }

    .candidates-info {
        position: static !important;
        margin: 1rem 0;
        transform: none !important;
        animation: none !important;
    }

    .image-card {
        margin-bottom: 1rem;
    }

    /* Bootstrap navbar mobile styling */
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        border-radius: 0 0 15px 15px;
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    /* Mobile dropdown styling */
    .navbar-collapse .dropdown-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: transparent;
        padding: 0.5rem 0;
        margin: 0;
        display: none !important;
    }

    .navbar-collapse .dropdown-menu.show {
        display: block !important;
    }

    .navbar-collapse .dropdown-item {
        padding: 0.5rem 1rem;
        color: #555;
    }

    /* Mobile image styling */
    .image-column .column img {
        max-width: 100%;
        height: auto;
        margin-bottom: 15px;
    }

    .image-column .column:first-child img {
        height: auto !important;
    }

    .image-column .column:last-child img {
        height: auto !important;
    }

}

@media (max-width: 480px) {
    .navbar {
        padding: 1rem 4%;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .brand-text {
        font-size: 1.3rem;
    }

    .logo {
        height: 35px;
    }
}


.image-column {
    position: relative
}

.image-column .row {
    align-items: center;
    margin: 0 -20px
}

.hero .image-column .image-box {
    position: relative;
    display: block;
    padding-top: 100px;
    margin-right: -255px;
    padding-left: 100px
}

.image-column .column {
    position: relative;
    padding: 0 20px
}

.image-column .column .image {
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 40px
}

.image-box img {
    max-width: 100%;
    border-radius: 5%
}

.info_block {
    position: absolute;
    left: 0;
    top: 200px
}

.info_block_two {
    position: absolute;
    left: 230px;
    bottom: 60px
}

.banner-section-six {
    position: relative;
    display: block;
    padding: 0 55px
}

.banner-section-six:after,
.banner-section-six:before {
    content: "";
    position: absolute;
    left: 0;
    width: 50%;
    top: 0;
    height: 100%;
    background: #ecedf2;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover
}

.banner-section-six:before {
    border-radius: 0 60px 60px 0;
    left: 50%;
    width: 500px
}

.content-column {
    position: relative
}

.content-column .inner-column {
    position: relative;
    padding: 100px 0 150px
}

.title-box {
    position: relative;
    margin-bottom: 40px
}

.content-column .h3,
.content-column h3 {
    font-size: 50px;
    line-height: 60px;
    color: #202124;
    font-weight: 600;
    margin-bottom: 25px
}

.content-column .h3 .colored,
.content-column h3 .colored,
.sec-title .colored {
    color: #EA580C
}

.content-column .text {
    font-size: 15px;
    color: dimgray;
    line-height: 25px
}

.popular-searches {
    position: relative;
    font-size: 15px;
    color: dimgray;
    font-weight: 400;
    width: 135%;
}

.popular-searches .title {
    margin-right: 20px;
    font-weight: 500
}

.popular-searches a {
    color: inherit;
    text-decoration: none;
    font-size: 14px
}

.job-search-form {
    position: relative;
    background: #ffffff;
    z-index: 1;
    border: 1px solid #ecedf2;
    -webkit-box-shadow: 0px 7px 18px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 7px 18px rgba(64, 79, 104, 0.05);
    border-radius: 10px;
    min-width: 860px;
    margin-bottom: 22px;
}

.job-search-form {
    background: #ffffff;
    padding: 20px 20px;
    border-radius: 10px;
}

.job-search-form .form-group {
    position: relative;
    text-align: left;
    margin-bottom: 0;
}

.job-search-form .form-group .icon {
    position: absolute;
    left: 15px;
    top: 50%;
    margin-top: -15px;
    width: 30px;
    text-align: center;
    line-height: 30px;
    color: #999;
    font-size: 18px;
    background: #ffffff;
    z-index: 9;
}

.job-search-form .form-group .flaticon-search-1 {
    color: #fff !important;
    background: transparent !important;
    top: 53%;
}

.job-search-form .form-group .bi {
    position: absolute;
    left: 0;
    top: 52%;
    transform: translateY(-50%);
    color: #999;
    font-size: 18px;
    z-index: 2;
}

.flaticon-search-1:before {
    content: "";
}

.job-search-form .form-group.category {
    border-left: 1px solid #e6e6e6;
}

.job-search-form .form-group:first-child {
    border-right: 1px solid #e6e6e6;
}

.job-search-form .ui-selectmenu-button.ui-button,
.job-search-form .chosen-container-single .chosen-single,
.job-search-form .form-group input,
.job-search-form .form-group select,
.job-search-form .form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    font-size: 15px;
    color: #696969;
    line-height: 30px;
    font-weight: 400;
    background-color: #ffffff;
    padding: 15px 0px;
    padding-left: 40px;
    border: 0;
    border-radius: 0;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.job-search-form .chosen-container-multi .chosen-choices,
.job-search-form .chosen-container.chosen-with-drop .chosen-drop {
    background: #ffffff;
}

.job-search-form .chosen-container-single .chosen-single {
    padding-left: 40px;
    border: 1px solid #ffffff !important;
    border-bottom: 0 !important;
    border-radius: 8px;
}

.job-search-form .chosen-container-active .chosen-drop {
    border: 1px solid #ecedf2 !important;
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    border-radius: 8px !important;
    padding-top: 10px !important;
}

.job-search-form .form-group.btn-box {
    text-align: right;
}

.job-search-form .form-group .theme-btn {
    width: 100%;
    min-width: auto;
    height: 60px;
}

/* Job Search Form */
.job-search-form .form-group select.form-control {
    background-color: #ffffff;
    padding: 15px 20px 15px 35px;
    font-size: 16px;
    color: #666;
    height: 60px;
    width: 100%;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
}


.job-search-form .form-group select.form-control:focus {
    outline: none;
    box-shadow: none;
}

.job-search-form .form-group select.form-control option {
    padding: 10px;
    color: #333;
}

.job-search-form .form-group input.form-control {
    background-color: #ffffff;
    padding: 15px 0 15px 20px;
    font-size: 16px;
    color: #666;
    height: 60px;
    width: 100%;
}

.job-search-form .form-group input.form-control:focus {
    outline: none;
    box-shadow: none;
}


.job-search-form .form-group {
    position: relative;
}

@media (max-width: 768px) {
    .job-search-form .form-group {
        margin-bottom: 20px;
    }

    .job-search-form .btn-box {
        text-align: center;
    }
}

/* Modern Job Card Styles */
.job-block-modern {
    margin-bottom: 30px;
}


.job-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    height: 44%;
    display: flex;
    flex-direction: column;
}

.job-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #1E3A8A;
    transform: translateY(-2px);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.company-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.company-logo i {
    font-size: 20px;
}
.company-logo {
    border-right: 1px solid #e8e8e8;
    padding-right: 10px;
}
.company-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.company-name-header {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
}

.company-location {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #666;
}

.company-location .icon {
    font-size: 14px;
    color: #666;
    margin-right: 4px;
}

.job-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.job-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.job-title a:hover {
    color: #EA580C;
}


.job-type-container {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.job-type {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.job-time-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #666;
    font-weight: 400;
}

.job-time-badge .icon {
    font-size: 14px;
    color: #666;
    margin-right: 4px;
}

.job-type.office {
    background: #e3f2fd;
    color: #1976d2;
}

.job-type.remote {
    background: #e8f5e8;
    color: #2e7d32;
}

.job-type.hybrid {
    background: #fff3e0;
    color: #f57c00;
}

.job-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 16px;
    flex-grow: 1;
}

.job-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.skill-tag {
    background: #f5f5f5;
    color: #333;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #f5f5f5;
}

.skill-tag:hover {
    color: #EA580C;
}

.job-footer {
    display: flex;
    justify-content: end;
    align-items: center;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.salary {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.salary-amount {
    font-size: 16px;
    font-weight: 600;
    color: #1E3A8A;
}

.salary-period {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.apply-btn {
    background: #1E3A8A;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.apply-btn:hover {
    background: #EA580C;
    color: white;
    transform: translateY(-1px);
}

.apply-btn i {
    font-size: 12px;
}

@media (max-width: 768px) {
    .job-card {
        padding: 20px;
    }
    .mob-uyelik{
        gap: 10px;
        display: flex;
        flex-direction: column;
    }
    .job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .company-info {
        width: 100%;
    }

    .job-type-container {
        flex-wrap: wrap;
        gap: 8px;
    }

    .company-location .icon {
        font-size: 12px;
    }

    .job-time-badge .icon {
        font-size: 12px;
    }
}

/* Counter Section */
.counter-section {
    padding: 80px 0;
    position: relative;
}

.counter-block {
    margin-bottom: 40px;
}

.counter-block .inner-box {
    text-align: center;
    padding: 0 20px;
}

.counter-number {
    font-size: 48px;
    font-weight: 700;
    color: #1E3A8A;
    line-height: 1.2;
    margin-bottom: 15px;
    display: block;
}

.counter-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
}

.counter-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    max-width: 280px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .counter-section {
        padding: 60px 0;
    }

    .counter-number {
        font-size: 40px;
    }

    .counter-title {
        font-size: 18px;
    }

    .counter-text {
        font-size: 13px;
    }

    .counter-block {
        margin-bottom: 30px;
    }
}

/* Job Filter Tabs */
.job-filter-tabs {
    margin: 40px 0;
    display: flex;
    justify-content: center;
}

.filter-tabs {
    border: 1px solid #e8e8e8;
    background: #fff;
    border-radius: 10px;
    padding: 8px;
    overflow-x: auto;
    white-space: nowrap;
}

.filter-tabs .nav-item {
    margin: 0 4px;
}

.filter-tabs .nav-link {
    background: transparent;
    border: none;
    border-radius: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.filter-tabs .nav-link:hover {
    color: #EA580C;
}

.filter-tabs .nav-link.active {
    background: #1E3A8A;
    color: #fff;
}

.filter-tabs .nav-link .icon {
    font-size: 22px;
    line-height: 1;
    margin-right: 8px;
}

.filter-tabs .nav-link i {
    font-size: 14px;
}

@media (max-width: 768px) {
    .filter-tabs .nav-link {
        padding: 12px 24px;
        font-size: 14px;
    }

    .filter-tabs .nav-link .icon {
        font-size: 14px;
    }

    .filter-tabs .nav-link i {
        font-size: 12px;
    }
}

/* Jobs Loading Overlay */
.jobs-loading-overlay {
    position: relative;
    display: none;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    margin-bottom: 40px;
    z-index: 10;
}

.jobs-loading-overlay.show {
    display: flex;
}

.loading-spinner {
    text-align: center;
}

.loading-spinner .spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 4px;
    color: #1E3A8A !important;
}

.loading-text {
    margin-top: 20px;
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

/* Job Cards Container */
#jobCardsContainer {
    min-height: 400px;
    transition: opacity 0.3s ease;
}

#jobCardsContainer.filtering {
    opacity: 0.3;
    pointer-events: none;
}

/* Job Cards Filtering Animation */
.job-block-modern {
    transition: all 0.4s ease;
    opacity: 1;
    transform: scale(1);
    margin-bottom: 30px;
}

.job-block-modern.hidden {
    opacity: 0;
    transform: scale(0.9);
    position: absolute;
    visibility: hidden;
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.slider-card {
    border: 1px solid #1E3A8A;
    border-radius: 10px;

}

.job-block-modern.showing {
    animation: slideInUp 0.5s ease forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 768px) {
    .job-filter-tabs {
        margin: 30px 0;
        padding: 0 15px;
    }

    .filter-tabs {
        border-radius: 40px;
        padding: 6px;
        justify-content: flex-start;
    }

    .filter-tabs .nav-link {
        padding: 10px 18px;
        font-size: 13px;
    }

    .filter-tabs .nav-link .icon {
        font-size: 12px;
    }

    .filter-tabs .nav-link i {
        font-size: 11px;
    }

    .jobs-loading-overlay {
        min-height: 300px;
        margin-bottom: 30px;
    }

    .loading-spinner .spinner-border {
        width: 2.5rem;
        height: 2.5rem;
    }

    .loading-text {
        font-size: 14px;
        margin-top: 15px;
    }

    #jobCardsContainer {
        min-height: 300px;
    }
}

.btn-style-one {
    position: relative;
    text-align: center;
    white-space: nowrap;
    text-decoration: none;
    font-size: 16px;
    color: #fff;
    background-color: #1E3A8A;
    border: 1px solid #1E3A8A;
    transition: all 0.3s;
    line-height: 20px;
    border-radius: 8px;
    font-weight: 400;
    padding: 18px 35px 18px;
}

.btn-style-one:hover {
    color: #fff;
    background-color: #EA580C;
    border: 1px solid #EA580C;
    box-shadow: 0 5px 15px rgba(25, 118, 210, 0.3);

}

.job-search-form.style-two .chosen-container-single .chosen-single {
    padding-left: 40px;
}

.job-search-form.style-two .chosen-container-single .chosen-single div:after {
    color: #fff;
}

.job-search-form.style-two .form-group {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.content-column .inner-column .list-tags-banner a {
    color: #797979;
}

.info_block {
    padding: 20px 40px 10px 90px;
    min-height: 90px;
    min-width: 260px;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 40px 30px rgba(25, 25, 46, .04);
    border-radius: 8px
}

.info_block,
.info_block .icon {
    display: flex;
    justify-content: center;
    align-items: center
}

.info_block .icon {
    position: absolute;
    left: 20px;
    top: 20px;
    height: 50px;
    width: 50px;
    border-radius: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #f9ab00;
    background: rgba(249, 171, 0, .15)
}

.info_block p {
    font-size: 16px;
    line-height: 22px;
    color: #202124;
    font-weight: 500
}

.info_block_two {
    min-height: 146px;
    max-width: 276px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 30px 35px;
    background: #fff;
    box-shadow: 0 40px 30px rgba(25, 25, 46, .04);
    border-radius: 8px;
    text-align: center
}

.info_block_two .image {
    position: relative;
    margin-top: 15px
}

.info_block_two p {
    font-size: 16px;
    line-height: 25px;
    color: #202124;
    font-weight: 500
}

.job-categories {
    position: relative;
    padding: 60px 0 85px;
}

.category-block {
    position: relative;
    margin-bottom: 30px
}

.category-block .inner-box {
    position: relative;
    background: #fff;
    border: 1px solid #ecedf2;
    box-sizing: border-box;
    border-radius: 10px;
    padding: 19px;
    transition: all .3s ease
}

.category-block .inner-box:hover {
    box-shadow: 0 7px 18px rgba(64, 79, 104, .05)
}

.category-block .content {
    position: relative;
    display: flex;
    justify-content: center;
    padding-left: 90px;
    min-height: 70px;
    flex-direction: column
}

.category-block .icon {
    position: absolute;
    left: 0;
    top: 0;
    height: 70px;
    width: 70px;
    background: #ecedf2;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1E3A8A;
    font-size: 36px;
    border-radius: 10px;
    transition: all .3s ease
}

.category-block .inner-box:hover .icon {
    color: #fff;
    background: #1E3A8A
}

.category-block .h4,
.category-block h4 {
    font-size: 18px;
    color: #202124;
    font-weight: 500;
    line-height: 29px;
    margin-bottom: 4px
}

.category-block .h4 a,
.category-block h4 a {
    color: #202124;
    transition: all .3s ease
}

.category-block .h4 a:hover,
.category-block h4 a:hover {
    color: #1E3A8A
}

.category-block p {
    font-size: 14px;
    color: dimgray;
    font-weight: 400
}

.category-block-two {
    position: relative;
    margin-bottom: 30px
}

.category-block-two .inner-box {
    position: relative;
    background: #fff;
    border: 1px solid #ecedf2;
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    transition: all .3s ease
}

.category-block-two .inner-box:hover {
    box-shadow: 0 6px 15px rgba(64, 79, 104, .05)
}

.category-block-two .content {
    display: flex;
    flex-direction: column
}

.category-block-two .content,
.category-block-two .icon {
    position: relative;
    justify-content: center;
    align-items: center
}

.category-block-two .icon {
    display: inline-block;
    height: 70px;
    width: 70px;
    background: #ecedf2;
    display: flex;
    color: #1E3A8A;
    font-size: 36px;
    border-radius: 50%;
    margin-bottom: 20px;
    transition: all .3s ease
}

.category-block-two .inner-box:hover .icon {
    color: #fff;
    background: #1E3A8A
}

.category-block-two .h4,
.category-block-two h4 {
    font-size: 18px;
    color: #202124;
    font-weight: 500;
    line-height: 29px
}

.category-block-two .h4 a,
.category-block-two h4 a {
    color: #202124;
    transition: all .3s ease
}

.category-block-two .h4 a:hover,
.category-block-two h4 a:hover {
    color: #1E3A8A
}

.category-block-two p {
    font-size: 14px;
    color: dimgray;
    font-weight: 400
}

.category-block-three {
    position: relative;
    margin-bottom: 30px
}

.category-block-three .inner-box {
    position: relative;
    background: #fff;
    border: 1px solid #ecedf2;
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    transition: all .3s ease
}

.category-block-three .inner-box:hover {
    box-shadow: 0 6px 15px rgba(64, 79, 104, .05)
}

.category-block-three .content {
    display: flex;
    flex-direction: column
}

.category-block-three .content,
.category-block-three .icon {
    position: relative;
    justify-content: center;
    align-items: center
}

.category-block-three .icon {
    display: inline-block;
    height: 70px;
    width: 70px;
    background: #ecedf2;
    display: flex;
    color: #ffffff;
    font-size: 36px;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: all .3s ease
}

.category-block-three .h4,
.category-block-three h4 {
    font-size: 18px;
    color: #202124;
    font-weight: 500;
    line-height: 29px;
    transition: all .3s ease
}

.category-block-three .h4 a,
.category-block-three h4 a {
    color: #202124;
    text-decoration: none;
    transition: all .3s ease
}

.category-block-three .h4 a:hover,
.category-block-three h4 a:hover {
    color: #1E3A8A
}

.category-block-three p {
    font-size: 14px;
    color: dimgray;
    font-weight: 400;
    transition: all .3s ease
}

.category-block-three:first-child .icon {
    background: #e2eaf8;
    color: #1E3A8A
}

.category-block-three:nth-child(2) .icon {
    background: #feddd8;
    color: #f20
}

.category-block-three:nth-child(3) .icon {
    background: #f2e0fe;
    color: #90f
}

.category-block-three:nth-child(4) .icon {
    background: #ffeee2;
    color: #f20
}

.category-block-three:nth-child(5) .icon {
    background: #d4efdf;
    color: #00ca52
}

.category-block-three:nth-child(6) .icon {
    background: #fcf4db;
    color: #ecb300
}

.category-block-three:nth-child(7) .icon {
    background: #dad9f8;
    color: #0800ed
}

.category-block-three:nth-child(8) .icon {
    background: #d4f4f8;
    color: #00d0ea
}

.category-block-four {
    position: relative;
    margin-bottom: 30px
}

.category-block-four .inner-box {
    position: relative;
    background: #fff;
    border: 1px solid #ecedf2;
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    transition: all .3s ease
}

.category-block-four .inner-box:hover {
    box-shadow: 0 6px 15px rgba(64, 79, 104, .05)
}

.category-block-four .content {
    display: flex;
    flex-direction: column
}

.category-block-four .content,
.category-block-four .icon {
    position: relative;
    justify-content: center;
    align-items: center
}

.category-block-four .icon {
    display: inline-block;
    height: 70px;
    width: 70px;
    background: #ecedf2;
    display: flex;
    color: #ffffff;
    font-size: 36px;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: all .3s ease
}

.category-block-four .h4,
.category-block-four h4 {
    font-size: 18px;
    color: #202124;
    font-weight: 500;
    line-height: 29px;
    transition: all .3s ease
}

.category-block-four .h4 a,
.category-block-four h4 a {
    color: #202124;
    text-decoration: none;
    transition: all .3s ease
}

.category-block-four .h4 a:hover,
.category-block-four h4 a:hover {
    color: #1E3A8A
}

.category-block-four p {
    font-size: 14px;
    color: dimgray;
    font-weight: 400;
    transition: all .3s ease
}

.category-block-four:first-child .icon {
    background: #e2eaf8;
    color: #1E3A8A
}

.category-block-four:nth-child(2) .icon {
    background: #e2eaf8;
    color: #1E3A8A
}

.category-block-four:nth-child(3) .icon {
    background: #e2eaf8;
    color: #1E3A8A
}

.category-block-four:nth-child(4) .icon {
    background: #e2eaf8;
    color: #1E3A8A
}

.category-block-four:nth-child(5) .icon {
    background: #e2eaf8;
    color: #1E3A8A
}

.category-block-four:nth-child(6) .icon {
    background: #e2eaf8;
    color: #1E3A8A
}

.category-block-four:nth-child(7) .icon {
    background: #e2eaf8;
    color: #1E3A8A
}

.category-block-four:nth-child(8) .icon {
    background: #e2eaf8;
    color: #1E3A8A
}

.job-categories.style-two {
    background: #f5f7fc
}

.job-categories.style-two .category-block .inner-box .icon {
    background: #e2eaf8;
    border-radius: 50%;
    color: #1E3A8A
}

.job-categories.style-two .category-block .inner-box:hover .icon {
    background: #1E3A8A;
    color: #fff
}

.job-categories.style-two .category-block .h4 a:hover,
.job-categories.style-two .category-block h4 a:hover {
    color: #1E3A8A
}

.registeration-banners {
    position: relative;
    padding: 0px 0 70px;
}

.banner-style-one {
    position: relative;
    margin-bottom: 30px
}

.banner-style-one .inner-box {
    position: relative;
    background: rgba(30, 58, 138, .8);
    border-radius: 8px;
    padding: 54px 60px;
    height: 500px;
}

.banner-style-one .content {
    position: relative;
}

.banner-style-one .h3,
.banner-style-one h3 {
    position: relative;
    display: block;
    font-weight: 500;
    font-size: 26px;
    line-height: 38px;
    color: #fff;
    margin-bottom: 13px
}

.banner-style-one p {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 17px
}

.banner-style-one .theme-btn {
    position: relative;
    min-width: 150px;
    transition: all 0.3s;
    background: #fff;
    color: #1E3A8A
}


.btn-style-five {
    text-align: center;
    white-space: nowrap;
    border: 1px solid #fff;
    text-decoration: none;
    line-height: 20px;
    border-radius: 8px;
    font-weight: 400;
    padding: 14px 35px
}

.btn-style-five:hover {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.banner-style-one .image {
    position: absolute;
    left: 50px;
    bottom: 0;
    margin-bottom: 0
}

.banner-style-two {
    position: relative;
    margin-bottom: 30px
}

.banner-style-two .inner-box {
    position: relative;
    background: rgba(234, 88, 12, .5);
    border-radius: 8px;
    padding: 54px 60px;
    height: 500px;
}

.banner-style-two .content {
    position: relative;
}

.banner-style-two .h3,
.banner-style-two h3 {
    position: relative;
    display: block;
    font-weight: 500;
    font-size: 26px;
    line-height: 38px;
    color: #fff;
    margin-bottom: 13px
}

.banner-style-two p {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 40px
}

.banner-style-two .theme-btn {
    position: relative;
    transition: all 0.3s;
    min-width: 240px;
    color: #EA580C;
    background: #fff
}

.banner-style-two .theme-btn:hover,
.banner-style-three .theme-btn:hover {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.banner-style-two .image {
    position: absolute;
    right: 15px;
    bottom: 0;
    margin-bottom: 0
}

.banner-style-three {
    position: relative;
    margin-bottom: 30px
}

.banner-style-three .inner-box {
    position: relative;
    background: rgb(24, 66, 193, 0.7);
    border-radius: 8px;
    padding: 54px 60px;
    height: 500px;
}

.banner-style-three .content {
    position: relative;
}

.banner-style-three .h3,
.banner-style-three h3 {
    position: relative;
    display: block;
    font-weight: 500;
    font-size: 26px;
    line-height: 38px;
    color: #fff;
    margin-bottom: 13px
}

.banner-style-three p {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 52px
}

.banner-style-three .theme-btn {
    position: relative;
    transition: all 0.3s;
    min-width: 150px;
    background: #fff;
    color: #1E3A8A
}

.banner-style-three .image {
    position: absolute;
    right: 12px;
    bottom: 0;
    margin-bottom: 0
}

.layout-pb-0 {
    padding-bottom: 0 !important
}

.layout-pb-60 {
    padding-bottom: 60px !important
}

.layout-pb-100 {
    padding-bottom: 100px !important
}

.layout-pb-120 {
    padding-bottom: 120px !important
}

.row.grid-base {
    margin: -15px
}

.row.grid-base > * {
    padding: 15px
}

.sec-title {
    position: relative;
    margin-bottom: 50px
}

.sec-title .sub-title {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 24px;
    color: #1E3A8A;
    font-weight: 500;
    margin-bottom: 10px
}

.sec-title .h2,
.sec-title h2 {
    position: relative;
    display: block;
    font-size: 30px;
    line-height: 1.2em;
    color: #202124;
    font-weight: 500
}

.sec-title .text {
    position: relative;
    margin-top: 15px;
    font-size: 15px;
    line-height: 26px
}

.sec-title.light .h2,
.sec-title.light .text,
.sec-title.light h2 {
    color: #fff
}

.list-style-one {
    position: relative;
    padding-left: 0 !important;
}

.list-style-one li {
    position: relative;
    padding-left: 30px;
    font-size: 15px;
    line-height: 26px;
    color: #202124;
    list-style: none;
    font-weight: 400;
    cursor: default;
    margin-bottom: 20px
}

.list-style-one li:before {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 17px;
    line-height: 26px;
    content: "";
    font-family: flaticon;
}

.list-style-two {
    position: relative
}

.list-style-two li {
    position: relative;
    font-size: 14px;
    line-height: 19px;
    color: dimgray;
    cursor: default;
    padding-left: 22px;
    margin-bottom: 20px
}

.theme-btn.-blue {
    position: absolute;
    background-color: #1E3A8A;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    padding: 15px 50px;
    border-radius: 8px;
    transition: all .15s ease-in-out
}

.theme-btn.-blue-light,
.theme-btn.-blue:hover {
    background-color: #EA580C;
    color: #fff
}

.theme-btn.-blue-light {
    background-color: #1E3A8A;
    padding: 15px 50px;
    border-radius: 8px;
    transition: all .15s ease-in-out
}

.theme-btn.-blue-light:hover {
    background-color: #EA580C;
    color: #fff
}

.theme-btn.-blue-dark {
    background-color: #131a51;
    color: #fff;
    padding: 15px 50px;
    border-radius: 8px
}

.theme-btn.-blue-dark:hover {
    background-color: #1E3A8A;
    color: #fff
}

.about-section-two .image-column {
    position: relative;
    text-align: center;
    margin-bottom: 0
}

.about-section-two .image-column .image-box {
    position: relative;
    margin-bottom: 0;
    margin-right: 0
}

.about-section-two .sec-title .h2,
.about-section-two .sec-title h2 {
    font-size: 40px;
    line-height: 54px;
    color: #202124;
}

.fw-700 {
    font-weight: 700 !important;
}

.image-box.-wide-right {
    margin-right: -40px !important;
}

.about-section-two.style-two .image-column .image-box {
    text-align: left;
    margin-right: 0
}

.about-section-two.style-two .content-column .inner-column {
    padding-left: 120px
}

.pricing-section {
    padding: 100px 0 70px
}

.pricing-section,
.pricing-tabs {
    position: relative
}

.pricing-tabs .tab-buttons {
    text-align: center;
    position: relative;
    margin-bottom: 30px
}

.pricing-tabs .tab-buttons .h4,
.pricing-tabs .tab-buttons h4 {
    display: block;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #202124;
    margin-bottom: 15px
}

.pricing-tabs .tab-btns {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center
}

.pricing-tabs .tab-btns:before {
    position: absolute;
    top: 0;
    left: 50%;
    width: 60px;
    height: 30px;
    transform: translateX(-50%);
    background: #1E3A8A;
    border: 1px solid #e7e7ec;
    box-sizing: border-box;
    box-shadow: 0 8px 15px rgba(140, 152, 164, .1);
    border-radius: 30px;
    content: "";
    transition: all .3s linear
}

.pricing-tabs .tab-btns li {
    position: relative;
    font-size: 14px;
    line-height: 30px;
    color: dimgray;
    cursor: pointer;
    z-index: 8;
    padding: 0 48px;
    min-width: 196px;
    transition: all .3s ease
}

.pricing-tabs .tab-btns li:before {
    position: absolute;
    right: -26px;
    height: 20px;
    width: 20px;
    top: 5px;
    background: #fff;
    content: "";
    border-radius: 50%;
    transition: all .3s ease
}

.pricing-tabs .tab-btns li.active-btn:before {
    right: 6px
}

.pricing-tabs .tab-btns li:last-child:before {
    display: none
}

.pricing-table {
    position: relative;
    margin-bottom: 30px
}

.pricing-table .inner-box {
    position: relative;
    background: #fff;
    border: 1px solid #ecedf2;
    box-sizing: border-box;
    border-radius: 8px;
    padding: 40px;
    overflow: hidden;
    transition: all .3s ease
}

.pricing-table .inner-box:hover,
.pricing-table.tagged .inner-box {
    border: 1px solid #1E3A8A;
    box-shadow: 0 6px 15px rgba(64, 79, 104, .05)
}

.pricing-table .tag {
    position: absolute;
    right: 30px;
    top: 30px;
    overflow: hidden;
    border-radius: 30px;
    font-size: 13px;
    line-height: 20px;
    color: #1E3A8A;
    padding: 5px 25px
}

.pricing-table .tag:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #1E3A8A;
    opacity: .15;
    content: "";
    border-radius: 30px
}

.pricing-table .title {
    display: block;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #1E3A8A;
    margin-bottom: 10px
}

.pricing-table .price {
    position: relative;
    display: flex;
    align-items: flex-end;
    font-size: 30px;
    line-height: 41px;
    color: #202124;
    margin-bottom: 50px;
    font-weight: 500;
    transition: all .3s ease
}

.pricing-table .duration {
    position: relative;
    font-size: 18px;
    line-height: 1em;
    color: #202124;
    font-weight: 400;
    bottom: 7px;
    margin-left: 7px
}

.pricing-table .table-content {
    position: relative;
    margin-bottom: 60px
}

.pricing-table .table-content ul {
    position: relative
}

.pricing-table .table-content ul li {
    position: relative;
    list-style: none;
    font-size: 14px;
    line-height: 25px;
    color: dimgray;
    font-weight: 400;
    margin-bottom: 20px;
    padding-left: 30px
}

.pricing-table .table-content ul li:before {
    position: absolute;
    left: 0;
    top: 0;
    font-family: Flaticon;
    font-size: 16px;
    color: #202124;
    content: ""
}

.pricing-table .table-footer {
    position: relative
}

.pricing-table .table-footer a {
    position: relative;
    display: block;
    width: 100%
}

.btn-prevSlide {
    position: absolute;
    left: 25%;
    top: 45%;
    background: transparent;
    border: none;
    color: #1E3A8A;
    font-size: 35px;
    transition: all 0.3s;
}

.btn-nextSlide {
    position: absolute;
    right: 25%;
    top: 45%;
    color: #1E3A8A;
    font-size: 35px;
    background: transparent;
    border: none;
    transition: all 0.3s;
}

.btn-prevSlide:hover,
.btn-nextSlide:hover {
    color: #EA580C;
}

.btn-style-three {
    position: relative;
    text-align: center;
    text-decoration: none;
    border: none;
    white-space: nowrap;
    color: #1E3A8A;
    background-color: #e2eaf8;
    transition: all 0.3s;
    font-size: 15px;
    line-height: 20px;
    border-radius: 8px;
    font-weight: 400;
    padding: 18px 35px 18px
}

.btn-style-three:hover {
    color: #fff;
    background-color: #1E3A8A
}

.btn-style-eight {
    position: relative;
    text-align: center;
    text-decoration: none;
    border: none;
    white-space: nowrap;
    color: #1E3A8A;
    background-color: #e2eaf8;
    transition: all 0.3s;
    font-size: 12px;
    line-height: 10px;
    border-radius: 8px;
    font-weight: 400;
    padding: 8px 15px 8px
}

.btn-style-eight:hover {
    color: #fff;
    background-color: #1E3A8A
}

.sec-title-outer {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-end
}

.sec-title {
    position: relative;
    margin-bottom: 50px
}

.sec-title .sub-title {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 24px;
    color: #1E3A8A;
    font-weight: 500;
    margin-bottom: 10px
}

.sec-title .h2,
.sec-title h2 {
    position: relative;
    display: block;
    font-size: 30px;
    line-height: 1.2em;
    color: #202124;
    font-weight: 500
}

.sec-title .text {
    position: relative;
    margin-top: 15px;
    font-size: 15px;
    line-height: 26px
}

.sec-title.light .h2,
.sec-title.light .text,
.sec-title.light h2 {
    color: #fff
}

.sec-title-outer .link {
    position: relative;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    text-decoration: none;
    color: #1E3A8A;
    margin-bottom: 50px
}

.sec-title-outer .link .icon {
    margin-left: 5px
}

.sec-title-outer select {
    position: relative;
    background: #fff;
    border: 1px solid #ecedf2;
    box-shadow: 0 6px 15px rgba(64, 79, 104, .05);
    border-radius: 8px;
    min-width: 202px;
    height: 50px;
    line-height: 20px;
    padding: 15px 20px;
    font-size: 14px;
    line-height: 19px;
    color: #202124;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.sec-title-outer .select-box-outer {
    position: relative;
    margin-bottom: 50px
}

.sec-title-outer .select-box-outer .icon {
    position: absolute;
    right: 22px;
    top: 50%;
    z-index: 1;
    margin-top: -10px;
    font-size: 14px;
    line-height: 20px;
    color: #202124;
    pointer-events: none
}

.feature-block {
    position: relative;
    margin-bottom: 30px
}

.feature-block .inner-box {
    position: relative;
    border-radius: 10px;
    overflow: hidden
}

.feature-block .image {
    position: relative;
    margin-bottom: 0
}
.feature-block .bilgi-image {
    height: 80%;
}

.feature-block .image img {
    display: block;
    width: 100%;
    transition: all .4s ease
}

.feature-block .inner-box:hover .image img {
    transform: scale(1.2)
}

.feature-block .overlay-box {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%
}

.feature-block .overlay-box .content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 30px 30px 25px;
    z-index: 9
}

.feature-block .overlay-box .h5,
.feature-block .overlay-box h5 {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    display: block;
    margin-bottom: 2px
}

.feature-block .overlay-box .total-jobs {
    display: block;
    font-size: 14px;
    font-weight: 300;
    color: #fff
}

.overlay-link {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 9
}

.news-section-two {
    position: relative;
    padding: 100px 0 50px
}

.news-section-two .news-block,
.news-section-two .sec-title {
    margin-bottom: 50px
}

.news-section-two .news-block .inner-box {
    padding: 0;
    background-color: transparent
}

.news-section-two .news-block .lower-content {
    padding: 17px 0 0
}

.news-section-two .news-block .h3,
.news-section-two .news-block .post-meta,
.news-section-two .news-block h3 {
    margin-bottom: 0
}

.news-section-two.style-two {
    background: #f5f7fc
}

.news-section-three {
    position: relative;
    background-color: #ecedf2;
    padding: 100px 0 70px
}

.news-block .lower-content {
    padding: 20px 20px 16px;
    position: relative
}

.news-block .post-meta {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    list-style: none;
    padding-left: 0;
}

.news-block .post-meta li {
    position: relative;
    font-size: 14px;
    line-height: 24px;
    color: dimgray;
    margin-right: 15px;
    text-decoration: none;
    padding-left: 20px;
    margin-bottom: 5px
}

.news-block .post-meta li:before {
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -3px;
    height: 6px;
    width: 6px;
    background: dimgray;
    border-radius: 5px;
    content: "";
}

.news-block .post-meta li:first-child {
    margin-left: 0;
    padding-left: 0
}

.news-block .post-meta li:first-child:before {
    display: none
}

.news-block .post-meta li a,
.news-block .post-meta li a:hover {
    color: inherit;
    text-decoration: none;
    outline: none;
}

.news-block .read-more {
    position: relative;
    text-decoration: none;
    font-size: 16px;
    line-height: 28px;
    color: #1E3A8A
}

.news-block .read-more i {
    margin-left: 10px;
    transition: all .3s ease
}

.news-block .read-more:hover {
    color: inherit;
    color: #1E3A8A
}

.news-block .read-more:hover i {
    opacity: 0;
    margin-left: 20px
}

.news-block .lower-content .h3,
.news-block .lower-content h3 {
    font-size: 18px;
    color: #202124;
    font-weight: 500;
    margin-bottom: 10px
}

.news-block .lower-content .h3 a,
.news-block .lower-content h3 a {
    color: #202124;
    text-decoration: none;
    transition: all .3s ease
}

.news-block .lower-content .h3 a:hover,
.news-block .lower-content h3 a:hover {
    color: #1E3A8A
}

.news-block .lower-content .text {
    font-size: 14px;
    line-height: 24px;
    color: dimgray;
    margin-bottom: 15px
}


.news-section.style-three .image-large img {
    min-height: 468px;
    object-fit: cover
}

@media (max-width: 767px) {
    .news-section.style-three .image-large img {
        min-height: 200px
    }
}

.news-section.style-three .image-regular img {
    min-height: 163px;
    object-fit: cover
}

@media (max-width: 1024px) {
    .news-section.style-three .image-regular img {
        min-height: 200px
    }
}

@media (max-width: 991px) {
    .news-section.style_2 .news-block-two .inner-box {
        flex-direction: column
    }
}

.news-section.style_2 .news-block-two .image-box {
    flex: 0 0 200px;
    height: 200px
}

.news-section.style_2 .news-block-two .image-box .image {
    height: 100%
}

.news-section.style_2 .news-block-two .image-box img {
    min-height: 100%;
    height: 100%
}

.news-block .image-box .image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0
}

.news-block .image-box img {
    display: block;
    width: 100%;
    min-height: 258px;
    object-fit: cover;
    transition: all .3s ease
}

.news-block .inner-box:hover img {
    transform: scale(1.1)
}

.call-to-action-two {
    position: relative;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    padding: 170px 0 160px;
    text-align: center
}

.call-to-action-two .sec-title {
    margin-bottom: 33px
}

.call-to-action-two .btn-box {
    position: relative;
    display: inline-block
}

.call-to-action-two .theme-btn {
    margin: 0 10px 10px
}

.call-to-action-two .btn-style-two {
    color: #fff
}

.call-to-action-two.style-two {
    position: relative
}

.call-to-action-two.style-two:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #1E3A8A;
    content: "";
    opacity: .85
}

.faqs-section {
    position: relative;
    padding: 100px 0
}

.faqs-section .h3,
.faqs-section h3 {
    font-weight: 500;
    font-size: 26px;
    line-height: 35px;
    color: #202124;
    margin-bottom: 12px
}

.faqs-section .accordion-box {
    margin-bottom: 60px
}

.accordion-box {
    position: relative;
    margin-bottom: 30px;
}

.accordion-title {
    color: #1E3A8A;
}

.accordion-box .block {
    position: relative;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #ECEDF2;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.accordion-box .block .acc-btn {
    position: relative;
    font-size: 16px;
    padding: 17px 30px;
    line-height: 30px;
    color: #202124;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    border: none;
    outline: none;
    box-shadow: none;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.accordion-box .block.active-block {
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
}

.accordion-box .block .acc-btn .icon {
    position: absolute;
    right: 0;
    top: 0;
    height: 70px;
    width: 70px;
    line-height: 70px;
    text-align: center;
    color: #2F2D51;
    font-size: 15px;
    font-weight: 700;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.accordion-box .block .acc-btn.active .icon:before {
    content: "\f151";
}

.accordion-box .block .acc-content {
    position: relative;
    display: none;
}

.accordion-box .block .acc-content.current {
    display: block;
}

.accordion-box .block .content {
    position: relative;
    padding: 24px 30px 26px;
    border-top: 1px solid #ECEDF2;
}

.accordion-box .block .content p {
    position: relative;
    font-size: 15px;
    line-height: 24px;
    color: #696969;
    font-weight: 400;
    margin-bottom: 24px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.accordion-box .block .content p:last-child {
    margin-bottom: 0;
}

.main-footer {
    border-top: 1px solid #ecedf2;
    position: relative;
    background-color: #fff
}

.main-footer .widgets-section {
    position: relative;
    padding-top: 100px;
    padding-bottom: 50px
}

.main-footer .footer-column {
    position: relative;
    margin-bottom: 50px
}

.main-footer .footer-widget {
    position: relative
}

.main-footer .widget-title {
    position: relative;
    font-size: 18px;
    text-decoration: none;
    font-weight: 500;
    color: #2f2d51;
    line-height: 1.4em;
    margin-bottom: 30px
}

.main-footer .logo {
    position: relative;
    margin-bottom: 25px
}

.main-footer .logo img {
    display: block
}

.main-footer .phone-num {
    position: relative;
    text-decoration: none;
    font-size: 18px;
    line-height: 28px;
    color: #202124;
    font-weight: 500;
    margin-bottom: 15px
}

.main-footer .phone-num span {
    position: relative;
    display: block
}

.main-footer .phone-num a {
    text-decoration: none;
    color: #1E3A8A
}

.main-footer .address {
    font-size: 14px;
    line-height: 30px;
    margin-bottom: 35px;
    text-decoration: none;
    color: dimgray;
    font-weight: 400
}

.main-footer .address a {
    text-decoration: none;
    color: #1E3A8A
}

.main-footer .links-widget {
    position: relative;
    padding-left: 20px
}

.main-footer .list {
    position: relative
}

.main-footer .list li {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    text-decoration: none;
    color: dimgray;
    margin-bottom: 15px
}

.main-footer .list li a {
    display: inline-block;
    color: dimgray;
    text-decoration: none;
    transition: all .2s ease
}

.main-footer .list li:before {
    position: absolute;
    left: 0;
    top: 10px;
    height: 2px;
    width: 0;
    content: "";
    border-bottom: 2px solid #1E3A8A;
    transition: all .3s ease
}

.main-footer .list li:hover:before {
    width: 15px
}

.main-footer .list li:hover a {
    transform: translateX(25px);
    color: #1E3A8A
}

.main-footer .footer-bottom {
    position: relative;
    width: 100%;
    padding: 36px 0;
    text-align: center;
    text-decoration: none;
    border-top: 1px solid #ecedf2;
    min-height: 100px
}

.main-footer .footer-bottom .bottom-left {
    position: relative;
    display: flex;
    align-items: center
}

.main-footer .footer-bottom .logo {
    margin-bottom: 0;
    margin-right: 28px
}

.main-footer .copyright-text {
    position: relative;
    display: block;
    font-size: 14px;
    text-decoration: none;
    line-height: 24px;
    font-weight: 400;
    color: dimgray;
    padding: 0
}

.main-footer .copyright-text a {
    display: inline-block;
    color: dimgray;
    line-height: 30px;
    text-decoration: none;
    transition: all .3s ease
}

.main-footer .copyright-text a:hover {
    text-decoration: underline;
    color: #1E3A8A
}

.main-footer .footer-bottom .outer-box {
    justify-content: space-between
}

.main-footer .footer-bottom .outer-box,
.main-footer .social-links {
    position: relative;
    display: flex;
    align-items: center
}

.main-footer .social-links a {
    position: relative;
    margin-left: 35px;
    font-size: 14px;
    line-height: 24px;
    text-decoration: none;
    color: dimgray;
    transition: all .3s ease
}

.main-footer .social-links a:hover {
    color: #bc91e8
}

/* Mobile Navigation Styles */
.mobile-nav-toggler {
    display: none;
    position: relative;
    cursor: pointer;
    margin-left: 20px;
}

.hamburger-menu {
    position: relative;
    width: 30px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #202124;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
    transform-origin: left;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg);
}


/* Mobile Responsive */
@media (max-width: 991.98px) {

    .main-header .outer-box .btn-box,
    .main-header .upload-cv {
        display: none;
    }

    .mobile-nav-toggler {
        display: block;
    }

    .main-header .main-box {
        padding: 0 20px;
    }

    .main-header .logo {
        margin-right: 0;
    }

    .main-menu {
        display: none;
    }
}

@media (max-width: 480px) {

    .mobile-menu .nav-logo img {
        max-width: 150px;
    }

    .hamburger-menu {
        width: 25px;
        height: 20px;
    }
}

.modal-content {
    max-height: 100%;
    overflow: hidden
}

.modal-dialog-scrollable .modal-body {
    overflow-y: auto
}

.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - var(--bs-modal-margin) * 2)
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    color: var(--bs-modal-color);
    pointer-events: auto;
    background-color: var(--bs-modal-bg);
    background-clip: padding-box;
    border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
    border-radius: var(--bs-modal-border-radius);
    outline: 0
}

.modal-backdrop {
    --bs-backdrop-zindex: 1050;
    --bs-backdrop-bg: #000;
    --bs-backdrop-opacity: 0.5;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--bs-backdrop-zindex);
    width: 100vw;
    height: 100vh;
    background-color: var(--bs-backdrop-bg)
}

.modal-backdrop.fade {
    opacity: 0
}

.modal-backdrop.show {
    opacity: var(--bs-backdrop-opacity)
}

.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: var(--bs-modal-header-padding);
    border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
    border-top-left-radius: var(--bs-modal-inner-border-radius);
    border-top-right-radius: var(--bs-modal-inner-border-radius)
}

.modal-header .btn-close {
    padding: calc(var(--bs-modal-header-padding-y) * .5) calc(var(--bs-modal-header-padding-x) * .5);
    margin: calc(-.5 * var(--bs-modal-header-padding-y)) calc(-.5 * var(--bs-modal-header-padding-x)) calc(-.5 * var(--bs-modal-header-padding-y)) auto
}

.modal-title {
    margin-bottom: 0;
    line-height: var(--bs-modal-title-line-height)
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: var(--bs-modal-padding)
}

.modal-footer {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * .5);
    background-color: var(--bs-modal-footer-bg);
    border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
    border-bottom-right-radius: var(--bs-modal-inner-border-radius);
    border-bottom-left-radius: var(--bs-modal-inner-border-radius)
}

.modal-footer > * {
    margin: calc(var(--bs-modal-footer-gap) * .5)
}

@media (min-width: 576px) {
    .modal {
        --bs-modal-margin: 1.75rem;
        --bs-modal-box-shadow: var(--bs-box-shadow)
    }

    .modal-dialog {
        max-width: var(--bs-modal-width);
        margin-right: auto;
        margin-left: auto
    }

    .modal-sm {
        --bs-modal-width: 300px
    }
}

@media (min-width: 992px) {

    .modal-lg,
    .modal-xl {
        --bs-modal-width: 800px
    }
}

@media (min-width: 1200px) {
    .modal-xl {
        --bs-modal-width: 1140px
    }
}

.modal-fullscreen {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0
}

.modal-fullscreen .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0
}

.modal-fullscreen .modal-footer,
.modal-fullscreen .modal-header {
    border-radius: 0
}

.modal-fullscreen .modal-body {
    overflow-y: auto
}

@media (max-width: 575.98px) {
    .modal-fullscreen-sm-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

    .modal-fullscreen-sm-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }

    .modal-fullscreen-sm-down .modal-footer,
    .modal-fullscreen-sm-down .modal-header {
        border-radius: 0
    }

    .modal-fullscreen-sm-down .modal-body {
        overflow-y: auto
    }
}

@media (max-width: 767.98px) {
    .appear-animation {
        opacity: 1 !important;
        animation: none !important;
        transform: none !important;
        visibility: visible !important;
    }

    /* Özel animasyon sınıflarını etkisizleştir */
    .fadeIn,
    .fadeInUp,
    .fadeInUpShorter,
    .fadeInRight,
    .fadeInLeft,
    .expandIn {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    /* Particle animasyonlarını gizle */
    .particle {
        display: none !important;
    }

    /* Float element animasyonlarını durdur */
    [data-plugin-float-element] {
        transform: none !important;
        transition: none !important;
    }

    /* Custom element animasyonlarını durdur */
    .custom-element-wrapper {
        transform: none !important;
        opacity: 1 !important;
    }

    Ï
    .modal-fullscreen-md-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

    .modal-fullscreen-md-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }

    .modal-fullscreen-md-down .modal-footer,
    .modal-fullscreen-md-down .modal-header {
        border-radius: 0
    }

    .modal-fullscreen-md-down .modal-body {
        overflow-y: auto
    }
}

@media (max-width: 991.98px) {
    .modal-fullscreen-lg-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

    .modal-fullscreen-lg-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }

    .modal-fullscreen-lg-down .modal-footer,
    .modal-fullscreen-lg-down .modal-header {
        border-radius: 0
    }

    .modal-fullscreen-lg-down .modal-body {
        overflow-y: auto
    }
}

@media (max-width: 1199.98px) {
    .modal-fullscreen-xl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

    .modal-fullscreen-xl-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }

    .modal-fullscreen-xl-down .modal-footer,
    .modal-fullscreen-xl-down .modal-header {
        border-radius: 0
    }

    .modal-fullscreen-xl-down .modal-body {
        overflow-y: auto
    }
}

@media (max-width: 1399.98px) {
    .modal-fullscreen-xxl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

    .modal-fullscreen-xxl-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }

    .modal-fullscreen-xxl-down .modal-footer,
    .modal-fullscreen-xxl-down .modal-header {
        border-radius: 0
    }

    .modal-fullscreen-xxl-down .modal-body {
        overflow-y: auto
    }
}

#login-modal {
    padding: 30px 40px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: none
}

#login-modal .social-btn-two {
    padding: 10px 20px
}

.login-from {
    position: relative;
    text-align: center;
    background: #fff
}

.login-from .h3,
.login-from h3 {
    position: relative;
    display: block;
    font-size: 20px;
    color: #1b2032;
    font-weight: 700;
    line-height: 1.2em;
    margin-bottom: 20px
}

.login-from .form-group {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px
}

.login-from .form-group .forgot-pass,
.login-from .form-group .text,
.login-from .form-group label {
    font-size: 14px;
    color: #5c5c5c;
    line-height: 1em;
    margin: 0
}

.login-from .form-group label {
    cursor: pointer
}

.login-from .form-group .forgot-pass:hover {
    text-decoration: underline
}

.login-from .form-group input[type=email],
.login-from .form-group input[type=password],
.login-from .form-group input[type=text],
.login-from .form-group input[type=url],
.login-from .form-group select,
.login-from .form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    height: 54px;
    font-size: 14px;
    color: #5c6770;
    line-height: 30px;
    font-weight: 400;
    background: #fff;
    border: 2px solid #e6e8ed;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all .3s ease
}

.login-from .form-group button,
.login-from .form-group input[type=submit] {
    width: 100%;
    min-width: auto
}

.login-from .form-group .text {
    width: 100%
}

.login-from .form-group .social-btn {
    margin-right: 30px;
    width: 100%
}

.login-from .form-group .social-btn:last-child {
    margin-right: 0
}

.login-from .bottom-text {
    flex-direction: column
}

.login-from .signup-link {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: #021f4a
}

.login-from .signup-link:hover {
    text-decoration: underline
}

.login-from.register .form-group.full-width {
    flex-direction: column;
    text-align: left;
    margin-bottom: 8px
}

.login-from.register .checkbox-wrap {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
    white-space: nowrap
}

.login-from.register .checkbox-wrap label {
    margin-left: 10px
}

.login-from.register .checkbox-wrap label a {
    color: #ef2f24
}

.login-from.register .checkbox-wrap label a:hover {
    text-decoration: underline
}

#login-modal .login-form .h3,
#login-modal .login-form h3 {
    text-align: center
}

.modal a.close-modal {
    position: absolute;
    height: 40px;
    right: 10px;
    top: 10px;
    background: #f0f5f7;
    border-radius: 8px;
    color: #f0f5f7;
    text-indent: 0;
    font-size: 0
}

.modal a.close-modal,
.modal a.close-modal:before {
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center
}

.modal a.close-modal:before {
    font-family: Flaticon;
    content: "";
    position: relative;
    font-size: 12px;
    color: #000;
    font-weight: 700
}

.login-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 50px;
    overflow: auto
}

.login-section .image-layer {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 42%;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover
}

.login-section .outer-box {
    position: relative;
    margin-left: 42%;
    width: 58%;
    display: flex;
    justify-content: center;
    align-items: center
}

.login-section .login-form {
    margin: 0 auto;
    max-width: 610px;
    width: 100%;
    padding: 0 30px
}

.login-form .h3,
.login-form h3 {
    font-weight: 500;
    font-size: 24px;
    line-height: 33px;
    color: #202124;
    margin-bottom: 32px
}

.login-form .field-outer {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    margin-bottom: 32px
}

.login-form .field-outer label {
    margin-bottom: 0;
    padding-left: 10px;
}

.login-form .field-outer .pwd {
    position: relative;
    display: block;
    text-decoration: none;
    font-size: 14px;
    line-height: 19px;
    color: #202124;
    white-space: nowrap
}

.login-form .form-group .theme-btn {
    display: block;
    transition: all 0.3s;
    width: 100%;
    margin-bottom: 10px
}

.login-form .bottom-box {
    position: relative;
    padding-top: 12px;
    text-align: center
}

.login-form .text {
    position: relative;
    font-size: 14px;
    line-height: 19px;
    color: dimgray;
    text-align: center;
    margin-top: 5px
}

.login-form .text a {
    color: dimgray;
    text-decoration: none;
    font-weight: 500
}

.login-form .bottom-box .divider {
    position: relative;
    display: block;
    font-size: 15px;
    line-height: 20px;
    color: dimgray;
    background: #fff;
    margin: 10px 0 25px
}

.login-form .bottom-box .divider span {
    position: relative;
    z-index: 9
}

.login-form .bottom-box .divider:before {
    position: absolute;
    left: 0;
    top: 10px;
    height: 1px;
    width: 100%;
    background: #ecedf2;
    border-radius: 8px;
    content: ""
}

.login-form .bottom-box .divider:after {
    position: absolute;
    left: 50%;
    top: 0;
    height: 20px;
    width: 60px;
    background: #fff;
    margin-left: -30px;
    content: ""
}

.login-form .bottom-box .btn-box,
.social-btn-two {
    position: relative
}

.register-dual ul li.react-tabs__tab--selected .btn-style-four {
    background: #1E3A8A;
    border: 1px solid #1E3A8A;
    list-style: none;
    color: #fff
}

.btn-style-four {
    position: relative;
    text-align: center;
    white-space: nowrap;
    color: #1E3A8A;
    background-color: #e2eaf8;
    border: 1px solid #e2eaf8;
    font-size: 16px;
    line-height: 20px;
    border-radius: 8px;
    font-weight: 400;
    padding: 15px 35px
}

.btn-style-four:hover {
    color: #fff;
    background-color: #1E3A8A
}

.btn-style-admin {
    position: relative;
    text-align: center;
    text-decoration: none;
    border: none;
    white-space: nowrap;
    color: #e2eaf8;
    background-color: #1E3A8A;
    transition: all 0.3s;
    font-size: 14px;
    line-height: 10px;
    border-radius: 8px;
    padding: 15px 20px;
}

.btn-style-admin:hover {
    color: #1E3A8A;
    background-color: #e2eaf8
}

.btn-style-yukselt {
    position: relative;
    text-align: center;
    text-decoration: none;
    border: none;
    white-space: nowrap;
    color: #1E3A8A;
    background-color: #e2eaf8;
    transition: all 0.3s;
    font-size: 14px;
    line-height: 10px;
    border-radius: 8px;
    padding: 15px 20px;
}

.btn-style-yukselt:hover {
    color: #e2eaf8;
    background-color: #1E3A8A
}

.btn-more {
    position: relative;
    text-align: center;
    white-space: nowrap;
    color: #fff;
    background-color: #EA580C;
    border: 1px solid #EA580C;
    font-size: 16px;
    line-height: 20px;
    border-radius: 8px;
    font-weight: 400;
    padding: 15px 35px;
    transition: all 0.3s;
}

.btn-more:hover {
    color: #fff;
    border: 1px solid #1E3A8A;
    background-color: #1E3A8A
}

.default-form .form-group > label {
    font-size: 15px;
    line-height: 20px;
    color: #202124;
    font-weight: 500;
    margin-bottom: 10px
}

.default-form .form-group input[type=email],
.default-form .form-group input[type=number],
.default-form .form-group input[type=password],
.default-form .form-group input[type=text],
.default-form .form-group input[type=tel],
.default-form .form-group input[type=url] {
    position: relative;
    width: 100%;
    display: block;
    height: 60px;
    line-height: 30px;
    padding: 15px 20px;
    font-size: 15px;
    color: dimgray;
    background-color: #f0f5f7;
    border: 1px solid #f0f5f7;
    box-sizing: border-box;
    border-radius: 8px;
    transition: all .3s ease
}

.default-form .form-group input[type=email]:focus,
.default-form .form-group input[type=number]:focus,
.default-form .form-group input[type=password]:focus,
.default-form .form-group input[type=text]:focus,
.default-form .form-group input[type=url]:focus {
    border-color: #1E3A8A;
    background-color: #fff
}

.social-btn-two {
    display: block;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    color: inherit;
    font-size: 14px;
    border-radius: 8px;
    background-color: inherit;
    border: 1px solid #fff;
    font-weight: 500;
    padding: 10px 30px;
    color: #1E3A8A;
    line-height: 25px;
    margin-bottom: 20px
}

.social-btn-two i {
    margin-right: 2px;
    font-size: 15px
}

.social-btn-two.facebook-btn {
    border-color: #3b5998;
    text-decoration: none;
    color: #3b5998
}

.social-btn-two.facebook-btn:hover {
    background-color: #3b5998;
    color: #fff
}

.social-btn-two.google-btn {
    border-color: #dc4d28;
    text-decoration: none;
    color: #dc4d28
}

.social-btn-two.google-btn:hover {
    background-color: #dc4d28;
    color: #fff
}

.closed-modal {
    position: absolute;
    height: 40px;
    right: 10px;
    top: 10px;
    background: #f0f5f7;
    border: none;
    border-radius: 8px;
    color: #f0f5f7;
    text-indent: 0;
    font-size: 0;
    z-index: 5
}

.closed-modal,
.closed-modal:before {
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s
}

.closed-modal:before {
    font-family: Flaticon;
    content: "";
    position: relative;
    font-size: 12px;
    color: #000;
    font-weight: 700
}

.closed-modal:hover {
    background: #1E3A8A
}

.closed-modal:hover:before {
    color: #fff
}

.job-block-three {
    position: relative;
    margin-bottom: 30px
}

.job-block-three .inner-box {
    position: relative;
    padding: 32px 20px 22px 30px;
    background: #fff;
    border: 1px solid #ecedf2;
    box-sizing: border-box;
    border-radius: 10px;
    transition: all .3s ease
}

.job-block-three .inner-box:hover {
    box-shadow: 0 7px 18px rgba(64, 79, 104, .05)
}

.job-block-three .content {
    position: relative;
    padding-left: 68px;
    min-height: 51px
}

.job-block-three .company-logo {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    transition: all .3s ease
}

.job-block-three .company-logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: fill
}

.job-block-three .h4,
.job-block-three h4 {
    font-size: 18px;
    color: #202124;
    font-weight: 500;
    list-style: none;
    line-height: 26px;
    top: -3px;
    margin-bottom: 3px
}

.job-block-three .h4 a,
.job-block-three h4 a {
    color: #202124;
    list-style: none;
    text-decoration: none;
    transition: all .3s ease
}

.job-block-three .h4 a:hover,
.job-block-three h4 a:hover {
    color: #1E3A8A
}

.job-block-three .job-info {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px
}

.job-block-three .job-info li {
    position: relative;
    font-size: 14px;
    line-height: 22px;
    color: dimgray;
    font-weight: 400;
    list-style: none;
    padding-left: 25px;
    margin-bottom: 5px;
    margin-right: 20px
}

.job-block-three .job-info li .icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    line-height: 22px;
    color: dimgray
}

.job-block-three .job-info li a {
    color: dimgray
}

.job-section .btn-box {
    position: relative;
    text-align: center;
    margin-top: 15px
}

.job-block-three .bookmark-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    height: 25px;
    width: 25px;
    line-height: 30px;
    text-align: center;
    font-size: 12px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: #fff;
    transition: all .3s ease
}

.job-block-three .bookmark-btn:hover {
    background: #ecedf2
}

.job-block-three .job-other-info {
    position: relative;
    display: flex;
    flex-wrap: wrap
}

.job-block .job-other-info {
    position: relative;
    display: flex;
    flex-wrap: wrap
}

.job-other-info li {
    position: relative;
    font-size: 13px;
    line-height: 15px;
    margin-right: 15px;
    padding: 5px 20px;
    border-radius: 50px;
    list-style: none;
    margin-bottom: 10px
}

.job-other-info li.time {
    background: rgba(25, 103, 210, .15);
    color: #1E3A8A
}

.job-other-info li.green,
.job-other-info li.privacy {
    background: rgba(52, 168, 83, .15);
    color: #34a853
}

.job-other-info li.required {
    background: rgba(249, 171, 0, .15);
    color: #f9ab00
}

.box-we-hiring {
    max-width: 100%;
    border: 1px solid #1E3A8A;
    padding: 40px 250px;
    position: relative;
    display: flex;
    margin: auto;
    border-radius: 10px;
    overflow: hidden;
}

.box-we-hiring::before {
    content: "";
    position: absolute;
    bottom: 20px;
    left: 50px;
    height: 120px;
    width: 133px;
    background: url(../img/cta.svg) no-repeat 0px 0px;
    background-size: cover;
}

.box-we-hiring::after {
    content: "";
    position: absolute;
    bottom: 0px;
    right: 7px;
    height: 120px;
    width: 250px;
    background: url(../img/cta-2.svg) no-repeat 0px 0px;
    background-size: cover;
}

.text-we-are {
    font-size: 20px;
    line-height: 20px;
    color: #EA580C;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
}

.text-hiring {
    font-size: 40px;
    line-height: 51px;
    color: #1E3A8A;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.box-we-hiring .text-2 {
    font-size: 16px;
    line-height: 23px;
    color: #021f4a;
    font-weight: 500;
    padding: 10px 0 0 0;
}

.box-we-hiring .text-3 {
    padding: 40px 0px 0px 70px;
}

/* ===== Custom Modal Styles for Hedef Kitle ===== */

/* Modal Content Styling */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.modal-header {
    padding: 2rem 2rem 1rem 2rem;
}

.modal-title {
    color: #2c3e50;
    font-size: 1.5rem;
}

.btn-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6c757d;
    padding: 0;
}

.btn-close:hover {
    color: #000;
}

.modal-body {
    padding: 1rem 2rem 2rem 2rem;
}

/* Accordion Styling */
.accordion-button {
    border: 1px solid #e9ecef;
    border-radius: 8px !important;
    background: #f8f9fa;
    color: #495057;
    font-weight: 500;
    padding: 1rem 1.5rem;
    margin-bottom: 0.5rem;
}

.accordion-button:not(.collapsed) {
    background: #f8f9fa;
    border-radius: 8px 8px 0 0 !important;
    border-color: #1E3A8A;
    margin-bottom: 0;
    color: #1E3A8A;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #1E3A8A;
}

.accordion-collapse {
    border: none;
}

.accordion-body {
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 0 0 8px 8px;
    border: 1px solid #1E3A8A;
    border-top: none;
}

/* Alert Styling */
.alert {
    border-radius: 10px;
    padding: 1rem 1.5rem;
    font-weight: 500;
}

/* Button Styling */
.btn {
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(45deg, #2196f3, #1976d2);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
}

.btn-outline-primary {
    border: 2px solid #2196f3;
    color: #2196f3;
}

.btn-outline-primary:hover {
    background: #2196f3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
}

/* List Styling */
.list-unstyled li {
    padding: 0.5rem 0;
    padding-left: 20px;
    border-bottom: 1px solid #f8f9fa;
}

.list-unstyled li:last-child {
    border-bottom: none;
}

/* Animation for accordion chevron */
.accordion-button i {
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed) i {
    transform: rotate(90deg);
}

/* ===== End Custom Modal Styles ===== */

/* Profession Detail Page Styles */
.search-box {
    position: relative;
}

.search-box .form-control {
    padding-left: 3rem;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.search-box .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(30, 58, 138, 0.25);
}

.search-icon {
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    z-index: 10;
}

.profession-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.profession-item {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.profession-item:hover {
    border-color: var(--primary);
}

.profession-title {
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.4;
}

.profession-icon i {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profession-arrow {
    opacity: 0.6;
    transition: all 0.3s ease;
}

.profession-card:hover .profession-arrow {
    opacity: 1;
    transform: translateX(3px);
}

#professionsList {
    display: flex;
    flex-wrap: wrap;
}

/* Modal Styles */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.modal-header .btn-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    opacity: 0.7;
}

.modal-header .btn-close:hover {
    opacity: 1;
}

.modal-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.modal-icon i {
    color: #1E3A8A !important;
}

.form-label {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.6rem 1rem;
    transition: all 0.3s ease;
}


.captcha-container {
    border: 2px dashed #dee2e6;
}

.captcha-code {
    font-family: 'Courier New', monospace;
    background: white;
    padding: 0.4rem 0.8rem;
    border-radius: 5px;
    border: 1px solid #dee2e6;
}

.btn-outline-secondary:hover {
    background-color: #6c757d;
    border-color: #6c757d;
}

.alert-success {
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #56ab2f 0%, #a8e6cf 100%);
    color: white;
}

/* Profession request section */
.alert-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #dee2e6;
    border-radius: 15px;
}

.list-unstyled li i {
    margin-right: 0.5rem;
}

.hero-button-1 {
    width: 317px;
    height: 449px;
    border-radius: 16px;
    color: white;
    border: none;
    background: rgba(30, 58, 138, .8);
    font-size: 35px;
    line-height: 1.2;
    font-weight: 600;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hero-button-2 {
    width: 317px;
    height: 302px;
    border-radius: 16px;
    color: white;
    background: rgba(234, 88, 12, .5);
    font-size: 35px;
    border: none;
    font-weight: 600;
    padding: 20px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hero-button-3 {
    width: 317px;
    height: 302px;
    border-radius: 16px;
    color: white;
    border: none;
    background: rgb(24, 66, 193, 0.7);
    font-size: 35px;
    line-height: 1.2;
    font-weight: 600;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Hover efekti */
.hero-button-1:hover,
.hero-button-2:hover,
.hero-button-3:hover {
    transform: scale(1.02);
}

.custom-card-style-1 .custom-read-more svg,
.custom-card-style-2 .custom-read-more svg {
    transition: ease transform 300ms;
}

.custom-card-style-1:hover .custom-read-more svg,
.custom-card-style-2:hover .custom-read-more svg {
    transform: translate3d(7px, 0, 0);
}

.custom-card-style-1 {
    transition: ease transform 300ms;
}

.custom-card-style-1 .card-title {
    transition: ease color 300ms;
}

.custom-card-style-1:hover {
    transform: scale(1.03);
}

.custom-card-style-1:hover .card-title {
    color: #1E3A8A;
}

.custom-box-shadow-1 {
    box-shadow: 0px 0px 31px -5px rgba(0, 0, 0, 0.14) !important;
}

.custom-read-more {
    color: var(--primary);
}

.custom-read-more-2 {
    color: white;
}

.belge-icon {
    height: 200px;
    width: 200px;
}

.hero-step {
    top: 10%;
    left: -2%;
}

.hero-title {
    bottom: 37%;
    left: 20%;
}

.hero-title-2 {
    bottom: 34%;
    left: 9%;
}

.hero-title-3 {
    bottom: 34%;
    left: 14%;
}

.hero-subtitle {
    bottom: -4%;
    left: -10%;
}

.hero-subtitle-2 {
    bottom: -4%;
    left: -10%;
}

.hero-subtitle-3 {
    bottom: -4%;
    left: -10%;
}

.danisman-card {
    border: 1px solid #1E3A8A;
    border-radius: 10px;
    margin: 20px 0;
}

.paket-table {
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.paket-table tr td {
    font-size: 14px;
}

.paket-table .price {
    font-size: 22px;
}

.paket-table .aylik,
.paket-table .ozellik {
    font-size: 12px;
}

.detay-accordion::after {
    color: #fff;
}

/* Divider with Text */
.divider.veya-divider,
.divider.kayit-divider,
.divider.register-divider {
    position: relative;
    margin: 30px 0;
    text-align: center;
}

.divider.veya-divider::before,
.divider.kayit-divider::before,
.divider.register-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e9ecef;
    transform: translateY(-50%);
    z-index: 1;
}

.divider.veya-divider span {
    background: #fff;
    padding: 0 20px;
    color: #666;
    position: absolute;
    font-size: 14px;
    top: -13px;
    left: 45%;
    z-index: 2;
    font-weight: 500;
}

.divider.kayit-divider span {
    background: #fff;
    padding: 0 20px;
    color: #666;
    position: absolute;
    font-size: 14px;
    top: -13px;
    left: 38.5%;
    z-index: 2;
    font-weight: 500;
}

.divider.register-divider span {
    background: #fff;
    padding: 0 20px;
    color: #666;
    position: absolute;
    font-size: 14px;
    top: -13px;
    left: 39.5%;
    z-index: 2;
    font-weight: 500;
}

/* Content Area Styles */
.content-area {
    position: relative;
    margin: 2rem 0;
}

.content-wrapper {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 2.5rem;
    border: 1px solid rgba(229, 231, 235, 0.8);
    transition: all 0.3s ease;
}


/* Typography Styles for Content */
.content-wrapper h1,
.content-wrapper h2,
.content-wrapper h3,
.content-wrapper h4,
.content-wrapper h5,
.content-wrapper h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.content-wrapper h1 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.content-wrapper h2 {
    font-size: 1.875rem;
    margin-bottom: 1.25rem;
}

.content-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.content-wrapper h4 {
    font-size: 1.25rem;
    margin-bottom: 0.875rem;
}

.content-wrapper p {
    color: dimgray;
    line-height: 1.75;
    margin-bottom: 1.25rem;
    font-size: 15px;
}

.content-wrapper ul,
.content-wrapper ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.content-wrapper li {
    color: dimgray;
    line-height: 1.75;
    margin-bottom: 0.5rem;
}

.content-wrapper a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.content-wrapper a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.content-wrapper blockquote {
    background: #f9fafb;
    border-left: 4px solid var(--primary-color);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

.content-wrapper blockquote p {
    margin-bottom: 0;
    font-style: italic;
    color: #6b7280;
}

.content-wrapper table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.content-wrapper table th {
    background: var(--primary-color);
    color: #ffffff;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.content-wrapper table td {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    color: #374151;
}

.content-wrapper table tr:last-child td {
    border-bottom: none;
}

.content-wrapper table tr:nth-child(even) {
    background: #f9fafb;
}

.content-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.content-wrapper hr {
    border: none;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    margin: 2rem 0;
    border-radius: 2px;
}

.content-wrapper strong,
.content-wrapper b {
    color: var(--primary-color);
    font-weight: 600;
}

.content-wrapper em,
.content-wrapper i {
    color: #6b7280;
}

.content-wrapper code {
    background: #f3f4f6;
    color: var(--accent-color);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
}

.content-wrapper pre {
    background: transparent;
    color: #f9fafb;
    padding: 0;
    border: none;
    overflow-x: auto;
    margin: 5px !important;
}

.content-wrapper pre code {
    background: none;
    color: inherit;
    padding: 0;
}

.haberler-img {
    min-height: 260px;
}

.step-card:hover {
    background: #e2eaf8;
    transition: all 0.3s ease;
}

.step-card:hover i,
.step-card:hover h6,
.step-card:hover p {
    color: #1E3A8A !important;
}


.text-truncate-description {
    display: -webkit-box;
    -webkit-line-clamp: 3; /* 3 satır göster */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
    max-height: 4.5em; /* line-height * line-clamp */
}

/* Responsive Design for Content */
@media (max-width: 768px) {
    .content-wrapper {
        padding: 1.5rem;
        margin: 1rem 0;
    }

    .haberler-img {
        min-height: 190px;
    }

    .content-wrapper h1 {
        font-size: 1.875rem;
    }

    .content-wrapper h2 {
        font-size: 1.5rem;
    }

    .content-wrapper h3 {
        font-size: 1.25rem;
    }
}

/* MS Office Content Cleanup Styles */
.content-wrapper .MsoNormal {
    margin: 0 0 1rem 0 !important;
    padding: 0 !important;
    line-height: 1.6 !important;
    background: transparent !important;
    color: #374151 !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-size: 16px !important;
    text-align: left !important;
}

.content-wrapper .MsoNormal strong,
.content-wrapper .MsoNormal b {
    color: var(--primary-color) !important;
    font-weight: 600 !important;
}

.content-wrapper .MsoNormal span {
    font-family: inherit !important;
    font-size: 15px !important;
    color: inherit !important;
}

/* Clean MS Office inline styles */
.content-wrapper [style*="mso-"] {
    margin: 0 !important;
    padding: 0 !important;
}

.content-wrapper [style*="font-size: 12.0pt"],
.content-wrapper [style*="font-size: 12pt"] {
    font-size: 16px !important;
}

.content-wrapper [style*="font-size: 16px"] {
    font-size: 16px !important;
}

/* Document Structure Styling */
.content-wrapper .document-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.content-wrapper .document-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.content-wrapper .document-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

/* Table of Contents Styling */
.content-wrapper ol[start] {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.content-wrapper ol[start] li {
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    padding: 0.25rem 0;
}

/* Section Headers with Borders */
.content-wrapper div[style*="border-bottom"] {
    border: none !important;
    border-bottom: 2px solid #e5e7eb !important;
    margin: 2rem 0 1rem 0 !important;
    padding: 0 0 0.75rem 0 !important;
}

.content-wrapper div[style*="border-bottom"] strong {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 700;
}

/* Subsection Styling */
.content-wrapper div[style*="margin-left: 36.0pt"] {
    margin-left: 2rem !important;
    padding-left: 1rem;

}

.content-wrapper div[style*="margin-left: 54.0pt"] {
    margin-left: 3rem !important;
    padding-left: 1.5rem;
}

/* Clean list styling */
.content-wrapper ul,
.content-wrapper ol {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.content-wrapper ul li,
.content-wrapper ol li {
    position: relative;
    padding: 0.5rem 0 0.5rem 2rem;
    margin-bottom: 0.75rem;
    background: #f9fafb;
    border-radius: 6px;
}

.content-wrapper ol li {
    counter-increment: item;
}


.content-wrapper ol {
    counter-reset: item;
}

/* Clean paragraph spacing */
.content-wrapper p {
    margin: 0 0 1rem 0;
    line-height: 1.7;
    text-align: justify;
}

.content-wrapper p:last-child {
    margin-bottom: 0;
}

/* Remove MS Office specific styling */
.content-wrapper [style*="mso-outline-level"] {
    outline: none !important;
}

.content-wrapper [style*="text-indent"] {
    text-indent: 0 !important;
}

/* Contact Information Styling */
.content-wrapper .contact-info {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
}

.content-wrapper .contact-info strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

/* Final clean-up overrides */
.content-wrapper * {
    max-width: 100%;
}

.content-wrapper span[style*="font-size: 12.0pt"],
.content-wrapper span[style*="font-size: 12pt"] {
    font-size: 1rem !important;
}

.content-wrapper strong span,
.content-wrapper b span {
    color: inherit !important;
    font-weight: inherit !important;
}

/* Improve readability */
.content-wrapper {
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
}

.content-wrapper h1, .content-wrapper h2, .content-wrapper h3,
.content-wrapper h4, .content-wrapper h5, .content-wrapper h6 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-wrapper h1:first-child,
.content-wrapper h2:first-child,
.content-wrapper h3:first-child {
    margin-top: 0;
}

.ui.pagination.menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    list-style: none;
    padding: 10px;
    border-radius: 6px;
}

.ui.pagination.menu .item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    color: #495057;
    text-decoration: none;
    transition: all 0.2s ease;
    background-color: #fff;
    cursor: pointer;
}

.ui.pagination.menu .item:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.ui.pagination.menu .item.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.ui.pagination.menu .icon.item i {
    margin: 0;
    font-size: 14px;
}
