body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #e7b5b5;
  color: #333;
  scroll-behavior: smooth;
}

.wrapper {
  max-width: 1500px;
  margin: 0 auto;
  background-color: #e7b5b5;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  border-bottom: 2px solid #f1f1f1;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-weight: bold;
  color: #142079;
  text-transform: uppercase;
  text-decoration: none;
}

.navbar-brand .logo {
  font-size: 1.5rem;
  max-width: 25%;
}

.navbar-brand img {
  width: 10%;
  height: auto;
  transition: width 0.3s ease-in-out;
}

.nav-link {
  font-size: 1rem;
  color: #000000;
  transition: color 0.3s ease-in-out;
}

.nav-link:hover {
  color: #142079;
}

.navbar-toggler {
  border-color: #142079;
}

.bg-light-custom {
  background-color: #e7b5b5;
  padding: 10px;
}

.dropdown-menu {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.carousel-inner img {
  width: 100%;
  height: 100%;
}

.carousel-inner {
  width: 100%;
  height: auto;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(100%);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 10px;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
}

.carousel-control-next:focus,
.carousel-control-prev:focus {
  outline: none;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  background-color: #000000;
}

.carousel-indicators .active {
  background-color: #000000;
}

section {
  padding: 60px 0;
  margin-bottom: 20px;
}

section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #000000;
  font-weight: bold;
}

.card {
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  perspective: 1000px;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.card-back {
  transform: rotateY(180deg);
  background-color: #ffffff;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-img-top {
  object-fit: cover;
  width: 100%;
}

.card-title {
  font-size: 1.25rem;
  color: #333;
  margin-top: 10px;
  font-weight: bold;
}

.card-text {
  font-size: 0.95rem;
  color: #666;
}

.what-we-do {
  background-color: #fbe6e6;
  padding: 40px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.latest-release {
  background-color: #f1f1f1;
  padding: 40px 0;
  width: 100%;
}

.latest-release .container {
  max-width: 1200px;
  margin: auto;
}

.footer {
  background-color: #fbe6e6;
  color: #000000;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer p {
  margin: 0;
  font-size: 0.9rem;
}

.footer div {
  flex: 1;
  min-width: 300px;
}

.footer iframe {
  width: 100%;
  height: 250px;
  border: 0;
}

#back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #007bff;
  color: white;
  padding: 10px 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: none;
  transition: opacity 0.3s ease-in-out;
}

#back-to-top:hover {
  background-color: #0056b3;
}

input,
textarea {
  border: 2px solid #ddd;
  padding: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input:focus,
textarea:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.tooltip {
  position: relative;
  cursor: pointer;
}

.tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 150%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 5px 10px;
  font-size: 0.8rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.tooltip:hover::after {
  opacity: 1;
  visibility: visible;
}

.accordion-item {
  margin-bottom: 10px;
}

.accordion-item-header {
  background-color: #007bff;
  color: white;
  padding: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.accordion-item-header:hover {
  background-color: #0056b3;
}

.accordion-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #f8f9fa;
  padding: 0 15px;
  border: 1px solid #ddd;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #f8f9fa;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

#loader div {
  width: 50px;
  height: 50px;
  border: 6px solid #000000;
  border-top: 6px solid transparent;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .navbar-brand {
    font-size: 1.2rem;
  }

  section h2 {
    font-size: 1.5rem;
    text-align: center;
  }

  .card-title {
    font-size: 1rem;
  }

  .card-text {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1rem;
  }

  section h2 {
    font-size: 1.25rem;
  }

  .footer p {
    font-size: 0.8rem;
  }
}
