/* Stable section */
.marquee-wrapper {
  width: 100%;
 
  border-radius: 8px;
 
  overflow: hidden;
  position: relative;
  padding: 12px 0;
}

/* Track that scrolls */
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 20s linear infinite;
}

/* Content set */
.marquee-content {
  display: flex;
  gap: 25px;
}

/* Each item */
.marquee-item {
  padding: 8px 18px;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: 0.3s;
}

.marquee-item:hover {
 
  border-color: #bbb;
}

/* Animation */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* move half (because we duplicated content) */
}





#about{
        margin-bottom: -70px;
}






.modern-marquee {
  font-family: 'Segoe UI', sans-serif;
  position: relative;
  overflow: hidden;
}

.marquee-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  animation: marqueeMove 12s linear infinite;
}

.marquee-text {
  font-size: 24px;
  font-weight: 700;
}

.marquee-dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 4px;
  border-radius: 50%;
  background-color: #0d6efd;
  animation: dotBounce 1s infinite alternate;
}

.marquee-dots span:nth-child(2) {
  animation-delay: 0.2s;
}
.marquee-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes marqueeMove {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

@keyframes dotBounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}
.footer {
  font-family: 'Segoe UI', sans-serif;
}
.footer h5 {
  font-weight: 600;
  color: #ffffff;
  border-bottom: 2px solid #0d6efd;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 15px;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: #cccccc;
  text-decoration: none;
  transition: all 0.3s;
}
.footer-links a:hover {
  color: #0d6efd;
  padding-left: 5px;
}
.footer-social-box a {
  transition: transform 0.3s, color 0.3s;
}
.footer-social-box a:hover {
  transform: scale(1.2);
  color: #0d6efd;
}
.marquee-section {
  background: #0d6efd;
}
.marquee-section marquee span {
  font-size: 18px;
  font-weight: 600;
}


