body {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        .upper {
            background-color: #004437;
            color: #fff;
            font-weight: bold;
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 10px;
        }
        .upper .right {
            display: flex;
            gap: 1em;
        }
        .upper .right .adrs {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .upper .right .nmbr {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .upper .left {
            display: flex;
            gap: 1em;
        }
        .down {
            background-color: #fff;
            color: #171717;
            position: relative;
        }
        .left {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .left .btn button {
             background-color: transparent;
             padding: 10px;
             color: #fff;
             border: 1px solid;
             width: 180px;
             font-size: 1.1em;
             transition: background-color 0.5s ease-in-out;
        }
        .left .btn button:hover {
            background-color: #fff;
            color: #004437;
        }
        .down .drp{
            list-style: none;
            display: flex;
            justify-content: center;
            align-items: center;
            max-width: 90%;
            gap:30px;
            margin-top: 0;
            margin-bottom: 0;
        }
        .down ul {
             list-style: none;
             margin-bottom: -24%;
        }
        .down ul li a {
           text-decoration: none;
           color: #171717;
            font-size: 1.2em;
        }
        .down ul li a img{
            width: 170px;
            height: 85px;
        }
        .dropdown {
            position: relative;
            display: inline-block;
        }
        .dropdown-toggle {
            cursor: pointer;
            font-size: 1.2em;
            color: #171717;
        }
        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
            min-width: 200px;
            padding: 10px 0;
            z-index: 10;
        }
        .dropdown-item {
            display: block;
            padding: 8px 16px;
            color: #333;
            text-decoration: none;
            width: 250px;
        }
        .dropdown-item:hover {
            background-color: #ffc107;
            color: #fff;
        }
        .dropdown:hover .dropdown-menu {
            display: block;
        }
        .dropdown-toggle::after {
            display: inline-block;
            margin-left: .255em;
            vertical-align: .255em;
            content: "";
            border-top: .3em solid;
            border-right: .3em solid transparent;
            border-bottom: 0;
            border-left: .3em solid transparent;
        }
        
        .hamburger {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 1000;
        }
        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: #171717;
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        .mobile-header {
            display: none;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }
        .mobile-logo img {
            width: 130px;
            height: 65px;
        }
        
        @media (max-width: 992px) {
            .mobile-header {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .down .drp {
                position: fixed;
                top: 0;
                left: 100%; 
                width: 250px;
                height: 100vh;
                background-color: #004437;
                color: #fff;
                flex-direction: column;
                justify-content: flex-start;
                align-items: flex-start;
                gap: 20px;
                padding: 130px 30px 30px;
                transition: all 0.3s ease;
                z-index: 999;
                overflow-y: auto;
            }
            .down .drp.active {
                right: 0; 
            }
            .down ul li a {
                color: #fff;
            }
            .down ul li {
                margin: 10px 0;
                width: 100%;
            }
            .down ul li a img {
                display: none;
            }
            .dropdown-toggle {
                color: #fff; 
                display: flex;
                justify-content: space-between;
                width: 40%;
                align-items: center;
            }
            .dropdown-menu {
                position: static;
                background-color: transparent;
                box-shadow: none;
                padding-left: 20px;
                width: 100%;
            }
            .dropdown-item {
                color: #fff;
                width: auto;
            }
            .dropdown-item:hover {
                background-color: rgba(255, 255, 255, 0.1);
            }
            .dropdown:hover .dropdown-menu {
                display: none;
            }
            .dropdown.active .dropdown-menu {
                display: block;
            }
            .dropdown-toggle::after {
                border-top: .3em solid #fff;
                border-right: .3em solid transparent;
                border-left: .3em solid transparent;
            }
            .hamburger.active span:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
                background-color: #fff;
            }
            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }
            .hamburger.active span:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
                background-color: #fff;
            }
            .overlay {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(0, 0, 0, 0.5);
                z-index: 998;
            }
            .overlay.active {
                display: block;
            }
        }
        .right, .left {
    display: flex;
    align-items: center;
  }
  
  .adrs, .nmbr {
    display: flex;
    align-items: center;
    margin-right: 20px;
  }
  
  .adrs svg, .nmbr svg {
    margin-right: 8px;
  }
  
  .btn button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  @media screen and (min-width: 768px) {
    .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px;
    }
    
    .right {
      order: 1;
    }
    
    .left {
      order: 2;
    }
  }
  
  @media screen and (max-width: 767px) {
    .container {
      display: flex;
      flex-direction: column;
      align-items: center;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background-color: #f8f8f8;
      padding: 15px;
    }
    
    .right {
      margin-bottom: 15px;
      flex-direction: column;
    }
    
    .adrs, .nmbr {
      margin-right: 0;
      margin-bottom: 10px;
    }
    
    .left {
      flex-direction: column;
      align-items: center;
    }
    
    .left > div:first-child {
      margin-bottom: 10px;
    }
    
    .btn button {
      display: none;
    }
  }
.swiper.mySwiper {
    width: 100%;
    height: 85vh;
    position: relative;
    overflow: hidden;
}

.swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-slide video,
.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.swiper-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/img/binary-pattern.png');
    background-size: cover;
    opacity: 0.2;
    z-index: 2;
    pointer-events: none;
}

.slide-text h2 {
    position: absolute;
    top: 80px;
    left: 100px;
    font-size: 1em;
    font-weight: 700;
    color: #ffffff;
    z-index: 3;
    letter-spacing: 2px;
}

.slide-text p {
    position: absolute;
    top: 30%;
    left: 48%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    text-align: left;
    z-index: 3;
    width: 80%;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.slide-text button {
    position: absolute;
    bottom: 130px;
    left: 100px;
    padding: 12px 40px;
    font-size: 1.2rem;
    background-color: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    letter-spacing: 1px;
}

.slide-text button:hover {
    background-color: #004437;
}
.slide-text2 h2 {
    position: absolute;
    top: 100px;
    left: 100px;
    font-size: 1em;
    font-weight: 700;
    color: #000;
    z-index: 3;
    letter-spacing: 2px;
}

.slide-text2 p {
    position: absolute;
    top: 30%;
    left: 48%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    font-weight: 700;
    color: #000;
    text-align: left;
    z-index: 3;
    width: 80%;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.slide-text2 button {
    position: absolute;
    bottom: 150px;
    left: 100px;
    padding: 12px 40px;
    font-size: 1.2rem;
    background-color: transparent;
    color: black;
    border: 2px solid black;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    letter-spacing: 1px;
}

.slide-text2 button:hover {
    background-color: #004437;
    color:white;
    border: 2px solid white;
}
.swiper-button-next,
.swiper-button-prev {
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    z-index: 10;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.5rem;
}
.swiper-pagination {
    position: absolute;
    bottom: 30px;
    z-index: 10;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background-color: #00a8ff;
    opacity: 1;
}

@media (max-width: 768px) {
    .slide-text h2 {
        top: 50px;
        left: 50px;
        font-size: 1.5rem;
    }
    
    .slide-text p {
        font-size: 2.5rem;
    }
    
    .slide-text button {
        bottom: 100px;
        left: 50px;
        padding: 10px 30px;
    }
}
.about {
    padding: 4rem 0 8rem 0;
    max-width: 90%;
    margin: auto;
}


@media screen and (min-width:1000px) {
    .about_both {
    display: grid;
    grid-template-columns: .7fr 1fr;
    gap: 50px;
    }
    
}

@media screen and (min-width: 1400px) {
    .about_both {
        grid-template-columns: 1fr 1fr;
    }
}

.about_left span i {
    margin-left: 5px;
    font-size: 16px;
}

.about_left span {
    display: block;
    line-height: 1.2;
    color: #004437;
    text-transform: uppercase;
    font-size: 13px;
    position: relative;
    font-weight: 400;
    margin-bottom: 20px;
}

.about_left h2 {
    margin-bottom: 24px;
    font-size: 42px;
    font-weight: 600;
}

.about_left p:not(.about-tab-text) {
    margin: 20px 0;
    font-size: 15px;
    line-height: 1.667;
    color: #737373;
}

.about-tab-text {
    font-size: 15px;
    line-height: 1.667;
    color: #737373;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.filter-menu-active {
    background: #F5F5F5;
    display: flex;
    justify-content: space-between;
    border-radius: 2px;
    margin-bottom: 20px;
}

.filter-menu-active button {
    background: transparent;
    border: 0;
    padding: 0;
    text-align: center;
    font-size: 12px;
    width: 100%;
    color: #737373;
    padding: 12px 5px;
    position: relative;
}

.filter-menu-active button.active {
    color: #004437;
}

.filter-menu-active button.active:before {
    width: 100%;
}

.filter-menu-active button:before {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    top: 0;
    left: 0;
    background: #004437;
    transition: 0.4s;
    border-radius: 2px 2px 0 0;
}

.filter-menu-active button:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    height: 30px;
    width: 1px;
    background: rgba(21, 22, 28, 0.15);
    transform: translate(0, -50%);
}

.filter-active-cat1 {
    position: relative;
    min-height: 100px;
}

.filter-item {
    display: block;
    opacity: 0;
    transform: scale(0.8) translateZ(0);
    transition: transform 0.4s ease, opacity 0.4s ease;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.filter-item.active {
    opacity: 1;
    transform: scale(1) translateZ(0);
    z-index: 1;
}

:is(.about_left a, .blogs_title a, .portfolio-card a, .product_right a) {
    position: relative;
    z-index: 2;
    vertical-align: middle;
    display: inline-flex;
    gap: 15px;
    text-align: center;
    background-color: #004437;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    padding: 19px 30px;
    overflow: hidden;
    align-items: center;
    text-decoration: none;
}

:is(.about_left a, .blogs_title a, .portfolio-card a, .product_right a):hover {
    z-index: 1;
}

:is(.about_left a, .blogs_title a, .portfolio-card a, .product_right a)::before {
    top: -2em;
    left: -2em;
}

:is(.about_left a, .blogs_title a, .portfolio-card a, .product_right a)::after,
:is(.about_left a, .blogs_title a, .portfolio-card a, .product_right a)::before {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    transform: translate(-50%, -50%);
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    background-color: #000;
    transition: 1s ease;
}

:is(.about_left a, .blogs_title a, .portfolio-card a, .product_right a)::after {
    left: calc(100% + 2em);
    top: calc(100% + 2em);
}

:is(.about_left a:hover, .blogs_title a:hover, .portfolio-card a:hover, .product_right a:hover)::after,
:is(.about_left a:hover, .blogs_title a:hover, .portfolio-card a:hover, .product_right a:hover)::before {
    height: 410px;
    width: 410px;
}

.about_right {
    position: relative;
    margin top: 20px;
}

.about_right img:first-child {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.about_right img:nth-child(2) {
    display: inline-block;
    position: absolute;
    right: 0;
    bottom: -50px;
    border-top: 6px solid #fff;
    border-left: 6px solid #fff;
    width: 80%;
    height: 100%;
    object-fit: cover;
}

#about .about-counter-wrap {
    background: transparent;
    border: 0;
    position: absolute;
    top: 0px;
    bottom: auto;
    right: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 290px;
}

#about .about-counter-number {
    font-size: 48px;
    font-weight: 600;
    color: #000
}

.about-thumb4 .about-counter-wrap .about-counter-text {
    margin-bottom: 0;
    color: #000;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3em;
}

.about-tab-text {
    min-height: 50px;
}
.counter-container {
    display: flex;
    flex-direction: column; /* Dikey sıralama */
    align-items: center;
    width: 90%; /* Sayfanın %90'ını kapla */
    margin: 0 auto; /* Ortala */
    gap: 20px; /* Elemanlar arası boşluk */
}

.counter-item {
    text-align: center;
}

.counter {
    font-size: 2.5em; /* Mobilde daha küçük font */
    font-weight: bold;
    color: #004437;
    display: flex;
    align-items: center;
    gap: 10px; /* Elemanlar arası boşluk */
}

.plus, .arrow {
    font-size: 0.8em; /* "+" ve "↘" işaretleri için boyut */
    color: #666;
}

.label {
    font-size: 1.2em;
    color: #666;
    margin-top: 5px;
}

/* Masaüstü görünümü için medya sorgusu */
@media (min-width: 600px) {
    .counter-container {
        flex-direction: row; /* Yatay sıralama */
        justify-content: center;
        gap: 50px;
    }
    .counter {
        font-size: 4em; /* Daha büyük font */
    }
    .plus, .arrow {
        font-size: 0.5em;
    }
}
 .container-s1 {
            position: relative;
            width: 100%;
            max-width: 80%;
            height: 100vh;
            margin: auto;
        }
        .image-container {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 1;
        }
        .image-container img {
            width: 350px;
            padding-top: 40%;
            height: auto;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
        }
        .cards-container {
            position: relative;
            width: 100%;
            height: 100vh;
        }
        .card {
            position: absolute;
            width: 200px;
            background: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            border-radius: 12px;
            padding: 10px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            background: linear-gradient(145deg, #ffffff, #f9f9f9);
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
        }
        .icon img {
            width: 50px;
            height: 50px;
        }
        .advantages-name h5 {
            font-size: 18px;
            margin-bottom: 10px;
            color: #333;
        }
        .advantages-name p {
            font-size: 14px;
            color: #666;
        }
        /* Sol tərəfdəki kartlar */
        .card:nth-child(1) { bottom: 61%; left: 10%; }
        .card:nth-child(2) { top: 40%; left: 5%; }
        .card:nth-child(3) { bottom: -21%; left: 10%; }
        
        /* Sağ tərəfdəki kartlar */
        .card:nth-child(4) { bottom: 61%; right: 10%; }
        .card:nth-child(5) { top: 40%; right: 5%; }
        .card:nth-child(6) { bottom: -21%; right: 10%; }
        
        /* Mobil versiya üçün */
        @media (max-width: 768px) {
            .image-container {
                display: none;
            }
            .cards-container {
                display: flex;
                flex-direction: column;
                align-items: center;
                height: auto;
                gap: 20px;
                padding: 20px;
            }
            .card {
                position: static;
                width: 100%;
                max-width: 300px;
            }
        }
.srvcs-title {
    padding: 20px;
}
.srvcs-title h2 {
    font-size: 2.5em;
    margin-left: 50px;
}
.right-nav {
    z-index:9;
  background: #fff;
  border-radius: 4rem;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,.1);
  right: 0;
  opacity: 1;
  padding-bottom: 1rem;
  padding-top: 1rem;
  position: fixed;
  transform: translateY(-50%);
  top: 50%;
  transition: all .3s ease;
  visibility: visible;
  width: 60px;
}

.right-nav:hover {
  box-shadow: 0 0 2rem -.2rem rgba(0,0,0,.1)
}

.right-nav.hide {
  opacity: 0;
  transform: translateX(200%);
  visibility: hidden
}

.right-nav-list,.right-nav-list li {
  align-items: center;
  display: flex;
  flex-flow: column
}

.right-nav-list li {
  margin-bottom: .5rem;
  position: relative;
  width: 100%
}

.right-nav-list li:not(:first-child):before {
  background: #d1d3d2;
  content: "";
  display: block;
  height: 1.5px;
  margin: 0 0 1.3rem;
  width: 1.5rem
}

.right-nav-list li a {
  align-items: center;
  display: flex;
  flex-flow: column
}

.right-nav-list li:hover .iconfont {
  filter: brightness(1.1);
  transform: scale(1.1);
  font-size:25px;
}

.right-nav-list li:hover .right_hide {
  opacity: 1;
  transform: translate(-100%,-50%);
  visibility: visible
}

.right-nav-list .iconfont {
    font-size:20px;
  display: block;
  margin-bottom: .3rem;
  transition: all .3s ease
}

.right-nav-list .btn-tit {
  color: #333;
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.6rem
}

.right_hide {
  background-color: #fff;
  border-radius: .5rem;
  box-shadow: 0 0 1rem -2px rgba(51,51,51,.15);
  color: #333;
  font-size: 14px;
  left: -10px;
  line-height: 16px;
  opacity: 0;
  padding: 12px 16px;
  position: absolute;
  top: 50%;
  transform: translate(-110%,-50%);
  transition: all .5s ease;
  visibility: hidden;
  white-space: nowrap
}

.right_hide:before {
  border-bottom: 6px solid transparent;
  border-left: 8px solid #fff;
  border-top: 6px solid transparent;
  content: "";
  position: absolute;
  right: -8px;
  top: calc(50% - 4px)
}

.right-close {
  align-items: center;
  background: transparent;
  border: 1px solid #ddd;
  border-radius: 2rem;
  bottom: 1rem;
  color: #ddd;
  cursor: pointer;
  display: block;
  display: flex;
  font-size: 1rem;
  height: 3rem;
  justify-content: center;
  left: 50%;
  opacity: 0;
  position: absolute;
  text-align: center;
  transform: translate(-50%);
  transition: all .3s ease;
  width: 3rem
}

.right-close:hover {
  background: #333;
  border-color: #333;
  transform: translate(-50%) rotate(180deg)
}

.right-open {
  align-items: center;
  bottom: 9rem;
  color: #ddd;
  cursor: pointer;
  display: flex;
  height: 3rem;
  justify-content: center;
  left: 50%;
  opacity: 0;
  position: absolute;
  text-align: center;
  transform: translateX(-50%);
  transition: all .3s ease;
  visibility: hidden;
  width: 3rem;
  z-index: 1000
}

.right-open .iconfont {
  display: block;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none
}

.right-open:hover {
  color: #333
}

.right-open.show {
  opacity: 1;
  visibility: visible
}
.apply {
    background-color: #128c73;
    color: white;
    padding-top: 1px;
    padding-left: 15%;
    padding-bottom: 5%;
}
.apply h3 {
    font-size: 2.7em;
    margin-bottom: -15px;
}
.apply p {
    font-size: 1.2em;   
}
.apply-item input{
    padding: 15px;
    border-radius: 10px;
    border-color: white;
    outline: none;
    margin-top: 20px;
    margin-left: 5px;
}
.apply-item button {
    background-color: #171717;
    color: white;
    padding: 15px;
    border-radius: 10px;
    width: 200px;
    font-weight: bold;
}
footer {
    background-color: #edf7ec;
}
footer ul,a {
    list-style: none;  
    text-decoration: none;
    color: #171717;
}
.f-1 {
    margin-left: 24%;
    padding-top: 10px;
}
.f-1 ul {
    display: flex;
    gap: 20px;
}
.f-1 ul li {
    font-size: 1.4em;
}
.s-center {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    padding-top: 5px;
    margin: auto;
    max-width: 80%;
}
.s-center .f-2 h4,.f-4 h4{
    font-size: 2em;
    align-items: center;
    font-weight: 500;
}
.s-center .f-2 ul{
    display: flex;
    gap: 5px;
    margin-left: -15px;
}
.s-center .f-2 ul li a{
    width: 40px;
    height: 40px;
    color: white;
    background-color: #7bd79a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.s-center .f-2 p {
    font-size: 1.2em;
}
.s-center .f-2 a,.f-4 ul li a{
    font-size: 1.2em;
    font-weight: bold;
}
.s-center .f-3 img{
    width: 442px;
    height: 220px;
}
.s-center .f-4 {
    margin-bottom: 65px;
}
.s-center .f-4 #nmbr, #nmbr2{
   margin-top: 15px;
}
 .f-5 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
}
 .f-5 p {
    font-size: 15px;
}
.f-5 img {
    width: 120px;
    height: 26px;
}
@media (max-width: 1024px) {
    .s-center {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .f-1 {
        margin-left: 0;
        text-align: center;
    }

    .f-1 ul {
        flex-direction: column;
        gap: 10px; 
        margin-right: 10%;
    }

    .s-center .f-3 img {
        width: 100%;
        height: auto;
    }

    .s-center .f-4 {
        margin-bottom: 20px;
    }

    .f-5 {
        flex-direction: column;
        text-align: center;
    }
}
