.icon-marquee {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  background: transparent;
  padding: 10px 0;
}

.marquee-track {
  display: flex;
  width: calc(200%); /* enough space for both sets */
  animation: marquee 25s linear infinite;
}

.marquee-content {
  display: flex;
  gap: 50px; /* spacing between logos */
}

.marquee-content img {
  width: 10%;
  height: 80%;
  object-fit: contain;
  user-select: none;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


.timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 50px 20px 20px;
  gap: 20px;
}

.timeline-line {
  position: absolute;
  top: 75px; /* position line between circle and content box */
  left: 8%;
  right: 8%;
  height: 4px;
  background: #ff526c;
  z-index: 1;
}

.timeline-step {
  position: relative;
  text-align: center;
  z-index: 2;
  flex: 1;
  max-width: 22%;
}

.circle {
  width: 50px;
  height: 50px;
  background: #60cfeb;
  border-radius: 50%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.step-content {
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  margin-top: 40px; /* push it below line */
  height: 250px; /* make all boxes same height */
  box-sizing: border-box;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.step-content img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  display: block;
  margin: 0 auto 10px;
}

.step-content h6 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #333;
}

.step-content p {
  margin: 0;
  font-size: 12px;
  color: #555;
}

/*  Responsive for mobile */
@media (max-width: 768px) {
  .timeline {
    flex-direction: column;
    align-items: center;
  }

  .timeline-line {
    /* display: none;  */
  }

  .timeline-step {
    max-width: 100%;
  }

  .step-content {
    height: auto;
    margin-top: 20px;
  }
}

.left{
  margin-left: 100px;
}
.right{
  margin-right: 100px;
}
@media (max-width: 768px) {
  .timeline {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .timeline-line {
    width: 4px; 
    height: 80%; 
    top: 50px; 
    left: 49%; 

    transform-origin: top left;
  }

  .timeline-step {
    max-width: 100%;
    text-align: center;
  }

  .step-content {
    margin-top: 20px;
    height: auto;
  }
  .margin-auto-hide {
    margin-left: unset !important;
    margin-right: unset !important;
  }
}


.call-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50px;
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 10px 18px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  font-family: Arial, sans-serif;
  transition: 0.3s ease;
  z-index: 9999;
}

.call-float:hover {
  background-color: #128c7e;
  transform: scale(1.05);
}

.call-icon {
  width: 22px;
  height: 22px;
  margin-right: 10px;
}

.call-text {
  font-size: 16px;
  font-weight: 600;
}



.banner {
  width: 100%;
  height: 600px;
  overflow: hidden;
  position: relative;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Text overlay styling */
.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.4); /* subtle dark overlay */
  padding: 30px 50px;
  border-radius: 12px;
}

.banner-text h1 {
  font-size: 48px;
  margin-bottom: 15px;
  font-weight: 700;
  color: white;
}

.banner-text p {
  font-size: 18px;
  max-width: 600px;
  margin: auto;
  line-height: 1.5;
  color: rgb(209, 209, 209);
}



.text-align-center  {
  margin: 100px;
  text-align: center;
 
  
}
.text-align-center h1{
  color: #267083;
    font-size: 30px;
  }

.banner-min{
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
  background-image: url("../imgs/contact-img.jpg");
}
.banner-enroll{
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
  background-image: url("../imgs/enroll.png");
}

.form-control-sm {
    min-height: calc(1.5em + .5rem + calc(var(--bs-border-width) * 2));
    padding: .25rem .5rem;
    font-size:1.7rem;
  
}

.left{
  margin-left: 100px;
}

.right{
  margin-right: 100px;
}