@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap");
:root {
    --base-color: #65C63F;
    --dark-gray: #000969;
    --medium-gray: #808291;
    --primary-font: 'Plus Jakarta Sans', sans-serif;
    --alt-font: 'Plus Jakarta Sans', sans-serif;
}

body {
    font-size: 17px;
    line-height: 30px;
}

a {
    color: #808291;
}

.bg-gradient-black-dark-orange {
    background-image: linear-gradient(to right top, #020c81, #020c81, #020c81, #020c81, #000648)
}

.bg-gradient-dark-orange-transparent {
    background-image: linear-gradient(to right top, rgba(212, 110, 66, .8), rgba(197, 105, 66, .8), rgba(184, 101, 66, .8), rgba(158, 93, 67, .8), rgba(111, 80, 70, .8));
}

/* header */
.header-icon .icon>a {
    font-size: 20px;
}

.navbar .navbar-nav .nav-link {
    font-weight: 500;
    font-size: 17px;
    color: var(--white);
}

.navbar .navbar-nav .dropdown .dropdown-menu a {
    font-size: 16px;
    line-height: 28px;
}

.push-menu {
    width: 450px;
}

header .navbar-brand img {
    max-height: 69px;
}

.navbar .navbar-nav .simple-dropdown .dropdown-menu {
    border-radius: 5px;
}

.navbar .navbar-nav .simple-dropdown .dropdown-menu li a {
    padding: 9px 0 11px;
    border-bottom: 1px solid var(--light-medium-gray);
}

.navbar .navbar-nav .simple-dropdown .dropdown-menu li:first-child a {
    padding-top: 0;
}

.navbar .navbar-nav .simple-dropdown .dropdown-menu li:last-child a {
    border: 0;
    padding-bottom: 0;
}

.push-menu .close-menu {
    right: 30px;
    top: 30px;
}

h1 {
    line-height: 4rem;
}

/* subcribe style 02 */
.newsletter-style-02 .btn {
    padding: 7px 18px 9px 18px;
}

/* footer */
footer .input-small,
footer .textarea-small {
    font-size: 15px;
    padding-left: 20px;
}

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

.page-title-extra-small h1 {
    font-size: 22px;
    line-height: 32px;
}

.newsletter-style-02 input {
    padding-right: 65px;
}

@media (max-width: 1199px) {
    .newsletter-style-02 input {
        padding-left: 15px;
    }
}

@media (max-width: 991px) {
    .navbar .navbar-nav .simple-dropdown .dropdown-menu {
        margin-top: 15px;
    }
}

@media (max-width: 767px) {
    .page-title-extra-small h1 {
        font-size: 20px;
        line-height: 28px;
    }

    .process-step-style-02 .progress-step-separator {
        display: block;
    }
}

@media (max-width: 575px) {
    .process-step-style-02 .progress-step-separator {
        display: none;
    }
}

.cover-background {
    position: relative;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
}

/* Koyu overlay */
.opacity-light {
    position: absolute;
    inset: 0;
    z-index: 2;
}

/* Yazıların olduğu alan */
.cover-background .container {
    position: relative;
    z-index: 3;
}

.language-switcher {
    position: relative;
    display: inline-block;
}

/* Buton */
.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #000;
    padding: 5px;
}

/* Menü (gizli) */
.lang-menu {
    position: absolute;
    top: 130%;
    right: -10px;
    background: #000969;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    list-style: none;
    padding: 0px 0;
    margin: 0;
    min-width: 50px;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 1000;
    overflow: hidden;
}

/* Menü açık */
.language-switcher:focus-within .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Menü linkleri */
.lang-menu li a {
    display: block;
    padding: 8px 14px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
}

.lang-menu li a:hover {
    background: #f5f5f5;
    color: #000969;
}

.home-slider-text-white h1,
.home-slider-text-white p,
.home-slider-text-white span {
    color: #fff !important;
}

.home-slider-text-blue h1,
.home-slider-text-blue p,
.home-slider-text-blue span {
    color: #000969 !important;
}

.home-slider-text-blue .text-base-color,
.home-slider-text-white .text-base-color{
    color: #65C63F !important;
}

.home-slider-text-white h1 span {
    font-weight: 600 !important;
}

.swiper-light-pagination .swiper-slide span i {
    color: #65C63F !important;
}

.text-capitalize {
    text-transform: capitalize !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.text-lowercase {
    text-transform: lowercase !important;
}

.iletisim-map iframe {
    width: 100%;
    height: 450px;
}

/* Mobil dokunuş iyileştirme */
@media (max-width: 768px) {
    .lang-menu {
        right: auto;
        left: 0;
    }
}