/* CTA Section Styles */


/* CTA Section
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 50%, #f59e0b 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-content h2 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: white;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.cta-contact-info {
  display: flex;
  gap: 3rem;
  justify-content: center;
  align-items: center;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.cta-contact-item i {
  color: white;
  font-size: 1.2rem;
} */
 
.cta-section {
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 50%, #f59e0b 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
} 
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
} 

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1.1rem;
    cursor: pointer;
}

.btn-primary {
    background-color: #ffffff;
    color: #2a2a72;
}

.btn-secondary {
    background-color: transparent;
    border-color: #ffffff;
    color: #ffffff;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background-color: #f8f9fa;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #2a2a72;
}

.btn-primary i, .btn-secondary i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.cta-contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-contact-item i {
    font-size: 1.5rem;
    color: #ffffff;
}

.cta-link {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
}

.cta-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.cta-link span {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .cta-contact-info {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}
