.cta-section-new {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #043F6D 0%, rgb(5.8053097345, 91.4336283186, 158.1946902655) 50%, #46A2DA 100%);
  position: relative;
  overflow: hidden;
}
.cta-section-new::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(5%, 5%) scale(1.1);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}
.cta-container-new {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content-new {
  text-align: center;
}

.cta-title-new {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 900;
  color: #F9F9F9;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-subtitle-new {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.cta-button-new {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2.5rem;
  background: #F9F9F9;
  color: #043F6D !important;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.cta-button-new:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}
.cta-button-new:hover i {
  transform: translateX(5px);
}
.cta-button-new i {
  transition: transform 0.3s ease;
}

.last-counselling-date {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-top: 3rem;
  color: #F9F9F9;
}

.footer-new {
  background: #043F6D;
  color: #F9F9F9;
  padding: 4rem 2rem 2rem;
}

.footer-container-new {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .footer-grid-new {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-column-new h3 {
  margin-bottom: 1rem;
}

.footer-heading-new {
  font-size: 1.1rem;
  font-weight: 700;
  color: #F9F9F9;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-heading-spacer {
  margin-top: 2rem;
}

.footer-links-new {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links-new li {
  margin-bottom: 0.75rem;
}
.footer-links-new li a {
  color: rgba(255, 255, 255, 0.85) !important;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  display: inline-block;
}
.footer-links-new li a:hover {
  color: #F9F9F9 !important;
  transform: translateX(5px);
}
.footer-links-new li a i {
  margin-right: 0.5rem;
  font-size: 0.85rem;
}
.footer-links-new li.footer-sub-link {
  margin-left: 1rem;
}
.footer-links-new li.footer-sub-link a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7) !important;
}

.footer-bottom-new {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  gap: 2rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .footer-bottom-new {
    flex-direction: column;
    text-align: center;
  }
}

.footer-logo-new img {
  height: 40px;
  width: auto;
  opacity: 0.9;
}

.footer-copyright-new {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}
.footer-copyright-new p {
  margin: 0;
}

.footer-nav-mobile-new {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #F9F9F9;
  border-top: 1px solid rgba(4, 63, 109, 0.1);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 0.5rem 0;
  transform: translateY(0);
  transition: transform 0.3s ease;
}
.footer-nav-mobile-new.footer-hidden {
  transform: translateY(100%);
}
@media (max-width: 768px) {
  .footer-nav-mobile-new {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }
}

.footer-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.5rem;
  color: #043F6D !important;
  text-decoration: none;
  transition: all 0.2s ease;
}
.footer-nav-item i {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}
.footer-nav-item span {
  font-size: 0.7rem;
  font-weight: 600;
}
.footer-nav-item:hover {
  background: rgba(70, 162, 218, 0.05);
  color: #46A2DA !important;
}

.footer-top-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.5rem;
  color: #EB4878 !important;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
}
.footer-top-button i {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
  transition: transform 0.3s ease;
}
.footer-top-button span {
  font-size: 0.7rem;
  font-weight: 600;
}
.footer-top-button.visible i {
  animation: bounce 2s infinite;
}
.footer-top-button:hover {
  background: rgba(235, 72, 120, 0.05);
}/*# sourceMappingURL=footer.css.map */