/*** Spinner Start ***/
/*** Spinner ***/
#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 ***/

.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: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.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-primary);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
}


/*** Topbar Start ***/
.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);
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 11px;
    border: 0;
    transition: .5s;
    opacity: 1;
}

/*** Topbar End ***/



/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-white);
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link,
.sticky-top.navbar-light .navbar-nav .nav-item .nav-link {
    padding: 20px 0;
    color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-item .nav-link {
    color: var(--bs-white);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-item .nav-link:hover,
.navbar-light .navbar-nav .nav-item .nav-link.active  {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.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 a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark);
    }

    .navbar-light .navbar-nav .nav-item .nav-link {
        color: var(--bs-dark);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light);
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--bs-primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link::after {
        position: absolute;
        content: "";
        width: 0;
        height: 0;
        bottom: -1px;
        left: 50%;
        background: var(--bs-primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::after,
    .navbar-light .navbar-nav .nav-link.active::after {
        width: 2px;
        height: 12px;
    }
}
/*** Navbar End ***/

/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item img {
    object-fit: cover;
}

.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img {
        height: 700px;
}


.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background: var(--bs-primary);
    color: var(--bs-white);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 30px;
    margin-left: 90px;
}
.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    left: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-light);
    color: var(--bs-primary);
}


.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    padding-top: 120px;
    background: rgba(0, 0, 0, .7);
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }
}

@media (max-width: 767px) {
    .header-carousel .owl-nav .owl-prev {
        left: 50%;
        transform: translateX(-50%);
        margin-left: -45px;
    }


    .header-carousel .owl-nav .owl-next {
        left: 50%;
        transform: translateX(-50%);
        margin-left: 45px;
    }
}


.header-carousel .header-carousel-item img {
    animation-name: image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}


@keyframes image-zoom {
    0%  {height: 100%; opacity: 0.9;}

    25% {height: 110%; opacity: 0.50;}

    50% {height: 115%; opacity: 1;}

    75% {height: 110%; opacity: 0.50;}

    100% {height: 100%; opacity: 0.9;}
}
/*** Carousel Hero Header 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/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 140px 0 60px 0;
    transition: 0.5s;
}

@media (min-width: 992px) {
    .bg-breadcrumb {
        padding: 140px 0 60px 0;
    }
}

@media (max-width: 991px) {
    .bg-breadcrumb {
        padding: 60px 0 60px 0;
    }
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/


/*** Service Start ***/
.service .service-item {
    background: var(--bs-light);
    border-radius: 10px;
    transition: 0.5s;
}

.service .service-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
}

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.2);
}
/*** Service End ***/

/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    background: var(--bs-white);
    box-shadow: inset 0 0 45px rgba(0, 0, 0, .1);
    transition: 0.5s;
}

.blog .blog-item a {
    transition: 0.5s;
}

.blog .blog-item:hover a:hover {
    color: var(--bs-primary);
}

.blog .blog-item .blog-img {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 208, 132, 0.1);
    opacity: 0;
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    opacity: 1;
}

.blog .blog-item .blog-img .blog-title {
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 5;
}

.blog .blog-item .blog-img .blog-title a {
    color: var(--bs-white);
    background: var(--bs-primary);
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img .blog-title a:hover {
    color: var(--bs-dark);
}

.blog-carousel .owl-stage-outer {
    margin-top: 58px;
}

.blog .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}

.blog .owl-nav .owl-prev:hover {
    background: var(--bs-dark);
    color: var(--bs-primary);
}

.blog .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}

.blog .owl-nav .owl-next:hover {
    background: var(--bs-dark);
    color: var(--bs-primary);
}
/*** Blog End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    padding: 0 25px 25px 25px;
    border-radius: 10px;
    transition: 0.5s;
}

.team .team-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: var(--bs-light);
    border-radius: 10px;
    transition: 0.5s;
    z-index: -1;
}

.team .team-item:hover::before {
    height: 0;
}

.team .team-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    transition: 0.5s;
    z-index: -1;
}

.team .team-item:hover::after {
    height: 100%;
    background: var(--bs-primary);
}

.team .team-item .team-img {
    width: 100%; 
    height: 100%;
    border-radius: 100%;
    position: relative;
    margin-top: 50%;
    transform: translateY(-50%);
    margin-bottom: -50%;
    display: flex;
    justify-content: center;
    border: 4px solid var(--bs-primary);
    border-style: dotted;
    padding: 4px;
    background: var(--bs-white);
    transition: 0.5s;
}

.team .team-item:hover .team-img {
    border: 4px solid var(--bs-white);
    border-style: dotted;
    background: 0;
}

.team .team-item .team-img img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    transition: 0.5s;
}

.team .team-item .team-title {
    padding: 25px 0 25px 0;
    text-align: center;
}

.team .team-item .team-title h4,
.team .team-item .team-title p {
    transition: 0.5s;
}

.team .team-item:hover .team-title h4,
.team .team-item:hover .team-title p {
    color: var(--bs-white);
}

.team .team-item .team-icon {
    display: flex;
    justify-content: center;
}

.team .team-item .team-icon a {
    transition: 0.5s;
}

.team .team-item:hover .team-icon a {
    color: var(--bs-dark);
    background: var(--bs-white);
}

.team .team-item:hover .team-icon a:hover {
    color: var(--bs-primary);
    background: var(--bs-dark);
}
/*** Team End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-secondary);
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary);
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    background: var(--bs-dark);
}
/*** copyright end ***/


:root{
  --armikom-blue: #0d6efd; /* ArmiKom mavi (istersen değiştiririz) */
}

@media (min-width: 992px) {
  .navbar-light {
    background: #fff !important;
    border-top: 4px solid var(--armikom-blue) !important;
    border-bottom: 1px solid rgba(0,0,0,.10) !important;
    box-shadow: 0 8px 20px rgba(0,0,0,.06);
  }

  .navbar-light .navbar-nav .nav-link,
  .navbar-light .navbar-nav .nav-item .nav-link {
    color: #111 !important;
  }

  /* Hover + Active mavi olsun */
  .navbar-light .navbar-nav .nav-link:hover,
  .navbar-light .navbar-nav .nav-link.active {
    color: var(--armikom-blue) !important;
  }

  /* Menü alt çizgi animasyonu da mavi olsun */
  .navbar-light .navbar-nav .nav-link::before,
  .navbar-light .navbar-nav .nav-link::after {
    background: var(--armikom-blue) !important;
  }
}
:root{
  --armikom-blue: #0d6efd; /* ArmiKom mavi */
}

/* Tüm primary butonları ArmiKom mavisi yap */
.btn-primary{
  background: var(--armikom-blue) !important;
  border-color: var(--armikom-blue) !important;
  color: #fff !important;
}

.btn-primary:hover{
  background: #084298 !important;   /* biraz koyu mavi hover */
  border-color: #084298 !important;
  color: #fff !important;
}

/* Light buton (carousel içindeki beyaz buton gibi) */
.btn-light{
  background: #fff !important;
  border: 1px solid var(--armikom-blue) !important;
  color: var(--armikom-blue) !important;
}

.btn-light:hover{
  background: var(--armikom-blue) !important;
  border-color: var(--armikom-blue) !important;
  color: #fff !important;
}
/* Topbar ikonlarını ArmiKom mavisi yap */
.topbar i {
  color: var(--armikom-blue) !important;
}
.demo-btn{
  position: relative;
  overflow: hidden;
  border: none !important;
  background: var(--armikom-blue) !important;
  color: #fff !important;
  font-weight: 600;
  letter-spacing: .3px;
  box-shadow: 0 12px 30px rgba(13,110,253,.35);
  transition: .25s ease;
}

.demo-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 45px rgba(13,110,253,.60);
}

/* üstten kayan parlama */
.demo-btn::before{
  content:"";
  position:absolute;
  top:-50%;
  left:-80%;
  width:70px;
  height:220%;
  background: rgba(255,255,255,.35);
  transform: rotate(25deg);
  animation: demoShine 2.2s infinite;
}

/* shine animasyonu */
@keyframes demoShine{
  0%   { left:-80%; opacity:0; }
  20%  { opacity:1; }
  50%  { left:120%; opacity:1; }
  100% { left:120%; opacity:0; }
}

/* sürekli hafif pulse */
.demo-btn{
  animation: demoPulse 1.8s infinite;
}

@keyframes demoPulse{
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-1px); }
  100% { transform: translateY(0); }
}
.top-social .btn{
  background: #fff !important;
  border: 1px solid rgba(13,110,253,.25) !important;
  color: var(--armikom-blue) !important;
  transition: .2s ease;
}

.top-social .btn:hover{
  background: var(--armikom-blue) !important;
  border-color: var(--armikom-blue) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(13,110,253,.25);
}
/* Menü yazıları daha belirgin olsun */
.navbar-light .navbar-nav .nav-link{
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;   /* daha kalın */
  font-size: 16px !important;
  letter-spacing: 0.3px;
}
/* Carousel oklarını ArmiKom mavisi yap + düzgün konumlandır */
.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
  background: var(--armikom-blue) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 10px 25px rgba(13,110,253,.35);
}

/* Prev solda */
.header-carousel .owl-nav .owl-prev {
  left: 30px !important;
  bottom: 30px !important;
  margin-left: 0 !important;
}

/* Next sağda */
.header-carousel .owl-nav .owl-next {
  left: auto !important;
  right: 30px !important;
  bottom: 30px !important;
}

/* Hover efekti */
.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
  background: #084298 !important;
  color: #fff !important;
  box-shadow: 0 14px 35px rgba(13,110,253,.55);
}
/* Demo Talep Et gibi: soldan başla -> sağda bit */
.logo-shine{
  position: relative;
  display: inline-block;
  overflow: hidden; /* önemli: ışık logo alanında kalsın */
}

.logo-shine img{
  display:block;
}

/* mavi shine şeridi */
.logo-shine .shine{
  content:"";
  position:absolute;
  top:-60%;
  left:-60%;
  width:60px;
  height:220%;
  transform: rotate(25deg);
  pointer-events:none;

  /* hafif mavi */
  background: rgba(13,110,253,.25);
  filter: blur(0.5px);
  opacity: 0;

  animation: logoShineDemo 2.2s infinite;
}

@keyframes logoShineDemo{
  0%   { left:-60%; opacity:0; }
  10%  { opacity:1; }
  50%  { left:120%; opacity:1; }
  100% { left:120%; opacity:0; }
}
/* Logo shine: çok puslu + sona gelmeden kaybolsun */
.logo-shine .shine{
  width: 140px !important;                 
  background: rgba(13,110,253,.14) !important;
  filter: blur(10px) !important;           
  opacity: 0;
  animation: logoShineSoft 2.8s infinite;
}

@keyframes logoShineSoft{
  0%   { left:-80%; opacity:0; }
  12%  { opacity:.65; }
  45%  { opacity:.55; }
  70%  { left:85%;  opacity:0; }  /* sona gelmeden kaybolur */
  100% { left:85%;  opacity:0; }
}
/* Mobil uyumlu logo shine ayarı */
@media (max-width: 991.98px) {
  .logo-shine{
    overflow: hidden;
    max-width: 180px; /* logo çok büyümesin */
  }

  .logo-shine img{
    width: 180px !important;
    height: auto !important;
  }

  .logo-shine .shine{
    width: 90px !important;                 /* mobilde daha küçük */
    background: rgba(13,110,253,.10) !important;
    filter: blur(9px) !important;
    animation: logoShineSoft 6s infinite !important; /* mobilde daha yavaş */
  }
}
.logo-shine .shine{
  animation: logoShineSoft 4.5s infinite !important; /* daha yavaş */
}
/* =========================================================
   ArmiKom Arayüzleri Keşfedin - FULL CSS (Sıfırdan)
   Kurumsal + Template Uyumlu
   ========================================================= */

:root{
  --armikom-blue: #0d6efd; /* Bootstrap Primary ile uyumlu */
}

/* Genel alan */
.armikom-tab-wrap{
  margin-top: 10px;
}

/* Tabs (üst menüler) */
.armikom-tabs{
  gap: 8px;
  padding: 0;
}

/* Desktop'ta sığmazsa tek satır kaydırılabilir */
@media (min-width: 992px){
  .armikom-tabs{
    justify-content: flex-start !important;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
  }
  .armikom-tabs .nav-link{ white-space: nowrap; }
}

/* Mobilde zaten kaydırma */
@media (max-width: 991.98px){
  .armikom-tabs{
    justify-content: flex-start !important;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
  }
  .armikom-tabs .nav-link{ white-space: nowrap; }
}

/* Tab button görünümü */
.armikom-tabs .nav-link{
  background: #fff;
  border: 1px solid rgba(0,0,0,.12);
  color: #111;
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .1px;
  transition: .2s ease;
}

/* Hover */
.armikom-tabs .nav-link:hover{
  border-color: rgba(13,110,253,.35);
  color: var(--armikom-blue);
  transform: translateY(-1px);
}

/* Active (Kurumsal) */
.armikom-tabs .nav-link.active{
  background: rgba(13,110,253,.10);
  border-color: rgba(13,110,253,.35);
  color: var(--armikom-blue);
}

/* İçerik metni (çerçevesiz, kurumsal) */
.armikom-info{
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.armikom-info h3{
  font-weight: 700;
  letter-spacing: .2px;
}

/* Bullet list */
.armikom-list{
  padding-left: 18px;
  margin: 0;
}
.armikom-list li{
  margin: 8px 0;
  line-height: 1.5;
}

/* Görsel kutusu */
.armikom-shot{
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 14px 40px rgba(0,0,0,.10);
  transition: .25s ease;
}

.armikom-shot img{
  display: block;
  width: 100%;
  height: auto;
}

/* Hover ile premium hissiyat */
.armikom-shot:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 55px rgba(0,0,0,.14);
}
/* İsteğe bağlı: scroll bar tamamen gizlensin */
.armikom-tabs{
  scrollbar-width: none; /* Firefox */
}
.armikom-tabs::-webkit-scrollbar{
  display: none; /* Chrome/Safari */
}
@media (max-width: 991.98px){
  .armikom-shot{
    margin-top: 10px;
  }
  .armikom-tabs .nav-link{
    font-size: 13px;
    padding: 8px 12px;
  }
}
/* =========================================================
   ArmiKom Tabs Taşma Fix (Premium CSS ile uyumlu)
   - Desktop: taşarsa 2 satır
   - Mobil: tek satır + swipe
   - Scrollbar görünmez
   ========================================================= */

/* Desktop: 2 satıra kır, taşma yok */
.armikom-tabs{
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;      /* <-- asıl çözüm */
  overflow: visible;
  padding-bottom: 0;
}

/* Butonları kompaktlaştır (sığsın) */
.armikom-tabs .nav-link{
  padding: 8px 12px;    /* daha küçük */
  font-size: 13px;      /* daha küçük */
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

/* Büyük ekranda bir tık büyüt */
@media (min-width: 1200px){
  .armikom-tabs .nav-link{
    padding: 9px 14px;
    font-size: 14px;
  }
}

/* Mobil: tek satır + kaydırma (swipe) */
@media (max-width: 991.98px){
  .armikom-tabs{
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }

  /* scrollbar gizle */
  .armikom-tabs{
    scrollbar-width: none; /* firefox */
  }
  .armikom-tabs::-webkit-scrollbar{
    display: none; /* chrome/safari */
  }
}
/* ============================
   MODERN TAB EFFECT (No Shadow)
   ============================ */

/* Tab butonu: modern görünüm */
.armikom-tabs .nav-link{
  position: relative;
  background: #fff;
  border: 1px solid rgba(0,0,0,.12);
  color: #111;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.2;
  transition: .2s ease;
  overflow: hidden; /* alt çizgi için */
}

/* Hover: gölge yok, sadece hafif modern his */
.armikom-tabs .nav-link:hover{
  border-color: rgba(13,110,253,.30);
  color: #0d6efd;
  background: rgba(13,110,253,.04);
}

/* Active: daha premium */
.armikom-tabs .nav-link.active{
  color: #0d6efd;
  border-color: rgba(13,110,253,.45);
  background: rgba(13,110,253,.08);
}

/* Active alt çizgi (modern SaaS çizgisi) */
.armikom-tabs .nav-link.active::after{
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(13,110,253,0),
    rgba(13,110,253,.95),
    rgba(13,110,253,0)
  );
  opacity: 1;
}

/* Hover'da çizgi hafif görünsün */
.armikom-tabs .nav-link:hover::after{
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(13,110,253,0),
    rgba(13,110,253,.55),
    rgba(13,110,253,0)
  );
  opacity: .7;
}
.armikom-tabs .nav-link::after{
  transition: .25s ease;
}

:root{
  --bs-primary: #0d6efd; /* Armikom mavi (istersen kodu değiştiririz) */
}

.text-primary{
  color: #0d6efd !important;
}

/* Görsel kart premium */
.armikom-shot{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 18px 60px rgba(0,0,0,.12);
  transition: .25s ease;
}

.armikom-shot:hover{
  transform: translateY(-3px);
  box-shadow: 0 22px 80px rgba(0,0,0,.16);
}

/* Metinler daha kurumsal */
.armikom-info h3{
  font-weight: 800;
  letter-spacing: .2px;
}
.armikom-info p{
  color: rgba(0,0,0,.70);
}
/* =========================================================
   ArmiKom Tabs: TEK SATIR (Aşağı Atmaz)
   Desktop + Mobil: swipe/scroll, scrollbar gizli
   ========================================================= */

.armikom-tabs{
  display: flex;
  gap: 8px;
  justify-content: center;     /* ortalı dursun */
  flex-wrap: nowrap !important;/* <-- aşağı atmasın */
  overflow-x: auto;            /* <-- taşarsa yatay kay */
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6px;         /* biraz nefes */
  scrollbar-width: none;       /* Firefox */
}

.armikom-tabs::-webkit-scrollbar{
  display: none;               /* Chrome/Safari */
}

/* butonları kompakt tut (sığma şansı artsın) */
.armikom-tabs .nav-link{
  white-space: nowrap;
  padding: 8px 12px;
  font-size: 13px;
  line-height: 1.2;
}

/* Büyük ekranda 1 tık büyüsün */
@media (min-width: 1200px){
  .armikom-tabs .nav-link{
    padding: 9px 14px;
    font-size: 14px;
  }
}

/* Mobilde sola yasla (kullanıcı swipe etsin) */
@media (max-width: 991.98px){
  .armikom-tabs{
    justify-content: flex-start;
  }
}
/* ============================
   ABOUT - ÇÖZÜM EKOSİSTEMİ
   ============================ */

.eco-panel{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: 0 18px 60px rgba(0,0,0,.10);
  display: flex;
  flex-direction: column;
}

.eco-panel--primary{
  background: linear-gradient(180deg, rgba(13,110,253,.08), #fff 55%);
  border-color: rgba(13,110,253,.18);
}

.eco-top{ margin-bottom: 14px; }

.eco-tag{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--bs-primary);
  background: rgba(13,110,253,.10);
  border: 1px solid rgba(13,110,253,.18);
  border-radius: 999px;
  padding: 6px 10px;
  margin-bottom: 10px;
}

.eco-tag--dark{
  color: #111;
  background: rgba(0,0,0,.06);
  border-color: rgba(0,0,0,.10);
}

.eco-title{
  font-weight: 900;
  letter-spacing: .2px;
}

.eco-desc{
  color: rgba(0,0,0,.70);
  line-height: 1.65;
}

.eco-features{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 12px;
  margin-bottom: 18px;
}

.eco-item{
  display: flex;
  gap: 12px;
  padding: 12px 12px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  transition: .2s ease;
  background: rgba(255,255,255,.9);
}

.eco-item i{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13,110,253,.10);
  color: var(--bs-primary);
  font-size: 20px;
  flex: 0 0 auto;
}

.eco-item-title{
  font-weight: 800;
  margin-bottom: 2px;
}

.eco-item-sub{
  font-size: 13px;
  color: rgba(0,0,0,.62);
  line-height: 1.45;
}

.eco-item:hover{
  transform: translateY(-2px);
  border-color: rgba(13,110,253,.22);
}

.eco-actions{
  margin-top: auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Teknoloji şeridi */
.eco-strip{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.eco-chip{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  font-weight: 700;
  font-size: 13px;
  color: rgba(0,0,0,.75);
}

.eco-chip i{
  color: var(--bs-primary);
  font-size: 16px;
}

@media (max-width: 991.98px){
  .eco-panel{ padding: 18px 16px; }
}
/* ============================
   ABOUT - ÇÖZÜM EKOSİSTEMİ (Beyaz)
   ============================ */

#about-ecosystem{
  background: #ffffff !important;  /* arka plan beyaz */
}

.eco-panel{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: 0 18px 60px rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
}

.eco-panel--primary{
  background: linear-gradient(180deg, rgba(13,110,253,.06), #fff 55%);
  border-color: rgba(13,110,253,.18);
}

.eco-top{ margin-bottom: 14px; }

.eco-tag{
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--bs-primary);
  background: rgba(13,110,253,.10);
  border: 1px solid rgba(13,110,253,.18);
  border-radius: 999px;
  padding: 6px 10px;
  margin-bottom: 10px;
}

.eco-tag--dark{
  color: #111;
  background: rgba(0,0,0,.06);
  border-color: rgba(0,0,0,.10);
}

.eco-title{
  font-weight: 900;
  letter-spacing: .2px;
}

.eco-desc{
  color: rgba(0,0,0,.70);
  line-height: 1.65;
}

.eco-features{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 12px;
  margin-bottom: 18px;
}

.eco-item{
  display: flex;
  gap: 12px;
  padding: 12px 12px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  transition: .2s ease;
  background: rgba(255,255,255,.95);
}

.eco-item i{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13,110,253,.10);
  color: var(--bs-primary);
  font-size: 20px;
  flex: 0 0 auto;
}

.eco-item-title{
  font-weight: 800;
  margin-bottom: 2px;
}

.eco-item-sub{
  font-size: 13px;
  color: rgba(0,0,0,.62);
  line-height: 1.45;
}

.eco-item:hover{
  transform: translateY(-2px);
  border-color: rgba(13,110,253,.22);
}

.eco-actions{
  margin-top: auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Teknoloji şeridi */
.eco-strip{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.eco-chip{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  font-weight: 700;
  font-size: 13px;
  color: rgba(0,0,0,.75);
}

.eco-chip i{
  color: var(--bs-primary);
  font-size: 16px;
}

/* Metrics */
.eco-metric{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 18px 14px;
  text-align: center;
  transition: .2s ease;
}

.eco-metric:hover{
  transform: translateY(-2px);
  border-color: rgba(13,110,253,.22);
}

.eco-metric-num{
  font-weight: 900;
  font-size: 20px;
  line-height: 1.1;
  margin-bottom: 6px;
  color: #111;
}

.eco-metric-txt{
  font-size: 13px;
  color: rgba(0,0,0,.65);
}

@media (max-width: 991.98px){
  .eco-panel{ padding: 18px 16px; }
}

/* son */

/* ============================
   ABOUT PREMIUM (Rework)
   ============================ */

.about-premium{ background:#fff; }

/* Typography */
.ap-eyebrow{ letter-spacing:.6px; font-size:12px; }
.ap-title{
  font-weight: 900;
  letter-spacing: .15px;
  line-height: 1.15;
}
.ap-lead{
  color: rgba(0,0,0,.70);
  line-height: 1.75;
  font-size: 16px;
}

/* Mission / Vision */
.ap-mv{
  background:#fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 14px 14px;
  box-shadow: 0 14px 40px rgba(0,0,0,.05);
}
.ap-mv-head{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 8px;
}
.ap-mv-head h6{
  font-weight: 900;
  letter-spacing: .2px;
}
.ap-mv-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(13,110,253,.85);
  box-shadow: 0 0 0 4px rgba(13,110,253,.12);
}
.ap-mv p{
  color: rgba(0,0,0,.62);
  line-height: 1.6;
  margin: 0;
  font-size: 14px;
}

/* Cards */
.ap-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 16px 16px;
  box-shadow: 0 18px 60px rgba(0,0,0,.06);
  position: relative;
  overflow: hidden;
  transition: .22s ease;
}
.ap-card::before{
  content:"";
  position:absolute;
  left:0; top:0;
  width:100%;
  height:3px;
  background: rgba(13,110,253,.55);
}
.ap-card--soft{
  background: linear-gradient(180deg, rgba(13,110,253,.05), #fff 60%);
  border-color: rgba(13,110,253,.16);
}
.ap-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 70px rgba(0,0,0,.08);
  border-color: rgba(13,110,253,.22);
}
.ap-card-head{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 8px;
}
.ap-card h5{
  font-weight: 900;
  letter-spacing: .15px;
}
.ap-card p{
  color: rgba(0,0,0,.62);
  line-height: 1.6;
  margin: 0;
}
.ap-ico{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(13,110,253,.10);
  color: var(--bs-primary);
  font-size: 20px;
  flex: 0 0 auto;
}

/* Right visual (Logo only premium block) */
.ap-visual{
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,.08);
  background: linear-gradient(180deg, rgba(13,110,253,.06), #fff 60%);
  box-shadow: 0 22px 80px rgba(0,0,0,.10);
  padding: 18px;
  overflow: hidden;
  position: relative;
}
.ap-visual::before{
  content:"";
  position:absolute;
  top:-110px;
  right:-140px;
  width:360px;
  height:360px;
  background: radial-gradient(circle, rgba(13,110,253,.18), rgba(13,110,253,0) 60%);
  filter: blur(2px);
  opacity: .85;
  pointer-events:none;
}
.ap-visual--logoOnly{
  display:flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  min-height: 380px; /* premium boşluk */
}

/* Logo band */
.ap-logo-head{
  display:flex;
  justify-content:center;
  align-items:center;
  padding: 16px 16px;
  border-radius: 18px;
  border: 1px solid rgba(13,110,253,.18);
  background: linear-gradient(135deg, rgba(13,110,253,.10), rgba(255,255,255,1));
  position: relative;
  overflow: hidden;
}
.ap-logo-head::before{
  content:"";
  position:absolute;
  top:-80px;
  right:-110px;
  width:300px;
  height:300px;
  background: radial-gradient(circle, rgba(13,110,253,.22), rgba(13,110,253,0) 60%);
  filter: blur(2px);
  opacity:.70;
  pointer-events:none;
}
.ap-logo-head--center{ text-align:center; }

/* Logo sizing for your 1200x349 logo */
.ap-logo{
  height: clamp(54px, 6vw, 78px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display:block;
  z-index:1;
  opacity: .99;
}
.ap-logo--xl{
  height: clamp(58px, 6.5vw, 86px);
}

/* Small caption under logo (kurumsal) */
.ap-logo-caption{
  text-align: center;
  padding: 0 10px;
}
.ap-caption-title{
  font-weight: 900;
  letter-spacing: .2px;
  color: #111;
}
.ap-caption-sub{
  margin-top: 6px;
  color: rgba(0,0,0,.62);
  line-height: 1.6;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 991.98px){
  .ap-visual{ box-shadow: 0 18px 60px rgba(0,0,0,.09); }
  .ap-title{ font-size: 28px; }
  .ap-visual--logoOnly{ min-height: 320px; }
}
@media (max-width: 575.98px){
  .ap-logo-head{ padding: 14px 14px; }
  .ap-card, .ap-mv{ box-shadow: 0 12px 34px rgba(0,0,0,.05); }
}
/* =========================
   ABOUT SHOWCASE - PREMIUM (WOW compatible)
   ========================= */
.about-showcase{
  padding: 92px 0;
  position: relative;
  overflow: hidden;
}

.about-showcase::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(circle at 18% 10%, rgba(110,231,255,.12), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(167,139,250,.12), transparent 55%);
  pointer-events:none;
}

.about-showcase-wrap{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items:center;
  position: relative;
  z-index: 2;
}

@media (max-width: 900px){
  .about-showcase-wrap{ grid-template-columns: 1fr; }
}

/* LEFT */
.about-left .about-kicker{
  display:inline-block;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary-color);
  background: rgba(48,86,211,.10);
  padding: 8px 12px;
  border-radius: 999px;
}

.about-left .about-title{
  margin-top: 14px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.about-left .about-desc{
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.75;
  max-width: 62ch;
  opacity: .92;
}

.about-points{
  margin-top: 18px;
  display:grid;
  gap: 10px;
  padding: 0;
}

.about-points li{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 12px 30px rgba(6,26,58,.08);
  font-weight: 700;
}

.tick{
  width: 22px;
  height: 22px;
  border-radius: 8px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: rgba(48,86,211,.12);
  color: var(--primary-color);
  flex: 0 0 22px;
  margin-top: 1px;
}

.about-badges{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.badge-chip{
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  background: rgba(10,14,26,.06);
  border: 1px solid rgba(0,0,0,.08);
}

/* RIGHT */
.about-right{
  display:flex;
  flex-direction: column;
  align-items:center;
}

.mock-stage{
  width: min(560px, 100%);
  position: relative;
  padding: 18px 10px 30px;
}

/* Desktop mock */
.mock-desktop{
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(10,14,26,.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 26px 90px rgba(0,0,0,.24);
  transform: perspective(900px) rotateY(-10deg) rotateX(4deg);
}

.mock-topbar{
  display:flex;
  align-items:center;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.mock-topbar .dot{
  width: 10px; height: 10px; border-radius: 50%;
  opacity: .9;
}
.mock-topbar .dot.red{ background: #ff5f57; }
.mock-topbar .dot.yellow{ background: #febc2e; }
.mock-topbar .dot.green{ background: #28c840; }

.mock-topbar .mock-title{
  margin-left: 6px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,.88);
}

/* Windows ekran görüntüsü panel gibi dursun */
.mock-media{ width: 100%; display:block; }
.mock-desktop-media{
  height: 320px;
  object-fit: cover;
  object-position: left top;
}

/* ANDROID MOCKUP */
.mock-android{
  position:absolute;
  right: 10px;
  bottom: -26px;
  width: min(205px, 44%);
  aspect-ratio: 9 / 19.5;
  border-radius: 34px;
  padding: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,.08));
  border: 1px solid rgba(255,255,255,.22);
  box-shadow:
    0 30px 80px rgba(0,0,0,.34),
    0 0 70px rgba(110,231,255,.12),
    0 0 70px rgba(167,139,250,.10);
  overflow:hidden;
  transform: rotate(8deg);
}

.mock-android::after{
  content:"";
  position:absolute;
  inset: 8px;
  border-radius: 26px;
  border: 1px solid rgba(0,0,0,.10);
  pointer-events:none;
  opacity: .7;
}

.android-top{
  position:absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 72%;
  height: 26px;
  z-index: 4;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  pointer-events:none;
}

.android-speaker{
  width: 46px;
  height: 6px;
  border-radius: 999px;
  background: rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.10);
}

.android-camera{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.12);
}

.mock-android-media{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
  background: transparent;
}

/* Better buttons below (shadow + premium) */
.about-actions{
  width: min(560px, 100%);
  display:flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px; /* daha aşağı */
}

.about-action{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  text-decoration:none;
  font-weight: 900;
  font-size: 14px;
  color: rgba(255,255,255,.92);
  background: rgba(10,14,26,.62);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow:
    0 16px 40px rgba(6,26,58,.20),
    inset 0 1px 0 rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  transform: translateY(0);
}

.about-action:hover{
  transform: translateY(-2px);
  box-shadow:
    0 22px 55px rgba(6,26,58,.26),
    inset 0 1px 0 rgba(255,255,255,.12);
}

.about-action .ic{
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

/* Responsive */
@media (max-width: 900px){
  .mock-desktop{ transform: none; }
  .mock-desktop-media{ height: 240px; }
  .mock-android{ right: 0; transform: rotate(6deg); }
}
/* =========================
   ABOUT ORBIT (No card bg) + Right small showcase
   ========================= */

.about-orbit-section{
  position: relative;
  padding: 110px 0 90px;
  background: #fff;
  overflow: hidden;
}

.about-orbit-head{
  text-align: center;
  max-width: 980px;
  margin: 0 auto 26px;
}

.about-orbit-head h2{
  margin: 0 0 10px;
  color: #0b1220;
  font-size: clamp(20px, 2.1vw, 30px);
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.about-orbit-head h2 b{ color:#3056d3; }

.about-orbit-head p{
  margin: 0;
  color: rgba(11,18,32,.68);
  font-size: 16px;
  line-height: 1.65;
}

/* SOL büyük (orbit) + SAĞ küçük (showcase) */
.about-orbit-layout{
  display: grid;
  grid-template-columns: 1.25fr .75fr; /* SOL daha büyük */
  gap: 28px;
  align-items: center;
}

/* Sığmama sorunu: min-width baskısını kaldır */
.about-orbit-layout > *{ min-width: 0; }

@media (max-width: 992px){
  .about-orbit-layout{ grid-template-columns: 1fr; }
}

/* =========================
   ORBIT (SOL) — background kaldırıldı
   ========================= */

.about-orbit-orbit{
  position: relative;
  padding: 0;           /* kart gibi olmasın */
  background: none;
  border: none;
  box-shadow: none;
}

/* Bu değerler sığma için yeniden ayarlandı */
.orbit-wrap{
  display:grid;
  grid-template-columns: 1fr minmax(220px, 340px) 1fr;
  gap: 18px;
  align-items:center;
}

.orbit-col{ display:flex; flex-direction:column; gap: 16px; min-width:0; }

.orbit-item{ display:flex; gap: 12px; align-items:flex-start; }

.orbit-icon{
  width: 46px; height: 46px;
  border-radius: 999px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(48,86,211,.10);
  border: 1px solid rgba(48,86,211,.20);
  box-shadow: 0 12px 34px rgba(15,23,42,.08);
  flex: 0 0 auto;
}

.orbit-icon i{ color:#3056d3; font-size: 20px; }

.orbit-text{ min-width:0; }

.orbit-text h4{
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 900;
  color: #3056d3;
}

.orbit-text p{
  margin: 0;
  color: rgba(11,18,32,.68);
  font-size: 13.5px;
  line-height: 1.45;
  max-width: 44ch;
}

/* center sizes küçültme/denge */
.orbit-center{
  position: relative;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height: 360px;
  min-width: 0;
}

.orbit-core{
  width: 180px;
  height: 180px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.92);
  border: 10px solid rgba(48,86,211,.18);
  box-shadow: 0 30px 90px rgba(15,23,42,.12);
  position: relative;
  z-index: 3;
}

.orbit-core img{
  width: 70%;
  height: auto;
  filter: drop-shadow(0 12px 18px rgba(15,23,42,.12));
}

.orbit-dots{
  position:absolute;
  width: 310px;
  height: 310px;
  border-radius: 999px;
  border: 3px dotted rgba(48,86,211,.22);
  z-index: 1;
}

.orbit-arc{
  position:absolute;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  border: 10px solid rgba(48,86,211,.20);
  border-left-color: transparent;
  border-top-color: transparent;
  transform: rotate(10deg);
  z-index: 2;
}

.orbit-ring{
  position:absolute;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  z-index: 0;
}

.orbit-dot{
  position:absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #3056d3;
  box-shadow: 0 0 0 6px rgba(48,86,211,.14);
  opacity: .95;
}

/* dot positions */
.od-1{ left: 18%; top: 18%; }
.od-2{ left: 50%; top: 9%; transform: translateX(-50%); }
.od-3{ right: 18%; top: 18%; }
.od-4{ right: 9%; top: 50%; transform: translateY(-50%); }
.od-5{ right: 18%; bottom: 18%; }
.od-6{ left: 50%; bottom: 9%; transform: translateX(-50%); }
.od-7{ left: 18%; bottom: 18%; }
.od-8{ left: 9%; top: 50%; transform: translateY(-50%); }

.orbit-bottom{
  margin: 18px 0 0;
  display:flex;
  gap: 12px;
  align-items:flex-start;
}

.orbit-bottom-icon{
  width: 48px; height: 48px;
  border-radius: 999px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(19,194,150,.12);
  border: 1px solid rgba(19,194,150,.22);
  box-shadow: 0 14px 36px rgba(15,23,42,.10);
  flex: 0 0 auto;
}
.orbit-bottom-icon i{ color:#13c296; font-size: 20px; }

.orbit-bottom h5{
  margin: 2px 0 4px;
  color:#3056d3;
  font-weight: 900;
  font-size: 15px;
}
.orbit-bottom p{
  margin: 0;
  color: rgba(11,18,32,.68);
  font-size: 13.5px;
  line-height: 1.45;
}

/* Orbit responsive */
@media (max-width: 992px){
  .orbit-wrap{ grid-template-columns: 1fr; }
  .orbit-center{ min-height: 320px; }
}

/* =========================
   RIGHT: Showcase (küçük) — background kaldırıldı
   ========================= */

.about-orbit-showcase{
  position: relative;
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
}

.device-stack{
  position: relative;
  min-height: 360px;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* Desktop küçük */
.device-desktop{
  width: min(420px, 100%);
}

.device-topbar{
  height: 32px;
  border-radius: 14px 14px 0 0;
  background: rgba(15,23,42,.04);
  border: 1px solid rgba(15,23,42,.08);
  display:flex;
  align-items:center;
  gap: 8px;
  padding: 0 12px;
}

.device-topbar .dot{
  width: 10px; height: 10px;
  border-radius: 999px;
  background: rgba(15,23,42,.16);
}
.device-topbar .dot.d1{ background: rgba(239,68,68,.45); }
.device-topbar .dot.d2{ background: rgba(245,158,11,.45); }
.device-topbar .dot.d3{ background: rgba(34,197,94,.45); }

.device-title{
  margin-left:auto;
  font-size: 12px;
  font-weight: 900;
  color: rgba(11,18,32,.58);
}

.device-screen{
  overflow:hidden;
  border-radius: 0 0 18px 18px;
  background: #0b1220;
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 22px 60px rgba(15,23,42,.12);
}

.device-screen img{ width:100%; display:block; height:auto; }

.device-stand{
  width: 92px; height: 16px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: rgba(15,23,42,.10);
}
.device-base{
  width: 210px; height: 12px;
  margin: 8px auto 0;
  border-radius: 999px;
  background: rgba(15,23,42,.08);
}

/* Android daha küçük */
.device-android{
  position:absolute;
  right: 0px;
  bottom: -6px;
  width: 190px;
}

.android-frame{
  border-radius: 26px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 26px 70px rgba(15,23,42,.14);
  padding: 10px;
}

.android-notch{
  height: 24px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
}
.android-notch .cam{ width: 9px; height: 9px; border-radius: 999px; background: rgba(15,23,42,.22); }
.android-notch .speaker{ width: 44px; height: 6px; border-radius: 999px; background: rgba(15,23,42,.16); }

.android-screen{
  border-radius: 18px;
  overflow:hidden;
  background:#0b1220;
  border: 1px solid rgba(15,23,42,.10);
}
.android-screen img{ width:100%; display:block; height:auto; }

.android-nav{
  height: 24px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
}
.android-nav span{ width: 10px; height: 10px; border-radius:999px; background: rgba(15,23,42,.14); }
.android-nav span:nth-child(2){ width: 32px; height: 10px; border-radius:999px; }

/* Buttons (altta gölgeli) */
.showcase-actions{
  display:flex;
  gap: 10px;
  justify-content:center;
  margin-top: 16px;
  flex-wrap: wrap;
}

.showcase-chip{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 14px 34px rgba(15,23,42,.12);
  color: rgba(11,18,32,.86);
  font-weight: 900;
  text-decoration:none;
}

.showcase-chip i{ color:#3056d3; font-size: 18px; }

.showcase-chip:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 44px rgba(15,23,42,.14);
}

.showcase-chip.is-active{
  background: rgba(48,86,211,.10);
  border-color: rgba(48,86,211,.22);
}

/* Small screens */
@media (max-width: 576px){
  .device-stack{ min-height: 340px; }
  .device-android{ width: 170px; right: -6px; }
}
/* =========================================
   ORBIT: Büyük yuvarlak ikonları kaldır -> nokta + çizgi
   ========================================= */

/* Eski büyük yuvarlak icon'u kapat */
.orbit-icon{
  display: none !important;
}

/* Orbit item daha temiz hizalansın */
.orbit-item{
  position: relative;
  padding-left: 28px;  /* sağ tarafta nokta+çizgi için alan */
}

/* SOL taraf (text sağa bakıyor) */
.orbit-col-left .orbit-item{
  padding-left: 0;
  padding-right: 28px; /* sol tarafta nokta+çizgi için alan */
  text-align: right;
}

/* Küçük nokta (düğüm) */
.orbit-item::before{
  content:"";
  position:absolute;
  top: 12px;                 /* başlık hizası */
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #3056d3;
  box-shadow: 0 0 0 6px rgba(48,86,211,.12);
}

/* Noktadan çıkan ince çizgi */
.orbit-item::after{
  content:"";
  position:absolute;
  top: 16px;                 /* noktanın orta hizası */
  left: 14px;
  width: 22px;
  height: 1px;
  background: rgba(48,86,211,.35);
}

/* SOL tarafta nokta+çizgi sağa geçsin */
.orbit-col-left .orbit-item::before{
  left: auto;
  right: 0;
}
.orbit-col-left .orbit-item::after{
  left: auto;
  right: 14px;
}

/* Metin bloğu ikon yokken tam otursun */
.orbit-text{
  min-width: 0;
}

/* İstersen başlıkları biraz sıkılaştır */
.orbit-text h4{
  margin-top: -2px;
}
/* =========================================================
   ORBIT - micro alignment fixes (senin istediğin)
   ========================================================= */

/* 0) Tüm sol blok biraz daha sola (genel denge) */
.about-orbit-orbit{
  transform: translateX(-26px);
}
@media (max-width: 992px){
  .about-orbit-orbit{ transform:none; }
}

/* 1) SOL: 2. ve 3. item (Saha&Personel, IoT) hafif içeri (sağa) */
.orbit-col-left .orbit-item:nth-child(2),
.orbit-col-left .orbit-item:nth-child(3){
  transform: translateX(22px);
}

/* 2) SAĞ: 2. ve 3. item (Web&Mobil, İletişim) hafif dışarı (sağa) */
.orbit-col-right .orbit-item:nth-child(2),
.orbit-col-right .orbit-item:nth-child(3){
  transform: translateX(22px);
}

/* 3) ArmiKOM Cloud/On-Prem: logo altına hizala */
.orbit-bottom{
  width: 520px;
  margin-top: 26px;
  margin-left: auto;
  margin-right: auto;

  /* orbit merkezine göre biraz sola/sağa kaydırmak istersen */
  transform: translateX(-26px);
}

@media (max-width: 992px){
  .orbit-bottom{
    width: 100%;
    transform:none;
  }
}
/* =========================================================
   ORBIT - final alignment (sol dışa aç + cloud alt ortalı)
   ========================================================= */

/* 1) SOL kolonu komple dışa (sola) aç */
.orbit-col-left{
  transform: translateX(-40px);
}

/* Sol tarafta dairesellik: orta satırlar biraz daha fazla dışa */
.orbit-col-left .orbit-item:nth-child(2),
.orbit-col-left .orbit-item:nth-child(3){
  transform: translateX(-18px);
}

/* Üst-alt satır çok az dışa (daha yuvarlak görünür) */
.orbit-col-left .orbit-item:nth-child(1),
.orbit-col-left .orbit-item:nth-child(4){
  transform: translateX(-6px);
}

/* Mobilde bu kaydırmaları kapat */
@media (max-width: 992px){
  .orbit-col-left,
  .orbit-col-left .orbit-item{
    transform: none !important;
  }
}

/* 2) ArmiKOM Cloud / On-Prem alt ORTA */
.orbit-bottom{
  width: fit-content;
  max-width: 720px;
  margin: 30px auto 0;     /* <-- alt ortalama */
  justify-content: center;
}
.orbit-col-left .orbit-item:nth-child(2),
.orbit-col-left .orbit-item:nth-child(3){
  transform: translateX(-42px);
}
.orbit-col-right .orbit-item:nth-child(2),
.orbit-col-right .orbit-item:nth-child(3){
  transform: translateX(42px);
}
.orbit-bottom{
  display: none !important;
}
/* ===========================
   SHOWCASE (PC + MOBILE) FINAL
   - ÇERÇEVE YOK
   - PNG transparan
   - PC büyük, Mobil sağda büyük
   =========================== */

.showcase-like{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0px;                 /* minimum mesafe */
  padding: 10px 0 0;
}

/* PC daha büyük */
.showcase-like__pc{
  height: 380px;            /* PC yüksekliği */
  width: auto;
  display: block;
  object-fit: contain;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,.18));
}

/* Mobil PC ile uyumlu (biraz küçük) */
.showcase-like__mobile{
  height: 340px;            /* mobil biraz küçük */
  width: auto;
  display: block;
  object-fit: contain;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 16px 34px rgba(0,0,0,.22));
}

/* Mobilde alt alta */
@media (max-width: 992px){
  .showcase-like{
    flex-direction: column;
    gap: 12px;
  }
  .showcase-like__pc{ height: 320px; }
  .showcase-like__mobile{ height: 290px; }
}

.showcase-like{
  gap: 0 !important;
  justify-content: center;
}

.showcase-like__pc,
.showcase-like__mobile{
  display: block !important;   /* alt boşluğu keser */
  margin: 0 !important;
}

/* mobil PC'ye iyice yaklaşsın */
.showcase-like__mobile{
  margin-left: -24px !important;   /* <-- boşluğu öldürür */
}

/* İkisini sola çek */
.showcase-like{
  justify-content: flex-start !important;  /* sola yasla */
}

/* Üst üste binme kalksın diye mobilin negatif marginini azalt */
.showcase-like__mobile{
  margin-left: -58px !important;          /* -24/-30 yerine daha az */
}

/* =========================================
   ORBIT PREMIUM ANIMATION (Glow + Spin)
   - Logo çevresi mavi halka döner
   - Orbit arc (alt mavi yay) döner
   - Premium glow + pulse
   ========================================= */

/* Ortadaki logo alanı üstte kalsın */
.orbit-center{
  position: relative;
}

/* Logo yuvarlağı */
.orbit-core{
  position: relative;
  z-index: 5;
  overflow: visible;
}

/* -----------------------------------------
   1) LOGO ETRAFI DÖNEN HALKA (GLOW)
   ----------------------------------------- */

/* Eski border'ı kapatmak istersen (opsiyonel)
.orbit-core{
  border: none !important;
}
*/

/* dönen halka (border gibi duran layer) */
.orbit-core::after{
  content:"";
  position:absolute;
  inset:-12px;                   /* dışa taşır */
  border-radius:999px;

  /* halka */
  border: 10px solid rgba(48,86,211,.16);
  border-left-color: rgba(48,86,211,.70);
  border-top-color: rgba(48,86,211,.70);

  /* glow */
  filter: drop-shadow(0 0 14px rgba(48,86,211,.30))
          drop-shadow(0 0 40px rgba(48,86,211,.12));

  animation: orbitSpin 6s linear infinite;
  will-change: transform;
  z-index: -1;
  pointer-events:none;
}

/* içte ikinci ince halka (premium detay) */
.orbit-core::before{
  content:"";
  position:absolute;
  inset:-26px;
  border-radius:999px;

  border: 2px dashed rgba(48,86,211,.20);
  opacity: .65;

  animation: orbitSpinReverse 16s linear infinite;
  will-change: transform;
  z-index: -2;
  pointer-events:none;
}

/* -----------------------------------------
   2) ORBIT ARC (ALT MAVİ YAY) DÖNSÜN
   ----------------------------------------- */
.orbit-arc{
  animation: orbitSpinReverse 12s linear infinite;
  will-change: transform;

  /* glow */
  filter: drop-shadow(0 0 10px rgba(48,86,211,.18))
          drop-shadow(0 0 26px rgba(48,86,211,.10));
}

/* -----------------------------------------
   3) ORBIT DOTS HAFİF PULSE (çok premium)
   ----------------------------------------- */
.orbit-dot{
  animation: orbitPulse 2.8s ease-in-out infinite;
}

.orbit-dot:nth-child(2){ animation-delay: .2s; }
.orbit-dot:nth-child(3){ animation-delay: .4s; }
.orbit-dot:nth-child(4){ animation-delay: .6s; }
.orbit-dot:nth-child(5){ animation-delay: .8s; }
.orbit-dot:nth-child(6){ animation-delay: 1s; }
.orbit-dot:nth-child(7){ animation-delay: 1.2s; }
.orbit-dot:nth-child(8){ animation-delay: 1.4s; }

/* -----------------------------------------
   4) ORBIT DIŞ ÇEMBER (DOTTED) HAFİF CANLI
   ----------------------------------------- */
.orbit-dots{
  animation: orbitGlowPulse 4.2s ease-in-out infinite;
}

/* -----------------------------------------
   KEYFRAMES
   ----------------------------------------- */
@keyframes orbitSpin{
  from{ transform: rotate(0deg); }
  to{ transform: rotate(360deg); }
}

@keyframes orbitSpinReverse{
  from{ transform: rotate(0deg); }
  to{ transform: rotate(-360deg); }
}

@keyframes orbitPulse{
  0%   { transform: scale(1); opacity: .95; }
  50%  { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); opacity: .95; }
}

@keyframes orbitGlowPulse{
  0%   { opacity: .55; filter: blur(0px); }
  50%  { opacity: .95; filter: blur(.4px); }
  100% { opacity: .55; filter: blur(0px); }
}

/* -----------------------------------------
   Mobilde animasyonu biraz yavaşlat (performans)
   ----------------------------------------- */
@media (max-width: 992px){
  .orbit-core::after{ animation-duration: 9s; }
  .orbit-core::before{ animation-duration: 22s; }
  .orbit-arc{ animation-duration: 18s; }
}
/* ÜST MENÜ LOGO PARLAYAN ŞERİDİ KALDIR */
.logo-shine .shine{
  display: none !important;
}
/* Carousel taşma + scrollbar zıplama fix */
.header-carousel,
.header-carousel .owl-stage-outer,
.header-carousel .owl-stage{
  overflow: hidden !important;
}

/* 1px yatay taşma olursa tamamen yok et */
html, body{
  overflow-x: hidden !important;
}

/* Resim kesin blok olsun (alt boşluk/hesap farkı olmasın) */
.header-carousel .header-carousel-item{
  height: 700px;
  overflow: hidden;            /* kritik */
}

.header-carousel .header-carousel-item img{
  width: 100%;
  height: 700px !important;
  object-fit: cover;
  display: block;              /* kritik */
  transform-origin: center center;
  animation: image-zoom-scale 10s ease-in-out infinite alternate;
}

/* ESKİ height animasyonu yerine transform scale */
@keyframes image-zoom-scale {
  0%   { transform: scale(1); opacity: .90; }
  25%  { transform: scale(1.06); opacity: .50; }
  50%  { transform: scale(1.09); opacity: 1; }
  75%  { transform: scale(1.06); opacity: .50; }
  100% { transform: scale(1); opacity: .90; }
}
/* =========================================
   ABOUT HEAD - PREMIUM
   ========================================= */

.about-orbit-head{
  text-align: center;
  max-width: 980px;
  margin: 0 auto 30px;
}

/* üst pill */
.about-pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  border-radius: 999px;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;

  color: #3056d3;
  background: rgba(48,86,211,.10);
  border: 1px solid rgba(48,86,211,.20);

  margin-bottom: 14px;
}

/* başlık */
.about-orbit-head h2{
  margin: 0 auto 12px;
  max-width: 820px;

  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0b1220;
}

.about-orbit-head h2 b{
  color: #3056d3;
}

/* açıklama */
.about-orbit-head p{
  margin: 0 auto;
  max-width: 720px;

  font-size: 16px;
  line-height: 1.7;
  color: rgba(11,18,32,.68);
}

/* alt çizgi premium detay */
.about-orbit-head p::before{
  content:"";
  display:block;
  width: 64px;
  height: 3px;
  margin: 14px auto 14px;
  border-radius: 999px;
  background: rgba(48,86,211,.35);
}
.about-orbit-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 50% 0%, rgba(48,86,211,.08), transparent 55%);
  pointer-events:none;
}
.vendor-title{
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 2.4vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.4px;
  color: #0b1220;
  position: relative;
  display: inline-block;
}

/* ARMİKOM kelimesini vurgulayalım */
.vendor-title::before{
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg,#0d6efd,#4dabff);
}

/* Mavi kelime efekti (istersen ARMİKOM'u span içine alabiliriz) */
.vendor-title span{
  background: linear-gradient(90deg,#0d6efd,#4dabff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.vendor-title-tech{
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #0b1220;
  position: relative;
  display: inline-block;
}

/* ARMİKOM kelimesi tech gradient */
.vendor-title-tech span{
  background: linear-gradient(90deg,#0d6efd,#00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

/* Altında tech line */
.vendor-title-tech::after{
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 80px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg,#0d6efd,#00c6ff);
  box-shadow: 0 0 12px rgba(13,110,253,.4);
}

/* Hafif glow efekti */
.vendor-title-tech span::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,#0d6efd,#00c6ff);
  filter: blur(14px);
  opacity: .25;
  z-index: -1;
}
/* =========================
   ABOUT HEAD (Soft-Sharp Tech)
   ========================= */
.about-orbit-head{
  text-align: center;
  max-width: 980px;
  margin: 0 auto 30px;
}

/* üst etiket */
.about-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding: 8px 14px;
  border-radius: 999px;

  font-weight: 900;
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;

  color: #0d6efd;
  background: rgba(13,110,253,.10);
  border: 1px solid rgba(13,110,253,.18);

  box-shadow: 0 14px 34px rgba(13,110,253,.10);
  position: relative;
  overflow: hidden;
}

/* hafif "shine" */
.about-pill::after{
  content:"";
  position:absolute;
  top:-60%;
  left:-70%;
  width: 120px;
  height: 220%;
  background: rgba(13,110,253,.18);
  transform: rotate(25deg);
  filter: blur(8px);
  opacity: .55;
  pointer-events:none;
  animation: aboutPillShine 3.8s ease-in-out infinite;
}
@keyframes aboutPillShine{
  0%   { left:-70%; opacity:0; }
  18%  { opacity:.55; }
  55%  { left:120%; opacity:.35; }
  100% { left:120%; opacity:0; }
}

/* başlık */
.about-orbit-head h2{
  margin: 14px auto 12px;
  max-width: 860px;

  font-weight: 950;
  letter-spacing: -0.03em;
  line-height: 1.12;

  font-size: clamp(22px, 2.4vw, 38px);
  color: #0b1220;
}

/* vurgu (b) -> tech gradient */
.about-orbit-head h2 b{
  background: linear-gradient(90deg,#0d6efd,#00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 950;
  position: relative;
}

/* alt çizgi tech */
.about-orbit-head h2::after{
  content:"";
  display:block;
  width: 74px;
  height: 3px;
  border-radius: 999px;
  margin: 14px auto 0;
  background: linear-gradient(90deg,#0d6efd,#00c6ff);
  box-shadow: 0 10px 30px rgba(13,110,253,.18);
}

/* açıklama */
.about-orbit-head p{
  margin: 12px auto 0;
  max-width: 720px;

  font-size: 16px;
  line-height: 1.75;
  color: rgba(11,18,32,.68);
}

/* motion hassasiyeti */
@media (prefers-reduced-motion: reduce){
  .about-pill::after{ animation:none; }
}
/* About içindeki tech başlık boyut ayarı */
.about-tech-title{
  font-size: clamp(18px, 2vw, 26px);
  margin-bottom: 10px;
}
/* =========================
   METRICS - DAHA TEKNİK PANEL
   ========================= */

.eco-metric{
  position: relative;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #f6faff);
  padding: 22px 18px;

  text-align: center;   /* ORTALAMA */

  box-shadow:
    0 18px 50px rgba(11,18,32,.08),
    inset 0 1px 0 rgba(255,255,255,.9);

  overflow: hidden;
  transition: all .25s ease;
}

/* Teknik köşe çizgileri */
.eco-metric::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:14px;
  padding:1px;
  background: linear-gradient(135deg,
    rgba(13,110,253,.55),
    rgba(0,198,255,.25),
    rgba(13,110,253,.15)
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events:none;
}

/* Üstten teknik glow */
.eco-metric::after{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:60px;
  background: radial-gradient(circle at 50% 0%, rgba(13,110,253,.15), transparent 70%);
  pointer-events:none;
  opacity:.8;
}

/* Hover: kontrol panel hissi */
.eco-metric:hover{
  transform: translateY(-4px);
  box-shadow:
    0 28px 80px rgba(13,110,253,.15),
    0 18px 50px rgba(11,18,32,.10);
  background: linear-gradient(180deg,#f3f9ff,#ffffff);
}

/* 7/24 vs büyük değer */
.eco-metric-num{
  font-weight: 950;
  font-size: 24px;
  letter-spacing: .6px;

  background: linear-gradient(90deg,#0d6efd,#00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  margin-bottom: 6px;
}

/* Alt açıklama */
.eco-metric-txt{
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .25px;
  color: rgba(11,18,32,.70);
}
/* wrapper */
.arm-map-wrap{
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: transparent !important;
}

.arm-map-img{
  width: 100%;
  height: auto;
  display: block;
  background: transparent !important;
}

.arm-map-overlay{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent !important;
  pointer-events: none;
}

/* çizgiler (TR -> Dünya) */
.arm-map-line{
  fill: none;
  stroke: rgba(13,110,253,.24);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 5 8;
  animation: dashMove 3.6s linear infinite;
}

@keyframes dashMove{
  to { stroke-dashoffset: -60; }
}

/* flow packet (akan nokta) */
.arm-flow{
  fill: var(--bs-primary);
  filter: drop-shadow(0 0 10px rgba(13,110,253,.55));
  opacity: .9;
}
.arm-flow--2{ opacity:.75; }
.arm-flow--4{ opacity:.70; }

/* node genel */
.arm-dot{
  fill: var(--bs-primary);
  filter: drop-shadow(0 0 10px rgba(13,110,253,.45));
}
.arm-halo{
  fill: rgba(13,110,253,.16);
  filter: drop-shadow(0 0 18px rgba(13,110,253,.30));
  transform-origin: center;
  animation: armPulse 2.7s ease-in-out infinite;
}
.arm-node .arm-dot{ animation: armDot 2.7s ease-in-out infinite; }

/* delay */
.d1 .arm-halo, .d1 .arm-dot{ animation-delay: .5s; }
.d2 .arm-halo, .d2 .arm-dot{ animation-delay: 1.0s; }
.d3 .arm-halo, .d3 .arm-dot{ animation-delay: 1.5s; }
.d4 .arm-halo, .d4 .arm-dot{ animation-delay: 2.0s; }
.d5 .arm-halo, .d5 .arm-dot{ animation-delay: 2.3s; }

@keyframes armPulse{
  0%   { opacity:.10; transform: scale(.85); }
  45%  { opacity:.70; transform: scale(1.65); }
  100% { opacity:.10; transform: scale(.85); }
}
@keyframes armDot{
  0%   { opacity: 1; }
  45%  { opacity: .55; }
  100% { opacity: 1; }
}

/* TÜRKİYE merkez: daha büyük + daha hızlı + ring */
.arm-node--tr .arm-halo{ animation-duration: 1.85s; }
.arm-node--tr .arm-dot { animation-duration: 1.85s; }
.arm-node--tr .arm-dot { filter: drop-shadow(0 0 18px rgba(13,110,253,.70)); }

.arm-tr-ring{
  fill: none;
  stroke: rgba(13,110,253,.35);
  stroke-width: 3;
  stroke-dasharray: 10 10;
  filter: drop-shadow(0 0 18px rgba(13,110,253,.22));
  transform-origin: 980px 660px;
  animation: ringSpin 8s linear infinite;
}
@keyframes ringSpin{
  to { transform: rotate(360deg); }
}

/* TR label */
.arm-tr-label{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: 20px;
  fill: rgba(17,24,39,.92);
  paint-order: stroke;
  stroke: rgba(255,255,255,.85);
  stroke-width: 6px; /* beyaz zeminde okunur */
  stroke-linejoin: round;
}
.arm-map-wrap{
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: transparent !important;
}

.arm-map-img{
  width: 100%;
  height: auto;
  display: block;
  background: transparent !important;
}

.arm-map-overlay{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent !important;
  pointer-events: none;
}

/* Path'ler görünmesin (çizgi yok) */
.arm-path{
  fill: none;
  stroke: transparent;
  stroke-width: 0;
}

/* Akan ışık paketleri */
.arm-flow{
  fill: var(--bs-primary);
  filter: drop-shadow(0 0 12px rgba(13,110,253,.55));
  opacity: .85;
}
.arm-flow.f2{ opacity:.70; }
.arm-flow.f4{ opacity:.65; }
.arm-flow.f9{ opacity:.60; }

/* Dünya node'ları */
.arm-dot{
  fill: var(--bs-primary);
  filter: drop-shadow(0 0 10px rgba(13,110,253,.45));
}
.arm-halo{
  fill: rgba(13,110,253,.16);
  filter: drop-shadow(0 0 18px rgba(13,110,253,.30));
  transform-origin: center;
  animation: armPulse 2.7s ease-in-out infinite;
}
.arm-node .arm-dot{
  animation: armDot 2.7s ease-in-out infinite;
}

/* Delays (yayılım hissi) */
.d1 .arm-halo, .d1 .arm-dot{ animation-delay: .4s; }
.d2 .arm-halo, .d2 .arm-dot{ animation-delay: .8s; }
.d3 .arm-halo, .d3 .arm-dot{ animation-delay: 1.2s; }
.d4 .arm-halo, .d4 .arm-dot{ animation-delay: 1.6s; }
.d5 .arm-halo, .d5 .arm-dot{ animation-delay: 2.0s; }
.d6 .arm-halo, .d6 .arm-dot{ animation-delay: 1.0s; }
.d7 .arm-halo, .d7 .arm-dot{ animation-delay: 1.4s; }
.d8 .arm-halo, .d8 .arm-dot{ animation-delay: 1.8s; }
.d9 .arm-halo, .d9 .arm-dot{ animation-delay: 2.2s; }

@keyframes armPulse{
  0%   { opacity:.10; transform: scale(.85); }
  45%  { opacity:.72; transform: scale(1.65); }
  100% { opacity:.10; transform: scale(.85); }
}
@keyframes armDot{
  0%   { opacity: 1; }
  45%  { opacity: .55; }
  100% { opacity: 1; }
}

/* TÜRKİYE: dev, hızlı, daha parlak */
.arm-node--tr .arm-halo{ animation-duration: 1.55s; }
.arm-node--tr .arm-dot { animation-duration: 1.55s; }
.arm-node--tr .arm-dot { filter: drop-shadow(0 0 22px rgba(13,110,253,.75)); }

/* TR ring (premium) */
.arm-tr-ring{
  fill: none;
  stroke: rgba(13,110,253,.35);
  stroke-width: 3;
  stroke-dasharray: 12 12;
  filter: drop-shadow(0 0 20px rgba(13,110,253,.22));
  transform-origin: 980px 660px;
  animation: ringSpin 7s linear infinite;
}

@keyframes ringSpin{ to { transform: rotate(360deg); } }
/* =========================================================
   ARMİKOM MAP (FULL CSS - FIXED)
   - Desktop: daha büyük GÖRÜNÜR ama sayfa uzamaz (scale)
   - Mobil: aynı kalsın
   ========================================================= */

/* RIGHT COLUMN WRAP */
.arm-map-card{
  width: 100%;
  background: transparent !important;
  margin-left: auto;                 /* sağa yasla */
}

/* MAP BOX (layout sabit kalsın) */
.arm-map{
  position: relative;
  width: 100%;
  height: 420px;                     /* layout yüksekliği (SABİT) */
  background: transparent !important;
  overflow: hidden;                  /* scale taşmasını kes -> sayfa büyümez */
  border-radius: 14px;               /* istersen 0 yap */
}

/* Image + SVG same layer */
.arm-map__img,
.arm-map__svg{
  width: 100%;
  height: 100%;
  background: transparent !important;
  transform-origin: center center;
}

/* IMAGE */
.arm-map__img{
  object-fit: contain;
  display: block;
}

/* SVG overlay */
.arm-map__svg{
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* =========================
   DESKTOP: GÖRSEL BÜYÜT (layout büyümeden)
   ========================= */
@media (min-width: 992px){
  .arm-map__img,
  .arm-map__svg{
    transform: scale(1.22) translateY(-10px); /* <-- büyüt + biraz yukarı al */
  }
}

/* TR merkezini HTML'deki --TRX/--TRY ile alır */
.arm-net{
  transform: translate(calc(var(--TRX) * 1px), calc(var(--TRY) * 1px));
}

/* =========================
   LINKS (dashed beam)
   ========================= */
.arm-link{
  fill: none;
  stroke: rgba(13,110,253,.36);
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-dasharray: 9 10;
  opacity: .95;
  animation: armDash 3.1s linear infinite;
  filter:
    drop-shadow(0 0 10px rgba(13,110,253,.28))
    drop-shadow(0 0 26px rgba(13,110,253,.18))
    drop-shadow(0 0 56px rgba(13,110,253,.10));
}

.arm-l7, .arm-l8{
  stroke: rgba(13,110,253,.30);
  opacity: .84;
  stroke-width: 2.4;
  animation-duration: 3.8s;
}

@keyframes armDash{ to{ stroke-dashoffset: -160; } }

/* =========================
   FLOW (glow packets)
   ========================= */
.arm-flow{
  fill: var(--bs-primary, #0d6efd);
  opacity: .98;
  filter:
    drop-shadow(0 0 8px rgba(255,255,255,.20))
    drop-shadow(0 0 18px rgba(13,110,253,.90))
    drop-shadow(0 0 44px rgba(13,110,253,.35));
  transform: scale(1.22);
  transform-origin: center;
}

.arm-flow--mini{
  opacity: .86;
  filter:
    drop-shadow(0 0 14px rgba(13,110,253,.62))
    drop-shadow(0 0 36px rgba(13,110,253,.20));
  transform: scale(1.08);
}

.f4, .f7, .f8{
  filter:
    drop-shadow(0 0 10px rgba(255,255,255,.22))
    drop-shadow(0 0 22px rgba(13,110,253,.98))
    drop-shadow(0 0 60px rgba(13,110,253,.40));
}

/* =========================
   TURKEY (spread strong)
   ========================= */
.arm-tr__glow{
  fill: rgba(13,110,253,.14);
  filter:
    drop-shadow(0 0 30px rgba(13,110,253,.30))
    drop-shadow(0 0 70px rgba(13,110,253,.18));
}

/* shockwave */
.arm-tr__shock{
  fill: none;
  stroke: rgba(13,110,253,.48);
  stroke-width: 2.8;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  filter: drop-shadow(0 0 22px rgba(13,110,253,.20));
  animation: shock 2.15s ease-out infinite;
}
.arm-tr__shock.s1{ animation-delay: 0s; }
.arm-tr__shock.s2{ animation-delay: 1.075s; }

@keyframes shock{
  0%   { transform: scale(.68); opacity: .95; }
  55%  { opacity: .28; }
  100% { transform: scale(5.2); opacity: 0; }
}

/* pulse */
.arm-tr__pulse{
  fill: none;
  stroke: rgba(13,110,253,.55);
  stroke-width: 2.6;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  filter: drop-shadow(0 0 20px rgba(13,110,253,.24));
  animation: trPulse 2.65s ease-out infinite;
}
.arm-tr__pulse.p1{ animation-delay: 0s; }
.arm-tr__pulse.p2{ animation-delay: .66s; }
.arm-tr__pulse.p3{ animation-delay: 1.32s; }
.arm-tr__pulse.p4{ animation-delay: 1.98s; }

@keyframes trPulse{
  0%   { transform: scale(.48); opacity: .95; }
  65%  { opacity: .22; }
  100% { transform: scale(4.1); opacity: 0; }
}

/* ring */
.arm-tr__ring{
  fill: none;
  stroke: rgba(13,110,253,.62);
  stroke-width: 3.6;
  stroke-dasharray: 16 12;
  filter:
    drop-shadow(0 0 18px rgba(13,110,253,.34))
    drop-shadow(0 0 46px rgba(13,110,253,.18));
  transform-box: fill-box;
  transform-origin: center;
  animation: trRing 5.0s linear infinite;
}
@keyframes trRing{ to{ transform: rotate(360deg); } }

.arm-tr__dot{
  fill: var(--bs-primary, #0d6efd);
  filter:
    drop-shadow(0 0 12px rgba(255,255,255,.25))
    drop-shadow(0 0 28px rgba(13,110,253,.98))
    drop-shadow(0 0 66px rgba(13,110,253,.40));
  transform: scale(1.15);
}

.arm-tr__spark{
  fill: rgba(255,255,255,.92);
  opacity: .95;
  animation: trSpark 1.1s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(255,255,255,.35));
}
@keyframes trSpark{
  0%,100%{ transform: translate(0,0); opacity:.65; }
  50%{ transform: translate(2px,-2px); opacity:1; }
}

/* =========================
   NODES
   ========================= */
.arm-node__halo{
  fill: rgba(13,110,253,.18);
  filter:
    drop-shadow(0 0 18px rgba(13,110,253,.32))
    drop-shadow(0 0 46px rgba(13,110,253,.16));
  transform-box: fill-box;
  transform-origin: center;
  animation: nodeHalo 2.85s ease-in-out infinite;
}
.arm-node__dot{
  fill: var(--bs-primary, #0d6efd);
  filter:
    drop-shadow(0 0 12px rgba(13,110,253,.55))
    drop-shadow(0 0 28px rgba(13,110,253,.22));
  animation: nodeDot 2.85s ease-in-out infinite;
}

@keyframes nodeHalo{
  0%   { opacity:.12; transform: scale(.82); }
  45%  { opacity:.90; transform: scale(2.10); }
  100% { opacity:.12; transform: scale(.82); }
}
@keyframes nodeDot{
  0%   { opacity: 1; }
  45%  { opacity: .55; }
  100% { opacity: 1; }
}

/* delays */
.n1  .arm-node__halo, .n1  .arm-node__dot{ animation-delay: .2s; }
.n2  .arm-node__halo, .n2  .arm-node__dot{ animation-delay: .6s; }
.n3  .arm-node__halo, .n3  .arm-node__dot{ animation-delay: 1.0s; }
.n4  .arm-node__halo, .n4  .arm-node__dot{ animation-delay: 1.4s; }
.n5  .arm-node__halo, .n5  .arm-node__dot{ animation-delay: 1.8s; }
.n6  .arm-node__halo, .n6  .arm-node__dot{ animation-delay: 2.2s; }
.n7  .arm-node__halo, .n7  .arm-node__dot{ animation-delay: .9s; }
.n8  .arm-node__halo, .n8  .arm-node__dot{ animation-delay: 1.3s; }
.n9  .arm-node__halo, .n9  .arm-node__dot{ animation-delay: 1.7s; }
.n10 .arm-node__halo, .n10 .arm-node__dot{ animation-delay: 2.1s; }
.n11 .arm-node__halo, .n11 .arm-node__dot{ animation-delay: 1.1s; }
.n12 .arm-node__halo, .n12 .arm-node__dot{ animation-delay: 1.5s; }

/* =========================
   TWINKLES
   ========================= */
.arm-tw{
  fill: rgba(255,255,255,.55);
  opacity: 0;
  filter:
    drop-shadow(0 0 10px rgba(13,110,253,.35))
    drop-shadow(0 0 26px rgba(13,110,253,.18));
  animation: tw 3.9s ease-in-out infinite;
}
.t2{ animation-delay: .6s; }
.t3{ animation-delay: 1.2s; }
.t4{ animation-delay: 1.8s; }
.t5{ animation-delay: 2.4s; }
.t6{ animation-delay: 3.0s; }
.t7{ animation-delay: 1.0s; animation-duration: 4.5s; }
.t8{ animation-delay: 2.0s; animation-duration: 4.3s; }

@keyframes tw{
  0%   { opacity: 0; transform: scale(.75); }
  30%  { opacity: .85; transform: scale(1.35); }
  70%  { opacity: .18; transform: scale(1.0); }
  100% { opacity: 0; transform: scale(.75); }
}

/* =========================================================
   MOBİL AYNI KALSIN (992 altı)
   ========================================================= */
@media (max-width: 991.98px){
  .arm-map{
    height: 320px;            /* mobil küçük kalsın */
    border-radius: 12px;
  }

  /* mobilde büyütme yok */
  .arm-map__img,
  .arm-map__svg{
    transform: none !important;
  }

  .arm-map-card{
    max-width: 520px;
    margin: 0 auto;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .arm-link, .arm-flow, .arm-tr__ring, .arm-tr__pulse, .arm-tr__shock,
  .arm-node__halo, .arm-node__dot, .arm-tw{
    animation: none !important;
  }
}
/* TR'yi sadeleştir */
.arm-tr__shock,
.arm-tr__spark{
  display: none !important;
}

/* pulse sayısını azalt (istersen p2/p3 de kapat) */
.arm-tr__pulse.p2,
.arm-tr__pulse.p3,
.arm-tr__pulse.p4{
  display: none !important;
}

/* ring daha yavaş */
.arm-tr__ring{
  animation: trRing 14s linear infinite !important;
  opacity: .55;
}
/* =========================================================
   ARMİKOM'A GEÇİŞ (SOL TARAF) — SIKI BOŞLUK + STABİL
   Sadece bu section'ı etkiler.
   ========================================================= */
.armikom-pslike{
  --arm-text: #0B1220;
  --arm-muted: rgba(11,18,32,.68);
  --arm-accent: #0d6efd; /* istersen: #34C759 */
  --arm-accent-soft: rgba(13,110,253,.10); /* yeşil kullanırsan buna da uyarlayabiliriz */
}

/* sol kolon genel */
.armikom-pslike .arm-left{
  display:flex;
  flex-direction:column;
  gap: 12px; /* sıkı */
}

/* head alanı (title spacing) */
.armikom-pslike .arm-head{
  margin: 0;
}

/* üst küçük başlık (ARMİKOM...'a Geçiş) */
.armikom-pslike .arm-kicker.vendor-title-tech{
  margin: 0 0 6px !important;
  font-weight: 900 !important;
  letter-spacing: -0.2px;
  font-size: 18px !important;
  line-height: 1.1;
  color: var(--arm-text) !important;
  display:inline-block;
}

/* ARMİKOM gradient (resimdeki gibi tek vurgu) */
.armikom-pslike .arm-kicker.vendor-title-tech span{
  background: linear-gradient(90deg, var(--arm-accent), #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* büyük başlık */
.armikom-pslike .arm-title{
  margin: 0 0 8px !important;
  font-size: clamp(22px, 2.1vw, 30px) !important;
  line-height: 1.18 !important;
  font-weight: 950 !important;
  letter-spacing: -0.02em;
  color: var(--arm-text) !important;
}

.armikom-pslike .arm-title b{
  color: var(--arm-accent) !important;
  font-weight: 950 !important;
}

/* paragraf */
.armikom-pslike .arm-desc{
  margin: 0 !important;
  color: var(--arm-muted) !important;
  line-height: 1.65 !important;
  font-size: 15px;
}

/* steps */
.armikom-pslike .arm-steps{
  list-style: none;
  padding: 0;
  margin: 8px 0 0 !important;
  display:flex;
  flex-direction:column;
  gap: 8px; /* sıkı */
}

.armikom-pslike .arm-steps li{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  padding: 8px 0; /* sıkı */
  border-bottom: 1px solid rgba(11,18,32,.06);
}

.armikom-pslike .arm-steps li:last-child{
  border-bottom: 0;
  padding-bottom: 0;
}

/* küçük nokta */
.armikom-pslike .arm-step-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--arm-accent);
  margin-top: 6px;
  box-shadow: 0 0 0 5px var(--arm-accent-soft);
  flex: 0 0 auto;
}

.armikom-pslike .arm-step-text{
  min-width:0;
}

.armikom-pslike .arm-step-text b{
  display:block;
  color: var(--arm-text);
  font-weight: 900;
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 2px;
}

.armikom-pslike .arm-step-text span{
  display:block;
  color: rgba(11,18,32,.62);
  font-size: 13px;
  line-height: 1.45;
}

/* CTA */
.armikom-pslike .arm-cta{
  margin-top: 10px; /* sıkı */
}

.armikom-pslike .arm-btn{
  border-radius: 12px;
  font-weight: 800;
  padding-top: 10px;
  padding-bottom: 10px;
}

/* Mobil sıkılaştırma */
@media (max-width: 991.98px){
  .armikom-pslike .arm-left{
    gap: 10px;
  }
  .armikom-pslike .arm-steps{
    gap: 7px;
  }
}
/* STEP boşluklarını daha sıkı yap */
.armikom-pslike .arm-steps{
  margin-top: 6px !important;
  gap: 6px !important;              /* 8 -> 6 */
}

.armikom-pslike .arm-steps li{
  padding: 6px 0 !important;        /* 8 -> 6 */
  gap: 8px !important;              /* 10 -> 8 */
}

.armikom-pslike .arm-step-dot{
  width: 9px !important;
  height: 9px !important;
  margin-top: 5px !important;
  box-shadow: 0 0 0 4px rgba(13,110,253,.10) !important; /* halo biraz küçülsün */
}

.armikom-pslike .arm-step-text b{
  margin-bottom: 1px !important;
  font-size: 13.5px !important;
}

.armikom-pslike .arm-step-text span{
  font-size: 12.8px !important;
  line-height: 1.38 !important;
}
/* ÜST ANA BAŞLIK (BÜYÜK) */
#baslamak .arm-kicker{
  font-size: clamp(26px, 2.8vw, 38px) !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.6px !important;
  margin-bottom: 6px !important;
}

/* ARMİKOM gradient kalsın ama boyu büyümesin ayrı */
#baslamak .arm-kicker span{
  font-size: inherit !important;
}

/* ALT BAŞLIK (DAHA KÜÇÜK) */
#baslamak .arm-title{
  font-size: clamp(18px, 1.6vw, 24px) !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  letter-spacing: -0.2px !important;
  color: rgba(11,18,32,.85) !important;
}

/* Vurgu biraz daha sakin olsun */
#baslamak .arm-title b{
  font-weight: 800 !important;
  background: none !important;
  -webkit-text-fill-color: initial !important;
  color: #0d6efd !important;
}
/* İzleme istasyonu: görsel sol olduğu için hizayı sola çek */
#izleme-istasyonu .arm-media{
  display: flex;
  justify-content: flex-start;
}

/* Mobilde ortala */
@media (max-width: 991.98px){
  #izleme-istasyonu .arm-media{
    justify-content: center;
  }
}
.arm-hero-visual{
	width: 80%;
	max-width: 115%;
	height: auto;
	display: block;
	margin-left: -19%;   /* biraz daha sola */
	position: relative;
	z-index: 1;
	filter: drop-shadow(0 28px 60px rgba(11,18,32,.20));
	background-image: url(img/enteg.png);
}

/* Tablet */
@media (max-width: 992px){
  .arm-hero-visual{
    width: 105%;
    max-width: 105%;
    margin-left: -3%;
  }
}

/* Mobil */
@media (max-width: 768px){
  .arm-hero-visual{
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
/* =========================================
   İZLEME İSTASYONU - BAŞLIK HİYERARŞİSİ
   #baslamak ile aynı (kicker büyük, title küçük)
   ========================================= */

#izleme-istasyonu .arm-kicker{
  font-size: clamp(26px, 2.8vw, 38px) !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.6px !important;
  margin-bottom: 6px !important;
}

#izleme-istasyonu .arm-kicker span{
  font-size: inherit !important;
}

/* alt başlık daha küçük */
#izleme-istasyonu .arm-title{
  font-size: clamp(18px, 1.6vw, 24px) !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  letter-spacing: -0.2px !important;
  color: rgba(11,18,32,.85) !important;
  margin-bottom: 12px !important;
}

/* vurguyu baslamak ile aynı sakin yap */
#izleme-istasyonu .arm-title b{
  font-weight: 800 !important;
  background: none !important;
  -webkit-text-fill-color: initial !important;
  color: #0d6efd !important;
}
/* 1) Butonun referans alacağı alan: text tarafı */
#izleme-istasyonu .arm-left{
  position: relative;
}

#izleme-istasyonu .arm-cta{
  position: absolute;
  right: 40px;
  bottom: -25px;   /* aşağı almak için bunu değiştir */
  z-index: 10;
}


/* 3) Butonun listeye binmemesi için sağda yer aç */
#izleme-istasyonu .arm-steps{
  padding-right: 180px; /* buton genişliğine göre 160-220 arası oynat */
}

/* Mobilde normal akışa dönsün */
@media (max-width: 991.98px){
  #izleme-istasyonu .arm-cta{
    position: static;
    margin-top: 18px !important;
    text-align: center;
  }
  #izleme-istasyonu .arm-steps{
    padding-right: 0;
  }
}
/* =========================================================
   ARMİKOM SECTIONS — ANIMATION ONLY (NO TITLE SIZE OVERRIDE)
   - Başlık font-size/line-height DEĞİŞTİRMEZ
   ========================================================= */

/* küçük güvenlik: taşma/shift engeli */
#baslamak, #izleme-istasyonu, #entegrasyonlar{
  position: relative;
  overflow: hidden;
}

/* Reveal base */
.arm-reveal{
  opacity: 0;
  filter: blur(2px);
  transition:
    transform .75s cubic-bezier(.2,.9,.2,1),
    opacity .75s ease,
    filter .75s ease;
  will-change: transform, opacity, filter;
}

.arm-reveal.is-inview{
  opacity: 1;
  filter: blur(0);
  transform: none;
}

/* 1) Sağdan gelsin */
.arm-from-right{ transform: translateX(28px); }

/* 2) Soldan gelsin */
.arm-from-left{ transform: translateX(-28px); }

/* 3) Alttan gelsin */
.arm-from-bottom{ transform: translateY(18px); }

/* sıralı gecikme (aynı section içinde akış güzel olsun) */
.arm-delay-1{ transition-delay: .00s; }
.arm-delay-2{ transition-delay: .10s; }
.arm-delay-3{ transition-delay: .20s; }
.arm-delay-4{ transition-delay: .30s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .arm-reveal{
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
  }
}
/* =========================================
   ENTEGRASYONLAR - BAŞLIK HİYERARŞİSİ
   #baslamak / #izleme-istasyonu ile aynı
   ========================================= */

#entegrasyonlar .arm-kicker{
  font-size: clamp(26px, 2.8vw, 38px) !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.6px !important;
  margin-bottom: 6px !important;
}

#entegrasyonlar .arm-kicker span{
  font-size: inherit !important;
}

/* alt başlık daha küçük */
#entegrasyonlar .arm-title{
  font-size: clamp(18px, 1.6vw, 24px) !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  letter-spacing: -0.2px !important;
  color: rgba(11,18,32,.85) !important;
  margin-bottom: 12px !important;
}

/* vurguyu diğerleri gibi sakin yap */
#entegrasyonlar .arm-title b{
  font-weight: 800 !important;
  background: none !important;
  -webkit-text-fill-color: initial !important;
  color: #0d6efd !important;
}
/* ===== ARMİKOM FAQ – Premium Blue (Light Version) ===== */

.faq-accordion{
  display: grid;
  gap: 14px;
}

/* Kart */
.faq-item.accordion-item{
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(11,18,32,0.06);
  box-shadow: 0 12px 28px rgba(11,18,32,0.06);
  overflow: hidden;
  transition: all .25s cubic-bezier(.4,0,.2,1);
}

/* Hover */
.faq-item:hover{
  transform: translateY(-3px);
  box-shadow:
    0 20px 45px rgba(11,18,32,0.12),
    0 0 0 1px rgba(0,123,255,0.12);
}

/* Soru */
.faq-item .accordion-button{
  background: transparent;
  color: #0B1220;   /* Siyah */
  font-weight: 600;
  font-size: 16px;
  padding: 20px 22px 20px 50px;
  box-shadow: none;
  position: relative;
}

/* Açık / kapalı siyah kalsın */
.faq-item .accordion-button.collapsed{
  color: #0B1220;
}

/* Açık state – mavi premium glow */
.faq-item .accordion-button:not(.collapsed){
  background:
    radial-gradient(800px 120px at 10% 0%, rgba(0,123,255,0.12), transparent 60%);
  color: #0B1220;
}

/* Cevap */
.faq-item .accordion-body{
  color: rgba(11,18,32,0.72);
  line-height: 1.7;
  padding: 0 22px 22px 50px;
  font-size: 15px;
}

/* Divider */
.faq-item .accordion-collapse{
  border-top: 1px solid rgba(11,18,32,0.06);
}

/* Sol mavi premium çizgi */
.faq-item .accordion-button::before{
  content: "";
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 22px;
  border-radius: 4px;
  background: linear-gradient(180deg, #007BFF, #3FA9FF);
  opacity: .9;
  transition: height .2s ease;
}

.faq-item .accordion-button.collapsed::before{
  height: 14px;
  opacity: .6;
}

/* Ok ikonunu premium yap */
.faq-item .accordion-button::after{
  filter: brightness(0);
  opacity: .6;
  transition: transform .25s ease, opacity .25s ease;
}

.faq-item .accordion-button:not(.collapsed)::after{
  transform: rotate(180deg);
  opacity: .9;
}

/* Açık kart kenar glow */
.faq-item .accordion-button:not(.collapsed){
  box-shadow: inset 0 1px 0 rgba(0,123,255,0.15);
}
/* ================= ARMİKOM CONTACT (isolated) ================= */
.ac-wrap{
  background: #F3F5F8;
  padding: 60px 0;
}

.ac-container{
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}

.ac-head{
  text-align: center;
  max-width: 800px;
  margin: 0 auto 34px;
}

.ac-title{
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: #0B1220;
  margin: 0 0 10px;
}

.ac-title span{
  color: #007BFF;
}

.ac-sub{
  margin: 0;
  color: rgba(11,18,32,0.70);
  line-height: 1.65;
}

/* Grid */
.ac-grid{
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 18px;
  align-items: stretch;
}

/* Cards */
.ac-card{
  border-radius: 20px;
  padding: 26px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(11,18,32,0.08);
  border: 1px solid rgba(11,18,32,0.06);
}

.ac-card--dark{
  background: linear-gradient(160deg, #0B1220, #141E30);
  border: none;
  box-shadow: 0 28px 60px rgba(11,18,32,0.26);
  color: #fff;
}

.ac-card--dark::before{
  content:"";
  position:absolute;
  width: 420px;
  height: 420px;
  top: -180px;
  right: -180px;
  background: radial-gradient(circle, rgba(0,123,255,0.25), transparent 70%);
  animation: acGlow 6s ease-in-out infinite;
  pointer-events:none;
}

@keyframes acGlow{
  0%,100%{ transform: scale(1); opacity:.55; }
  50%{ transform: scale(1.15); opacity:.9; }
}

.ac-card--light{
  background: #fff;
}

.ac-card--light::before{
  content:"";
  position:absolute;
  inset:-1px;
  background: radial-gradient(900px 220px at 18% 0%, rgba(0,123,255,0.12), transparent 60%);
  pointer-events:none;
}

/* Badge */
.ac-badge{
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  margin-bottom: 12px;
}

.ac-badge--dark{
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.92);
}

.ac-badge--light{
  background: rgba(0,123,255,0.10);
  color: #007BFF;
}

/* Titles */
.ac-cardTitle{
  margin: 0 0 8px;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.4px;
}

.ac-cardDesc{
  margin: 0 0 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
}

.ac-cardDesc--light{
  color: rgba(11,18,32,0.70);
}

/* Info boxes */
.ac-info{
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
}

.ac-infoItem{
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}

.ac-card--light .ac-infoItem{
  background: rgba(11,18,32,0.02);
  border: 1px solid rgba(11,18,32,0.06);
}

.ac-infoLabel{
  font-size: 12px;
  color: rgba(255,255,255,0.62);
  margin-bottom: 2px;
}

.ac-card--light .ac-infoLabel{
  color: rgba(11,18,32,0.55);
}

.ac-infoValue{
  font-weight: 700;
  color: #fff;
}

.ac-card--light .ac-infoValue{
  color: #0B1220;
}

.ac-infoValue a{
  color: inherit;
  text-decoration: none;
}

/* Divider */
.ac-divider{
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  margin: 14px 0 16px;
}

.ac-card--light .ac-divider{
  background: linear-gradient(90deg, transparent, rgba(11,18,32,0.12), transparent);
}

/* Form */
.ac-form{
  position: relative;
  z-index: 1;
}

.ac-row{
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.ac-2col{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ac-label{
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.72);
}

.ac-label--dark{
  color: rgba(11,18,32,0.72);
}

.ac-input{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(11,18,32,0.10);
  padding: 12px 14px;
  outline: none;
  background: #fff;
  color: #0B1220;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.ac-input::placeholder{
  color: rgba(11,18,32,0.45);
}

.ac-input:focus{
  border-color: rgba(0,123,255,0.55);
  box-shadow: 0 0 0 6px rgba(0,123,255,0.12);
  transform: translateY(-1px);
}

.ac-input--dark{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
}

.ac-input--dark::placeholder{
  color: rgba(255,255,255,0.55);
}

.ac-input--dark:focus{
  border-color: rgba(0,123,255,0.55);
  box-shadow: 0 0 0 6px rgba(0,123,255,0.12);
}

/* Textarea */
.ac-textarea{
  resize: vertical;
  min-height: 110px;
}

/* Footer row */
.ac-foot{
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 6px;
}

.ac-note{
  font-size: 12px;
  color: rgba(11,18,32,0.55);
  max-width: 520px;
}

/* Button */
.ac-btn{
  width: 100%;
  border: 0;
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 900;
  letter-spacing: .2px;
  color: #fff;
  background: linear-gradient(135deg, #0066FF, #3FA9FF);
  box-shadow: 0 18px 34px rgba(0,123,255,0.22);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.ac-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(0,123,255,0.28);
  filter: brightness(1.02);
}

/* Alerts */
.ac-alert{
  display: none;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 13px;
}

.ac-alert--ok{
  background: rgba(25,135,84,0.14);
  color: #0B4;
  border: 1px solid rgba(25,135,84,0.18);
}

.ac-card--dark .ac-alert--ok{
  background: rgba(25,135,84,0.18);
  color: #d6ffe9;
  border: 1px solid rgba(25,135,84,0.22);
}

.ac-alert--err{
  background: rgba(220,53,69,0.12);
  color: #b20;
  border: 1px solid rgba(220,53,69,0.18);
}

.ac-card--dark .ac-alert--err{
  background: rgba(220,53,69,0.18);
  color: #ffd6dc;
  border: 1px solid rgba(220,53,69,0.22);
}

/* Responsive */
@media (max-width: 992px){
  .ac-grid{ grid-template-columns: 1fr; }
  .ac-2col{ grid-template-columns: 1fr; }
}

@media (max-width: 575px){
  .ac-wrap{ padding: 44px 0; }
  .ac-title{ font-size: 24px; }
  .ac-card{ padding: 20px; }
  .ac-cardTitle{ font-size: 22px; }
}

/* ================= ARMİKOM FOOTER (no frames, premium blue) ================= */
.arm-footer{
  background: linear-gradient(160deg, #0B1220, #0E1830);
  position: relative;
  overflow: hidden;
}

/* soft glow */
.arm-footer::before{
  content:"";
  position:absolute;
  width: 620px;
  height: 620px;
  right: -260px;
  top: -280px;
  background: radial-gradient(circle, rgba(0,123,255,0.28), transparent 70%);
  pointer-events:none;
}
.arm-footer::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(900px 260px at 20% 0%, rgba(0,123,255,0.12), transparent 60%);
  pointer-events:none;
}

/* remove boxy feel */
.arm-footer .arm-footer-item{
  background: transparent;
  border: 0;
  padding: 0;
}

/* brand */
.arm-footer-brand{
  text-decoration: none;
}
.arm-footer-logo-img{
  height: 36px;
  width: auto;
  display: block;
}
.arm-footer-logo-mark{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0066FF, #3FA9FF);
  box-shadow: 0 16px 32px rgba(0,123,255,0.25);
  display:inline-block;
}

/* text */
.arm-footer-desc{
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
}

/* links */
.arm-footer-link{
  display:block;
  color: rgba(255,255,255,0.78);
  text-decoration:none;
  font-weight: 650;
  margin-bottom: 10px;
  transition: transform .15s ease, color .15s ease;
}
.arm-footer-link:hover{
  color:#fff;
  transform: translateX(2px);
}

/* inline */
.arm-footer-inline{
  color: rgba(255,255,255,0.88);
  text-decoration: none;
}
.arm-footer-inline:hover{ color:#fff; }

.arm-footer-contact p{
  color: rgba(255,255,255,0.80);
}

/* App store buttons (premium) */
.arm-store-btn{
  text-decoration:none;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.arm-store-btn:hover{
  transform: translateY(-2px);
  background: rgba(0,123,255,0.12);
  border-color: rgba(0,123,255,0.18);
}
.arm-store-btn--ios i{ font-size: 18px; }
.arm-play-ico{
  color:#3FA9FF;
  font-size: 16px;
}

/* Social buttons: keep bootstrap but add subtle premium hover */
.arm-footer-social .btn{
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 14px 30px rgba(0,123,255,0.18);
}
.arm-footer-social .btn:hover{
  transform: translateY(-2px);
}

/* Copyright */
.arm-copyright{
  background: #0B1220;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.arm-copy-link{
  color:#fff;
  text-decoration:none;
  border-bottom: 1px solid rgba(255,255,255,0.22);
}
.arm-copy-text{
  color: rgba(255,255,255,0.70);
}
/* ===== Brand hizası ===== */
.arm-footer-brand{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 12px;
}

.arm-footer-logo-img{
  height: 100px;
  width: auto;
  display: block;
  object-fit: contain;
}

.arm-footer-brand-text{
  color:#fff;
  font-weight: 900;
  letter-spacing: .2px;
  font-size: 18px;
  line-height: 1;
}

/* ===== Store buttons (SVG premium) ===== */
.arm-store-wrap{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.arm-store-btn{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  min-width: 190px;
}

.arm-store-btn:hover{
  transform: translateY(-2px);
  background: rgba(0,123,255,0.12);
  border-color: rgba(0,123,255,0.18);
}

.arm-store-ico{
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}

.arm-store-ico svg{
  width: 18px;
  height: 18px;
  fill: #fff;
  opacity: .92;
}

.arm-store-text{
  display: grid;
  line-height: 1.05;
}

.arm-store-text small{
  color: rgba(255,255,255,0.70);
  font-size: 11px;
}

.arm-store-text strong{
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

/* Google Play ikonuna hafif mavi vurgu */
.arm-store-btn--google .arm-store-ico{
  background: rgba(0,123,255,0.12);
  border-color: rgba(0,123,255,0.18);
}

/* Mobilde butonlar tam genişlik */
@media (max-width: 575px){
  .arm-store-btn{ width: 100%; min-width: 0; }
}
/* ================================
   ARMİKOM TÜM GÖRSEL STANDARDI
   ================================ */

.arm-visual{
  width: 100%;
  height: 460px;            /* Desktop hepsi aynı */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

/* Mobil */
@media (max-width: 991.98px){
  .arm-visual{
    height: 260px;
  }
}

/* Görsel */
.arm-visual__img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;   /* kırpma yok, eşit görünür */
}
/* ===== NAV: ÜSTTE ŞEFFAF, SCROLL'DA OKUNAKLI ===== */

/* navbar zaten senin #site-hero içinde */
#site-hero .navbar{
  position: absolute;
  left: 0; right: 0; top: 0;
  z-index: 2000;
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}

/* Üstteyken linkler beyaz */
#site-hero .navbar .nav-link{
  color: rgba(255,255,255,.92) !important;
}
#site-hero .navbar .nav-link:hover,
#site-hero .navbar .nav-link.active{
  color: #fff !important;
}

/* Scroll olunca navbar sabit + koyu blur (beyaz içerikte görünür) */
#site-hero .navbar.is-scrolled{
  position: fixed;
  top: 0;
  background: rgba(10, 14, 24, .78) !important; /* koyu cam */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0,0,0,.20) !important;
}

/* Scroll olunca linkler yine okunaklı */
#site-hero .navbar.is-scrolled .nav-link{
  color: rgba(255,255,255,.92) !important;
}

/* Scroll olunca dropdown menü (bootstrap) */
#site-hero .navbar.is-scrolled .dropdown-menu{
  background: rgba(10, 14, 24, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.10);
}
#site-hero .navbar.is-scrolled .dropdown-item{
  color: rgba(255,255,255,.90);
}
#site-hero .navbar.is-scrolled .dropdown-item:hover{
  background: rgba(255,255,255,.08);
  color: #fff;
}

/* Fixed olunca içerik zıplamasın diye (scroll'da navbar yüksekliği kadar boşluk) */
body.navbar-offset{
  padding-top: 92px; /* navbar yüksekliğin farklıysa 80-110 arası ayarla */
}
.lang-switch{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding-left: 12px;
  border-left: 1px solid rgba(0,0,0,.12);
}

.lang-btn{
  background:transparent;
  border:0;
  padding:6px 6px;
  font:inherit;
  font-weight:700;
  letter-spacing:.3px;
  cursor:pointer;
  opacity:.65;
  line-height:1;
}

.lang-btn:hover{ opacity:.9; }

.lang-btn.is-active{
  opacity:1;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.lang-sep{
  opacity:.35;
  user-select:none;
}
/* ==============================
   MOBILE NAV FIX (<= 991.98px)
   En sona ekle
   ============================== */
@media (max-width: 991.98px){

  /* Hero üzerindeki absolute/transparent navbar mobilde sorun çıkarır */
  #site-hero .navbar{
    position: sticky !important;   /* fixed de olur ama sticky daha az zıplatır */
    top: 0 !important;
    background: #ffffff !important;
    box-shadow: 0 10px 30px rgba(0,0,0,.10) !important;
    border-bottom: 1px solid rgba(0,0,0,.08) !important;
    z-index: 3000 !important;
  }

  /* Toggler görünür ve tıklanır kalsın */
  #site-hero .navbar .navbar-toggler{
    z-index: 3100;
  }

  /* Açılan menü paneli */
  #site-hero .navbar-collapse{
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,.10);
    padding: 10px 0;
    margin-top: 10px;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Link aralıkları */
  #site-hero .navbar-nav .nav-link{
    padding: 12px 16px !important;
    margin-right: 0 !important;
    color: #0b1220 !important;
    font-weight: 700;
  }

  /* Dropdown: mobilde hover ile açma, static akışta göster */
  #site-hero .navbar .dropdown-menu{
    position: static !important;
    transform: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: none; /* bootstrap JS 'show' class'ı ile açacak */
    border: 0;
    border-left: 2px solid rgba(13,110,253,.25);
    margin: 0 16px 10px;
    padding: 6px 0;
    background: rgba(13,110,253,.04);
    border-radius: 12px;
  }

  /* Dropdown açılınca görünsün */
  #site-hero .navbar .dropdown-menu.show{
    display: block;
  }

  #site-hero .navbar .dropdown-item{
    padding: 10px 12px;
    border-radius: 10px;
  }

  /* Dil switch mobilde satıra otursun, border-left kaldır */
  .lang-switch{
    border-left: 0 !important;
    padding-left: 16px !important;
    padding-top: 10px;
    display: flex !important;
  }
}

/* Bonus: bazen 1px yatay taşma collapse'dan gelir */
.navbar, .navbar *{
  max-width: 100%;
}
.lang-btn{
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  color: #0b1220;
  opacity: .75;
}
.lang-btn:hover{ opacity:1; }

@media (max-width: 991.98px){

  .topbar-left{
    display: none;
  }

  #site-topbar{
    padding: 6px 0;
  }

  #site-topbar .top-social{
    justify-content: center;
  }

}
/* ===============================
   MOBILE NAVBAR FIX (TEK MENÜ)
   =============================== */
@media (max-width: 991.98px){

  /* Hero içindeki absolute davranışı iptal et */
  #site-hero .navbar{
    position: relative !important;
    background: #ffffff !important;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
  }

  /* Scroll class mobilde devre dışı */
  #site-hero .navbar.is-scrolled{
    background: #ffffff !important;
  }

  /* Body offset iptal */
  body.navbar-offset{
    padding-top: 0 !important;
  }

}