/* Call To Action Section Custom Styles */
.call-to-action.section {
    background: #f8f9fa;
    color: #2c3e50;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.call-to-action .display-4 {
    font-weight: 700;
    color: #2c3e50;
}

.call-to-action p {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
}

.cta-buttons {
    margin-top: 2rem;
}

.btn-cta {
    background: #4a90e2;
    color: white;
    border: 2px solid #4a90e2;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #357abd;
    color: white;
    border-color: #357abd;
    transform: translateY(-2px);
}

.btn-outline-primary {
    border: 2px solid #4a90e2;
    color: #4a90e2;
    background: transparent;
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: #4a90e2;
    border-color: #4a90e2;
    color: white;
    transform: translateY(-2px);
}

/* Background shapes styling */
.call-to-action .shape {
    position: absolute;
    opacity: 0.05;
    z-index: 1;
    color: #4a90e2;
}

.call-to-action .shape-1 {
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
}

.call-to-action .shape-2 {
    top: 50%;
    right: -100px;
    width: 300px;
    height: 300px;
    transform: translateY(-50%);
}

.call-to-action .shape-3 {
    bottom: -50px;
    left: 20%;
    width: 150px;
    height: 150px;
}

.call-to-action .dots {
    position: absolute;
    opacity: 0.08;
    z-index: 1;
    color: #4a90e2;
}

.call-to-action .dots-1 {
    top: 20px;
    right: 20%;
    width: 100px;
    height: 100px;
}

.call-to-action .dots-2 {
    bottom: 20px;
    left: 10%;
    width: 80px;
    height: 80px;
}

.call-to-action .content {
    position: relative;
    z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .call-to-action .display-4 {
        font-size: 2rem;
    }
    
    .call-to-action p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        margin-top: 1.5rem;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .cta-buttons .me-3 {
        margin-right: 0 !important;
    }
}