
/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

/*** Genel ***/
* {
    -webkit-tap-highlight-color: transparent;
    outline: none !important;
}


body {
  overflow-x: hidden;
}


html, body {
  background: #000; /* Sitenin ana arka planı neyse */
  margin: 0;
  padding: 0;
  height: 100%;
  transform: none !important;
}


body {
  min-height: 100dvh; /* vh değil dvh */
}

section, nav, footer {
  background-clip: padding-box;
}


/*** Genel End ***/


/* HEADER */

.main-header{
    position: sticky;
    top:0;
    z-index:1000;
    background:#fff;
    border-bottom:1px solid #eee;
}

.main-header .navbar{
    height:88px;
}

.navbar-brand img{
    height:54px;
}

/* NAV LINKS */
.navbar-nav .nav-link{
    font-weight:500;
    font-size:15px;
    color:#333 !important;
    margin:0 12px;
    position:relative;
}

.navbar-nav .nav-link:hover{
    color:var(--bs-primary) !important;
}

/* underline animation */
.navbar-nav .nav-link::after{
    content:"";
    position:absolute;
    bottom:-6px;
    left:0;
    width:0;
    height:2px;
    background:var(--bs-primary);
    transition:.25s;
}

.navbar-nav .nav-link:hover::after{
    width:100%;
}

/* RIGHT SIDE */
.header-actions{
    display:flex;
    align-items:center;
    gap:18px;
}

.header-phone{
    text-decoration:none;
    color:#333;
    font-weight:500;
}

.header-phone i{
    color:var(--bs-primary);
    margin-right:6px;
}

.header-cta{
    padding:10px 18px;
    border-radius:30px;
    font-weight:600;
}

/* DROPDOWN */
.dropdown-menu{
    border:none;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    border-radius:12px;
    padding:10px;
}

.dropdown-item{
    border-radius:8px;
    padding:8px 12px;
}

.dropdown-item:hover{
    background:#f4f7fb;
}

/* MOBILE */
@media (max-width:991px){

    .header-actions{
        flex-direction:column;
        align-items:flex-start;
        margin-top:15px;
    }

    .header-phone span{
        display:none;
    }
}

/*** Yeni Navbar END ***/

/*** Video Start ***/

.hero-video {
  height: 80dvh;
  overflow: hidden;
  display: block;
}

/* Video */
.hero-video-element {
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay videonun ÜZERİNDE */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
}

/* Yazı altı shade (sadece yazı kadar) */
.hero-text-shade {
  display: inline-block;
  background: rgba(0, 0, 0, 0.45);
  padding: 1.5rem 2rem;
  border-radius: 10px;
}

/*** Video End ***/

/*** Carousel Start ***/

.c-item {
height: 600px;

}

.c-img {
height: 100%;
object-fit: cover;
filter: brightness(0.7);
}

.custom-list {
  list-style: none;      /* default bullet kapat */
  padding-left: 0;
}

.custom-list li {
  display: flex;
  align-items: center;
  gap: 1.2rem;           /* ikon – yazı arası */
  margin-bottom: 0.6rem;
}

.custom-list i {
  color: #6ec1ff;        /* buz mavisi */
  font-size: 1em;
  flex-shrink: 0;
}


/*** Carousel End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 40px;
    height: 40px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-xl-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
}

/*** Navbar Start ***/
.header-top .topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
}

.header-top .topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 12px;
    border: 0;
    transition: .5s;
    opacity: 1;
}

.header-top {
    height: 125px;
    position: relative;
}

.header-top::after {
    content: "";
    position: absolute;
    overflow: hidden;
    width: 50%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--bs-dark);
    z-index: 1;
}

.header-top .container {
    position: relative;
    z-index: 999;
}

@media (min-width: 992px) {
    .header-top::before {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 100%;
        height: 45px;
        top: 0;
        right: 0;
        background: var(--bs-dark);
        z-index: -1;
    }

    .navbar-brand-2 {
        display: none;
    }
}

@media (max-width: 991px) {
    .header-top {
        max-height: 80px;
    }

    .navbar {
        justify-content: space-between;
    }

    .header-top .container {
        max-height: 80px;
    }

    .navbar-brand {
        display: none;
    }

    .navbar-brand-2 {
        position: relative;
        overflow: hidden;
        width: 200px;
        height: 100%;
        padding: 0;
        display: flex;
        align-items: center;
        z-index: 99;
    }

    .navbar-brand-2::before {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 100%;
        height: 600px;
        top: -200px;
        right: 18px;
        background: var(--bs-dark);
        transform: rotate(-18deg);
        z-index: -1;
    }

    .navbar-brand-2::after {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 5px;
        height: 600px;
        top: -200px;
        right: 18px;
        background: var(--bs-primary);
        transform: rotate(-18deg);
        z-index: -1;
    }

    .navbar.navbar-light {
        height: 100%;
        padding: 0;
    }

    .navbar .navbar-collapse {
        margin-top: -20px;
    }

}

.nav-bar .navbar {
    height: 100%;
    background: var(--bs-white);
    position: relative;
    z-index: 9;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 0;
    margin-right: 20px;
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: var(--bs-primary);
}

@media (max-width: 991px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 12px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        margin-left: 50px;
        background: var(--bs-light);
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        flex-direction: column;
    }

    .navbar .navbar-nav .nav-btn a.btn {
        margin-right: 15px;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu .dropdown-item:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .nav-bar .navbar::before {
        position: absolute;
        content: "";
        width: 50px;
        height: 100%;
        top: 0;
        left: -49px;
        background: var(--bs-white);
    }

    .navbar .nav-btn {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar .navbar-nav .nav-btn {
        width: 100%;
        display: flex;
        margin-left: auto;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 19px;
        background: var(--bs-white);
        transition: .5s;
        opacity: 1;
    }

    .header-top .navbar-brand {
        position: relative;
        overflow: hidden;
        padding: 40px 50px 40px 0;
        z-index: 99;
    }
    
    .navbar-brand::before {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 300px;
        height: 600px;
        top: -200px;
        right: 18px;
        background: var(--bs-dark);
        transform: rotate(-18deg);
        z-index: -1;
    }
    
    .navbar-brand::after {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 5px;
        height: 600px;
        top: -200px;
        right: 18px;
        background: var(--bs-primary);
        transform: rotate(-18deg);
        z-index: -1;
    }
}
/*** Navbar End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/banner-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/

/*** Service Start ***/
.service .nav .nav-item {
    width: 75%;
    border: 1px solid var(--bs-primary);
    background: var(--bs-light);
}

.service .nav .nav-item a {
    display: flex;
    justify-content: center;
}


.owl-stage-outer {
    margin-right: -1px;
}
.service .nav-item a.active {
    background: var(--bs-primary);
}

.service .nav-item a span {
    color: var(--bs-dark);
}

.service .nav-item a.active span {
    color: var(--bs-white);
}

.service-carousel .owl-nav .owl-prev,
.service-carousel .owl-nav .owl-next {
    position: absolute;
    padding: 10px 35px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-dark);
    background: var(--bs-light);
    transition: 0.5s;
}

.service-carousel .owl-nav .owl-prev:hover,
.service-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .service-carousel .owl-nav .owl-prev {
        top: 0;
        left: -115px;
    }
    
    .service-carousel .owl-nav .owl-next {
        bottom: 0;
        left: -115px;
    }
}

@media (max-width: 991px) {
    .owl-stage-outer {
        margin-bottom: 70px;
    }
    .service-carousel .owl-nav .owl-prev {
        bottom: -70px;
        left: 0;
    }

    .service-carousel .owl-nav .owl-next {
        bottom: -70px;
        right: 0;
    }

    .service .nav {
        display: flex;
        justify-content: center;
    }
}
/*** Service End ***/

/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
}

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: 20px; right: -100%;
    z-index: 9;
    transition: 0.5s;
}

.team .team-item:hover .team-img .team-icon {
    right: 25px;
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: rgba(246, 138, 10, .2);
    transition: 0.5s;
    z-index: 1;
}

.team .team-item:hover .team-img::after {
    height: 100%;
}

.team .team-item .team-content {
    transition: 0.5s;
}

.team .team-item:hover .team-content {
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
}
/*** Team End ***/

/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
    margin-right: -1px;
}

.testimonial .testimonial-item {
    position: relative;
    margin-top: 35px;
}

.testimonial .testimonial-item .customer-text {
    border: 1px solid var(--bs-primary);
    border-top: none;
}

.testimonial .testimonial-item .testimonial-quote {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 0;
    right: 25px;
    transform: translateY(-50%);
    color: var(--bs-dark);
    background: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-item .testimonial-inner {
    display: flex;
    align-items: center;
    background: var(--bs-white);
}

.testimonial .testimonial-item .testimonial-inner img {
    width: 100px; 
    height: 100px;
    border: 2px solid var(--bs-primary);
}

.testimonial-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    margin: 30px 10px 0 10px;
    background: var(--bs-white);
    transition: 0.5s;
}

@media (max-width: 991px) {
    .testimonial-carousel .owl-dots .owl-dot {
        margin: 0 10px 0 10px;
    }
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    background: var(--bs-primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    margin-right: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot.active span::after {
    background: var(--bs-white);
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-primary);
    transition: 0.5s;
}
/*** Testimonial End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover {
    color: var(--bs-primary);
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);
}
/*** copyright end ***/

/*** ürün katalog ***/

.product-gallery .main-image {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 12px;
}

.product-gallery .main-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: 0.4s ease;
}

.product-gallery .thumbs {
    justify-content: flex-start;
}

.product-gallery .thumb {
    width: 78px;
    height: 78px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .25s ease;
    opacity: .7;
}

.product-gallery .thumb:hover {
    transform: scale(1.05);
    opacity: 1;
}

.product-gallery .thumb.active {
    border-color: #0d6efd;
    opacity: 1;
}

/* MOBILE */
@media (max-width: 768px) {
    .product-gallery .main-image img {
        height: 260px;
    }

    .product-gallery .thumb {
        width: 64px;
        height: 64px;
    }

    .thumbs {
        overflow-x: auto;
        flex-wrap: nowrap !important;
        padding-bottom: 5px;
    }
}

/*** ürün katalog end ***/


/*** hizmetler ***/


.service-section {
    background: #f6f8fb;
}

.service-image img {
    width: 100%;
    object-fit: cover;
}

.service-content {
    padding-left: 40px;
}

.service-subtitle {
    letter-spacing: 2px;
    font-weight: 600;
    color: #7a8aa0;
    margin-bottom: 12px;
    font-size: 13px;
}

.service-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1b2a41;
}

.service-desc {
    font-size: 17px;
    color: #5c6b7a;
    line-height: 1.7;
    margin-bottom: 30px;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 28px;
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #2c3e50;
    font-weight: 500;
}

.feature-item i {
    color: #0d6efd;
    margin-right: 12px;
    font-size: 18px;
}

/*** hizmetler end ***/

/*** contact start ***/

.contact-section {
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.contact-card,
.contact-form-card {
    border: 1px solid rgba(0,0,0,0.06);
}

.contact-info a {
    color: inherit;
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--bs-primary);
}

.form-control {
    border: 1px solid #e5e7eb;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--bs-primary);
}

.map-wrapper iframe {
    filter: grayscale(20%) contrast(95%);
}

/*** contact end ***/

/*** footer start ***/

.footer-section {
    background: #0f172a;
    font-size: 14px;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: .4px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,.65);
    text-decoration: none;
    transition: all .25s ease;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-features li {
    color: rgba(255,255,255,.75);
    margin-bottom: 8px;
}

.footer-contact a {
    color: rgba(255,255,255,.8);
    text-decoration: none;
}

.footer-contact a:hover {
    color: #fff;
}

.footer-bottom {
    opacity: .9;
}

/*** footer end ***/

/* WHATSAPP WIDGET */

.whatsapp-widget{
    position: fixed;
    right: 18px;
    bottom: calc(22px + env(safe-area-inset-bottom));
    z-index: 2147483647; /* maksimum katman */

    /* Chrome mobile fixed bug fix */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.wa-button{
    display: flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: #fff;
    padding: 12px 18px;
    border-radius: 60px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
    transition: transform .25s ease, box-shadow .25s ease;
    font-family: inherit;

    /* Chrome tap highlight kaldırır (mobil beyaz parlamayı da keser) */
    -webkit-tap-highlight-color: transparent;
}

.wa-button:hover{
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0,0,0,.35);
    color: #fff;
}

.wa-icon{
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size: 22px;
}

.wa-text{
    display:flex;
    flex-direction:column;
    line-height:1.1;
}

.wa-text small{
    opacity:.85;
    font-size:12px;
    font-weight:400;
}

/* Mobilde sadece ikon */
@media (max-width:768px){

    .whatsapp-widget{
   position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 999999 !important;
    /* Donanım ivmelendirmesini açarak titremeyi engeller */
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    /* Scroll sırasında kaybolmasını engellemek için */
    pointer-events: auto;
    }

    .wa-text{
        display:none;
    }

    .wa-button{
        padding:12px;
        border-radius:50%;
    }

    .wa-icon{
        background:transparent;
        width:auto;
        height:auto;
        font-size:28px;
    }
}

/* WHATSAPP WIDGET END */



/* hakkımızda  */

/* spacing */
.py-6{
    padding:110px 0;
}

/* badge */
.about-badge{
    font-size:13px;
    letter-spacing:1px;
    text-transform:uppercase;
    color:#0d6efd;
    font-weight:600;
}

/* title */
.about-title{
    font-size:40px;
    font-weight:700;
    line-height:1.25;
    color:#111;
}

/* text */
.about-text{
    font-size:17px;
    color:#5f6b7a;
    line-height:1.8;
    margin-bottom:18px;
}

/* features */
.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
}

.feature{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:500;
    color:#222;
}

.feature i{
    width:42px;
    height:42px;
    background:#f3f6fb;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#0d6efd;
}

/* premium button */
.btn-premium{
    display:inline-block;
    background:#0d6efd;
    color:#fff;
    padding:14px 30px;
    border-radius:10px;
    font-weight:600;
    text-decoration:none;
    transition:.25s;
}

.btn-premium:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 28px rgba(13,110,253,.25);
}

/* image card */
.about-card{
    position:relative;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 25px 70px rgba(0,0,0,.12);
}

.about-main-img{
    width:100%;
    height:520px;
    object-fit:cover;
}

/* experience box */
.experience-box{
    position:absolute;
    left:25px;
    bottom:25px;
    background:#fff;
    padding:22px 28px;
    border-radius:14px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.experience-year{
    font-size:42px;
    font-weight:800;
    color:#0d6efd;
    line-height:1;
}

.experience-box span{
    font-size:14px;
    color:#666;
}

/* sub image */
.about-sub-img{
    position:absolute;
    right:-35px;
    bottom:70px;
    width:220px;
    border-radius:16px;
    box-shadow:0 20px 50px rgba(0,0,0,.18);
    border:6px solid #fff;
}

/* hakkımızda END */

/* HERO TRUST BAR CENTER FIX */
.hero-trust{
    position:absolute;
    left:0;
    right:0;
    bottom:40px;

    display:flex;
    justify-content:center;   /* TAM ORTA */
    align-items:center;
    gap:28px;

    z-index:5;
}

/* container etkisini iptal et */
.hero-trust.container{
    max-width:none !important;
    padding-left:0 !important;
    padding-right:0 !important;
}

/* kutular */
.trust-box{
    min-width:160px;
    padding:18px 28px;

    background:rgba(255,255,255,0.92);
    backdrop-filter:blur(8px);

    border-radius:14px;
    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,0.15);
    transition:.25s ease;
}

.trust-box:hover{
    transform:translateY(-4px);
    box-shadow:0 16px 40px rgba(0,0,0,0.22);
}

.trust-box h3{
    font-weight:700;
    margin:0;
    color:#0d6efd;
}

.trust-box span{
    font-size:.9rem;
    color:#555;
}

/* mobil */
@media(max-width:768px){
    .hero-trust{
        position:static;
        margin-top:25px;
        flex-wrap:wrap;
    }
}

/* LOGO FIX */
.main-logo{
    height:80px;
    display:flex;
    align-items:center;
}

.main-logo img{
    max-height:60px;
    width:auto;
    height:auto;
    object-fit:contain;
}

/* navbar yüksekliğini sabitle */
.nav-bar{
    height:80px !important;
}

/* top bar sabitle */
.topbar{
    height:45px !important;
    display:flex;
    align-items:center;
}

/* mobil */
@media (max-width:991px){

    /* soldaki büyük logo gizle */
    .main-logo{
        display:none !important;
    }

    /* mobilde navbar içindeki logo */
    .navbar-brand-2 img{
        max-height:42px;
        width:auto;
    }

    .nav-bar{
        height:70px !important;
    }
}

/* Sadece mobilde logo küçült */
@media (max-width: 991px){
    .navbar-brand img{
        max-height: 42px !important;
        width: auto;
        height: auto;
    }
}

/* MOBILE CHROME NAVBAR BACKGROUND FIX */
@media (max-width: 991px){

    .header-top{
        background:#0f1721; /* senin siyah bar rengin */
    }

    .header-top .container{
        min-height:80px;
    }

    .navbar-brand img{
        max-height:48px;
        width:auto;
    }

}

/* ===== MOBILE NAVBAR LAYER FIX ===== */
@media (max-width: 991px){

    /* Navbar üstte kalsın */
    .header-top{
        position: relative;
        z-index: 1050;
    }

    /* Collapse menu gerçek dropdown gibi davransın */
    .navbar-collapse{
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0f1721; /* navbar siyah rengin */
        z-index: 2000;
        padding: 15px 20px;
        border-top: 1px solid rgba(255,255,255,0.08);
    }

    /* Menü linkleri beyaz */
    .navbar-nav .nav-link{
        color: #fff !important;
        padding: 12px 0;
    }

    .navbar-nav .dropdown-menu{
        position: static;
        background: transparent;
        border: none;
        padding-left: 15px;
    }

    .navbar-nav .dropdown-item{
        color: #cbd5e1;
        padding: 10px 0;
    }

    .navbar-nav .dropdown-item:hover{
        color: #fff;
        background: transparent;
    }

    /* Hamburger icon görünür olsun */
    .navbar-toggler{
        border: none;
        color: #fff;
        font-size: 26px;
    }

}

/* ===== MOBILE MENU BACKGROUND FIX ===== */
@media (max-width: 991px){

    /* Bootstrap bg-white'i iptal et */
    .navbar-nav.bg-white{
        background: transparent !important;
    }

    /* Açılan menünün gerçek arkaplanı */
    .navbar-collapse{
        background: #0f1721 !important;
        box-shadow: 0 18px 40px rgba(0,0,0,.35);
    }

    /* Menü öğeleri okunur olsun */
    .navbar-nav .nav-link{
        color:#ffffff !important;
    }

    .navbar-nav .nav-link.active{
        color:#4cc9f0 !important;
    }

}

/* ===== MOBILE NAVBAR BAR BACKGROUND FIX ===== */
@media (max-width: 991px){

    /* hamburger ikonunun bulunduğu bar */
    .nav-bar{
        background:#0f1721 !important;
    }

    /* navbar içi de siyah olsun */
    .nav-bar .navbar{
        background:#0f1721 !important;
    }

    /* hamburger ikon rengi */
    .navbar-toggler{
        border-color:rgba(255,255,255,.25);
    }

    .navbar-toggler .fa-bars{
        color:#ffffff;
    }

}

.hero-video-element{
    opacity:0;
    transition:opacity .6s ease;
    background:#000;
}

.hero-video-element.video-ready{
    opacity:1;
}
