@font-face {
  font-family: "Futura";
  src: url("/font/Muli-ExtraBold.ttf") format("truetype");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Futura", sans-serif;
}
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  overflow: hidden;
}

/* topbar */
.top-bar {
  display: block;
  padding: 15px 0;
  background: #fff;
}

.top-bar-container {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: end;
}
.language-switcher {
  display: flex;
  align-items: center;
  gap: 10px;
}
.language-switcher button {
  background-color: transparent;
  border: 1px solid #eee;
  padding: 7px 8px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}
.contact-info {
  display: flex;
  gap: 15px;
  align-items: center;
}
.contact-item {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 15px;
}
.contact-item i {
  color: #ffdd79;
  font-size: 16px;
}
.contactNum {
  font-size: 20px;
  font-weight: 400;
}

/* mainNavbar */
.main-navbar-container {
  display: block;
  width: 100%;
  height: auto;
  padding: 0 20px;
  background-color: #333333;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.main-navbar {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;

  position: relative;
}
.navbar-sidebar {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  min-width: 300px;
  height: 100vh;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  background-color: white;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 1000;
  padding: 20px;
  color: white;
}

.navbar-sidebar.active {
  transform: translateX(0);
  opacity: 1;
}

.close-sidebar-btn {
  background: none;
  border: none;
  font-size: 2rem;
  color: black;
  position: absolute;
  top: 5px;
  right: 20px;
  cursor: pointer;
}


.navbar-toggle {
  display: none;
  color: rgba(0, 0, 0, 0.65) !important;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 0.25rem 0.75rem;
  font-size: 20px;
  border-radius: 4px;
}
.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidebar-logo img {
  width: 130px;
  height: auto;
}
.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 23px;
  margin-top: 20px;
}

.sidebar-item a {
  color: black;
  text-decoration: none;
  font-size: 16px;
  border-radius: 6px;
}
.navbar-logo {
  position: relative;
  top: 0;
  height: 40px;
  padding: 0 20px;
  background-color: white;
  z-index: 1;
  margin-top: -30px;
}

.navbar-logo::before,
.navbar-logo::after {
  content: "";
  position: absolute;
  top: 0;
  width: 0;
  height: 0;
  border-bottom: 40px solid transparent;
  border-top: 0 solid transparent;
}

.navbar-logo::before {
  left: -20px;
  border-right: 20px solid white;
}

.navbar-logo::after {
  right: -20px;
  border-left: 20px solid white;
}

.navbar-logo img {
  width: 160px;
  position: relative;
  z-index: 2;
}

.navbar-menu {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: end;
  color: white;
}
.main-navbar .navbar-list {
  display: flex;
  justify-items: center;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-navbar .navbar-item {
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  transition: background 0.3s ease, color 0.3s ease;
}

.main-navbar .navbar-item:hover {
  background-color: #ffc22b;
}

.main-navbar .navbar-item:hover a {
  color: black;
}

.main-navbar .navbar-item a {
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  color: white;
  transition: color 0.3s ease;
  display: inline-block;
  height: 100%;
  display: flex;
  align-items: center;
}
.query-btn {
  background-color: #ffc22b;
  color: black;
  font-size: 16px;
  font-weight: 600;
  height: 100%;
  padding: 0.5rem 1rem;
  border: none;
  margin-left: 10px;

  transition: background 0.3s ease;
  cursor: pointer;
}
.query-btn:hover {
  background-color: #e6b31a;
}

.search-container {
  position: relative;
  cursor: pointer;
}

.search-input {
  position: absolute;
  z-index: 20;
  top: 100%;
  right: 0;
  opacity: 0;
  margin-top: 20px;
  transform: translateX(-40px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.search-input.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}

.search-input input {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  background-color: white;
  width: 220px;
  font-size: 16px;
}

/* home swiper */
.swiper {
  width: 100%;
  height: 83vh;
  position: relative;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: #333333;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-pagination {
  position: absolute;
  bottom: 30px !important;
  padding-right: 65px;
  display: flex;
  justify-content: end;
  gap: 10px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: white;
  opacity: 0.4;
  position: relative;
  z-index: 1;
  margin: 0 6px;
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  top: -7px;
  left: -7px;
  right: -7px;
  bottom: -7px;
  border: 2px solid white;
  border-radius: 50%;
  animation: progress-pulse 3s linear forwards;
}

@keyframes progress-pulse {
  0% {
    clip-path: polygon(
      50% 50%,
      50% 0%,
      0% 0%,
      0% 100%,
      100% 100%,
      100% 0%,
      50% 0%
    );
  }
  100% {
    clip-path: polygon(
      50% 50%,
      50% 0%,
      0% 0%,
      0% 100%,
      100% 100%,
      100% 0%,
      50% 0%
    );
  }
}

#typed-text {
  text-decoration: underline #b27f1c 2px;
}

.swiper-button-prev,
.swiper-button-next {
  color: white;
  bottom: 20px;
  top: auto;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.8);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 0 !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 14px;
  color: black;
}

.swiper-button-prev {
  left: auto;
  right: 255px;
}

.swiper-button-next {
  right: 10px;
}

/* about us */
.about-us {
  position: relative;
  display: flex;
  align-items: center;
  justify-items: center;
  gap: 20px;
  padding: 40px 0;
}

.about-us-left-image img {
  width: 200px;
  height: auto;
}
.about-us-right-image img {
  width: 200px;
  height: auto;
}

.about-us-header {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  font-size: 23px;
}
.about-us-content .about-us-description {
  font-size: 13px;
  font-weight: 200;
}
.about-us-content-image {
  display: none;
}
.about-us-content-image img {
  width: 200px;
  height: auto;
}

/* second about us */

.second-about-us {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("/assets/2d7140e3aaba4a243083d35f44ed9547 (1).jpg");
  background-size: cover;
  background-position: center;

  min-height: 70vh;
  color: white;
  padding: 60px 20px;
}

.second-about-us-container {
  max-width: 1200px;
  margin: 0 auto;
}

.second-about-us-header {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: left;
  border-left: 5px solid #00bcd4;
  padding-left: 15px;
}

.second-about-us-content p {
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 20px;
  text-align: left;
  font-weight: 200;
}

/* referance */

.referans-swiper {
  width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin: 20px 0;
  padding-bottom: 10px;
}

.referans-swiper::-webkit-scrollbar {
  display: none;
}

.swiper-wrapper-referance {
  display: inline-flex;
  align-items: center;
  padding: 10px 0;
}

.swiper-slide-referance {
  flex: 0 0 auto;
  width: 200px;
  height: 140px;
  padding: 5px;
  margin-right: 10px;
  box-shadow: 2px 4px 6px 4px rgba(0, 0, 0, 0.1);
}
.swiper-slide-referance img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 5px;
}

.referans {
  padding: 25px 0 0 0;
}

.referans-header h2 {
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
}
.referans-header span {
  font-size: 15px;
  font-weight: 600;
}

/* product */
.products {
  width: 100%;
  background-color: #eeeeee;
  padding: 50px 0;
  overflow: hidden;
}
.products-header h2 {
  font-size: 24px;
  font-weight: 600;

  margin-bottom: 30px;
}
.products-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  align-items: stretch;
}

.product-side,
.product-center {
  display: grid;
  gap: 10px;
}

.product-side {
  grid-template-rows: repeat(4, 1fr);
}

.product-center {
  grid-template-rows: repeat(2, 1fr);
}

.product-card {
  background: linear-gradient(143deg, white 50%, #ffb900 50%);
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  cursor: pointer;
}

.product-card-content {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: 20px;
  font-weight: bold;
  color: #111;
  margin-bottom: 16px;
}

.product-button {
  display: inline-flex;
  align-items: center;
  background: white;
  color: black;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  width: fit-content;
}

.product-button:hover {
  background: #f1f1f1;
}

.product-button .arrow {
  background: black;
  color: white;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  font-size: 14px;
}

.product-card-image {
  flex: 1;
  min-width: 200px;
  text-align: center;
  display: flex;
  align-items: end;
  justify-content: end;
}

.product-center .product-card-image img {
  max-width: 100%;
  max-height: 180px;
  object-fit: contain;
}

.product-side .product-card-image img {
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
}

/* services */
.service-container {
  padding: 50px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  gap: 20px;
}
.service-card {
  position: relative;
  width: 100%;
  height: 270px;
  border-radius: 12px;
  overflow: hidden;
  font-family: Arial, sans-serif;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: scale(1.02);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.label {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: #ffd966;
  color: #333;
  padding: 5px 12px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 6px;
  z-index: 2;
}

.service-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95),
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.4),
    transparent
  );
  color: #fff;
  z-index: 1;
}
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.3)
  );
  z-index: 1;
}
.service-content .title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}

.service-content .arrow {
  font-size: 15px;
  font-weight: bold;
  color: #ffffff;
  display: inline-block;
  transition: transform 0.3s ease;
}

.service-card:hover .arrow {
  transform: translateX(5px);
}

/* blogs */

.blogs {
  width: 100%;
  background-color: #eeeeee;
  padding: 50px 0;
}

.blogs-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 30px 0;
}

.blogs-content {
  flex: 1;
  min-width: 300px;
}

.blogs-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2c3e50;
  position: relative;
  padding-bottom: 15px;
}

.blogs-content p {
  font-size: 16px;
  font-weight: 400;
  color: #555;
  margin-bottom: 25px;
  max-width: 500px;
}

.swiper-container {
  flex: 2;
  min-width: 0;
}

.swiperBlog {
  width: 100%;
  height: 380px;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.swiper-wrapper-blog {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.swiper-slide-blog {
  height: 100%;
  display: flex;
  flex-direction: column;

  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  margin-right: 30px;
  cursor: pointer;

  flex-shrink: 0;
  width: auto;
}
.swiper-slide-blog-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.swiper-slide-blog-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
}

.swiper-slide-blog-title {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
  color: #1a1a1a;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.swiper-slide-blog-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}

.swiper-slide-blog-arrow {
  font-size: 20px;
  color: #000;
}

.swiper-slide-blog a {
  text-decoration: none;
}

/* blogoage */
.blogPage-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 30px 10px;
}
@media (min-width: 992px) {
  .blogs-container {
    flex-direction: row;
  }
}

/* more info */
.more-info {
  background: #ffb900;
  padding: 40px 0;
}

.more-info-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  border-radius: 10px;
}

.info-text,
.info-form {
  flex: 1;
  min-width: 300px;
}

.info-text h2 {
  font-size: 40px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.info-text p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.info-text div:last-child {
  margin-top: 30px;
}

.info-text div:last-child p {
  font-size: 30px;
  font-weight: bold;
  color: #222;
  margin-bottom: 5px;
}

.info-text span {
  display: inline-block;
  font-size: 17px;
  margin-top: 10px;
}

.info-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.info-form input,
.info-form textarea {
  padding: 12px 15px;
  border-radius: 5px;
  font-size: 16px;
  width: 100%;
  background: #ffb900;
  color: black;
  border: none;
  box-shadow: 2px 2px 6px 2px rgba(0, 0, 0, 0.1);
}

.info-form input::placeholder,
.info-form textarea::placeholder {
  color: black;
  font-weight: 600;
  opacity: 1;
}

.info-form textarea {
  height: 120px;
  resize: vertical;
}

.info-form button {
  background-color: white;
  color: black;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
  text-transform: uppercase;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .more-info-container {
    flex-direction: column;
    padding: 30px 15px;
  }

  .info-text h2 {
    font-size: 30px;
  }

  .info-text div:last-child p {
    font-size: 24px;
  }

  .info-text span {
    font-size: 16px;
  }

  .info-form input,
  .info-form textarea {
    font-size: 15px;
  }

  .info-form button {
    font-size: 15px;
    padding: 10px 16px;
  }
}

@media (max-width: 480px) {
  .info-text h2 {
    font-size: 24px;
  }

  .info-text p {
    font-size: 15px;
  }

  .info-text div:last-child p {
    font-size: 20px;
  }

  .info-text span {
    font-size: 15px;
  }
}

/* footer */

footer {
  background-color: black;
  color: white;
  padding: 40px 0 0;
  font-family: Arial, sans-serif;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px;
  gap: 40px;
}

.footer-top-left {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  flex: 2;
}

.footer-top-left > div {
  min-width: 200px;
  flex: 1;
}

.footer-top-right {
  flex: 1;
  min-width: 250px;
}

.footer-top span {
  display: block;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
}

.footer-top ul {
  padding: 0;
  margin: 0;
  list-style-type: disc;
}

.footer-top ul li {
  margin-bottom: 12px;
}

.footer-top ul li a {
  color: #ccc;
  text-decoration: none;

  transition: color 0.3s;
  font-size: 14px;
}

.footer-top ul li a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-top-right p {
  margin-bottom: 10px;
  color: #ccc;
  font-size: 14px;
}

.footer-top-right p:first-of-type {
  font-size: 18px;
  color: #fff;
  font-weight: bold;
}

.footer-top-right div {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-top-right div i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: black;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-top-right div i:hover {
  background: #e0e0e0;
  transform: scale(1.05);
}

.footer-bottom {
  border-top: 2px solid white;
  padding: 30px;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 20px;
}

.footer-bottom-left img {
  height: 40px;
}

.footer-bottom-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  color: #ccc;
  font-size: 12px;
}

.footer-bottom-right p {
  margin: 0;
}

.footer-bottom-right img {
  height: 20px;
  vertical-align: middle;
  margin-left: 5px;
}

/* sorgu */
.consultation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease-out, visibility 0.4s step-end;
}

.consultation.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.4s ease-in, visibility 0.4s step-start;
}
.consultation-container {
  background-color: white;
  border-radius: 8px;
  width: 90%;
  max-width: 750px;
  padding: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.consultation-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.consultation-header h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: bold;
}

.close-btn {
  cursor: pointer;
  font-size: 1.2rem;
}

.consultation-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.consultation-form textarea {
  height: 100px;
  resize: vertical;
}

.submit-btn {
  background-color: #b82a2b;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #0056b3;
}

/* broadcame */
.breadcrumb {
  display: flex;
  font-size: 15px;
  color: white;
  padding: 20px;
  background-color: black;
  margin: 0;
}
.breadcrumb strong {
  margin: 0 10px;
}

.breadcrumb a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.current-page {
  color: #666;
  font-weight: bold;
}

/* media */

@media (max-width: 768px) {
  .second-about-us {
    padding: 40px 15px;
  }

  .second-about-us-header {
    font-size: 28px;
  }

  .second-about-us-content p {
    font-size: 16px;
  }
  .footer-top {
    flex-direction: column;
    gap: 30px;
  }

  .footer-top-left {
    flex-direction: column;
    gap: 30px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-right {
    justify-content: center;
  }
}

@media screen and (max-width: 1200px) {
  .main-navbar .navbar-item a {
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    color: white;
    transition: color 0.3s ease;
    display: inline-block;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .query-btn {
    background-color: #ffc22b;
    color: black;
    font-size: 13px;
    font-weight: 600;
    height: 100%;
    padding: 0.5rem 1rem;
    border: none;

    transition: background 0.3s ease;
    cursor: pointer;
  }
  .search-icon {
    font-size: 18px;
  }
}
@media screen and (max-width: 992px) {
  .top-bar {
    display: none;
  }
  .navbar-toggle {
    display: block;
  }
  .navbar-sidebar {
    display: block;
  }
  .main-navbar-container {
    background-color: #fff;
    padding: 4px 20px;
  }
  .navbar-toggle {
    color: black;
  }
  .navbar-logo {
    position: relative !important;
  }
  .navbar-menu {
    display: none;
  }
  .navbar-logo {
    margin-top: 3px;
  }

  .swiper-pagination {
    position: absolute;
    bottom: 30px !important;
    padding-right: 50px;
    display: flex;
    justify-content: end;
    gap: 10px;
  }
  .blogPage-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 30px 10px;
  }

  .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: white;
    opacity: 0.4;
    position: relative;
    overflow: hidden;
  }

  .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: white;
  }

  .swiper-pagination-bullet-active::before {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #fff;
    border-top-color: transparent;
    animation: rotateRing 2.5s linear forwards;
    z-index: 1;
  }

  .swiper-pagination-bullet-active::after {
    content: "aktif";
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: white;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 30px;
    height: 30px;
  }

  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 12px;
    color: black;
  }

  .swiper-button-prev {
    left: auto;
    right: 230px;
  }

  .swiper-button-next {
    right: 10px;
  }

  .about-us-left-image img {
    display: none;
  }
  .about-us-right-image img {
    display: none;
  }

  .about-us-header {
    display: flex;
    flex-direction: column;
    font-weight: 600;
    font-size: 19px;
  }
  .about-us-content .about-us-description {
    font-size: 13px;
    font-weight: 500;
  }
  .about-us-content-image {
    display: block;
    margin-top: 20px;
  }
  .products-content {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .product-side,
  .product-center {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .product-card {
    flex-direction: column;
    text-align: center;
    padding: 18px;
  }

  .product-card-image {
    order: 1;
  }
  .product-card-image img {
    max-width: 180px;
  }
  .service-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .more-info-container {
    display: flex;
    flex-direction: column;
  }

  .blogs {
    padding: 30px 0;
  }
  .blogs-content p {

    max-width: 300px;
  }

  .blogs-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 30px 5px;
  }

  .info-text,
  .info-form {
    flex: 1;
    min-width: auto;
  }
  /*  */
}

@media screen and (max-width: 540px) {
  .navbar-logo img {
    width: 140px;
    height: auto;
    position: relative;
    z-index: 2;
  }
  .second-about-us-header {
    font-size: 24px;
  }

  .second-about-us-content p {
    font-size: 15px;
  }
  .product-card {
    flex-direction: column;
    text-align: center;
    padding: 10px;
  }
  .blogPage-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
