body {
  margin: 0;
  padding-top: 100px;
  font-family: sans-serif;
}

.header {
  height: 80px;
  border-radius: 0 0 10px 10px;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background-color: #022c43;
  color: white;
  padding: 0 30px;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);

  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.img {
  border-radius: 30px;
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.right {
  display: flex;
  gap: 10px;
}

.button {
  height: 40px;
  width: 100px;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  background-color: #1768ac;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #2196f3;
}

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    height: auto;
    padding: 20px;
    text-align: center;
  }

  .right {
    margin-top: 10px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .img {
    width: 70px;
    height: 70px;
  }

  .button {
    width: 100px;
    font-size: 14px;
  }
}
.carousel-inner {
  height: 500px;
}

.carousel-inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#tsparticles {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin: 0;
}
/*--------------------------------------------------------------------*/
#pageFooter {
  position: fixed;
  bottom: -120px;
  left: 0;
  width: 100%;
  background: #111;
  color: white;
  text-align: center;
  padding: 20px;
  transition: bottom 0.6s ease, opacity 0.6s ease;
  opacity: 0;
  z-index: 10;
}

#pageFooter.show {
  bottom: 0;
  opacity: 1;
}
.horizontal-images-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 10px 0;
}

.horizontal-images-row img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.horizontal-images-row img:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

#secondCarousel {
  margin-top: 100px;
}

.logo-text {
  font-size: 24px;
  font-weight: bold;
  color: white;
  margin: 0;
  font-family: "Segoe UI", sans-serif;
}
.left {
  display: flex;
  align-items: center;
  gap: 15px;
}
/* mahsolat */
.product-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 50px 0;
}

.product-card {
  background-color: #fff;
  border-radius: 12px;
  width: 300px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.product-card h3 {
  margin: 15px 0 5px;
  font-size: 18px;
  color: #333;
}

.product-card .price {
  margin-top: 10px;
  font-size: 16px;
  font-weight: bold;
  color: #2196f3;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.product-card:hover .price {
  opacity: 1;
  transform: translateY(0);
}

.greeting-box {
  text-align: center;
  padding: 30px;
  color: black;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 1px;
}
.cta-box {
  background: linear-gradient(135deg, #0d6efd, #6610f2);
  color: white;
  border-radius: 16px;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.cta-box h2 {
  font-size: 2rem;
  font-weight: bold;
}
.cta-box p {
  font-size: 1.2rem;
  margin-top: 15px;
}

#newsSidebar.offcanvas {
  background: #fff;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.15);
  border-radius: 12px 0 0 12px;
  width: 450px;
  max-width: 95vw;
}
#newsSidebar .offcanvas-header {
  border-bottom: 1px solid #eee;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#newsSidebar .offcanvas-title {
  font-weight: 700;
  font-size: 1.5rem;
  color: #222;
}
#langToggleBtn {
  cursor: pointer;
  border: none;
  background: #007bff;
  color: white;
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
#langToggleBtn:hover {
  background: #0056b3;
}
#newsSidebar .btn-close {
  filter: brightness(0.4);
  transition: filter 0.3s ease;
}
#newsSidebar .btn-close:hover {
  filter: brightness(1);
}
#newsSidebar .offcanvas-body {
  padding: 1rem 1.5rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #444;
  overflow-y: auto;
  max-height: 80vh;
  direction: ltr;
}
#newsContainer h6 a {
  color: #007bff;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}
#newsContainer h6 a:hover {
  color: #0056b3;
  text-decoration: underline;
}
#newsContainer p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1rem;
  white-space: normal;
  word-break: break-word;
}
#newsContainer hr {
  border-color: #eee;
  margin: 0.6rem 0 1rem 0;
}
