﻿body{
    position: relative;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: "Work Sans", sans-serif;
    font-weight: 300;
    font-size: 16px;
    background-color: #f9f6f3;
}

:root {
    --animate-duration: 1s;
    --animate-delay: 1s;
    --animate-repeat: 1;
    --font1:"Work Sans", sans-serif;
    --cut: 60px;
}

/* Scrollbar genişliği */
::-webkit-scrollbar {
  width: 10px;
}

/* Scroll arka planı */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Scroll hareket eden bar */
::-webkit-scrollbar-thumb {
  background: #343497;
  border-radius: 10px;
}

/* Hover durumu */
::-webkit-scrollbar-thumb:hover {
  background: #343497;
}

* {
  scrollbar-width: thin;              /* auto | thin | none */
  scrollbar-color: #343497 #f1f1f1;       /* thumb | track */
}

#preloader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 1s ease, visibility 1s ease;
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-content img {
    max-width: 220px;
    animation: logoAnim 3s ease-in-out infinite;
}

@keyframes logoAnim {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    40% {
        opacity: 1;
        transform: scale(1);
    }
    70% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.05);
    }
}

body.loading {
    overflow: hidden;
}


.animate__animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}


a
{
	color:#000;
	text-decoration:none;
}


a:hover, a:focus
{
	color:#000;
	text-decoration:none;
}


/* Varsayılan durum (sayfa en üstte) */
#navbar {
    background: #fff;
    transition: all 0.4s ease;
    border-radius: 50px;
    width: 95%;
}

/* Üstteyken yazılar beyaz */
#navbar .nav-link,
#navbar .navbar-brand {
    color: #000;
    transition: color 0.4s ease;
}

/* Scroll sonrası – beyaz menü */
#navbar.scrolled {
    background: #fff;
    box-shadow: 0 5px 25px rgba(0,0,0,.08);
}

/* Scroll sonrası yazılar siyah */
#navbar.scrolled .nav-link,
#navbar.scrolled .navbar-brand {
    color: #000;
}



/* Sabit menü */
#navbar.fixed {
    position: fixed;
    top: 10px;
    left: 3%;
    width: 95%;
    z-index: 9998;
}

.logo-two { display: none; }

#navbar.scrolled .logo-one { display: none; }
#navbar.scrolled .logo-two { display: block; }



.rightnav
{
    display: flex;
    gap: 10px;
    list-style: none;
    margin:0;
    padding-left: 0;
    align-items: center;
}

.menubg {
    position: absolute;
    margin: 0px;
    width: 100%;
    font-weight: 400;
    background-color: transparent;
    top:15px;
  }
  
  
  .menubg .navbar{
    position: relative;
    left: 0;
    width: 100%;
    z-index: 9;
    transition: all .5s;
  }
  .menubg .navbar.header{
    background-color: #fff;
    padding-top: 0px!important;
    padding-bottom: 0px!important;
    z-index: 999;
    top: 0px;
    border-bottom: 1px solid #efefef;
    position:fixed;
  }
  
  
  .menubg .navbar .navbar-brand img{
    transition: ease-in-out .5s;
    max-height:70px;
  }
  
      .menubg .navbar .navbar-nav li a {
          font-size: 17px;
          color: #000;
          position: relative;
          font-weight: 500;
      }
  
  .menubg .navbar .navbar-nav .nav-item .nav-link {
      padding: 10px 15px;  
  }
  
      .menubg .navbar.header .navbar-nav .nav-item .nav-link {
          color: #16181b;
      }
  
      .menubg .navbar .navbar-nav .nav-item .nav-link:hover {
        transition: transform .3s;
        color: #24aea4;
    }
   
  
  .navbar .nav-item {
      position: relative;
  }
  
  .search-bar svg
  {
      fill:#fff;
  }
  
  .lang-bar, .lang-bar a {
      color: #fff;
      font-weight: 400;
      margin:0px 5px;
  }
  
  .navbar.header .search-bar svg {
      fill: #000;
  }
  
  .navbar.header .lang-bar, .navbar.header .lang-bar a {
      color: #000;
      font-weight: 400;
  }
  
  .menubg .navbar-nav .nav-item.dropdown .dropdown-menu {
      background-color: #fff;
      display: block;
      visibility: hidden;
      opacity: 0;
      padding: 0px 10px;
  }
  
  .menubg .navbar-nav .nav-item.dropdown .dropdown-menu::after{
    content: "";
    position: absolute;
    top: -20px;
    height: 20px;
    width: 100%;
    left: 0;
    background-color: transparent;
  }
  
  .menubg .navbar-nav .nav-item +.megadrop
  {
      width: 100%;
      background-color: #16181b;
      position: absolute;
      left: 0;
      top: 0;
      display: none;
  }
  
  
  .menubg .navbar-nav .nav-item.dropdown .dropdown-menu li{
    padding: 3px 0px;
  }
  .menubg .navbar-nav .nav-item.dropdown .dropdown-menu li .dropdown-item{
    color: #000000;
    text-align: left;
    padding: 0px;
    font-size: 15px;
    font-weight: 400;
    transition: ease-in-out .5s;
    padding:5px 10px; 
  }
  .menubg .navbar-nav .nav-item.dropdown .dropdown-menu li .dropdown-item:hover{
    background-color: transparent;
    color: #24aea4;
  }
  .menubg .navbar-nav .nav-item.dropdown:hover .dropdown-menu{
    visibility: visible;
    opacity: 1;
  }
  
  .sticky 
  {
    border-bottom: 1px solid #ccc;
  -webkit-box-shadow:0px 6px 5px 0px rgba(50, 50, 50, 0.75);
  -moz-box-shadow:0px 6px 5px 0px rgba(50, 50, 50, 0.75);
  box-shadow:0px 6px 5px 0px rgb(142, 142, 142);
  }
  
  .logo-two {
      display: none;
  }
  
  .fixed-top .logo-one {
      opacity: 0;
      visibility: hidden;
      display: none;
  }
  
  .fixed-top .logo-two {
      opacity: 1;
      visibility: visible;
      display: block;
  }
  
  .menu-hover-effect-1 a {
    transition: color 0.2s linear 0s;
  }
  .menu-hover-effect-1 a:before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10%;
    background-color: #ca0010;

    border-radius: 30px;
    z-index: 0;
    transform: scale(0.3, 1);
    opacity: 0;
  }
  .menu-hover-effect-1 a:hover {
    color: #fff;
  }
  .menu-hover-effect-1 a:hover:before {
    transform: scale(1, 1);
    opacity: 1;
    transition: all 0.2s linear 0s;
  }
  
  
  
  
  /*/-/-/-/-/-//Mobil-Menu/-/-/-/-/-//*/
  
  .sidenav {
      height: 100%;
      width: 0;
      position: fixed;
      z-index: 999;
      top: 0;
      left: 0;
      background-color: #023e7c;
      overflow-x: hidden;
      transition: 0.5s;
      padding-top: 80px;
  }

  .sidenav .accordion-menu
  {
    list-style: none;
  }
  
  .sidebar_active {
      width: 450px;
  }
  .mobil_dropdown_content .accordion-menu .nav_mobil:nth-child(1) {
      animation-delay: .5s;
  }
  .mobil_dropdown_content .accordion-menu .nav_mobil:nth-child(2) {
      animation-delay: .7s;
  }
  .mobil_dropdown_content .accordion-menu .nav_mobil:nth-child(3) {
      animation-delay: .9s;
  }
  .mobil_dropdown_content .accordion-menu .nav_mobil:nth-child(4) {
      animation-delay: 1.1s;
  }
  .mobil_dropdown_content .accordion-menu .nav_mobil:nth-child(5) {
      animation-delay: 1.2s;
  }
  .mobil_dropdown_content .accordion-menu .nav_mobil:nth-child(6) {
      animation-delay: 1.3s;
  }
  .mobil_dropdown_content .accordion-menu .nav_mobil:nth-child(7) {
      animation-delay: 1.4s;
  }
  .mobil_dropdown_content .accordion-menu .nav_mobil:nth-child(8) {
      animation-delay: 1.5s;
  }
  #dismiss_mobil {
      position: absolute;
      top: 20px;
      right: 5%;
      font-size: 25px;
      color:#ffffff;
      cursor:pointer;
  }
  .accordion-menu {
      width: 100%;
  }
  .mobil_dropdown_content .dropdown-item:focus, .dropdown-item:hover {
      color: #16181b;
      text-decoration: none;
      background-color: transparent;
  }
  .dropdownlink {
      cursor: pointer;
      display: block;
      font-size: 18px;
      color: #ffffff;
      font-weight:700;
      position: relative;
      -webkit-transition: all 0.4s ease-out;
      transition: all 0.4s ease-out;
      padding:5px;
  }
  .dropdownlink i {
      position: absolute;
      top: 6px;
      left: 16px;
  }
  .dropdownlink .fa-chevron-down {
      right: 10px;
      left: auto;
  }
  .submenuItems {
      display: none;
  }
  .submenuItems a {
      display: block;
      color: #727272;
      padding: 12px 12px 12px 45px;
      -webkit-transition: all 0.4s ease-out;
      transition: all 0.4s ease-out;
  }
  .mobil_dropdown_content{
      padding-top:20px;
  }
  .submenuItems a:hover {
      color: #fff;
  }
  .sidenav_ul ul {
      margin-bottom: 0px;
  }
  .sidenav_ul ul li {
      padding: 5px 5px;
  }
  .sidenav_ul ul li a {
      font-size: 18px;
      font-weight: 700;
      color: #ffffff;
      padding: 5px;
      white-space: nowrap
  }
  ul.submenuItems {
      margin-top: 15px;
  }
  .nav_mobil_bg .accordion-menu {
      background: transparent;
  }
  .sidenav_ul ul li .mobil_link {
      white-space: nowrap
  }
  .sidenav_ul ul li a::after {
      display: none;
  }
  .sidenav_ul .dropdown-menu {
      width: 100%;
      box-shadow: none;
      border: none;
  }
  .accordion-menu ul li {
      padding: 5px;
  }
  .mobil_social li {
      display: inline-block;
      padding: 5px !important;
      border-bottom: none !important;
  }
  .sidenav_ul ul li .mobil_link span {
      font-size: 18px;
      font-weight: 500;
      padding-left: 5px;
  }
  .overlay_mobil_bg {
      position: fixed;
      width: 100%;
      height: 100vh;
      background: rgba(0, 0, 0, 0.4);
      z-index: 999;
      display: none;
      transition: all 0.5s ease-in-out;
      top: 0;
  }
  .overlay_mobil_bg_active {
      display: block;
      opacity: 1;
  }
  .wrapper-menu {
    width: 30px;
    height: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: transform 330ms ease-out;
  }
  .wrapper-menu.open {
    transform: rotate(-45deg);  
  }
  .line-menu {
    background-color: #023e7c;
    width: 100%;
    height: 4px;
  }
  .line-menu.half {
    width: 50%;
  }
  .line-menu.start {
    transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
    transform-origin: right;
  }
  .open .line-menu.start {
    transform: rotate(-90deg) translateX(3px);
  }
  .line-menu.end {
    align-self: flex-end;
    transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
    transform-origin: left;
  }
  .menubg .navbar.header .line-menu {
    background-color: #023e7c;
    width: 100%;
    height: 4px;
  }
  .menubg .navbar.header .line-menu.half {
    width: 50%;
  }
  .menubg .navbar.header .line-menu.start {
    transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
    transform-origin: right;
  }
  .menubg .navbar.header .open .line-menu.start {
    transform: rotate(-90deg) translateX(3px);
  }
  .menubg .navbar.header .line-menu.end {
    align-self: flex-end;
    transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
    transform-origin: left;
  }
  
  .mobil_menu .menu_lang {
      animation-delay: .5s;
      display: inline-block;
      margin-bottom: 0;
  }
  .mobil_social {
      animation-delay: 1.5s;
  }
  .mobil_social li,
  .mobil_menu .menu_lang li {
      display: inline-block;
      padding: 5px;
  }
  .navbar_mobil_bg{
      display:none;
  }
  #mobil_btn{
      display:none
  }
  @media(max-width:991px){
    #mobil_btn {
      display: block;
    }
    .deskop_menu .navbar .navbar-brand img {
      max-height: 60px;
    }
  }
  @media(max-width:565px){
    .sidebar_active {
        width: 70%;
    }
     .deskop_menu .navbar .navbar-brand img {
      max-height: 60px;
      position:absolute;
      left:10px;
      top:10px;
    }
  
  }


/*Banner css alanı*/
  .banneralan
  {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;

  }



  .banneralan .carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 25%;
    left: 15%;
    color: #fff;
    text-align: left;
    padding: 30px;
}


.banneralan .carousel-caption h5{
    color: #fff;
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 600;
    font-family: var(--font1);
    text-align: center;
}

.banneralan .carousel-caption p{
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 400;
    font-family: var(--font1);
    
}

.banneralan .carousel-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #3a3a3a69;
}


.banneralan .dtybtn
{
    background-color: #343497;
    padding: 10px 15px;
    border:0px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: 300;
}

.banneralan .dtyicon
{
    background-color: #343497;
    padding:  10px 15px;
    margin-left:10px;
    border:0px;
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    transition: .3s;
}

.banneralan .dtyicon i
{
    transform: rotate(-30deg);
    transition: .3s;
    position: relative;
    display: block;
}

.banneralan .btnx:hover .dtyicon
{
    transition: .3s;
}

.banneralan .btnx:hover .dtyicon i
{
    transform: rotate(0deg);
    transition: .3s;
    position: relative;
    display: block;
}

.boxalan
{
    position: relative;
    width: 100%;
    padding: 5% ;
    margin: 0;
    background-color:  #f9f6f3;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    top: -130px;
    padding-top: 0px;
}


.boxalan  .abouttitle
{
    color: #ca0036;
    margin-bottom: 25px;
}

.boxalan .abouttext p
{
    font-size: 20px;
    font-weight: 400;
    line-height: 1.8;
}



.stat-box {
    width: 100%;
    height: 100%;
    background: #fff;
    border: 1px solid #bbbbbb;
    padding: 25px;
    position: relative;

    /* sağ alt köşe kırpma */
    clip-path: polygon(
        0 0,
        100% 0,
        100% 80%,
        85% 100%,
        0 100%
    );

    transition: all 0.3s ease;
}

.stat-box::after {
content: "";
    position: absolute;
    bottom: 20%;
    right: 0;
    width: 18%;
    height: 2px;
    background: #bbbbbb;
    transform: rotate(-35deg);
    transform-origin: right bottom;
}


/* Hover efekti (opsiyonel) */
.stat-box:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.stat-box .icon img {
    width: 70px;
    margin-bottom: 40px;
}
.stat-box .label {
    margin-top: 10px;
    font-size: 20px;
    font-weight: 400;
    color: #111;
}

.formpages
{
    position: relative;
    width: 100%;
    padding: 3%;
    background-color:  #f9f6f3;
}

.formpages .formimg
{
    border-radius: 30px;
    width: 100%;
    margin: 0;
    padding: 0;
    height: 100%;
}

.section5Form
    {
        padding: 2rem;
        background-color: #fff;
        border-radius: 30px;
    }

    .section5Form-title
    {
        font-size: 2rem;
        font-weight: 400;
        line-height: 1.1;
        color: #343497;
        margin-bottom: 15px;
    }
.section5Form-text
{
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5rem;
    word-break: break-word;
    text-wrap: pretty;
    color: #000;
     margin-bottom: 15px;
}



.newspage
{
    position: relative;
    width: 100%;
    padding: 5%;
    background-color:  #f9f6f3;
    padding-bottom: 2%;
}

.hbrbox img
{
    border-radius: 30px;
    width: 100%;
    margin-bottom: 20px;
}


.newspage .news-title
{
    font-size: 40px;
    font-weight: 500;
    color: #000;
}

.hbrbox 
{
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    transition: .3s;
}

.hbrbox:hover
{
    transition: .3s;
    transform: translate(0px,-10px);
}


.hbrbox  .hbr-title
{
    color: #000;
    font-size: 20px;
    font-weight: bold;
    margin-top: 15px;
}

.hbrbox .hbrbadge
{
    border: 1px solid #ca0036;
    border-radius: 30px;
    padding: 5px 20px;
    font-size: 14px;
    font-weight: bold;
    color: #ca0036;
}

.productpage
{
    position: relative;
    width: 100%;
    margin: 0;
    padding-bottom: 3%;
    padding-top: 3%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
        margin-top: -3%;
}

.productpage::before
{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
     background: linear-gradient(90deg, rgb(0 0 0 / 9%) 0%, rgb(0 0 0 / 66%) 50%, rgb(0 0 0 / 11%) 100%);
    z-index: 9;
}

.productpage .product-title
{
    font-size: 1.875em;
    font-weight: bold;
    color: #fff;
}

.productpage .product-text
{
    font-size: 30px;
    font-weight: 300;
    line-height: 1.3;
    width: 80%;
    margin: 0 auto;
    color: #fff;
}

  .productpage .stat-box-product {
    width: 100%;
    height: 100%;
    position: relative;

    /* sağ alt köşe kırpma */
    clip-path: polygon(
        0 0,
        100% 0,
        100% 80%,
        85% 100%,
        0 100%
    );

    transition: all 0.3s ease;
}

  .productpage .stat-box-product:hover
  {
    transform: translate(0px,-10px);
    transition: .3s;
  }

  .productpage .stat-box-product::before
  {
    content: "";
    background-color: #8e8e8e0f;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }

  .productpage .product-tt
{
    position: absolute;
    left: 15px;
    bottom: 8%;
    color: #000;
    font-size: 25px;
    font-weight: 500;
}

 .dtybtn
{
    background-color: #343497;
    padding: 10px 15px;
    border:0px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    border-radius: 50px;
}

 .dtyicon
{
    background-color: #343497;
    padding:  10px 15px;
    border:0px;
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    transition: .3s;
    border-radius: 50px;
    margin-left: 10px;
}

 .dtyicon i
{
    transform: rotate(-30deg);
    transition: .3s;
    position: relative;
    display: block;
}


 .btnx:hover .dtyicon
{
    transition: .3s;
}

 .btnx:hover .dtyicon i
{
    transform: rotate(0deg);
    transition: .3s;
    position: relative;
    display: block;
}

.uye-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 15px;
    background-color: #343497;
    border-radius: 30px;
    padding: 7px 18px;
    line-height: 1.3;
}

.uye-adi {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.uye-cikis {
    color: rgba(255,255,255,0.75);
    font-size: 11px;
    font-weight: 400;
    text-decoration: none;
    transition: color .2s;
}

.uye-cikis:hover {
    color: #fff;
    text-decoration: underline;
}

.girisyap
{
    border-radius: 30px;
    background-color: #343497;
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    font-size: 17px;
    font-weight: 300;
    margin-left: 15px;
    transition: .3s;
    display: block;
}

.girisyap:hover
{
    border-radius: 30px;
    background-color: #ca0036;
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    font-size: 17px;
    font-weight: 300;
    margin-left: 15px;
    transition: .3s;
}


  /*footer*/

footer
{
    background: #000;
    width: 100%;
    padding: 3%;
    position: relative;
    background-size: 100%;
    border-top: 3px solid #f3f3f3;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}



footer .imglogo
{
    max-width: 150px;
    border-radius: 20px;
}

footer .footer-text
{
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin-top: 15px;
}

footer .foot-tt
{
    position: relative;
    width: 100%;
    margin-bottom: 10px;
    color: #fff;
    font-size: 25px;
    font-weight: bold;
}

footer .foot-tt::before
{
    content:"";
    position: absolute;
    bottom: -5px;
    width: 20%;
    height: 3px;
    background-color: #ca0036;
}

footer .footul
{
    padding: 0;
    margin: 20px 0 0 0;
    position: relative;
}

footer .footul .footli
{
    color: #000;
    font-size: 16px;
    list-style: none;
    padding-bottom:5px;
    padding-left: 0;
    transition:.5s;
}

footer .footul .footli:hover
{
    color: #fff;
    font-size: 16px;
    list-style: none;
    padding-bottom:5px;
    padding-left: 10px;
    transition:.5s;
}

footer .footul .footli .footlink
{
    color: #fff;
    font-size: 16px;
}

footer .footadrs, footer .footadrs a
{
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 5px;
}

footer .footalttext
{
    color: #fff;
    font-size: 16px;
    font-weight: 300;
}

footer .footerlinks
{
    font-size: 16px;
    font-weight: 300;
    color: #fff;
}

footer .socialmedia
{
    position: relative;
    display: flex;
    margin-top: 25px;
    gap: 15px;
}

footer .socialmedia a i
{
  color: #fff;
  font-size: 20px;
}


.footeralt
{
    background-color: #000;
    padding: 15px 0;
    margin: 0;
    position: relative;
    width: 100%;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
}

.footeralt a{
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
}

.footeralt a:hover{
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
}



.backToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;    
    z-index: 100;
    height: 50px;
    width: 50px;
    font-size: 20px;
    border: none;
    color: #fff;
    border-radius: 30px;
    transition: 0.5s;
    cursor: pointer;
    text-align: center;
    padding-top: 10px;
}

    .backToTopBtn:not(:hover) {
        background: #353595;
    }

    .backToTopBtn:hover {
        background: #282870;
        color: #fff;
    }

    .backToTopBtn.active {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    .backToTopBtn:not(.active) {
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
    }

.boxmenu {
    position: absolute;
    top: 105%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 40px;
    display: none;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    border-radius: 50px;
}

.boxmenu.active {
    display: block;
}

.urunmenutitle
{
    font-size: 30px;
    font-weight: 600;
    color: #000;
    border-bottom: 1px solid #ededed;
}

.menu
{
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.menu li a {
    display: block;
    padding: 10px 0;
    color: #333;
    transition: all .3s ease;
    border-bottom: 1px solid #ededed;
    font-size: 20px;
    font-weight: 400;
}

.menu li a.active,
.menu li a:hover {
    color: #343497;
    padding-left: 10px;
}

.menu-content h4 {
    font-size: 22px;
    font-weight: 500;
    color: #ca0010;
    margin-bottom: 10px;
}

.menu-image img {
    border-radius: 10px;
    transition: opacity .3s ease;
}

.dtymenubtn
{
    color: #343497;
    font-size: 16px;
    font-weight: 400;
    padding: 10px;
}

.dtymenuicon
{
    color: #fff;
    background-color: #343497;
    font-size: 18px;
    padding: 7px 13px;
    width: 44px;
    border-radius: 50px;
}

.dtymenuicon i
{
    transform: rotate(-30deg);
    transition: .3s;
    position: relative;
    display: block;
}


.btnx:hover .dtymenuicon i
{
    transform: rotate(0deg);
    transition: .3s;
    position: relative;
    display: block;
}


.about-hero img {
    position: absolute;
    inset: 0;
}

.about-hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.35) 50%, rgb(0 0 0 / 41%) 100%);
}

.about-hero .content {
    right: 40px;
    bottom: 50px;
    max-width: 600px;
}

.about-hero .content h2
{
    font-size: 2.5rem;
}

.about-hero .content p
{
    font-size: 20px;
    font-weight: 300;
}

.about-hero .badge {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(6px);
    font-size: 12px;
    letter-spacing: 1px;
}




.hero-card {
    position: relative;
    width: 100%;
    min-height: 400px;
    border-radius: 30px;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: .3s;
}

.hero-card:hover {
    position: relative;
    width: 100%;
    min-height: 400px;
    border-radius: 30px;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: translate(0px,-10px);
    transition: .3s;
}


/* Hafif karartma */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.45) 0%, rgb(0 0 0 / 4%) 45%, rgb(0 0 0 / 0%) 100%);
    z-index: 2;
    filter: blur(3px);
}

/* Sol içerik */
.hero-content {
     position: absolute;
    z-index: 2;
    padding: 10px 20px;
    color: #fff;
    width: auto;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    border-radius: 50px;
    top: 10%;
    left: 6%;
    border:1px solid #fff;
}

.hero-img
{
    position: absolute;
    z-index: 3;
    width: 100%;
    right: 0;
    bottom: -20%;
    text-align: end;
}

.hero-img img
{
    width: 100%;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 18px;
}

.hero-content .hero-title {
    font-size: 25px;
    font-weight: 400;
    line-height: 1.15;
}

/* Sağ alt kesik köşe */
.hero-card::after {
    content: "";
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 162px;
    height: 162px;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

/* Ok butonu */
.hero-btn {
    position: absolute;
    bottom: 22px;
    right: 22px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}




.references-marquee {
    overflow: hidden;
}



/* Marquee */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 35s linear infinite;
    padding: 30px 0;
}

/* Hover = yavaşça durur */
.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

/* Kart */
.reference-item {
    min-width: 220px;
    height: 120px;
    margin: 0 14px;
    background: #fff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.reference-item img {
    max-width: 80%;
    max-height: 100px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all .4s ease;
}

.reference-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Animasyon */
@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


  @media(max-width:1444px){
.menubg .navbar .navbar-brand img {
    max-height: 40px;
}

.menubg .navbar .navbar-nav .nav-item .nav-link {
    padding: 10px 5px;
}

.menubg .navbar .navbar-nav li a {
    font-size: 15px;
}

.girisyap {
    border-radius: 30px;
    background-color: #343497;
    color: #fff;
    padding: 10px 10px;
    text-align: center;
    font-size: 14px;
    font-weight: 300;
    margin-left: 15px;
    transition: .3s;
    display: block;
}

.hero-img {
    position: absolute;
    z-index: 3;
    width: 100%;
    right: 0;
    bottom: -5%;
    text-align: end;
}


  }