#call-to-action {
  position: relative;
  padding: 80px 0;
  color: #ffffff;
  overflow: hidden;
}

/* Background */
.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 .cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 
  background-size: cover;
  filter: blur(5px);
  z-index: 0;
}

  background-size: cover;
  filter: blur(5px);
  z-index: 0;
}

/* Overlay */
.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}

/* Content */
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

.cta-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
  opacity: 0;
  transform: scale(0.8);
  transition: all 1s ease;
}

.cta-text {
  font-size: 20px;
  line-height: 1.8;
  color: #fff;
  max-width: 800px;
  margin: 0 auto 25px;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1s ease;
}

/* Button */
.cta-btn {
  display: inline-block;
  padding: 14px 35px;
  background: #8B0000;
  border: 2px solid #fff;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  animation: pulse 2s infinite;
  transition: transform 0.3s ease, background 0.3s ease;
}

.cta-btn:hover {
  transform: scale(1.1);
  background: #1e6bb8 !important;
  color:white;
   text-decoration: none;
}

/* Button pulse animation */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  70% { box-shadow: 0 0 0 20px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
