@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* Features: Premium Poppins Font, Ambient Background Glow, Smooth Button Hover */

.cta-section {
    padding: 100px 20px;
    background-color: #050505;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.cta-container {
    max-width: 1000px;
    width: 100%;
    background: linear-gradient(145deg, #111111, #1a1a2e);
    border: 1px solid #333;
    border-radius: 20px;
    padding: 70px 40px;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}
.cta-glow-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,123,255,0.15) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}
.cta-content {
    position: relative;
    z-index: 3;
}
.cta-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(0, 123, 255, 0.2);
}
.cta-content p {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 1.15rem;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    letter-spacing: 0.5px;
}
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-primary-glow {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(90deg, #007bff, #00d4ff);
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
    border: none;
}
.btn-primary-glow:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 123, 255, 0.6);
}
.btn-outline {
    font-family: 'Poppins', sans-serif;
    background: transparent;
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.4s ease;
    border: 1px solid #444;
}
.btn-outline:hover {
    border-color: #007bff;
    background-color: rgba(0, 123, 255, 0.05);
    transform: translateY(-5px);
}
@media (max-width: 768px) {
    .cta-content h2 { font-size: 2.2rem; }
    .cta-content p { font-size: 1rem; }
    .cta-container { padding: 40px 20px; }
}