.breaking-news-bar {
  background: linear-gradient(to right, #ff4e50, #f9d423); /* gradient background */
  color: #111;
   display: flex;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  overflow: hidden;
  font-family: 'Segoe UI', sans-serif;
}

.breaking-news-heading {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 6px 14px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  margin-right: 15px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
  flex-shrink: 0;
  white-space: nowrap;
}

.news-ticker-wrapper {
  overflow: hidden;
  flex: 1;
  position: relative;
}

.news-ticker {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 22s linear infinite;
  font-size: 1rem;
  font-weight: 500;
  color: #222;
}


@keyframes scroll-left {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.styled-list {
  list-style: none;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  font-size: 18px;
}

.styled-list li {
  margin: 10px 0;
  padding-left: 30px;
  position: relative;
  line-height: 1.6;
  color: #fff; /* सफेद टेक्स्ट */
}

.styled-list li::before {
  content: "✊";
  position: absolute;
  left: 0;
  color: #000; /* आइकन काला रंग */
  font-size: 20px;
}

.cta-content p {
    color: #4B0082;
    margin-top: 15px;
    margin-bottom: 30px;
    font-size: 18px;
    /* text-shadow: 1px 1px 2px rgba(0,0,0,0.3); */
}

.partner-wrapper img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    margin: 15px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background-color: #fff;
    border: 1px solid #eee;
}

.partner-wrapper img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}
.application-form h3 {
    padding-bottom: 15px;
    margin-bottom: 1px;
    border-bottom:none!important;
}