@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&display=swap');
@import url("./bootstrap.min.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/bootstrap-icons/1.13.1/font/bootstrap-icons.min.css");
@import url("./swiper-bundle.min.css");

:root {
  --font-family: "Google Sans Flex", sans-serif;
  --red-color: #FF002E;
  --dark: #111;
}

* {
  box-sizing: border-box;
}

body {
  background: #fafafa;
  font-family: var(--font-family);
  font-size: 1.1rem;
  font-weight: 400;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #eee;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 0px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

main {
  position: relative;
  background: #fafafa;
  z-index: 100;
}

footer {
  z-index: 99;
}

section {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.vh-100 {
  height: 100vh;
}

.h-title {
  font-size: 42px;
  font-weight: 800;
  margin: 10px 0 30px;
}

.sub-title {
  display: inline-block;
  position: relative;
  padding: 10px 10px 10px 45px;
  font-size: 24px;
}

.sub-title::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 5px;
  background: var(--red-color);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

header {
  background: #fafafa;
  position: sticky;
  top: 0;
  z-index: 999;
}

header nav {
  font-size: 16px;
  font-weight: 600;
}

header .nav-link {
  transition: .3s;
}

header .nav-link:hover {
  color: var(--red-color);
}

header .nav-link.active {
  color: var(--red-color) !important;
}

.banner-section {
  position: relative;
  overflow: hidden;
  background: #fafafa;
}

.banner-content {
  position: relative;
  z-index: 2;
}

.banner-text {
  font-size: 6rem;
  line-height: 1;
  font-weight: 900;
  animation: fadeUp .8s ease;
}

.banner-text strong {
  color: var(--red-color);
}

.banner-text p {
  font-size: 3rem;
  color: #111;
  margin-top: 15px;
}

.banner-description {
  max-width: 550px;
  color: #555;
  font-size: 20px;
  line-height: 1.6;
  margin: 30px 0;
}

.banner-buttons {
  display: flex;
  gap: 15px;
}

.banner-buttons .btn {
  padding: 14px 35px;
  transition: .3s;
}

.banner-buttons .btn:hover {
  transform: translateY(-5px);
}

/* Teknoloji alanı */
.tech-bg {
  position: relative;
  width: 100%;
  height: 500px;
}

/* teknoloji kutuları */
.code {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 80px;
  border: 1px solid rgba(0, 0, 0, .25);
  border-radius: 20px;
  background: rgba(255, 255, 255, .7);
  backdrop-filter: blur(8px);
  font-size: 28px;
  font-weight: 800;
  color: #111;
  opacity: .7;
  animation: floatCode 7s infinite ease-in-out;
  transition: .3s;
}

.code:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* konumlar */
.code-1 {
  top: 40px;
  left: 80px;
  border-color: #111;
}

.code-2 {
  top: 170px;
  left: 220px;
  color: var(--red-color);
  border-color: var(--red-color);
  animation-delay: 1s;
}

.code-3 {
  top: 20px;
  right: 80px;
  border-color: var(--red-color);
  animation-delay: 2s;
}

.code-4 {
  bottom: 100px;
  right: 160px;
  color: var(--red-color);
  border-color: #111;
  animation-delay: 3s;
}

.code-5 {
  bottom: 40px;
  left: 80px;
  border-color: var(--red-color);
  animation-delay: 1.5s;
}

.code-6 {
  top: 260px;
  right: 40px;
  border-color: #111;
  animation-delay: 2.5s;
}

@keyframes floatCode {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }

  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* giriş animasyonu */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media(max-width:992px) {
  .banner-text {
    font-size: 4rem;
  }

  .banner-text p {
    font-size: 2rem;
  }

  .tech-bg {
    height: 350px;
    margin-top: 50px;
  }

  .code {
    width: 90px;
    height: 60px;
    font-size: 20px;
  }
}

@media(max-width:576px) {
  .banner-text {
    font-size: 3rem;
  }

  .banner-description {
    font-size: 16px;
  }

  .tech-bg {
    display: none;
  }
}

.scroll-down {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 55px;
  height: 110px;
  border: 1px solid #ddd;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  text-decoration: none;
  animation: scrollMove 1.5s infinite;
}

.scroll-down:hover {
  background: #111;
  color: #fff;
}

.counter-num {
  font-size: 64px;
  font-weight: lighter;
  color: #111;
}

.counter-plus {
  font-size: 48px;
  font-weight: lighter;
  color: #111;
}

.service-section {
  padding: 100px 0;
}

.service-card {
  background: #fff;
  padding: 40px;
  border-radius: 30px;
  height: 100%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .07);
  transition: .4s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, .15);
}

.service-card img {
  width: 75px;
  height: 75px;
  object-fit: contain;
  background: #f5f5f5;
  padding: 15px;
  border-radius: 50%;
}

.service-card h3 {
  margin-top: 30px;
  font-weight: 700;
}

.service-card a {
  color: #111;
  text-decoration: none;
  font-weight: 600;
}

.service-card i {
  color: var(--red-color);
}

.works-section {
  padding: 100px 0;
}

.work-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: .4s;
}

.work-image {
  /* height: 348px; */
  position: relative;
  overflow: hidden;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: .5s;
}

.work-card:hover .work-image img {
  transform: scale(1.08);
}

.work-image span {
  position: absolute;
  left: 20px;
  top: 20px;
  background: var(--red-color);
  color: #fff;
  padding: 8px 20px;
  border-radius: 10px;
  font-size: 14px;
}

.work-card h3 {
  padding: 20px 25px 0;
  font-size: 26px;
  font-weight: 800;
}

.work-card p {
  padding: 0 25px 25px;
  color: #777;
}

.swiper-referans-prev,
.swiper-referans-next {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}

.swiper-referans-prev:hover,
.swiper-referans-next:hover {
  background: var(--red-color);
  color: #fff;
  border-color: var(--red-color) !important;
}

.blog-section {
  padding: 100px 0;
}

.blog-card {
  background: #fff;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, .06);
  height: 100%;
  transition: .4s;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

.blog-image {
  height: 260px;
  position: relative;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
}

.blog-card:hover img {
  transform: scale(1.08);
}

.blog-image span {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--red-color);
  color: #fff;
  padding: 7px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.blog-content {
  padding: 30px;
}

.blog-content h3 {
  font-size: 24px;
  font-weight: 800;
  margin: 15px 0;
  color: #111;
  line-height: 1.3;
  margin-bottom: 15px;
}

.blog-content a {
  text-decoration: none;
  color: #111;
  font-weight: 600;
}

.blog-content i {
  color: var(--red-color);
}

.offer-section {
  padding: 100px 0;
  width: 100%;
  background: #fff;
}

.offer-box {
  padding: 60px;
  border-radius: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.offer-box h2 {
  font-size: 45px;
  font-weight: 900;
}

.offer-btn {
  background: var(--red-color);
  color: #fff;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  transition: .3s;
}

.offer-btn:hover {
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 0, 46, .3);
}

.footer {
  background: #111;
  color: #fff;
  padding: 80px 0 30px;
}

.footer h3,
.footer h4 {
  font-weight: 800;
  margin-bottom: 25px;
}

.footer p {
  color: #aaa;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer li {
  margin-bottom: 12px;
}

.footer a {
  color: #aaa;
  text-decoration: none;
  transition: .3s;
}

.footer a:hover {
  color: var(--red-color);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 45px;
  height: 45px;
  border: 1px solid #333;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-links a:hover {
  background: var(--red-color);
  color: #fff;
}

.pjax-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--red-color);
  z-index: 99999;
  transition: .3s;
}

.process-section {
  padding: 100px 0;
}

.process-card {
  background: #fff;
  padding: 35px 25px;
  height: 100%;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 10px 35px rgba(0, 0, 0, .06);
  transition: .4s;
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

.process-number {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 55px;
  font-weight: 900;
  color: #f1f1f1;
}

.process-card i {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
  background: #111;
  color: #fff;
  border-radius: 12px;
  font-size: 28px;
  transition: .3s;
}

.process-card:hover i {
  background: var(--red-color);
}

.process-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 20px 0 15px;
}

.process-card p {
  color: #777;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

.inner-banner {
  min-height: 420px;
  display: flex;
  align-items: center;
  background: #f8f8f8;
}

.inner-banner .container {
  position: relative;
}

.inner-banner .sub-title {
  margin-bottom: 20px;
}

.inner-banner .breadcrumb {
  margin: 0;
  padding: 0;
  background: transparent;
}

.inner-banner .breadcrumb-item {
  font-size: 15px;
}

.inner-banner .breadcrumb-item a {
  color: #777;
  text-decoration: none;
  transition: .3s;
}

.inner-banner .breadcrumb-item a:hover {
  color: var(--red-color);
}

.inner-banner .breadcrumb-item.active {
  color: #111;
  font-weight: 600;
}

.inner-banner .h-title {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 900;
  margin: 0 0 20px;
  color: #111;
}

.inner-banner p {
  max-width: 600px;
  margin-left: auto;
  color: #666;
  font-size: 17px;
  line-height: 1.8;
}

.mission-card {
  position: relative;
  overflow: hidden;
  transition: .3s;
}

.mission-card:hover {
  transform: translateY(-8px);
}

.mission-card h3 {
  font-size: 26px;
  font-weight: 800;
  color: #111;
  margin: 25px 0 15px;
}

.mission-card p {
  color: #666;
  line-height: 1.8;
}

.detail-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: var(--red-color);
  font-weight: 700;
}

.detail-link i {
  transition: .3s;
}

.mission-card:hover .detail-link i {
  transform: translateX(5px);
}

.references-section {
  background: #fafafa;
}

.reference-link {
  text-decoration: none;
}

.reference-card {
  background: #fff;
  padding: 35px;
  height: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, .06);
  transition: .4s;
}

.reference-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

.reference-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.reference-logo img {
  max-width: 100%;
}

.reference-category {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 20px;
}

.reference-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: #111;
  margin-bottom: 10px;
}

.reference-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--red-color);
  margin-bottom: 15px;
}

.reference-card p {
  color: #777;
  line-height: 1.7;
}

.reference-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: #111;
  font-weight: 700;
}

.reference-detail i {
  color: var(--red-color);
  transition: .3s;
}

.reference-card:hover .reference-detail i {
  transform: translateX(5px);
}

.project-info {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, .06);
}

.project-logo {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.project-logo img {
  width: 100%;
  object-fit: contain;
}

.project-info > span {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 7px 18px;
  border-radius: 20px;
  font-size: 14px;
}

.project-info h2 {
  font-size: 32px;
  font-weight: 800;
  margin: 20px 0;
}

.project-info p {
  color: #777;
  line-height: 1.8;
}

.project-info ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.project-info li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  color: #666;
}

.project-cover img {
  width: 100%;
  border-radius: 16px;
}

.tech-box {
  padding: 15px 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
  font-weight: 700;
}

.project-gallery-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
}

.service-link {
  text-decoration: none;
}

.service-item {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 10px 35px rgba(0, 0, 0, .06);
  transition: .4s;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

.service-image {
  height: 230px;
  position: relative;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
}

.service-item:hover img {
  transform: scale(1.08);
}

.service-icon {
  position: absolute;
  left: 25px;
  bottom: 20px;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red-color);
  color: #fff;
  border-radius: 12px;
  font-size: 30px;
}

.service-content {
  padding: 30px;
}

.service-content h3 {
  color: #111;
  font-size: 25px;
  font-weight: 800;
  margin-bottom: 15px;
}

.service-content p {
  color: #777;
  line-height: 1.7;
}

.service-content span {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: #111;
  font-weight: 700;
}

.service-content span i {
  color: var(--red-color);
  transition: .3s;
}

.service-item:hover span i {
  transform: translateX(5px);
}

.service-detail-image img {
  width: 100%;
  border-radius: 16px;
}

.service-detail p {
  color: #666;
  line-height: 1.8;
}

.service-list {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.service-list li {
  margin-bottom: 15px;
  color: #555;
}

.service-list i {
  color: var(--red-color);
  margin-right: 10px;
}

.technology-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
}

.technology-list span {
  background: #f5f5f5;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
}

.blog-link {
  text-decoration: none;
}

.blog-date {
  color: #999;
  font-size: 14px;
  margin-bottom: 10px;
}

.blog-content p {
  color: #777;
  line-height: 1.7;
}

.blog-read {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: #111;
  font-weight: 700;
}

.blog-read i {
  color: var(--red-color);
  transition: .3s;
}

.blog-card:hover .blog-read i {
  transform: translateX(5px);
}

.pagination {
  gap: 8px;
}

.pagination .page-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eee;
  border-radius: 10px;
  color: #111;
  font-weight: 600;
  background: #fff;
  transition: .3s;
}

.pagination .page-link:hover {
  background: var(--red-color);
  color: #fff;
  border-color: var(--red-color);
}

.pagination .page-item.active .page-link {
  background: var(--red-color);
  border-color: var(--red-color);
  color: #fff;
}

.pagination .page-item.disabled .page-link {
  background: #f5f5f5;
  color: #aaa;
  border-color: #eee;
}

.blog-detail-content {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, .06);
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 30px;
  color: #777;
  font-size: 15px;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-meta i {
  color: var(--red-color);
}

.blog-detail-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 35px;
}

.blog-detail-content h2 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 25px;
  color: #111;
}

.blog-detail-content h3 {
  font-size: 26px;
  font-weight: 800;
  margin-top: 40px;
  margin-bottom: 15px;
}

.blog-detail-content p {
  color: #666;
  line-height: 1.9;
  margin-bottom: 20px;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 35px;
}

.blog-tags a {
  background: #f5f5f5;
  padding: 8px 18px;
  border-radius: 30px;
  color: #555;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.blog-tags a:hover {
  background: var(--red-color);
  color: #fff;
}

.blog-share {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 35px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.blog-share strong {
  font-weight: 700;
}

.blog-share a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  transition: .3s;
}

.blog-share a:hover {
  background: var(--red-color);
}

.blog-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-box {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  margin-bottom: 25px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, .06);
}

.sidebar-box h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
}

.sidebar-box a {
  display: block;
  padding: 12px 0;
  color: #666;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  transition: .3s;
}

.sidebar-box a:last-child {
  border-bottom: 0;
}

.sidebar-box a:hover {
  color: var(--red-color);
  padding-left: 8px;
}

.comment-section {
  background: #fafafa;
}

.comment-box {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, .06);
}

.comment-item {
  display: flex;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid #eee;
}

.comment-avatar {
  width: 55px;
  height: 55px;
  background: #111;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.comment-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 5px;
}

.comment-content span {
  font-size: 14px;
  color: #999;
}

.comment-content p {
  margin-top: 10px;
  color: #666;
  line-height: 1.7;
}

.comment-form {
  margin-top: 45px;
}

.comment-form h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 25px;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 15px;
  font-size: 15px;
  transition: .3s;
}

.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: var(--red-color);
  box-shadow: 0 0 0 3px rgba(255, 0, 46, .08);
}

.blog-section .blog-card {
  height: 100%;
}

.blog-section .blog-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: #111;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.contact-item h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 5px;
}

.contact-item p {
  margin: 0;
  color: #777;
}

.contact-form-box {
  background: #fff;
  padding: 45px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .07);
}

.contact-form-box h2 {
  font-size: 32px;
  font-weight: 900;
  margin: 20px 0 30px;
}

.contact-form .form-control {
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 10px;
  height: auto;
}

.contact-form .form-control:focus {
  border-color: var(--red-color);
  box-shadow: none;
}

.contact-form textarea {
  resize: none;
}

.map-section iframe {
  display: block;
}

.offer-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 20px;
  overflow-y: auto;
}

.offer-modal:target {
  display: flex;
}

.offer-modal-content {
  width: 100%;
  max-width: 650px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: #fff;
  border-radius: 20px;
  padding: 45px;
  position: relative;
  animation: offerShow .3s ease;
}

.offer-modal-content::-webkit-scrollbar {
  width: 6px;
}

.offer-modal-content::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 10px;
}

.offer-close {
  position: absolute;
  right: 25px;
  top: 25px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  color: #111;
  border-radius: 50%;
  text-decoration: none;
  transition: .3s;
}

.offer-close:hover {
  background: var(--red-color);
  color: #fff;
}

.offer-modal-content h2 {
  font-size: 34px;
  font-weight: 900;
  margin: 20px 0 10px;
}

.offer-modal-content p {
  color: #777;
}

.offer-form .form-control {
  width: 100%;
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 10px;
  font-size: 15px;
}

.offer-form .form-control:focus {
  outline: none;
  border-color: var(--red-color);
  box-shadow: 0 0 0 3px rgba(255, 0, 46, .08);
}

.offer-form textarea {
  resize: none;
}

.offer-submit {
  width: 100%;
  border: 0;
  background: var(--red-color);
  color: #fff;
  padding: 17px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  transition: .3s;
}

.offer-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 0, 46, .25);
}

.offer-check {
  margin-top: 10px;
}

.offer-check label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #666;
  cursor: pointer;
  line-height: 1.6;
}

.offer-check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--red-color);
  flex-shrink: 0;
}

.offer-check a {
  color: var(--red-color);
  text-decoration: none;
  font-weight: 600;
}

.offer-check a:hover {
  text-decoration: underline;
}

.contract-card {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  height: 100%;
  box-shadow: 0 10px 35px rgba(0, 0, 0, .06);
  transition: .3s;
}

.contract-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
}

.contract-icon {
  width: 65px;
  height: 65px;
  background: #111;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 25px;
}

.contract-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 15px;
}

.contract-card p {
  color: #777;
  line-height: 1.7;
  min-height: 75px;
}

.contract-card a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--red-color);
  font-weight: 700;
  text-decoration: none;
}

.contract-info {
  display: flex;
  gap: 25px;
  padding-bottom: 25px;
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
  color: #777;
  font-size: 14px;
}

.contract-info span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contract-info i {
  color: var(--red-color);
}

.contract-content {
  background: #fff;
  padding: 45px;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, .06);
}

.contract-content h2 {
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 30px;
}

.contract-content h3 {
  font-size: 23px;
  font-weight: 800;
  margin-top: 40px;
  margin-bottom: 15px;
}

.contract-content p {
  color: #666;
  line-height: 1.9;
}

.contract-content ul {
  padding-left: 20px;
  color: #666;
  line-height: 2;
}

.contract-sidebar {
  position: sticky;
  top: 100px;
}

.contract-sidebar .sidebar-box {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, .06);
  margin-bottom: 25px;
}

.contract-sidebar h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
}

.contract-sidebar a {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: #666;
  transition: .3s;
}

.contract-sidebar a:hover {
  color: var(--red-color);
  padding-left: 8px;
}

@keyframes scrollMove {
  0% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 15px);
  }

  100% {
    transform: translate(-50%, 0);
  }
}

@keyframes offerShow {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media(max-width:992px) {
  .banner-text {
    font-size: 4rem;
  }

  .offer-box {
    flex-direction: column;
    text-align: center;
  }

  .offer-box h2 {
    font-size: 32px;
  }

  .inner-banner {
    min-height: 380px;
  }

  .inner-banner .h-title {
    font-size: 38px;
    margin-top: 30px;
  }

  .inner-banner p {
    margin-left: 0;
  }

  .blog-sidebar {
    position: relative;
    top: auto;
  }

  .blog-detail-image {
    height: 350px;
  }

  .blog-detail-content {
    padding: 30px;
  }

  .contract-sidebar {
    position: relative;
    top: auto;
  }
}

@media(max-width:576px) {
  .banner-text {
    font-size: 3rem;
  }

  .banner-text p {
    font-size: 2rem;
  }

  .h-title {
    font-size: 32px;
  }

  .offer-box {
    padding: 35px 20px;
  }

  .blog-content h3 {
    font-size: 22px;
  }

  .inner-banner {
    padding: 60px 0;
  }

  .inner-banner .h-title {
    font-size: 32px;
  }

  .blog-detail-content {
    padding: 20px;
  }

  .blog-detail-image {
    height: 250px;
  }

  .blog-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .blog-detail-content h2 {
    font-size: 28px;
  }

  .comment-box {
    padding: 25px;
  }

  .comment-item {
    gap: 15px;
  }

  .offer-modal {
    padding: 15px;
    align-items: flex-start;
  }

  .offer-modal-content {
    max-height: calc(100vh - 30px);
    padding: 30px 20px;
    margin-top: 15px;
  }

  .offer-modal-content h2 {
    font-size: 26px;
  }

  .contract-content {
    padding: 25px;
  }

  .contract-content h2 {
    font-size: 27px;
  }

  .contract-info {
    flex-direction: column;
    gap: 10px;
  }
}

@media(max-width:768px) {
  .contact-form-box {
    padding: 25px;
  }

  .contact-form-box h2 {
    font-size: 26px;
  }
}

/* =================================== SUPPORT WIDGET =================================== */
.support-widget {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 9999;
}

.support-button {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 0;
  background: var(--red-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(255, 0, 46, .35);
  transition: .3s;
}

.support-button:hover {
  transform: scale(1.1);
}

.support-menu {
  position: absolute;
  right: 0;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: .3s;
}

.support-widget:hover .support-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.support-item {
  background: #fff;
  padding: 10px 18px 10px 10px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 170px;
  color: #111;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
  transition: .3s;
}

.support-item:hover {
  transform: translateX(-8px);
}

.support-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}

.support-icon.call {
  background: #111;
}

.support-icon.whatsapp {
  background: #25D366;
}

.support-icon.instagram {
  background: #E1306C;
}

.support-icon.mail {
  background: #555;
}

.support-icon.offer {
  background: var(--red-color);
}

@media(max-width:576px) {
  .support-widget {
    right: 20px;
    bottom: 20px;
  }

  .support-button {
    width: 58px;
    height: 58px;
  }

  .support-item {
    min-width: 150px;
    font-size: 14px;
  }
}

/* ==========================
   CUSTOMERS
========================== */


.customer-section {

  background: #fafafa;

}



.customerSwiper {

  padding: 20px 10px 50px;

}



.customer-card {

  height: 180px;

  background: #fff;

  border-radius: 30px;

  display: flex;

  align-items: center;

  justify-content: center;

  position: relative;

  overflow: hidden;

  border: 1px solid #eee;

  text-decoration: none;

}



.customer-card img {


  width: 80%;

  height: 100px;

  object-fit: contain;

  transition: .5s;

}



.customer-overlay {


  position: absolute;

  inset: 0;


  background: rgba(255, 0, 46, .92);


  display: flex;

  align-items: center;

  justify-content: center;

  flex-direction: column;

  color: #fff;


  opacity: 0;


  transform: scale(.8);


  transition: .4s;


}



.customer-overlay h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 10px;
  text-align: center;
}



.customer-overlay i {


  font-size: 25px;


}



.customer-card:hover img {


  transform: scale(.75);


  filter: blur(2px);


}



.customer-card:hover .customer-overlay {


  opacity: 1;

  transform: scale(1);


}




/* swiper button */

.customer-prev,
.customer-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #111;
}

.customer-prev:after,
.customer-next:after {
  font-size: 18px;
  color: #fff;
}

.customer-prev:hover,
.customer-next:hover {
  background: var(--red-color);
}

@media(max-width:768px) {
  .customer-card {
    height: 150px;
  }

  .customer-card img {
    height: 80px;
  }
}

/* ==========================
   CUSTOMERS LIST
========================== */

.customers-list-section {
  padding: 100px 0;
  background: #fafafa;
}


.customers-list-section .h-title {
  margin-bottom: 50px;
}


/* Kart */

.customer-list-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  padding: 30px;
  background: #fff;
  border: 1px solid #eee;
  text-decoration: none;
  color: #111;
  overflow: hidden;
  transition: .4s;
}


.customer-list-card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: var(--red-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: .4s;
}


.customer-list-card:hover {
  color: #111;
  border-color: #ddd;
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}


.customer-list-card:hover::before {
  transform: scaleX(1);
}


/* Logo */

.customer-list-logo {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.customer-list-logo img {
  max-width: 80%;
  max-height: 90px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .65;
  transition: .4s;
}


.customer-list-card:hover .customer-list-logo img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}


/* Firma bilgisi */

.customer-list-info {
  padding-top: 20px;
  border-top: 1px solid #eee;
}


.customer-list-info h3 {
  margin: 0 0 5px;
  font-size: 21px;
  font-weight: 800;
}


.customer-list-info span {
  color: #888;
  font-size: 14px;
}


/* Ok */

.customer-list-card > i {
  position: absolute;
  right: 25px;
  bottom: 25px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  font-size: 16px;
  transition: .3s;
}


.customer-list-card:hover > i {
  background: var(--red-color);
  transform: rotate(45deg);
}


/* Responsive */

@media (max-width: 992px) {

  .customers-list-section {
    padding: 80px 0;
  }

  .customer-list-card {
    min-height: 260px;
  }

}


@media (max-width: 576px) {

  .customers-list-section {
    padding: 60px 0;
  }

  .customers-list-section .h-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .customer-list-card {
    min-height: 240px;
    padding: 25px;
  }

  .customer-list-logo {
    height: 130px;
  }

  .customer-list-logo img {
    max-height: 75px;
  }

}

/* ==========================
 CUSTOMER DETAIL
========================== */


.customer-detail-section {

  padding: 100px 0;

}



.customer-detail-logo {

  background: #fff;
  border: 1px solid #eee;
  padding: 40px;
  height: 250px;

  display: flex;
  align-items: center;
  justify-content: center;

}


.customer-detail-logo img {

  max-width: 80%;
  max-height: 120px;
  object-fit: contain;

}



.customer-detail-info {

  background: #fff;
  padding: 30px;
  margin-top: 25px;

}



.customer-detail-info h3 {

  font-size: 22px;
  font-weight: 800;

}



.customer-detail-info ul {

  list-style: none;
  padding: 0;
  margin: 20px 0 0;

}


.customer-detail-info li {

  padding: 12px 0;
  border-bottom: 1px solid #eee;
  color: #666;

}


.customer-detail-info i {

  color: var(--red-color);
  margin-right: 10px;

}




.customer-detail-content {

  background: #fff;
  padding: 45px;

}



.customer-detail-content h2 {

  font-size: 40px;
  font-weight: 900;
  margin: 25px 0;

}


.customer-detail-content p {

  color: #666;
  line-height: 1.9;

}




.customer-services-section {

  padding: 100px 0;
  background: #fafafa;

}




.customer-service-box {

  background: #fff;
  padding: 40px;
  height: 100%;

  transition: .3s;

}



.customer-service-box:hover {

  transform: translateY(-8px);

}



.customer-service-box i {

  font-size: 35px;
  color: var(--red-color);

}



.customer-service-box h3 {

  margin: 25px 0 15px;
  font-weight: 800;

}



.customer-service-box p {

  color: #777;

}




.technology-section {

  padding: 100px 0;

}



.customer-gallery-section {

  padding: 100px 0;
  background: #fafafa;

}



.customer-gallery-img {

  width: 100%;
  height: 280px;
  object-fit: cover;

}

pre {
  background: #1e1e1e;
  color: #d4d4d4;
  padding: 20px;
  margin: 0;
  border-radius: 8px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 14px;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
  overflow-x: auto;
  tab-size: 4;
  border: 1px solid #333;
}

pre code {
  background: transparent;
  color: inherit;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
}