html {
    scroll-behavior: smooth;
}


:root {
    --fluid-bp: calc((100vw - 20rem) / (75rem - 20rem));
    --primary-light: #73f9a4;
    --primary: #173184;
    --primary-dark: #173184;
    --white: #ffffff;
    --greyLight-1: #e4ebf5;
    --greyLight-2: #c8d0e7;
    --greyLight-3: #0c0f18;
    --greyDark: #cf9bac;
    --primary-black: #010915;
    --text-grey: rgb(231, 231, 231, 0.5);
    --font-main: "Playfair Display", serif;
    --font-seconder: "Source Sans 3", sans-serif;
    --font-color: #010915;
    --font-bg: #F5F5F7;
}

body {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing-: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    direction: ltr;
    background-color: var(--font-bg) !important;
    padding-top: 0px;
    margin-top: 0px;
    letter-spacing: 0px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
    color: var(--font-color);
    font-family: var(--font-main) !important;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "slnt"0;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0 !important;
    padding: 0 !important;
    font-family: var(--font-seconder);
    font-weight: 300;

}

h1 {
    font-size: clamp(2.5rem, calc(2.5rem + (3.75rem - 2.5rem) * var(--fluid-bp)), 3.75rem);
    line-height: 1.1;
}


h2 {
    font-size: clamp(1.875rem, calc(1.875rem + (2.5rem - 1.875rem) * var(--fluid-bp)), 2.5rem);
    line-height: 1.15;
}


h3 {
    font-size: clamp(1.25rem, calc(1.25rem + (1.875rem - 1.25rem) * var(--fluid-bp)), 1.875rem);
    line-height: 1.2;
}


h4 {
    font-size: clamp(1.125rem, calc(1.125rem + (1.25rem - 1.125rem) * var(--fluid-bp)), 1.25rem);
    line-height: 1.25;
}


h5 {
    font-size: clamp(1rem, calc(1rem + (1.125rem - 1rem) * var(--fluid-bp)), 1.125rem);
    line-height: 1.3;
}


h6 {
    font-size: clamp(0.875rem, calc(0.875rem + (1rem - 0.875rem) * var(--fluid-bp)), 1rem);
    line-height: 1.5;

}

a {
    text-decoration: none !important;
}

ul li {
    list-style: none;
}

p {
    margin-bottom: 0;
    font-family: var(--font-seconder);
    font-size: clamp(0.875rem, 0.8rem + 0.5vw, 1.125rem);
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 2;
}

.tx-bg {
    background-color: var(--text-grey);
}

.rel-button .btn-rel {
    display: inline-block;
    margin-top: 1em;
    font-family: var(--font-main);
    color: var(--greyLight-1);
    background-color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 3.125rem;
    padding: clamp(0.5rem, 0.4rem + 0.5vw, 0.75rem) clamp(1rem, 0.8rem + 0.8vw, 1.25rem);
    font-size: clamp(0.875rem, 0.8rem + 0.5vw, 1rem);
    letter-spacing: 0.21rem;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 250ms, color 250ms, border-color 250ms;
}

.rel-button .btn-rel:hover {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.shd-mn {
    mix-blend-mode: multiply !important;
    background-color: transparent;
    box-shadow: 0.2rem 0.3rem 0.6rem rgb(200, 208, 231),
        -0.2rem -0.2rem 0.5rem rgb(255, 255, 255);
}

.brd-btm {
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}

@media(max-width:768px) {
    .brd-btm {
        padding-bottom: 15px;
    }
}

/* container-xxl */
@media (min-width: 1400px) {
    .container-xxl {
        max-width: 1400px !important;
    }
}

.pd-0 {
    padding: 0 !important;
    overflow: hidden;
}

@keyframes move-animation {

    0%,
    100% {
        transform: translate(0, 0);

    }

    25% {
        transform: translate(0, 15px);

    }

    50% {
        transform: translate(0, -15px);

    }

    75% {
        transform: translate(15px, -15px);

    }
}

@keyframes jump-animation {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(0, 10px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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


@keyframes move {
    25% {
        opacity: 1;
    }

    33% {
        opacity: 1;
        transform: translateY(30px);
    }

    67% {
        opacity: 1;
        transform: translateY(40px);
    }

    100% {
        opacity: 0;
        transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
    }
}


@keyframes loadingD {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes drop-animation {
    0% {
        transform: translateY(-200px);
    }

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

.loading-icon {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

.ring-1 {
    width: 10px;
    height: 10px;
    margin: 0 auto;
    padding: 10px;
    border: 7px dashed var(--primary);
    ;
    border-radius: 100%;
    animation: loadingD 1.5s 0.3s cubic-bezier(0.17, 0.37, 0.43, 0.67) infinite;
}



.fadeIn {
    opacity: 0;
    animation-name: fadeIn;
    animation-fill-mode: forwards;
    animation-duration: 0.5s;
}

.fadeIn:first-child {
    animation-delay: 0.3s;
}

.fadeIn:nth-child(2) {
    animation-delay: 0.6s;
}

.fadeIn:nth-child(3) {
    animation-delay: 0.9s;
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-50%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.fadeInOnScroll {
    opacity: 0;
    transform: translateX(-50%);
    animation-name: slideInFromLeft;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    animation-delay: 0.8s;
}

.navbar {
    background: transparent;
    /* box-shadow: 5px 5px 20px #bebebe,
        -5px -5px 20px #ffffff; */
    z-index: 1;
    position: relative;
    width: 100%;
    border-bottom: 1px solid rgb(1, 9, 21, 0.1);
}



@media (max-width: 1080px) {

    .navbar {
        border-bottom: 1px solid transparent;
    }

    .navbar .container {
        padding: 0 !important;
    }
}

@media (max-width: 1800px) {
    .navbar-collapse {
        background-color: transparent;
    }
}

.navbar-expand-xl {
    justify-content: flex-start;
    padding: 0 !important;
}

.navbar-logo {
    width: 180px;
    /* box-shadow: 3px 3px 20px rgb(82, 255, 228, .2),
        -3px -3px 20px rgb(82, 255, 228, .2); */
    border: none;
    position: relative;
}

@media (max-width: 1080px) {
    .navbar-logo {
        margin-left: 15px;
        width: 70px;
    }
}

.nav-item .nav-link,
.dropdown-menu .dropdown-item {
    font-weight: 400;
    margin-left: 5px;
    transition: 350ms;
    font-size: 12px;
    word-break: normal;
    letter-spacing: 2px;
    color: #010915;

}

.nav-item .nav-link:hover,
.dropdown-menu .dropdown-item:hover {
    color: var(--primary);
    background-color: transparent;
}

.dropdown-menu {
    background: #fff8f6 !important;
    border: 1px solid rgb(172, 147, 106, .3) !important;
    border-radius: 0 !important;
}



@media (max-width: 1080px) {

    .nav-item .nav-link,
    .dropdown-menu .dropdown-item {
        font-size: 15px;
        line-height: 40px;
        padding-left: 15px;
    }

    .nav-item {
        border-bottom: 1px solid rgb(172, 147, 106, .2) !important;
    }


}

@media (min-width: 1080px) {
    .nav-item .nav-link {
        margin-left: 20px;
    }
}

/* .nav-item .nav-link:hover {} */

.navbar-toggler {
    border: none !important;
}

.lineStick {
    fill: none;
    stroke: var(--primary-black);
    stroke-width: 6;
    box-shadow: 3px 3px 20px rgb(0, 0, 0, 0.7), -3px -3px 20px rgb(0, 0, 0, 0.7);
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.lineStick1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}

.lineStick2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
}

.lineStick3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}

.opened .lineStick1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}

.opened .lineStick2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
}

.opened .lineStick3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}

.material-symbols-outlined {
    color: #010915;
}

.collapse {
    padding-bottom: 5px;
}

@media (min-width: 1084px) {
    .collapse {
        display: flex;
        justify-content: end;
    }
}

@media (max-width: 768px) {
    .nav-button-area {
        display: flex;
        flex-direction: column;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 15px;
    }
}

@media (min-width: 1020px) {
    .nav-button-area {
        position: relative;
    }
}

.nav-form-button {
    margin-left: 100px;
}

@media (max-width: 768px) {
    .nav-form-button {
        margin-left: 0px;
    }
}

.btn.nav-form-button {
    /* background-color: rgba(223, 223, 223, 1);*/
    background-color: var(--primary);
    ;
    border: 1px solid var(--primary);
    ;
    color: #fff;
    padding: 4px 10px;
    border-radius: 0px;
    transition: 350ms;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
}

.btn.nav-form-button:hover {
    border: 1px solid #010915;
    background-color: transparent;
    color: #010915;
}

@media (max-width: 1020px) {
    .nav-form-button {
        margin-top: 15px;
        height: 40px;
        width: 100%;
    }
}

/* NAVBAR ENDS HERE */

/* SLIDER STARTS HERE */

.hero-slider .carousel-item img {
    height: 80vh;
    object-fit: cover;
}


.hero-slider .slide-figure {
    position: relative;
    margin: 0;
}

.hero-slider .slide-figure::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, .85), rgba(0, 0, 0, 0));
    pointer-events: none;
    z-index: 1;
}

.hero-slider .carousel-caption {
    position: absolute;
    z-index: 2;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: left;
    width: min(90%, 1100px);
}

.hero-slider .slide-kicker {
    font-family: "Source Sans 3", sans-serif;
    font-weight: 600;
    letter-spacing: .02em;
    color: rgba(255, 255, 255, .9);
    margin: 0 0 .25rem 0;
    font-size: clamp(0.875rem, 0.7rem + 0.6vw, 1.125rem);
}

.hero-slider .slide-title {
    font-family: "Source Sans 3", sans-serif;
    font-weight: 800;
    color: #fff;
    margin: 0 0 .5rem 0;
    line-height: 1.1;
    font-size: clamp(1.75rem, 1.2rem + 2.5vw, 3rem);

}

.hero-slider .slide-text {
    font-family: "Source Sans 3", sans-serif;
    color: rgba(255, 255, 255, .92);
    margin: 0;
    line-height: 1.6;
    font-size: clamp(0.9375rem, 0.8rem + 0.6vw, 1.125rem);
    max-width: 60ch;
}

@media (max-width: 760px) {
    .hero-slider .carousel-item img {
        height: 60vh;
    }

    .hero-slider .carousel-caption {
        bottom: 1.25rem;
    }
}

.visually-hidden {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
    border: 0;
    padding: 0;
    margin: -1px;
}



.carousel-inner {
    width: 100%;
}


.carousel-item {
    position: relative;
}


.carousel-caption {
    z-index: 1;
}

/*SLIDER ENDS HERE */

/* ARROW STARTS HERE */

.arrow-section {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

@media(max-width:767px) {
    .arrow-section {
        margin-top: 0;
    }
}

.arrow-link {
    cursor: default
}

.arrow-area {
    position: relative;
    display: flex;
    justify-content: center;
    text-align: center;
    width: 24px;
    height: 24px;
}

.arrow-text {
    display: none;
    margin-top: 50px;
    margin-left: 0px;
    font-size: 12px;
    color: var(--primary);
    ;
    white-space: nowrap;
    opacity: .25;
    animation: pulse 2s linear alternate infinite;
}

.arrow {
    position: absolute;
    width: 20px;
    height: 2px;
    opacity: 0;
    transform: scale3d(0.5, 0.5, 0.5);
    animation: move 3s ease-out infinite;
}

@media(max-width:767px) {
    .arrow {
        width: 15px;
        height: 2px;
    }
}

.arrow:first-child {
    animation: move 3s ease-out 1s infinite;
}

.arrow:nth-child(2) {
    animation: move 3s ease-out 2s infinite;
}

.arrow:before,
.arrow:after {
    content: ' ';
    position: absolute;
    top: 0;
    background: var(--primary);
    height: 100%;
    width: 51%;
}

.arrow:before {
    left: 0;
    transform: skew(0deg, 30deg);
}

.arrow:after {
    right: 0;
    width: 50%;
    transform: skew(0deg, -30deg);
}


/* ARROW ENDS HERE */



.main-caption {
    text-align: center;
    color: var(--primary-dark);
    margin-top: 2rem;
}

.main-caption h1 {
    font-weight: 800;
}

/* Genel Başlıklar */
.main-caption h2 {
    font-weight: 700;
    font-size: 2rem;
    color: #0a2640;
    margin-bottom: 10px;
}

.main-caption p {
    color: #5a6b7a;
    font-size: 1rem;
}

/* Hizmet & Sektör Kartları Ortak Stil */
.service-card {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    border-radius: 12px;
    background: #f8f9fb;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e6e9ed;
}

.service-card p {
    font-size: 1rem;
    font-weight: 600;
    color: #0a2640;
    margin: 0;
}

.service-card:hover {
    background: linear-gradient(135deg, #0a2640, #1d5fa7);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(13, 55, 100, 0.3);
}

.service-card:hover p {
    color: #fff;
}

/* Bölüm Arka Planları */
.service-section {
    padding: 80px 0;
    background: #ffffff;
}

.sector-section {
    padding: 80px 0;
    background: #f4f7fa;
}

.main-explain {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 1rem;
    font-weight: 400;
    padding: 2rem;
}

@media (max-width:750px) {
    .main-explain {
        text-align: justify;
    }
}

.main-explain strong {
    color: var(--primary-dark);
}


.main-brand-section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    margin-top: 2rem;

}

.main-brand img {
    width: 80%;
    height: auto;
    padding: 1rem;
    margin-bottom: 1.5rem;
    mix-blend-mode: multiply !important;
    background-color: transparent;
    box-shadow: 0.2rem 0.3rem 0.6rem rgb(200, 208, 231),
        -0.2rem -0.2rem 0.5rem rgb(255, 255, 255);
    transition: 250ms;
    transform: scale(1);
}

.main-brand img:hover {
    transform: scale(1.03);
}


.values-area {
    margin-top: 3rem;
}

.values-section {
    margin-top: 1.5rem;
}

.values-section span {
    color: var(--font-bg);
    background-color: var(--primary-dark);
    font-size: 2.5rem;
    border: 1px solid var(--primary-dark);
    padding: 1rem;
    border-radius: 50%;
}

.values-section h3 {
    color: var(--primary);
    font-weight: 300;
    font-size: larger;

}

.values-section p {
    margin-top: 1rem;
}

/* ===== Footer ===== */
.site-footer {
    background: #0b1c2b;
    /* koyu mavi-gri */
    color: #c8d4df;
    padding-top: 60px;
    font-size: 0.95rem;
}

.site-footer .footer-title {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: .2px;
}

.site-footer .footer-brand h4 {
    color: #ffffff;
    font-weight: 800;
    letter-spacing: .4px;
    margin-bottom: 10px;
}

.site-footer .footer-brand p {
    margin-bottom: 16px;
    color: #a8b6c3;
}

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

.footer-links li+li,
.footer-contact li+li {
    margin-top: 8px;
}

.footer-links a {
    color: #c8d4df;
    text-decoration: none;
    transition: .25s ease;
}

.footer-links a:hover {
    color: #78b0ff;
    text-decoration: underline;
}

.footer-contact i {
    color: #78b0ff;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    color: #cfe1ff;
    margin-right: 8px;
    transition: all 0.25s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: #1d5fa7;
    color: #fff;
    transform: translateY(-2px);
}

.footer-social .material-symbols-outlined {
    font-size: 20px;
    line-height: 1;
}

/* Newsletter */
.footer-newsletter {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.footer-newsletter input {
    flex: 1;
    min-height: 40px;
    border-radius: 8px;
    border: 1px solid #1d344a;
    background: #0f2436;
    color: #e9f2fa;
    padding: 8px 12px;
}

.footer-newsletter input::placeholder {
    color: #7e93a6;
}

.footer-newsletter button {
    border: none;
    border-radius: 8px;
    padding: 0 14px;
    min-height: 40px;
    background: linear-gradient(135deg, #1d5fa7, #2e7bd1);
    color: #fff;
    font-weight: 600;
    transition: .25s;
}

.footer-newsletter button:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

/* Legal bar */
.footer-legal {
    border-top: 1px solid #14324a;
    margin-top: 40px;
    padding: 14px 0;
    background: #0a1723;
}

.footer-legal p {
    color: #90a6b8;
    font-size: 0.9rem;
}

.footer-legal .legal-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-legal .legal-links a {
    color: #c8d4df;
    text-decoration: none;
}

.footer-legal .legal-links a:hover {
    color: #78b0ff;
    text-decoration: underline;
}

/* Küçük ekranlar */
@media (max-width: 576px) {
    .site-footer {
        padding-top: 40px;
    }

    .footer-newsletter {
        flex-direction: column;
    }

    .footer-newsletter button {
        width: 100%;
    }
}

/* Sektörler */
.sector-section {
    padding: 80px 0;
    background: #f4f7fa;
}

.sector-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px 22px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e9ef;
}

.sector-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(13, 55, 100, 0.15);
}

.sector-card .material-symbols-outlined {
    font-size: 48px;
    color: #1d5fa7;
    margin-bottom: 14px;
}

.sector-card h5 {
    font-weight: 700;
    font-size: 1.1rem;
    color: #0a2640;
    margin-bottom: 10px;
}

.sector-card p {
    color: #607283;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 576px) {
    .sector-card {
        padding: 20px 18px;
    }

    .sector-card .material-symbols-outlined {
        font-size: 40px;
    }
}


/* İletişim Formu */
.contact-section {
    padding: 100px 0;
    background: #f4f7fa;
}

.contact-form-box {
    background: #ffffff;
    padding: 40px 50px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e9ef;
}

.contact-form-box h2 {
    font-weight: 700;
    color: #0a2640;
    margin-bottom: 10px;
}

.contact-form-box p {
    color: #5e6e7b;
    font-size: 0.95rem;
}

.contact-form-box .form-label {
    font-weight: 600;
    color: #0a2640;
    margin-bottom: 6px;
}

.contact-form-box .form-control {
    border-radius: 10px;
    border: 1px solid #d3dce5;
    padding: 10px 14px;
    transition: all 0.3s ease;
}

.contact-form-box .form-control:focus {
    border-color: #1d5fa7;
    box-shadow: 0 0 0 3px rgba(29, 95, 167, 0.1);
}

.contact-form-box .form-check-label a {
    color: #1d5fa7;
    text-decoration: none;
    font-weight: 500;
}

.contact-form-box .form-check-label a:hover {
    text-decoration: underline;
}

.btn-contact {
    background: linear-gradient(135deg, #1d5fa7, #2e7bd1);
    border: none;
    padding: 10px 30px;
    border-radius: 10px;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

/* Responsive */
@media (max-width: 576px) {
    .contact-form-box {
        padding: 30px 25px;
    }
}

/* Sayfa Başlığı Alanı */
.page-hero {
    background: #1d5fa7;
    /* Mavi arka plan */
    color: #ffffff;
    padding: 80px 0 60px;
    text-align: left;
    border-bottom: 4px solid #144777;
}

.page-hero h1 {
    font-weight: 800;
    font-size: 2.8rem;
    margin: 0;
    color: #ffffff;
}

/* İçerik Alanı */
.about-content {
    background: #ffffff;
    padding: 80px 0;
}

.about-content p {
    color: #4b5a68;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 22px;
}

.about-content strong {
    color: #0a2640;
    font-weight: 700;
}

/* Responsive Ayarlar */
@media (max-width: 768px) {
    .page-hero {
        text-align: center;
        padding: 60px 0 50px;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .about-content {
        padding: 60px 0;
    }
}

.page-hero {
    background: #1d5fa7;
    color: #fff;
    padding: 70px 0 55px;
}

.page-hero h1 {
    font-weight: 800;
    margin: 0;
}

.ik-content {
    background: #fff;
    padding: 70px 0;
}

.ik-content p {
    color: #4b5a68;
    line-height: 1.8;
}

.career-form-section {
    background: #f4f7fa;
    padding: 80px 0;
}

.career-form-box {
    background: #fff;
    border: 1px solid #e5e9ef;
    border-radius: 16px;
    padding: 40px 50px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .06);
}

.career-form-box h2 {
    color: #0a2640;
    font-weight: 800;
}

.career-form-box p {
    color: #5e6e7b;
}

.form-label {
    font-weight: 600;
    color: #0a2640;
}

.form-control,
.form-select {
    border-radius: 10px;
    border: 1px solid #d3dce5;
    padding: 10px 14px;
    transition: .25s;
}

.form-control:focus,
.form-select:focus {
    border-color: #1d5fa7;
    box-shadow: 0 0 0 3px rgba(29, 95, 167, .1);
}

.btn-career {
    background: linear-gradient(135deg, #1d5fa7, #2e7bd1);
    color: #fff;
    border: none;
    padding: 10px 28px;
    border-radius: 10px;
    font-weight: 700;
    transition: .25s;
}

.btn-career:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

@media (max-width: 576px) {
    .career-form-box {
        padding: 28px 22px;
    }
}

.contact-info-section {
    background: #ffffff;
    padding: 80px 0;
}

.contact-info-section p {
    color: #4b5a68;
    font-size: 1.05rem;
    line-height: 1.8;
}

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

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fb;
    border: 1px solid #e5e9ef;
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.contact-list li:hover {
    background: #1d5fa7;
    color: #fff;
    transform: translateY(-3px);
}

.contact-list li i {
    font-size: 22px;
    color: #1d5fa7;
    transition: color 0.3s ease;
}

.contact-list li:hover i {
    color: #fff;
}

.contact-list a {
    color: #0a2640;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-list li:hover a {
    color: #fff;
}

.map-container iframe {
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(13, 55, 100, 0.15);
}

.footer-contact a {
    color: #c8d4df;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #78b0ff;
    text-decoration: underline;
}

/* Hero */
.page-hero {
    background: #1d5fa7;
    color: #fff;
    padding: 70px 0 55px;
    border-bottom: 4px solid #144777;
}

.page-hero h1 {
    margin: 0;
    font-weight: 800;
}

/* Sayfa */
.transparency-page {
    background: #fff;
    padding: 70px 0 90px;
}

.year-block+.year-block {
    margin-top: 40px;
}

.year-title {
    font-weight: 800;
    color: #0a2640;
    margin-bottom: 16px;
}

/* Kart */
.pdf-card {
    background: #fff;
    border: 1px solid #e5e9ef;
    border-radius: 14px;
    padding: 18px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, .04);
    transition: transform .25s, box-shadow .25s;
}

.pdf-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(13, 55, 100, .12);
}

.pdf-info {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.pdf-info .material-symbols-outlined {
    font-size: 36px;
    color: #1d5fa7;
}

.pdf-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0a2640;
    margin: 0 0 4px;
}

.pdf-meta {
    margin: 0;
    color: #607283;
    font-size: .92rem;
}

/* Aksiyonlar */
.pdf-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.btn-view,
.btn-download {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: .95rem;
    transition: .25s;
}

.btn-view {
    background: #0f2436;
    color: #e9f2fa;
}

.btn-view:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.btn-download {
    background: linear-gradient(135deg, #1d5fa7, #2e7bd1);
    color: #fff;
    border: none;
}

.btn-download:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
}

@media (max-width: 576px) {
    .pdf-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .pdf-actions {
        width: 100%;
    }

    .btn-view,
    .btn-download {
        flex: 1;
        text-align: center;
    }
}