/* Popup Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.4s;
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 30px;
    border: 1px solid #888;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    position: relative;
    text-align: center;
    animation: slideIn 0.4s;
}

.close-btn {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover,
.close-btn:focus {
    color: #333;
    text-decoration: none;
    cursor: pointer;
}

.modal-title {
    margin-bottom: 15px;
    color: #1a4f7e;
    /* Matches logo color */
}

.modal-text {
    margin-bottom: 25px;
    color: #666;
}

.call-btn-modal {
    display: inline-block;
    background-color: #28a745;
    /* Green for call action */
    color: white;
    padding: 12px 30px;
    font-size: 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
    font-weight: bold;
}

.call-btn-modal:hover {
    background-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.call-btn-modal i {
    margin-right: 10px;
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Call Button in About Section */
.btn-call-about {
    display: inline-flex;
    align-items: center;
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 15px;
    transition: background-color 0.3s;
}

.btn-call-about:hover {
    background-color: #218838;
}

.btn-call-about i {
    margin-right: 8px;
}