/*fonts*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Sora:wght@400;500;600;700;800&display=swap');
/*fonts*/

/* ROOT — Özbelsan marka paleti (logo.png'den) */
:root {
    --mobil-menu-bg: #f9f9f9;
    --mobil-menu-yazi: #674747;
    --primary-blue: #1076bc;
    --navy-deep: #0e1638;
    --renk1: #1c2b6b;
    --renk2: #1076bc;
    --renk3: #25aae1;
    --renk4: #1076bc;
    --renk5: #0e1638;
    --renk6: #f3f7fb;
    --font1: "Montserrat", sans-serif;
    --font2: "Sora", sans-serif;
    --gradient1: linear-gradient(-90deg, rgba(16,118,188,1) 0%, rgba(37,170,225,1) 100%);
    --gradient2: linear-gradient(90deg, rgba(16,118,188,1) 0%, rgba(37,170,225,1) 100%);
}

::selection {
    background: var(--renk3);
    color: #ffffff;
}

.active5 {
    position: relative;
}

.active5:before {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    background-color: var(--secondary);
    border: 3px solid #ffffff;
    border-radius: 50px;
    left: 50%;
    transform: translateX(-50%);
    top: 92%;
}




body {

/*    background-image: url("/assets/img/bg.jpeg");*/
    background-repeat: no-repeat;
    background-size: 100% 100% ;
    background-position: center;
    background-attachment: fixed;
    font-size: 14px;
}

body::-webkit-scrollbar-track {
    background-color: transparent
}

body::-webkit-scrollbar {
    width: 10px;
    background-color: transparent;
}

body::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #aaa
}

body::-webkit-scrollbar-thumb:hover {
    background-color: #606060
}

a {
    color: var(--renk3);
}


a:hover {
    text-decoration: none;
    color: var(--renk3);
}

/* SCROLL TOP */
.scrollup {
    position: fixed;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    height: 24px;
    width: 24px;
    bottom: 60px;
    right: 20px;
    background-color: var(--renk2);
    border: 1px solid white;
    color: white;
    font-size: 12px;
    z-index: 99;
    border-radius: 10%;
    opacity: 0;
    transform: rotate(-45deg);
    transition: 400ms;
    pointer-events: none;
}

.scrollup.aktif {
    bottom: 48px;
    opacity: 1;
    transition: 400ms;
    pointer-events: all;
}

.scrollup i {
    transform: rotate(45deg);
    transition: 400ms;
}

.scrollup:hover {
    background-color: var(--renk1);
    color: white;
    transform: scale(.9) rotate(0);
    transition: 400ms;
}

.scrollup:hover i {
    transform: rotate(0);
    transition: 400ms;
}
address p {
display: flex;
}

ul {
    list-style-type: none;
}

/* HC-OFFCANVAS */
.hc-nav-trigger {
    right: 15px;
    top: 35px;
}

.hc-nav-trigger span {
    background-color: var(--renk2);
}

.yanbasliklar {
    color: #209cd2;
}

.hc-offcanvas-nav.nav-levels-overlap .nav-content::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    bottom: 0;
    right: 0;
    opacity: .4;
    background-repeat: no-repeat;
    background-position-y: bottom;
}

.hc-offcanvas-nav .nav-close-button span::after, .hc-offcanvas-nav .nav-close-button span::before {
    width: 10px;
    height: 10px;
    margin-top: -5px;
}

.hc-offcanvas-nav .nav-title + .nav-close a:not(.has-label) {
    top: 15px;
    right: 0;
}

.hc-offcanvas-nav .nav-close-button span::before {
    margin-left: -11px;
}

.fancybox__container {
    z-index: 9999;
}


/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9997;
    animation: fadeIn linear;
    background-color: rgba(0,0,0,0.5);
    animation-duration: 0.6s;
}



header.is-sticky {
    background: #ffffff;
    animation: fadeInDown linear;
    animation-duration: 0.6s;
}


.navbar-brand {
    position: relative;
}

.hbtlogoGizle {
    position: absolute;
    right: 0;
    top: 0;
    width: 75%;
    height: 100%;
    background: #ffffff;
    transform: scaleX(0);
    transform-origin: right center;
    transition: .5s;
}

header.is-sticky .hbtlogoGizle {
    transform: scaleX(1);
    transition-delay: .45s;
}

header.is-sticky .headerSosyal {
    display: none !important;
}

header.is-sticky .navbar-brand:hover .hbtlogoGizle {
    transform: scaleX(0);
    transition-delay: 0ms;
    transition: .5s;
}

.hizmetlerimiz-altmenu a {
    color: black;
    transition: 800ms;
    border-bottom: 1px groove slategray;
    padding-bottom: 5px;
}

.hizmetlerimiz-altmenu:hover a {
    transition: 800ms;
    padding-right: 15px;

}
.nav-link{
    color: var(--renk6);
    font-weight: 600;
    position: relative;
    overflow: hidden;
}
.is-sticky .nav-link{
    color: black;
}
.is-sticky .nav-link:hover{
    color: black;
}

.nav-link:hover::before{
    width: 100%;
    left: 0;
}
.nav-link::before{
    content: "";
    width: 0;
    transition: all .4s;
    height: 2px;
    background-color: white;
    position: absolute;
    bottom: 0;
    right: 0;
}
.nav-link:hover{
    color: var(--renk6);
}
.dropdown-menu .nav-link{
    color: black;
}

/* header sosyal medya */
.sosyalMedyaUl {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.sosyalMedyaUl li:not(:last-of-type) {
    margin-right: 2px;
}

.sosyalMedyaUl li a {
    display: block;
    text-align: center;
    text-decoration: none;
    color: var(--renk6);
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    padding: 10px 5px 2px 5px;
    width: 27px;
    font-size: 14px;
    transform: translateY(-11px);
    transition: .2s ease-in-out;
}
.telefonnumaramiz a , .telefonnumaramiz i{
    color: var(--renk6) !important;
}


.headerTelefon,
.headerTelefon:hover {
    color: #b6bbbe;
}

.headerTelefonIcon {
    display: inline-block;
    min-width: 30px;
    border: 1px solid #b6bbbe;
    border-radius: 50%;
    aspect-ratio: 1/1;
    text-align: center;
    line-height: 28px;
    color: #b6bbbe;
}

/*
* FOOTER
*/


footer .footer-alt-bg {
    border-top: 8px solid var(--renk2);
    background: #fff;
    color: #fff;
    font-size: 15px;
    position: relative;
    z-index: 30;
    padding-bottom: 8px
}

.footer-alt-bg::before{
    content: "";
    width: 100%;
    height: 5px;
    background-color: white;
    position: absolute;
    top: -10px;
    left: 0;
}
.footer-alt{
    position: relative;
    padding-left: 74px;
}
.footer-alt::before{
    content: "";
    position: absolute;
    background-image: url("../img/f-icon.png");
    width: 74px;
    height: 74px;
    left: 0;
    bottom: 0;
}

footer .footer-alt-bg .footer-alt-ic {
    margin-right: auto
}

footer .footer-alt-bg p {
    padding: .8em 0 .4em;
    position: relative;
    z-index: 1;
    font-size: 12px;
    color: #555;
    text-align: right
}

footer .footer-Link{
    transition: all .4s;
}

footer .footer-Link:hover{
    padding-left: 10px;
}

footer .footer-ust-img {
    position: absolute;
    width: 100%;
    height: 55px;
    top: -40px;
    transform: perspective(1px)
}

footer .hakanbt-logo:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: -44px;
    left: -16px;
    border-style: solid;
    border-width: 0 30px 35px 30px;
    border-color: transparent transparent #fff transparent
}

footer .hakanbt-logo:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: -34px;
    left: -6px;
    border-style: solid;
    border-width: 0 20px 24px 20px;
    border-color: transparent transparent var(--renk2) transparent
}

footer .hakanbt-logo {
    position: absolute;
    bottom: -14px;
    left: 15px;
    height: 35%;
    width: 100%
}

.hakanbt {
    width: 28px !important;
    height: 25px !important;
    overflow: hidden !important;
    position: relative !important;
    margin: 0 !important;
    transition: all .5s ease-in-out .1s !important
}

.hakanbt img {
    max-width: none !important;
    user-select: none;
}

.hakanbt:hover {
    width: 125px !important
}

.dropdown-menu {
    border: 1px solid #dddddd;
    border-radius: 0;
    padding: 0;
}

.navbar .nav-item .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
}

.navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0 0;
}

.navbar .nav-item:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 52px;
    transform: rotateX(0deg);
}

.right-menu {
    position: absolute;
    top: 0;
    left: 100%;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
    background-color: #fff;
    list-style: none;
}
.navbar .nav-item.right:hover .right-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    display: block;
    pointer-events: all;
    animation-name: dropdownAnimasyon;
    animation-duration: 1s;
    animation-timing-function: ease;
}

/* .slider {
    margin-top: 110px;
} */

/* Slider */
.swiper {
    width: 100%;
}

.mySwiper {
    height: 100vh;
}


.swiper-slide {
    text-align: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sayfaBaslik{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.sayfaBaslik h2 {
    text-align: center;
    display: inline-flex;
    position: relative;
    padding: 0 0 10px 0;
    justify-content: center;
    align-items: center;
    font: var(--font1);
    color: var(--renk3);
    font-size: 30px;
}
.sayfaBaslik svg{
    position: absolute;
    width: 40%;
    bottom: -10px;
}

.ortalaX {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.card {
    border-radius: 0 0 0 0;
    box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
    margin-top: 30px;
}

.card-body .btn {
    padding: 10px 40px;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--renk3) !important;
}
.swiper-button-next{
    right: -10px;
}
.swiper-button-prev{
    left: -10px;
}

footer {
    background-color: var(--renk1);
    color: white;
    background-size: 100% 100%;
    overflow: hidden;
}

footer a {
    color: white !important;
}
.footer-list h3{
    color: white;
    position: relative;
    margin-bottom: 20px;
}
.footer-list i{
    margin-right: 10px;
    transition: all .4s;
    color: white;
}
.footer-social li i:hover{
    box-shadow: rgba(149, 157, 165, 0.4) 0 8px 24px;
}
.footer-social li i{
    background-color: white;
    color: black;
    transition: all .4s;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    font-size: 18px;
    padding: 0;
}
.footer-list li:hover i{
    margin-right: 15px;
}
.footer-list li{
    margin: 10px 0;
}

.hizmet-card {
    display: inline-block;
    background-color: transparent;
    margin-top: 30px;
    box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
    width: 100%;
    border-radius: 10px;
    border: none;
    overflow: hidden;
    position: relative;
}

.hizmet-card-top img {
    width: 100%;
    transition: all .4s;
}
.hizmet-card-top{
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.hizmet-card-top i{
    display: none;
}

.hakkimizda .img-fluid{
    width: 100%;
    border-radius: 10px;
    transition: all .4s;
}
.hizmet-card-title {
    font-size: 16px;
    font-weight: 500;
    position: relative;
    background-color: var(--renk6);
    padding: 10px !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.hizmet-card-title i{
    position: absolute;
    width: 50px;
    height: 50px;
    transition: all .4s;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--renk3);
    color: white;
    border-radius: 10px;
    top: -40px;
    right: 10px;
}
.hizmet-card-title h5{
    font-size: 16px;
    margin-top: 10px;
}
.hizmet-card-title p{
    font-size: 13px;
}

.mySwiperzaman .swiper-slide{
    text-align: left !important;
    cursor: context-menu;
}
.mySwiperzaman hr{
    background-color: black;
    position: relative;
}
.mySwiperzaman hr::before{
    content: "\f111";
    font: var(--fa-font-solid);
    font-size: 15px;
    position: absolute;
    left: 0;
    top: -7.5px;
}

.rakamlarlaBiz {
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto 100%;
    align-items: center;
    height: auto;
    color: white;
    background-color: var(--renk1);
}
.rakamlarlaBiz .sayfaBaslik h2, .rakamlarlaBiz .cls-1{
    color: white;
    fill: white !important;
}
.countreup i {
    display: inline-block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 30px;
    color: white;
    font-size: 34px;
    line-height: 80px;
    background: var(--gradient2);
    box-shadow: 0 10px 25px rgba(37,170,225,0.35);
    transition: transform .4s;
}
.countreup:hover i {
    transform: translateY(-6px) scale(1.05);
}

.count {
    font-size: 35px;
    color: #fff;
    font-family: Rubik, sans-serif;
    font-weight: 500;
    margin-bottom: 13px;
    line-height: 1;
    display: inline-block;
}

.countreup p {
    font-size: 18px;
    font-weight: 600;
}



.snip1573 {
    background-color: #fff;
    display: inline-block;
    font-family: sans-serif Poppins-Regular;
    font-size: 10px;
    max-width: 180px;
    height: 135px;
    padding-top: 10px;
    min-width: 180px;
    border-top-right-radius: 40px;
    border-bottom-left-radius: 40px;
    -webkit-box-shadow: 0 6px 14px 0 rgb(215 215 219);
    -moz-box-shadow: 0 6px 14px 0 rgba(215, 215, 219, 1);
    box-shadow: 0 6px 14px 0 rgb(215 215 219);
    overflow: hidden;
    position: relative;
    text-align: center;
    width: 100%;
}

/* Slider Haberler*/

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-container {
    width: 100%;
    height: 300px;
    margin: 20px auto;
}

.append-buttons {
    text-align: center;
    margin-top: 20px;
}

.append-buttons button {
    display: inline-block;
    cursor: pointer;
    border: 1px solid #007aff;
    color: #007aff;
    text-decoration: none;
    padding: 4px 10px;
    border-radius: 4px;
    margin: 0 10px;
    font-size: 13px;
}

.modal-content {
 top: 50px;
}

.slider .swiper-button-next{
    right: 10px;
}
.slider .swiper-button-prev{
    left: 10px;
}
.slider{
    overflow: hidden;
}
.slider .swiper-slide::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, rgba(0,0,0,1) 1%, rgba(0,0,0,0) 100%);
}
.slider svg{
    position: absolute;
    z-index: 10;
    left: -12%;
    width: 40%;
    bottom: -35%;
}
.slogon {

    background-color: var(--renk2);
    color: white;
}
.countreup svg{
    stroke: white;
    width: 50px;
    stroke-width: 20px;
    fill: none;
}
.referans_content {
    background-color: #fff;
    max-width: 200px;
    height: 135px;
    min-width: 180px;
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
    overflow: hidden;
    position: relative;
    text-align: center;
    width: 100%;
    transition: all .4s;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.referans_content img{
    width: 90% !important;
}
.referans_content:hover{
    box-shadow: rgba(0, 0, 0, 0.1) 0 10px 15px -3px, rgba(0, 0, 0, 0.05) 0 4px 6px -2px;
}
.referans_content::before{
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    bottom: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 1), transparent);
    opacity: 0;
    transition: opacity 0.1s ease-in-out;
    pointer-events: none;
}

.referans_content:hover::before {
    animation: shine 1s ease-in-out 0.2s forwards;
}

@keyframes shine {
    0% {
        transform: translate(150%, -35%);
        opacity:0.3;
    }
    100% {
        transform: translate(-150%, 35%);
        opacity:0.8;
    }
}

.faaliyetAlaniSlider{
    background-color: var(--renk1);
    position: relative;
}

.hbr-card {
    display: inline-block;
    background-color: white;
    margin-bottom: 5px;
    color: black;
    overflow: hidden;
    border-radius: 10px;
    margin-top: 30px;
    height: auto;
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
}

.referans_content img {
    width: auto;
    height: auto;
}

.hbr-card-top img {
    width: 100%;
}

.hbr-card-title {
    padding: 0 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    font-size: 14px;
    font-weight: 500;
    color: white;
    background-color: var(--renk4);
}

.galeri_link {
    display: inline-block;
    background-color: #e0e0e0;
    color: #dc3545;
    height: auto;
    box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
    width: 100%;
}

.galeri-card-top img {
    width: 100%;
    height: 191px;
}

.galeri-card-title {
    padding-top: 20px;
    height: 80px;
    font-size: 16px;
    font-weight: 500;
}



address a {
    color: black;

}

address {
    font-size: 14px;
}

/* Slider  */
.swiper-slide .title {
    font-size: 30px;
    color: white;
    font: var(--font1);
    font-size: 35px;
    font-weight: 900;
}

.slider-yazi{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left !important;
    top: 0;
    left: 0;
}

.swiper-slide .subtitle {
    font-size: 20px !important;
    color: white;
    font-weight: 650 !important;
    font: var(--font1);
}


.headerSosyal .fa-phone {
    color: var(--renk3)
}

.custom-swipper-wrapper {
    transform: translate(-15px, 0);
    width: 1110px;
}

.buton-sag {
    position: fixed;
    right: -40px;
}

.buton-sol {
    position: fixed;
    left: -40px;

}


.list-unstyled li {
    padding: 5px 0;
}

.short_image {
    height: 300px;
    width: 100%;
    color: white;
    display: flex;
    padding-top: 125px;
    align-items: center;
    position: relative;
    background: radial-gradient(circle at 30% 30%, var(--primary-blue) 0%, var(--navy-deep) 70%, var(--navy-deep) 100%);
    overflow: hidden;
}
.short_image::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.14) 1.4px, transparent 1.4px);
    background-size: 26px 26px;
    opacity: .5;
    pointer-events: none;
}
.short-title h1 {
    font-family: var(--font2);
}

.short-title {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.short-title h1 {
    font-weight: 400;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: white;
}

.bread-nav {
    display: flex;
    justify-content: center;
}

.breadcrumb {
    margin: 0;
    background: transparent;
}

.breadcrumb .breadcrumb-item, .breadcrumb-item a {
    color: white !important;
}
.hk-content {
    padding: 10px;
    text-align: justify;
    min-height: 350px;
}

.hk-img {
    width: 100%;
    max-height: 500px;
}

figure.snip0023 {
    color: #fff;
    position: relative;
    overflow: hidden;
    width: 100%;
    background: #000000;
    text-align: center;
}

figure.snip0023 img {
    opacity: 1;
    width: 100%;
    -webkit-transition: opacity 0.35s;
    transition: opacity 0.35s;
}

figure.snip0023 * {
    box-sizing: border-box;
}

.faaliyetimg {
    width: 100%;
    height: 191px;
}

figure.snip0023 > div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

figure.snip0023 > div::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
    opacity: 0;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
    background-image: linear-gradient(45deg, #000000 0%, transparent 40%, rgba(255, 255, 255, 0.15));
}

figure.snip0023 i {
    display: inline-block;
    font-size: 36px;
    color: #ffffff;
    padding: 6px 16px;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    z-index: 1;
    -webkit-transition: 0.05s linear;
    transition: 0.05s linear;
    -webkit-transition-delay: 0.01s;
    transition-delay: 0.01s;
}

figure.snip0023 .curl {
    width: 0;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(225deg, #ffffff, #f3f3f3 20%, #bbbbbb 38%, #aaaaaa 44%, #888888 50%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.3));
    box-shadow: 0 0 10px rgb(0 0 0 / 50%);
    transition: all .4s ease;
}

figure.snip0023 .curl:before, figure.snip0023 .curl:after {
    content: '';
    position: absolute;
    z-index: -1;
    left: 12%;
    bottom: 6%;
    width: 70%;
    max-width: 300px;
    max-height: 100px;
    height: 55%;
    box-shadow: 0 12px 15px rgb(0 0 0 / 30%);
    transform: skew(-10deg) rotate(-6deg);
}

figure.snip0023 .curl:after {
    left: auto;
    right: 6%;
    bottom: auto;
    top: 14%;
    transform: skew(-15deg) rotate(-84deg);
}

figure.snip0023:hover > div::before, figure.snip0023.hover > div::before {
    opacity: 1;
}

figure.snip0023:hover i, figure.snip0023.hover i {
    opacity: 0.7;
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

figure.snip0023:hover .curl, figure.snip0023.hover .curl {
    width: 90px;
    height: 90px;
}

.alt_baslik {
    height: 60px;
    text-align: center;
    color: black;
    font-weight: 500;
}

.whatsapp_sor {
    color: white;
    bottom: 50px;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    left: 30px;
    background: #34AF23;
    text-align: center;
    z-index: 99;
    font-size: 30px;
    text-decoration: none;
    border-radius: 100%;
    transition: all .2s;
}
.whatsapp_sor:hover {
    color: white;
    height: 60px;
    width: 60px;
    left: 25px;
    bottom: 45px;
}
.joinchat__box {
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: 48px;
    left: 28px;
    z-index: 9999;
    width: calc(100vw - 20px*2);
    max-width: 400px;
    min-height: 170px;
    max-height: calc(100vh - 20px - 20pc);
    border-radius: 32px;
    background: transparent;
    box-shadow: 0 2px 6px 0 rgb(0 0 0 / 50%);
    text-align: left;
    overflow: hidden;
    transform: scale3d(0,0,0);
    opacity: 0;
    transition: max-height .2s ease-out,opacity .4s ease-out,transform 0s linear .3s;
    -webkit-transform-origin: -webkit-calc(100% - 30px) 0;
    transform-origin: 10% 100%;
}
.joinchat__header {
    display: flex;
    flex-flow: row;
    align-items: center;
    position: relative;
    flex-shrink: 0;
    height: 70px;
    padding: 0 70px 0 26px;
    margin: 0;
    background: rgb(37, 209, 102);
}

.joinchat__powered {
    font-size: 11px;
    line-height: 18px;
    color: inherit!important;
    text-decoration: none!important;
    fill: white;
    opacity: .8;
}
.joinchat__powered svg {
    display: inline-block;
    width: auto;
    height: 18px;
    vertical-align: -30%;
}
.joinchat__close {
    position: absolute;
    top: 50%;
    right: 0;
    width: 34px;
    height: 34px;
    margin-top: -16px;
    border-radius: 50%;
    background-size: 12px;
    cursor: pointer;
    transition: background-color .3s ease-out;
}
.joinchat__box__scroll {
    padding: 20px 0 calc(60px + 10px) 70px;
    background: #fff linear-gradient(0deg,rgba(37,211,102,0.04),rgba(37,211,102,0.04));
    overflow-x: hidden;
    overflow-y: auto;
    will-change: scroll-position;
}
.joinchat__message {
    position: relative;
    min-height: 60px;
    padding: 17px 20px;
    margin: 0 26px 26px;
    border-radius: 32px;
    background: #fff;
    color: #4a4a4a;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,.3));
    transform: translateZ(0);
}
.joinchat--show {
    opacity: 1;
    transform: scaleX(1);
    transition: transform .5s cubic-bezier(.18,.89,.32,1.28);
}
.wp-btn {
    font-weight: 600;
    transition: all .4s;
    background-color: #25d166;
    color: white;
    border-radius: 30px;
    padding: 15px 20px;
    margin-right: 20px;
    margin-left: 26px;
}

.wp-btn:hover {
    color: white;
    background-color: #3aec7b;
}

.say-list{
    width: 100%;
    text-align: center;
    background-color: var(--renk1);
    padding: 10px 10px;
    margin-top: 5px;
    border-radius: 5px;
    color: white;
}
.say-list:hover{
    background-color: var(--renk2);
}
.btn-style-1{
    background: var(--gradient2);
    color: white;
    padding: 13px 14px 13px 26px;
    display: inline-flex;
    gap: 12px;
    border-radius: 50px;
    justify-content: center;
    align-items: center;
    position: relative;
    border: 1px solid transparent;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 12px 26px rgba(16,118,188,0.28);
    transition: transform .25s cubic-bezier(.2,.8,.2,1), background .35s, border-color .35s, box-shadow .35s;
    will-change: transform;
}
.btn-style-1:hover{
    color: var(--primary-blue);
    border-color: var(--primary-blue);
    background-color: white;
    background-image: none;
    box-shadow: 0 14px 30px rgba(16,118,188,0.16);
    transform: translateY(-3px);
}
.btn-style-1 span{
    position: relative;
    z-index: 2;
}
.btn-style-1:hover span{
    color: var(--primary-blue);
}
.btn-style-1 i{
    position: relative;
    z-index: 2;
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.22);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: all .35s;
}
.btn-style-1:hover i{
    background: var(--gradient2);
    color: #fff;
    transform: translateX(2px);
}
.harita iframe{
    width: 100%;
    height: 350px;
}
.z-10{
    position: relative;
    z-index: 10;
}
.logo-2{
    display: none;
}
.is-sticky .logo-2{
    display: block;
}
.is-sticky .logo-1{
    display: none;
}
.galeri-kutu{
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 10px;
    overflow: hidden;
    margin: 15px 0;
    position: relative;
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .4s;
}
.galeri-kutu:hover{
    transform: scale(1.1) rotate(-3deg);
}
.galeri-kutu img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.galeri-kutu::before{
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transition: all .4s;
    pointer-events: none;
}
.galeri-kutu:hover::before{
    opacity: 0.5;
}
.galeri-kutu::after{
    content: "\f424";
    font: var(--fa-font-solid);
    color: white;
    font-size: 20px;
    transform: scale(0);
    transition: all .4s;
    position: absolute;
    z-index: 5;
    pointer-events: none;
}
.galeri-kutu:hover::after{
    transform: scale(1);
}
.galeri-kutu a{
    width: 100%;
    height: 100%;
}
address a {
    color: black;
    transition: all .4s;

}
address p:hover a {
    color: black;
    transform: translateX(10px);
}

address {
    font-size: 14px;
}
address p{
    display: flex;
    justify-content: start;
    align-items: center;
}
address p i{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--renk1);
    color: white;
    display: flex !important;
    justify-content: center;
    align-items: center;
    outline: 1px solid var(--renk1);
    outline-offset: 3px;
    transition: all .4s;
}
address p:hover i{
    transform: rotate(360deg);
    outline-offset: 5px;
}
.hc-offcanvas-nav .nav-back a, .hc-offcanvas-nav .nav-item-link, .hc-offcanvas-nav li.nav-close a {
    color: var(--renk1);
}

.nav-item-link {
    display: flex !important;
}

.nav-item-link i {
    font-size: 18px;
    margin-right: 10px;
}

.nav-item-link .hbt-icon {
    background-color: var(--renk1);
    width: 20px;
    height: 20px;
}

.hc-offcanvas-nav .nav-close-button span::after, .hc-offcanvas-nav .nav-close-button span::before {
    border-color: var(--renk1);
}
.hbt-card{
    width: 100%;
    margin: 15px 0;
    position: relative;
    border-radius: 10px;
    transition: all .4s;
}
.hbt-card-top{
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 10px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 17px;
}
.hbt-card:hover .hbt-card-title{
    box-shadow: rgba(149, 157, 165, 0.5) 0 8px 17px;
}
.hbt-card-top::before{
    content: "\2b";
    font: var(--fa-font-solid);
    font-size: 22px;
    color: white;
    z-index: 5;
    position: absolute;
    transform: scale(0);
    transition: all .4s;
}
.hbt-card-top img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .4s;
}
.hbt-card:hover .hbt-card-top img{
    filter: brightness(0.5);
}
.hbt-card:hover .hbt-card-top::before{
    transform: scale(1);
}
.hbt-card-title {
    width: 100%;
    height: 80px;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    padding: 5px 10px;
    background-color: white;
    border-radius: 0 0 10px 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 17px;
    transition: all .4s;
}
.kurumsal-img{
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 10px;
    overflow: hidden;
    transition: all .4s;
}
.kurumsal-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.kurumsal-img:hover{
    transform: rotate(-3deg) scale(1.03);
}
main{
    overflow: hidden;
}
.canvasSocial li i{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--gradient1);
    color: white;
    margin-right: 15px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}
.canvasSocial li{
    align-content: center;
    margin: 5px 0;
}
@media screen and (min-width: 998px){
    .col-lg-1-5 {
        flex: 0 0 20%;
        max-width: 20%;
    }
    .swiper-button-next{
        right: -30px;
    }
    .swiper-button-prev{
        left: -30px;
    }
}
@media screen and (min-width: 450px) and (max-width: 998px){
    .swiper-button-next{
        right: -15px;
    }
    .swiper-button-prev{
        left: -15px;
    }
}
@media screen and (max-width: 450px) {
    .sayfaDetay-img{
        width: 100% !important;
        padding: 0 !important;
        margin: 0 0 20px 0 !important;
    }
}

.notify {
    width: 400px;
}

.notify.alert-success {
    background-color: white;
    border-radius: 10px;
    text-align: center;
    position: relative;
    display: flex !important;
    z-index: 9999 !important;
    justify-content: center;
    align-items: center;
}

.notify.alert-success span[data-notify="icon"] {
    color: green;
    position: absolute;
    left: 15px;
}

.close {
    top: auto !important;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.notify.alert-danger {
    background-color: white !important;
    border-radius: 10px;
    text-align: center;
    position: relative;
    z-index: 9999 !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.notify.alert-danger span[data-notify="icon"] {
    color: red;
    position: absolute;
    left: 15px;
}

@media screen and (max-width: 450px) {
    .notify {
        width: 90%;
    }
}

/* popup */


.pop-kutu, .pop-up img {
    width: 100%;
    height: 100%;
}
.pop-up img{
    border-radius: 10px;
}
.pop-kapat{
    cursor: pointer;
}
.pop-kutu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 500;
    background-color: rgba(0, 0, 0, .7)
}
.pop-up .gosterme{
    position: absolute;
    bottom: 12px;
    border-radius: 5px;
    padding: 3px 20px;
    cursor: pointer;
    background-color: transparent;
    border: 1px solid white;
    color: white;
    left: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.pop-up .kapat{
    position: absolute;
    bottom: 10px;
    border-radius: 5px;
    padding: 3px 20px;
    cursor: pointer;
    background-color: transparent;
    border: 1px solid white;
    color: white;
    right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.kapat span i, .gosterme span i {
    font-size: 9px;
    position: relative !important;
    left: -9px;
    right: auto;
    float: left;
}
.pop-up .gosterme span, .pop-up .kapat span{
    z-index: 2;
    transition: all .4s;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pop-up .kapat:hover span i, .pop-up .gosterme:hover span i{
    color: var(--renk1);
}
.pop-up .gosterme:hover span, .pop-up .kapat:hover span{
    color: var(--renk1);
}
.pop-up .gosterme:hover::before, .pop-up .kapat:hover::before{
    width: 120%;
    left: -10%;
}
.pop-up .gosterme::before, .pop-up .kapat::before{
    content: "";
    left: 15px;
    border-radius: 50%;
    background-color: white;
    position: absolute;
    width: 0;
    aspect-ratio: 1/1;
    transition: all .4s;
}
.pop{
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
    width: 100%;
    height: 100%;
}
.pop-up {
    margin: 0 15px;
    z-index: 3000 !important;
    border-radius: 10px;
    display: flex;
    padding-bottom: 50px;
    justify-content: center;
    align-items: center;
    max-height: 80vh;
    max-width: 1200px;
    background-color: rgba(0, 0, 0, 0.4);
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
    aspect-ratio: 1 / 1;
}
.pop-up img{
    border: 10px solid white;
}

.pop-up i {
    position: absolute;
    right: -13px;
    cursor: pointer;
    font-size: 26px;
    box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
    transition: all .2s;
    opacity: 1 !important;
    color: white;
}
.pop-up i:hover{
    color: white;
    transform: scale(1.1);
}
.pop .fa-circle-xmark{
    top: -13px;
}

/*CONTAINER*/
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container-sm, .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container-md, .container-sm, .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container-lg, .container-md, .container-sm, .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 1320px;
    }
}
.instagram-bg {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.facebook-bg {
    background-color: #3b5998;
}
.twitter-bg {
    background-color: #1da1f2;
}
.whatsapp-bg {
    background-color: #25D366;
}
.linkedin-bg {
    background-color: #0A66C2;
}

/* =========================================================
   ÖZBELSAN — Kurumsal / Teknolojik Tasarım Katmanı
   ========================================================= */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font2);
}

/* Bölüm başlığı: eyebrow + başlık + alt çizgi */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font1);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 10px;
}
.eyebrow::before {
    content: "";
    width: 24px;
    height: 2px;
    background: var(--gradient2);
    display: inline-block;
    border-radius: 2px;
}

.sayfaBaslik {
    flex-direction: column;
}
.sayfaBaslik h2 {
    font-family: var(--font2);
    font-weight: 700;
    color: var(--navy-deep);
    letter-spacing: -0.3px;
}
.sayfaBaslik svg {
    display: none;
}
.sayfaBaslik::after {
    content: "";
    display: block;
    width: 56px;
    height: 3px;
    margin-top: 6px;
    border-radius: 3px;
    background: var(--gradient2);
}
.sayfaBaslik p {
    max-width: 620px;
    text-align: center;
    color: #5b6577;
    margin-top: 10px;
    font-size: 15px;
}

/* Header cam efekti */
header {
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
header.is-sticky {
    background: transparent;
    border-bottom: 1px solid rgba(16,118,188,0.08);
}
.navbar .nav-item.dropdown .dropdown-menu {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(14,22,56,0.18);
}
.navbar .dropdown-item {
    padding: 10px 20px;
    font-size: 14px;
    transition: all .3s;
}
.navbar .dropdown-item:hover {
    background: var(--renk6);
    color: var(--primary-blue);
    padding-left: 26px;
}
.is-sticky .sticky-none{
    display: none !important;
}

/* Hero rozet (slider üzerindeki "1979'dan Bugüne" etiketi) */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px 7px 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 50px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .3px;
    margin-bottom: 18px;
    backdrop-filter: blur(4px);
}
.hero-badge .hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--renk3);
    box-shadow: 0 0 0 4px rgba(37,170,225,0.25);
}

/* Rakamlarla biz */
.rakamlarlaBiz {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--renk1) 55%, var(--primary-blue) 100%) !important;
    position: relative;
    overflow: hidden;
}
.rakamlarlaBiz::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.10) 1.4px, transparent 1.4px);
    background-size: 28px 28px;
    pointer-events: none;
}
.rakamlarlaBiz .sayfaBaslik::after {
    margin-left: auto;
    margin-right: auto;
}

/* Çözümler — editoryal liste bileşeni */
.cozum-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 26px;
    padding: 26px 18px;
    border-bottom: 1px solid #e7ecf3;
    transition: all .35s;
}
.cozum-item:first-child {
    border-top: 1px solid #e7ecf3;
}
.cozum-item:hover {
    background: linear-gradient(90deg, var(--renk6) 0%, rgba(243,247,251,0) 100%);
    padding-left: 28px;
}
.cozum-item .cozum-index {
    font-family: var(--font2);
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    background: var(--gradient2);
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(16,118,188,0.25);
}
.cozum-item .cozum-thumb {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(14,22,56,0.15);
}
.cozum-item .cozum-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cozum-item .cozum-body h4 {
    margin: 0 0 4px 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-deep);
}
.cozum-item .cozum-body p {
    margin: 0;
    font-size: 14px;
    color: #6a7386;
}
.cozum-item .cozum-arrow {
    margin-left: auto;
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    border: 1px solid #dfe6ef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    transition: all .35s;
}
.cozum-item:hover .cozum-arrow {
    background: var(--gradient2);
    color: #fff;
    border-color: transparent;
    transform: translateX(4px);
}

/* Haber kartı ufak iyileştirme */
.card-top {
    overflow: hidden;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.card-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s;
}
.card:hover .card-top img {
    transform: scale(1.08);
}
.card-title .baslik {
    font-weight: 600;
    color: var(--navy-deep);
    font-size: 15px;
}
.card-btn {
    font-size: 13px;
    color: var(--primary-blue);
    font-weight: 600;
    margin-top: 6px;
}

/* Bölüm ayırıcı dalga */
.section-wave {
    display: block;
    width: 100%;
    line-height: 0;
}

/* =========================================================
   FOOTER — 2026 yeniden tasarım
   ========================================================= */
footer {
    position: relative;
    background:
        radial-gradient(circle at 10% 10%, rgba(37,170,225,0.18), transparent 45%),
        radial-gradient(circle at 90% 0%, rgba(255,255,255,0.08), transparent 40%),
        linear-gradient(160deg, var(--navy-deep) 0%, var(--renk1) 100%) !important;
}
footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient2);
}
.footer-brand img {
    height: 40px;
    width: auto;
    max-width: none;
    filter: brightness(0) invert(1);
    opacity: .95;
}
.footer-brand p {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    line-height: 1.6;
    margin: 18px 0 22px;
    max-width: 320px;
}
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social li i {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.16);
    color: #fff;
    width: 38px;
    height: 38px;
    font-size: 14px;
    margin: 0;
}
.footer-social li i:hover {
    background: var(--gradient2);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(16,118,188,0.4);
}

.footer-list h3 {
    font-family: var(--font2);
    font-size: 15px;
    font-weight: 700;
    padding-bottom: 12px;
}
.footer-list h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient2);
    border-radius: 2px;
}
.footer-list li {
    margin: 0;
}
.footer-list li a {
    display: flex;
    align-items: center;
    padding: 7px 0;
    color: rgba(255,255,255,0.72) !important;
    font-size: 13.5px;
    transition: all .3s;
}
.footer-list li a i {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    transition: all .3s;
}
.footer-list li a:hover {
    color: #fff !important;
    padding-left: 6px;
}
.footer-list li a:hover i {
    color: var(--renk3);
    margin-right: 15px;
}
.footer-list li a[href^="mailto"], .footer-list li a[href^="tel"] {
    word-break: break-word;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 18px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    position: relative;
}
.footer-bottom a {
    color: rgba(255,255,255,0.75) !important;
    transition: color .3s;
}
.footer-bottom a:hover {
    color: #fff !important;
}

/* Genel kart glow hover */
.hbt-card-top, .hizmet-card, .card, .hbr-card {
    transition: all .4s;
}
.hbt-card:hover .hbt-card-top, .hizmet-card:hover, .card:hover {
    box-shadow: 0 20px 40px rgba(16,118,188,0.18);
}

@media screen and (max-width: 767px) {
    .cozum-item { gap: 16px; padding: 18px 6px; }
    .cozum-item .cozum-thumb { display: none; }
}

/* CTA şeridi */
.ctaSerit {
    background: linear-gradient(120deg, var(--primary-blue) 0%, var(--renk1) 55%, var(--navy-deep) 100%);
    position: relative;
    overflow: hidden;
}
.ctaSerit::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.12) 1.4px, transparent 1.4px);
    background-size: 26px 26px;
    pointer-events: none;
}
.ctaSerit h3 {
    font-family: var(--font2);
    font-weight: 700;
}
.ctaSerit .btn-style-1 {
    background-color: #ffffff;
    background-image: none;
    color: var(--navy-deep);
}
.ctaSerit .btn-style-1 span {
    color: var(--navy-deep);
}
.ctaSerit .btn-style-1 i {
    background: var(--gradient2);
    color: #fff;
}
.ctaSerit .btn-style-1:hover {
    background-color: transparent;
    border-color: #ffffff;
}
.ctaSerit .btn-style-1:hover span {
    color: #ffffff;
}
.ctaSerit .btn-style-1:hover i {
    background: rgba(255,255,255,0.22);
    color: #fff;
    transform: translateX(2px);
}

/* =========================================================
   ÖZBELSAN — Premium Katman v2
   (araştırma: Awwwards kurumsal/endüstriyel örnekler, 2026
   B2B tasarım trendleri — mesh gradient, grain, sharp border,
   büyük tipografi, magnetic etkileşim, editoryal "ghost number")
   ========================================================= */

/* Genel doku: grain / noise */
.grain-overlay { position: relative; }
.grain-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.05;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* Bölüm boşlukları — daha nefes alan düzen */
.premium-section {
    padding-top: 96px;
    padding-bottom: 96px;
}
@media screen and (max-width: 767px) {
    .premium-section { padding-top: 56px; padding-bottom: 56px; }
}

/* Büyütülmüş bölüm tipografisi */
.sayfaBaslik h2 {
    font-size: 40px;
    letter-spacing: -0.5px;
}
@media screen and (max-width: 767px) {
    .sayfaBaslik h2 { font-size: 28px; }
}

/* ---------- HERO / SLIDER ---------- */
.slider {
    --mx: 50%;
    --my: 50%;
}
.slider::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    background: radial-gradient(480px circle at var(--mx) var(--my), rgba(37,170,225,0.16), transparent 60%);
    transition: background .15s ease-out;
}
.slider .swiper-slide::before {
    background: linear-gradient(100deg, rgba(14,22,56,0.92) 0%, rgba(14,22,56,0.62) 38%, rgba(16,118,188,0.28) 68%, rgba(37,170,225,0.06) 100%);
}
.slider .swiper-slide img {
    transform: scale(1.0);
    transition: transform 8s cubic-bezier(.25,.1,.25,1);
}
.slider .swiper-slide-active img {
    transform: scale(1.12);
}
.swiper-slide .title {
    font-family: var(--font2);
    font-size: clamp(34px, 5vw, 68px);
    font-weight: 800;
    letter-spacing: -1.2px;
    line-height: 1.06;
    text-shadow: 0 10px 40px rgba(0,0,0,.25);
}
.swiper-slide .subtitle {
    font-family: var(--font1) !important;
    font-weight: 500 !important;
    font-size: 17px !important;
    opacity: .88;
    max-width: 480px;
    line-height: 1.5;
    margin-top: 10px;
    text-shadow: 2px 2px 6px #676767;
}
.scroll-cue {
    position: absolute;
    bottom: 34px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255,255,255,0.45);
    border-radius: 20px;
    z-index: 20;
}
.scroll-cue span {
    position: absolute;
    top: 7px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scrollCue 1.7s infinite;
}
@keyframes scrollCue {
    0% { opacity: 1; top: 7px; }
    70% { opacity: 0; top: 22px; }
    100% { opacity: 0; top: 7px; }
}

/* ---------- HAKKIMIZDA — yüzen rozet ---------- */
.hak-img-wrap {
    position: relative;
}
.hak-img {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(14,22,56,0.16);
}
.hak-img img {
    transition: transform .6s;
}
.hak-img-wrap:hover .hak-img img {
    transform: scale(1.05);
}
.hak-badge {
    position: absolute;
    left: -18px;
    bottom: -22px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    padding: 16px 22px;
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(14,22,56,0.2);
    border: 1px solid rgba(16,118,188,0.08);
}
.hak-badge-num {
    font-family: var(--font2);
    font-weight: 800;
    font-size: 30px;
    background: var(--gradient2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}
.hak-badge-txt {
    font-size: 12px;
    font-weight: 600;
    color: var(--navy-deep);
    line-height: 1.3;
}
@media screen and (max-width: 575px) {
    .hak-badge { left: 12px; bottom: -18px; padding: 10px 16px; }
    .hak-badge-num { font-size: 22px; }
}

/* ---------- KARTLAR — keskin kenar, yumuşak gölge yerine hassas hover ---------- */
.hbt-card-top, .hizmet-card, .card {
    border: 1px solid rgba(16,118,188,0.10);
}
.hbt-card-top {
    box-shadow: none;
}
.hizmet-card, .card {
    box-shadow: 0 2px 10px rgba(14,22,56,0.05);
}
.hizmet-card:hover, .card:hover {
    border-color: rgba(16,118,188,0.35);
    transform: translateY(-6px);
    box-shadow: 0 24px 44px rgba(16,118,188,0.16);
}
.hbt-card:hover .hbt-card-top {
    border-color: rgba(16,118,188,0.35);
}

/* ---------- ÇÖZÜMLER — dev "ghost number" ---------- */
.cozum-item {
    overflow: hidden;
}
.cozum-item::before {
    content: attr(data-num);
    position: absolute;
    right: 54px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font2);
    font-weight: 800;
    font-size: 76px;
    color: var(--primary-blue);
    opacity: 0.05;
    line-height: 1;
    pointer-events: none;
    z-index: 0;
    transition: opacity .35s;
}
.cozum-item:hover::before {
    opacity: 0.10;
}
.cozum-item > * {
    position: relative;
    z-index: 1;
}
@media screen and (max-width: 991px) {
    .cozum-item::before { display: none; }
}

/* ---------- RAKAMLARLA BİZ — mesh + cam kartlar ---------- */
.rakamlarlaBiz {
    background:
        radial-gradient(circle at 12% 18%, rgba(37,170,225,0.35), transparent 55%),
        radial-gradient(circle at 88% 12%, rgba(255,255,255,0.10), transparent 50%),
        radial-gradient(circle at 75% 92%, rgba(28,43,107,0.65), transparent 55%),
        linear-gradient(135deg, var(--navy-deep) 0%, var(--renk1) 55%, var(--primary-blue) 100%) !important;
}
.count-container {
    row-gap: 20px;
}
.countreup {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 34px 14px 26px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: all .4s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.countreup:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-6px);
}
.countreup p {
    opacity: .8;
    line-height: 1.4;
}

/* ---------- HABER KARTI — tarih rozeti ---------- */
.card-date {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #ffffff;
    border-radius: 10px;
    padding: 6px 10px;
    text-align: center;
    line-height: 1.1;
    box-shadow: 0 10px 20px rgba(14,22,56,0.18);
    z-index: 2;
}
.card-date .gun {
    display: block;
    font-family: var(--font2);
    font-weight: 800;
    font-size: 16px;
    color: var(--navy-deep);
}
.card-date .ay {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--primary-blue);
}

/* ---------- BUTON — magnetic hazırlığı ---------- */
.btn-style-1 {
    transition: transform .25s cubic-bezier(.2,.8,.2,1), background-color .3s, border-color .3s;
    will-change: transform;
}

/* =========================================================
   ÖZBELSAN — Futuristik Kart Sistemi
   (kesik köşe / "tech panel" siluet, nöron kenarlık,
   drop-shadow glow, tarama çizgisi, hedef-halkası ikon)
   Not: Görseller değiştirilmedi, yalnızca kart çerçevesi/efektleri.
   ========================================================= */

.hbt-card, .hizmet-card, .card, .countreup {
    --cut: 22px;
    position: relative;
    border-radius: 0 !important;
    clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
    transition: filter .4s, border-color .4s, background .4s, transform .4s;
}
.hbt-card, .hizmet-card, .card {
    background: #ffffff;
    border: 1px solid rgba(16,118,188,0.16);
}
.hbt-card:hover, .hizmet-card:hover, .card:hover {
    border-color: rgba(37,170,225,0.6);
    filter: drop-shadow(0 22px 30px rgba(14,22,56,0.16)) drop-shadow(0 0 18px rgba(37,170,225,0.35));
}
.countreup {
    clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}
.countreup:hover {
    filter: drop-shadow(0 16px 26px rgba(0,0,0,0.25));
}

.hbt-card-top, .hizmet-card-top, .card-top {
    border-radius: 0 !important;
    box-shadow: none !important;
}
.hbt-card-title, .hizmet-card-title, .card-title {
    border-radius: 0 !important;
    box-shadow: none !important;
    position: relative;
    overflow: hidden;
}
.hbt-card-title::before, .hizmet-card-title::before, .card-title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: var(--gradient2);
    transition: width .5s ease;
}
.hbt-card:hover .hbt-card-title::before,
.hizmet-card:hover .hizmet-card-title::before,
.card:hover .card-title::before {
    width: 100%;
}

/* Görsel üstü tarama (scan-line) efekti */
.hbt-card-top::after, .hizmet-card-top::after, .card-top::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--renk3) 50%, transparent);
    opacity: 0;
    filter: blur(0.5px);
    pointer-events: none;
}
.hbt-card:hover .hbt-card-top::after,
.hizmet-card:hover .hizmet-card-top::after,
.card:hover .card-top::after {
    opacity: 1;
    animation: obsScan 1.3s linear infinite;
}
@keyframes obsScan {
    0% { top: -10%; }
    100% { top: 110%; }
}

/* "+" ikonunu hedef-halkası (targeting reticle) haline getir */
.hbt-card-top::before {
    content: "\2b";
    width: 52px;
    height: 52px;
    font-size: 20px;
    border: 1.5px solid rgba(255,255,255,0.75);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 5;
    transform: scale(0) rotate(-90deg);
    transition: transform .5s cubic-bezier(.2,.9,.3,1.3);
}
.hbt-card:hover .hbt-card-top::before {
    transform: scale(1) rotate(0deg);
}

@media screen and (max-width: 575px) {
    .hbt-card, .hizmet-card, .card, .countreup {
        --cut: 14px;
    }
}

/* =========================================================
   ÖZBELSAN — Header v2 (yüzen kapsül / 2026 SaaS anlayışı)
   ========================================================= */

header {
    position: fixed;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 28px);
    max-width: 1360px;
    z-index: 9997;
    animation: fadeIn linear;
    animation-duration: .6s;
    transition: top .35s;
}
header.is-sticky {
    top: 10px;
    /* Şablonun eski fadeInDown animasyonu transform'u geçici olarak
       ele geçirip ortalama (translateX(-50%)) kayboluyor ve header
       sağa kayıp geri zıplıyor gibi görünüyordu — animasyonu iptal
       edip merkezleme transform'unu burada da sabitliyoruz. */
    animation: none !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}
header .container { max-width: 100%; }

/* Üst şerit — telefon/sosyal medya artık ana barın DIŞINDA, kendi küçük kapsülünde */
.header-top {
    justify-content: flex-end !important;
    margin-bottom: 8px;
}
.header-top-inner {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 7px 18px;
    border-radius: 50px;
    background: rgba(14,22,56,0.35);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 8px 20px rgba(14,22,56,0.10);
    transition: all .35s;
}
header.is-sticky .header-top-inner {
    background: rgba(255,255,255,0.85);
    border-color: rgba(16,118,188,0.12);
}

/* Ana bar — logo + menü, kendi bağımsız kapsülü */
.header-bar {
    padding: 10px 22px;
    gap: 20px;
    border-radius: 18px;
    background: rgba(14,22,56,0.35);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 10px 30px rgba(14,22,56,0.12);
    transition: background .35s, border-color .35s, box-shadow .35s;
}
header.is-sticky .header-bar {
    background: rgba(255,255,255,0.85);
    border-color: rgba(16,118,188,0.12);
    box-shadow: 0 16px 40px rgba(14,22,56,0.14);
}
.navbar-brand {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.navbar-brand img.logo-1, .navbar-brand img.logo-2 {
    height: 34px;
    width: auto;
    max-width: none;
}
.header-nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
}
.header-nav .navbar-collapse {
    display: flex;
    width: 100%;
}
.header-nav .navbar-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    margin: 0 !important;
    gap: 4px;
}
.header-nav .nav-link {
    padding: 9px 20px !important;
    font-size: 14px;
    font-family: var(--font1);
    border-radius: 50px;
    transition: all .3s;
}
.header-nav .nav-link::before {
    display: none;
}
.header-nav .nav-link:hover,
.header-nav .nav-item.active .nav-link,
.header-nav .nav-item.show .nav-link {
    background: var(--gradient2);
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(16,118,188,0.3);
}
header.is-sticky .header-nav .nav-link:hover,
header.is-sticky .header-nav .nav-item.active .nav-link {
    color: #ffffff !important;
}
.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--renk6) !important;
    white-space: nowrap;
}
header.is-sticky .header-phone {
    color: var(--navy-deep) !important;
}
.header-phone i {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255,255,255,0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}
header.is-sticky .header-phone i {
    background: var(--renk6);
    color: var(--primary-blue);
}
.header-social {
    display: flex;
    align-items: center;
    margin: 0;
}
.header-social li a {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--renk6);
    padding: 0;
    transform: none;
    font-size: 11px;
    transition: all .3s;
}
.header-social li a:hover {
    background: rgba(255,255,255,0.15);
}
header.is-sticky .header-social li a {
    color: var(--navy-deep);
}
header.is-sticky .header-social li a:hover {
    background: var(--renk6);
}

/* is-sticky durumunda .sayfaHeader logo davranışı ile çakışmayı önle */
.sayfaHeader.is-sticky .logo-2 { display: block !important; }

/* HC-Offcanvas tetikleyici konumu yeni kapsül header'a göre */
.hc-nav-trigger {
    top: -11px !important;
    right: 0 !important;
}

/* Mobil menü panelinin açılmama hatasını düzelt (bundle CSS özgüllük çakışması) */
.hc-offcanvas-nav.nav-open .nav-container {
    transform: translate3d(0,0,0) !important;
}
/* İç sayfa üst boşluğunu iki satırlı header'a göre ayarla */
.short_image {
    padding-top: 108px;
}
@media screen and (min-width: 992px) {
    .short_image {
        padding-top: 148px;
    }
}

/* =========================================================
   ÜRÜNLERİMİZ — Bento Grid (2026)
   ========================================================= */
.urun-bento {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 210px 210px;
    grid-template-areas:
        "big big big wide wide wide"
        "big big big s1 s2 s3";
    gap: 18px;
}
.urun-tile {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(16,118,188,0.12);
}
.urun-tile-1 { grid-area: big; }
.urun-tile-2 { grid-area: wide; }
.urun-tile-3 { grid-area: s1; }
.urun-tile-4 { grid-area: s2; }
.urun-tile-5 { grid-area: s3; }

.urun-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.urun-tile:hover img {
    transform: scale(1.08);
}
.urun-tile-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    background: linear-gradient(180deg, transparent 35%, rgba(14,22,56,0.88) 100%);
}
.urun-tile-overlay h4 {
    color: #fff;
    font-family: var(--font2);
    font-weight: 700;
    font-size: 17px;
    margin: 0;
    letter-spacing: -0.2px;
}
.urun-tile-1 .urun-tile-overlay h4,
.urun-tile-2 .urun-tile-overlay h4 {
    font-size: 24px;
}
.urun-tile-arrow {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.16);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 2;
    transition: all .35s;
}
.urun-tile:hover .urun-tile-arrow {
    background: var(--gradient2);
    transform: rotate(45deg);
}
.urun-tile-3 .urun-tile-overlay, .urun-tile-4 .urun-tile-overlay, .urun-tile-5 .urun-tile-overlay {
    padding: 14px;
}
.urun-tile-3 .urun-tile-overlay h4, .urun-tile-4 .urun-tile-overlay h4, .urun-tile-5 .urun-tile-overlay h4 {
    font-size: 14px;
}

@media screen and (max-width: 991px) {
    .urun-bento {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: none;
        grid-template-areas:
            "big big"
            "wide wide"
            "s1 s2"
            "s3 s3";
    }
    .urun-tile { min-height: 190px; }
    .urun-tile-1 { min-height: 260px; }
}
@media screen and (max-width: 575px) {
    .urun-bento {
        grid-template-columns: 1fr;
        grid-template-areas:
            "big"
            "wide"
            "s1"
            "s2"
            "s3";
    }
    .urun-tile-1 { min-height: 220px; }
}

/* =========================================================
   ÜRÜN SLIDER — anasayfa (görsel solda, özellikler sağda)
   ========================================================= */
.urun-slide-inner {
    min-height: 420px;
}
.urun-slide-img {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 20px 10px 30px rgba(14,22,56,0.16);
    border: 1px solid rgba(16,118,188,0.10);
}
.urun-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.urun-slide-count {
    font-family: var(--font2);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}
.urunSlider h3 {
    font-family: var(--font2);
    font-weight: 700;
    font-size: 30px;
    color: var(--navy-deep);
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}
.urun-slide-desc {
    color: #5b6577;
    font-size: 15px;
    margin-bottom: 20px;
}
.urun-ozellik-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}
.urun-ozellik-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #eef1f6;
    font-size: 14.5px;
    color: #3d4658;
    font-weight: 500;
}
.urun-ozellik-list li:last-child {
    border-bottom: none;
}
.urun-ozellik-list li i {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background: var(--gradient2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}
.mySwiperUrun .swiper-pagination-bullet {
    background: var(--primary-blue);
    opacity: .25;
    width: 8px;
    height: 8px;
}
.mySwiperUrun .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--gradient2);
    width: 22px;
    border-radius: 5px;
}
.urun-slider-pagination {
    position: static;
    margin-top: 24px;
    text-align: center;
}
.urunSlider .swiper-button-next.urun-slider-next { right: -6px; }
.urunSlider .swiper-button-prev.urun-slider-prev { left: -6px; }
@media screen and (max-width: 991px) {
    .urunSlider .swiper-button-next, .urunSlider .swiper-button-prev { display: none; }
    .urun-slide-inner { min-height: 0; }
}

/* =========================================================
   KURUMSAL BENTO — anasayfa (4 kutu)
   ========================================================= */
.kurumsal-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 210px 250px;
    grid-template-areas:
        "big big wide wide"
        "big big s1 s2";
    gap: 18px;
}
.kurumsal-tile {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(16,118,188,0.12);
}
.kurumsal-tile-1 { grid-area: big; }
.kurumsal-tile-2 { grid-area: wide; }
.kurumsal-tile-3 { grid-area: s1; }
.kurumsal-tile-4 { grid-area: s2; }
.kurumsal-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.kurumsal-tile:hover img {
    transform: scale(1.08);
}
.kurumsal-tile-1 .urun-tile-overlay h4,
.kurumsal-tile-2 .urun-tile-overlay h4 {
    font-size: 22px;
}
.kurumsal-tile-3 .urun-tile-overlay,
.kurumsal-tile-4 .urun-tile-overlay {
    padding: 14px;
}
.kurumsal-tile-3 .urun-tile-overlay h4,
.kurumsal-tile-4 .urun-tile-overlay h4 {
    font-size: 14px;
}
@media screen and (max-width: 991px) {
    .kurumsal-bento {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: none;
        grid-template-areas:
            "big big"
            "wide wide"
            "s1 s2";
    }
    .kurumsal-tile { min-height: 190px; }
    .kurumsal-tile-1 { min-height: 260px; }
}
@media screen and (max-width: 575px) {
    .kurumsal-bento {
        grid-template-columns: 1fr;
        grid-template-areas:
            "big"
            "wide"
            "s1"
            "s2";
    }
    .kurumsal-tile-1 { min-height: 220px; }
}

/* =========================================================
   HABERLER — eşit kart yüksekliği düzeltmesi
   ========================================================= */
.mySwiperHaber .swiper-slide,
.mySwiperFaaliyet .swiper-slide {
    height: auto;
    display: flex;
}
.mySwiperHaber .swiper-slide > a,
.mySwiperFaaliyet .swiper-slide > a {
    width: 100%;
    display: flex;
}
.mySwiperHaber .card {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.mySwiperHaber .card-top {
    flex: 0 0 auto;
}
.mySwiperHaber .card-title {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.card-title .baslik {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.7em;
    line-height: 1.35;
}

/* =========================================================
   DROPDOWN MENÜ — 2026 zarif panel
   ========================================================= */
.navbar .nav-item.dropdown .dropdown-menu {
    width: 300px;
    padding: 10px;
    border: 1px solid rgba(16,118,188,0.10);
    border-radius: 16px;
    box-shadow: 0 26px 55px rgba(14,22,56,0.18);
    background: #ffffff;
}
.navbar .dropdown-menu.fade-down {
    top: 88%;
    transform: translateY(10px) scale(0.98);
    transform-origin: top center;
}
.navbar .nav-item:hover .dropdown-menu {
    top: 60px;
    transform: translateY(0) scale(1);
}
.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 28px;
    width: 14px;
    height: 14px;
    background: #fff;
    border-left: 1px solid rgba(16,118,188,0.10);
    border-top: 1px solid rgba(16,118,188,0.10);
    transform: rotate(45deg);
    border-radius: 3px 0 0 0;
}
.navbar .dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px !important;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy-deep);
}
.dropdown-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 10px;
    background: var(--renk6);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all .3s;
}
.dropdown-text { flex: 1 1 auto; }
.dropdown-arrow {
    font-size: 11px;
    opacity: 0;
    transform: translateX(-6px);
    transition: all .3s;
    color: var(--primary-blue);
}
.navbar .dropdown-item:hover {
    background: var(--renk6);
    color: var(--primary-blue);
    padding-left: 12px !important;
}
.navbar .dropdown-item:hover .dropdown-icon {
    background: var(--gradient2);
    color: #fff;
}
.navbar .dropdown-item:hover .dropdown-arrow {
    opacity: 1;
    transform: translateX(0);
}
.dropdown-footer {
    border-top: 1px solid rgba(16,118,188,0.08);
    margin-top: 6px;
    padding-top: 6px;
}
.dropdown-footer a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;
    color: var(--primary-blue);
    border-radius: 10px;
    transition: all .3s;
}
.dropdown-footer a:hover {
    background: var(--renk6);
}

/* =========================================================
   SLIDER / SWIPER OKLARI — 2026
   ========================================================= */
.swiper-button-next, .swiper-button-prev {
    --swiper-navigation-size: 18px;
    width: 46px !important;
    height: 46px !important;
    background: #ffffff;
    border: 1px solid rgba(16,118,188,0.14);
    border-radius: 50%;
    box-shadow: 0 12px 26px rgba(14,22,56,0.12);
    color: var(--primary-blue) !important;
    transition: all .35s;
    margin-top: -23px !important;
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 14px !important;
    font-weight: 700;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--gradient2);
    color: #fff !important;
    border-color: transparent;
    transform: scale(1.08);
    box-shadow: 0 16px 32px rgba(16,118,188,0.32);
}
.swiper-button-disabled {
    opacity: .35 !important;
}

.slider .swiper-button-next, .slider .swiper-button-prev {
    width: 54px !important;
    height: 54px !important;
    margin-top: -27px !important;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: none;
    color: #fff !important;
}
.slider .swiper-button-next:after, .slider .swiper-button-prev:after {
    font-size: 16px !important;
}
.slider .swiper-button-next:hover, .slider .swiper-button-prev:hover {
    background: var(--gradient2);
    border-color: transparent;
    box-shadow: 0 16px 36px rgba(16,118,188,0.4);
}
.slider .swiper-button-next { right: 32px; }
.slider .swiper-button-prev { left: 32px; }
@media screen and (max-width: 767px) {
    .slider .swiper-button-next, .slider .swiper-button-prev {
        width: 42px !important;
        height: 42px !important;
        margin-top: -21px !important;
    }
    .slider .swiper-button-next { right: 14px; }
    .slider .swiper-button-prev { left: 14px; }
}

/* =========================================================
   BREADCRUMB — cam kapsül
   ========================================================= */
.short-title { gap: 6px; }
.breadcrumb {
    display: inline-flex;
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 8px 20px;
    border-radius: 30px;
    margin-top: 16px !important;
}
.breadcrumb-item, .breadcrumb-item a {
    font-size: 13px;
}
.breadcrumb-item.active {
    color: var(--renk3) !important;
    font-weight: 600;
}
.breadcrumb-item + .breadcrumb-item::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f105";
    color: rgba(255,255,255,0.45);
    padding-right: .6rem;
}

/* =========================================================
   SAY-LIST — ilgili içerik yan menüsü
   ========================================================= */
.say-list {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    text-align: left;
    background: #ffffff;
    border: 1px solid rgba(16,118,188,0.12);
    padding: 10px 14px;
    margin-top: 10px;
    border-radius: 12px;
    color: var(--navy-deep);
    transition: all .3s;
}
.say-list img {
    width: 42px;
    height: 42px;
    border-radius: 9px;
    object-fit: cover;
    flex-shrink: 0;
}
.say-list span {
    font-size: 13px;
    font-weight: 600;
}
.say-list:hover {
    background: var(--renk6);
    border-color: rgba(16,118,188,0.3);
    transform: translateX(4px);
    color: var(--primary-blue);
}
.say-list.active {
    background: var(--gradient2);
    border-color: transparent;
    color: #fff;
}

/* =========================================================
   İLETİŞİM — bilgi kartları, form, harita
   ========================================================= */
.contact-info-card {
    background: #fff;
    border: 1px solid rgba(16,118,188,0.12);
    border-radius: 18px;
    padding: 26px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    height: 100%;
    transition: all .35s;
}
.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 42px rgba(16,118,188,0.14);
    border-color: rgba(16,118,188,0.3);
}
.contact-info-card .cic-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 14px;
    background: var(--gradient2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 10px 20px rgba(16,118,188,0.28);
}
.contact-info-card h5 {
    font-family: var(--font2);
    font-size: 15px;
    margin: 0 0 4px;
    color: var(--navy-deep);
}
.contact-info-card p, .contact-info-card a {
    margin: 0;
    font-size: 14px;
    color: #5b6577;
}
.contact-info-card a:hover {
    color: var(--primary-blue);
}

.contact-form-card {
    background: #fff;
    border: 1px solid rgba(16,118,188,0.10);
    border-radius: 22px;
    padding: 40px;
    box-shadow: 0 24px 60px rgba(14,22,56,0.06);
    height: 100%;
}
@media screen and (max-width: 575px) {
    .contact-form-card { padding: 26px 20px; }
}
.contact-form-card h3 {
    font-family: var(--font2);
    font-weight: 700;
    color: var(--navy-deep);
}
.contact-form-card .form-control {
    border: 1px solid #e3e8ef;
    border-radius: 12px;
    padding: 12px 16px;
    height: auto;
    font-size: 14px;
    margin-bottom: 16px;
    transition: all .3s;
}
.contact-form-card .form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(16,118,188,0.12);
    outline: none;
}
.contact-form-card textarea.form-control {
    min-height: 130px;
}

.map-card {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(16,118,188,0.10);
    min-height: 260px;
    box-shadow: 0 20px 45px rgba(14,22,56,0.08);
}
.map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 260px;
    border: 0;
    filter: grayscale(0.2) contrast(1.05);
    display: block;
}
.response-note {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 16px 18px;
    background: var(--renk6);
    border-radius: 14px;
    font-size: 13px;
    color: var(--navy-deep);
}
.response-note i {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    background: var(--gradient2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

/* =========================================================
   PRELOADER
   ========================================================= */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 30% 25%, rgba(37,170,225,0.35), transparent 50%),
        radial-gradient(circle at 75% 80%, rgba(255,255,255,0.08), transparent 45%),
        linear-gradient(160deg, var(--navy-deep) 0%, var(--renk1) 100%);
    opacity: 1;
    visibility: visible;
    transition: opacity .7s ease, visibility .7s ease;
    overflow: hidden;
}
.preloader::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.06;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 1px;
}
.preloader-rings span {
    position: absolute;
    top: 0;
    left: 0;
    width: 160px;
    height: 160px;
    margin: -80px 0 0 -80px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    transform: scale(0.5);
    opacity: 0;
    animation: preloaderPing 2.6s ease-out infinite;
}
.preloader-rings span:nth-child(2) { animation-delay: 0.7s; }
.preloader-rings span:nth-child(3) { animation-delay: 1.4s; }
@keyframes preloaderPing {
    0% { transform: scale(0.4); opacity: 0.9; }
    100% { transform: scale(1.9); opacity: 0; }
}

.preloader-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.preloader-ring-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 148px;
    height: 148px;
    margin: -74px 0 0 -74px;
    transform: rotate(-90deg);
    animation: preloaderSpin 1.6s linear infinite;
}
.preloader-ring-track {
    fill: none;
    stroke: rgba(255,255,255,0.14);
    stroke-width: 2;
}
.preloader-ring-progress {
    fill: none;
    stroke: var(--renk3);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-dasharray: 90 236.7;
}
@keyframes preloaderSpin {
    to { transform: rotate(270deg); }
}

.preloader-logo {
    position: relative;
    z-index: 2;
}
.preloader-logo img {
    height: 22px;
    width: auto;
    filter: brightness(0) invert(1);
    animation: preloaderPulse 1.8s ease-in-out infinite;
    margin-top: 100px;
}
@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.08); opacity: 1; }
}

.preloader-text {
    position: relative;
    z-index: 2;
    margin-top: 60px;
    color: rgba(255,255,255,0.55);
    font-family: var(--font1);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: preloaderFade 1.8s ease-in-out infinite;
}
@keyframes preloaderFade {
    0%, 100% { opacity: 0.35; }
    50% { opacity: 0.9; }
}

@media screen and (max-width: 575px) {
    .preloader-ring-svg { width: 120px; height: 120px; margin: -60px 0 0 -60px; }
    .preloader-rings span { width: 130px; height: 130px; margin: -65px 0 0 -65px; }
}

/* =========================================================
   404 SAYFASI
   ========================================================= */
.notFound {
    background:
        radial-gradient(circle at 15% 20%, rgba(37,170,225,0.30), transparent 50%),
        radial-gradient(circle at 85% 85%, rgba(255,255,255,0.08), transparent 45%),
        linear-gradient(160deg, var(--navy-deep) 0%, var(--renk1) 100%);
    padding-top: 170px;
    position: relative;
}
.eyebrow-light {
    color: rgba(255,255,255,0.85);
}
.notfound-title {
    font-family: var(--font2);
    font-weight: 800;
    font-size: clamp(32px, 5vw, 50px);
    color: #fff;
    letter-spacing: -0.5px;
    margin: 14px 0 18px;
}
.notfound-desc {
    color: rgba(255,255,255,0.65);
    font-size: 15px;
    line-height: 1.75;
    max-width: 440px;
    margin: 0 auto 30px;
}
.notfound-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.35);
    color: #fff !important;
    font-weight: 600;
    font-size: 14px;
    transition: all .3s;
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.12);
    border-color: #fff;
}
.btn-ghost i {
    font-size: 12px;
    transition: transform .3s;
}
.btn-ghost:hover i {
    transform: translateX(3px);
}
.notfound-illustration {
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 30px 55px rgba(0,0,0,0.3));
}
.notfound-links {
    border-top: 1px solid rgba(255,255,255,0.12);
}
a.contact-info-card {
    text-decoration: none;
    color: inherit;
}
@media (min-width: 992px) {
    .notfound-desc { margin-left: 0; margin-right: 0; }
    .notfound-actions { justify-content: flex-start; }
}

/* =========================================================
   ÜRÜN TEKNİK VERİ TABLOSU
   ========================================================= */
.spec-table-wrap {
    margin: 30px 0 10px;
    border: 1px solid rgba(16,118,188,0.12);
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 16px 36px rgba(14,22,56,0.06);
}
.spec-table-title {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    font-family: var(--font2);
    font-weight: 700;
    font-size: 14px;
    color: var(--navy-deep);
    border-bottom: 1px solid rgba(16,118,188,0.10);
}
.spec-table-title i {
    color: var(--primary-blue);
}
.spec-table-scroll {
    overflow-x: auto;
}
.spec-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.5px;
    white-space: nowrap;
}
.spec-table th, .spec-table td {
    padding: 12px 18px;
    text-align: center;
}
.spec-table thead th {
    background: var(--gradient2);
    color: #fff;
    font-family: var(--font2);
    font-weight: 700;
    font-size: 13px;
}
.spec-table tbody tr:nth-child(even) {
    background: var(--renk6);
}
.spec-table .spec-row-label {
    text-align: left;
    font-weight: 600;
    color: var(--navy-deep);
    white-space: normal;
    min-width: 170px;
}

/* =========================================================
   7/24 DESTEK HATTI KARTI — İletişim sayfası
   ========================================================= */
.support-card {
    position: relative;
    height: 100%;
    min-height: 380px;
    background:
        radial-gradient(circle at 20% 15%, rgba(37,170,225,0.30), transparent 55%),
        radial-gradient(circle at 85% 90%, rgba(255,255,255,0.08), transparent 45%),
        linear-gradient(160deg, var(--navy-deep) 0%, var(--renk1) 100%);
    border-radius: 22px;
    padding: 46px 34px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 24px 60px rgba(14,22,56,0.18);
}
.support-card .eyebrow {
    justify-content: center;
}
.support-icon-wrap {
    position: relative;
    width: 92px;
    height: 92px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.support-icon-wrap .ring {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    animation: preloaderPing 2.6s ease-out infinite;
}
.support-icon-wrap .ring:nth-child(2) { animation-delay: .7s; }
.support-icon-wrap .ring:nth-child(3) { animation-delay: 1.4s; }
.support-icon {
    position: relative;
    z-index: 2;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: var(--gradient2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 14px 30px rgba(16,118,188,0.45);
}
.support-number {
    display: block;
    font-family: var(--font2);
    font-weight: 800;
    font-size: 38px;
    letter-spacing: 1px;
    color: #fff !important;
    margin: 8px 0 14px;
    transition: color .3s;
}
.support-number:hover {
    color: var(--renk3) !important;
}
.support-desc {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    line-height: 1.7;
    max-width: 300px;
    margin: 0 0 26px;
}
@media screen and (max-width: 575px) {
    .support-number { font-size: 30px; }
}

/* Büyük harita kartı */
.map-card-lg {
    min-height: 480px;
}
.map-card-lg iframe {
    min-height: 480px;
}