.navbar-brand img {
  height: 50px;
}

.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  background: #f8f9fa;
  padding: 10px 0;
}

.marquee-content {
  display: inline-block;
  animation: marquee 15s linear infinite;
}

.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.info-section {
  margin-top: 40px;
}

.info-section img {
  max-width: 100%;
  border-radius: 10px;
}

.info-section h2 {
  font-weight: bold;
}


.member-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  /* optional for rounded corners */
}

.quote-section {
  position: relative;
  background-image: url('../../image/banner%203.jpeg');
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 20px;
  z-index: 1;
  overflow: hidden;
}

.quote-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Adjust the 0.5 for darker/lighter */
  z-index: -1;
}

.quote-text {
  position: relative;
  z-index: 1;
  font-size: 50px;
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto;

}

.quote-author {
  margin-top: 20px;
  font-size: 18px;
  font-style: italic;
}


.domains-section {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 40px;
  flex-wrap: wrap;
}

.domain-card {
  position: relative;
  width: 350px;
  height: 300px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.domain-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(60%);
}

.domain-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

.title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: bold;
}

.review-banner {
  background-image: url('../../image/reviews.jpeg');
  background-size: cover;
  background-position: center;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: white;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  filter: brightness(0.6);
}

.review-text {
  z-index: 2;
}

.social-section {
  text-align: center;
  padding: 40px 20px;
  background-color: #f8f9fa;
}

.social-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.social-icons a {
  margin: 0 15px;
  font-size: 30px;
  color: #333;
  transition: color 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  color: #007bff;
}
